diff options
| author | Daniel Baumann <daniel@debian.org> | 2012-10-01 04:43:14 +0200 | 
|---|---|---|
| committer | Daniel Baumann <daniel@debian.org> | 2012-10-01 04:43:14 +0200 | 
| commit | fd73a6861570a75255615e2f14d1e9e7e2bf0e71 (patch) | |
| tree | 0a61a9393b6e5ae655873c8b9901daddc1e44312 /share/bootloaders/extlinux | |
| parent | c9def02d74172e49ab96fa4fc05e888eb8abc3dc (diff) | |
| download | vyos-live-build-fd73a6861570a75255615e2f14d1e9e7e2bf0e71.tar.gz vyos-live-build-fd73a6861570a75255615e2f14d1e9e7e2bf0e71.zip  | |
Simplify internal replacement strings when processing syslinux configuration files.
Diffstat (limited to 'share/bootloaders/extlinux')
| -rw-r--r-- | share/bootloaders/extlinux/live.cfg.in | 8 | 
1 files changed, 4 insertions, 4 deletions
diff --git a/share/bootloaders/extlinux/live.cfg.in b/share/bootloaders/extlinux/live.cfg.in index 798fc6137..a307a04e4 100644 --- a/share/bootloaders/extlinux/live.cfg.in +++ b/share/bootloaders/extlinux/live.cfg.in @@ -1,13 +1,13 @@  label live-@FLAVOUR@  	menu label ^Live (@FLAVOUR@)  	menu default -	linux @KERNEL@ +	linux @LINUX@  	initrd @INITRD@ -	append @LB_BOOTAPPEND_LIVE@ +	append @APPEND_LIVE@  label live-@FLAVOUR@-failsafe  	menu label ^Live (@FLAVOUR@ failsafe)  	menu default -	linux @KERNEL@ +	linux @LINUX@  	initrd @INITRD@ -	append @LB_BOOTAPPEND_LIVE@ @LB_BOOTAPPEND_FAILSAFE@ +	append @APPEND_LIVE@ @APPEND_FAILSAFE@  | 
