From 10b968e891b322e774c57c01d7cb56e66d219e26 Mon Sep 17 00:00:00 2001 From: Roland Clobus Date: Wed, 10 Aug 2022 08:07:21 +0200 Subject: [PATCH] Add more variables for the splash.svg image (Closes: 1015782) The request asked for 5 additional variables to be resolved for the SVG images: Added: LB_ISO_APPLICATION, LB_ISO_PUBLISHER and LB_LINUX_PACKAGES Not added: LB_ISO_PREPARER: xorriso recommends not changing this variable Not added: LB_ISO_VOLUME: is can contain '@ISOVOLUME_TS@' which resolves to a timestamp and would need additional handling --- scripts/build/binary_syslinux | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scripts/build/binary_syslinux b/scripts/build/binary_syslinux index e21360af9..780f11c96 100755 --- a/scripts/build/binary_syslinux +++ b/scripts/build/binary_syslinux @@ -261,6 +261,9 @@ do -e "s|@LIVE_BOOT_VERSION@|${_LIVE_BOOT_VERSION}|g" \ -e "s|@LIVE_CONFIG_VERSION@|${_LIVE_CONFIG_VERSION}|g" \ -e "s|@LIVE_TOOLS_VERSION@|${_LIVE_TOOLS_VERSION}|g" \ + -e "s|@LB_ISO_APPLICATION@|${LB_ISO_APPLICATION}|g" \ + -e "s|@LB_ISO_PUBLISHER@|${LB_ISO_PUBLISHER}|g" \ + -e "s|@LB_LINUX_PACKAGES@|${LB_LINUX_PACKAGES}|g" \ "${_FILE}" fi done