video-editing: Fix again ISO title

This commit is contained in:
Daniele Rondina
2020-01-25 18:58:31 +01:00
committed by geaaru
parent 2da9fce5ed
commit fa76afa75a
3 changed files with 8 additions and 2 deletions
@@ -6,7 +6,7 @@
# Pre-ISO building script. Hook to be able to copy kernel images in place,
# for example.
# NOTE: Not inserted on gnome.common to fix use of forensics pre_iso_script.
%env pre_iso_script: ${SABAYON_MOLECULE_HOME:-/sabayon}/scripts/generic_pre_iso_script.sh "Video Editing"
%env pre_iso_script: ${SABAYON_MOLECULE_HOME:-/sabayon}/scripts/generic_pre_iso_script.sh VideoEditing
# Release Version
%env release_version: ${SABAYON_RELEASE:-LATEST}
@@ -3,6 +3,12 @@
%env %import ${SABAYON_MOLECULE_HOME:-/sabayon}/molecules/video-editing.common
%env %import ${SABAYON_MOLECULE_HOME:-/sabayon}/molecules/amd64.common
# Pre-ISO building script. Hook to be able to copy kernel images in place,
# for example.
# NOTE: Not inserted on gnome.common to fix use of forensics pre_iso_script.
%env pre_iso_script: ${SABAYON_MOLECULE_HOME:-/sabayon}/scripts/generic_pre_iso_script.sh VideoEditing
# Release Version
%env release_version: ${SABAYON_RELEASE:-LATEST}
+1 -1
View File
@@ -20,7 +20,7 @@ if [ -n "${boot_kernel}" ] && [ -f "${boot_kernel}" ]; then
cp "${boot_ramfs}" "${CDROOT_DIR}/boot/sabayon.igz" || exit 1
fi
if [ "${remaster_type}" = "KDE" ] || [ "${remaster_type}" = "GNOME" ] || [ "${remaster_type}" = "Video Editing" ] ; then
if [ "${remaster_type}" = "KDE" ] || [ "${remaster_type}" = "GNOME" ] || [ "${remaster_type}" = "VideoEditing" ] ; then
isolinux_source="${SABAYON_MOLECULE_HOME}/remaster/standard_isolinux.cfg"
grub_source="${SABAYON_MOLECULE_HOME}/remaster/standard_grub.cfg"
fi