From f1410a0945a7d13d67ea02ab261ddac218713f8d Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 27 Mar 2013 12:06:00 +0100 Subject: Replacing strings in all syslinux config files, not just certain hardcoded ones. --- scripts/build/binary_syslinux | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) (limited to 'scripts/build') diff --git a/scripts/build/binary_syslinux b/scripts/build/binary_syslinux index 474310781..bc86a4bd6 100755 --- a/scripts/build/binary_syslinux +++ b/scripts/build/binary_syslinux @@ -211,18 +211,15 @@ then rm -f "${_TARGET}/live.cfg.in" ;; esac -elif [ -e "${_TARGET}/live.cfg" ] -then - sed -i -e "s#@LB_BOOTAPPEND_LIVE@#${LB_BOOTAPPEND_LIVE}#g" \ - -e "s#@LB_BOOTAPPEND_LIVE_FAILSAFE@#${LB_BOOTAPPEND_LIVE_FAILSAFE}#g" \ - ${_TARGET}/live.cfg fi -if [ -e ${_TARGET}/install.cfg ] -then - sed -i -e "s#@APPEND_INSTALL@#${LB_BOOTAPPEND_INSTALL}#g" \ - ${_TARGET}/install.cfg -fi +for _FILE in "${_TARGET}"/*.cfg +do + sed -i -e "s#@LB_BOOTAPPEND_LIVE@#${LB_BOOTAPPEND_LIVE}#g" \ + -e "s#@LB_BOOTAPPEND_LIVE_FAILSAFE@#${LB_BOOTAPPEND_LIVE_FAILSAFE}#g" \ + -e "s#@APPEND_INSTALL@#${LB_BOOTAPPEND_INSTALL}#g" \ + "${_FILE}" +done if [ -e "${_TARGET}/splash.svg.in" ] then -- cgit v1.2.3