diff options
author | Daniel Baumann <daniel@debian.org> | 2007-09-23 14:05:11 +0200 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2011-03-09 18:22:26 +0100 |
commit | 54ff9fc7b20dc18fb965a27e2556826282c70272 (patch) | |
tree | 042fef5ba472f685b6a2ef64f830616c3f7203b7 /helpers/lh_config | |
parent | d68b95dfb379d4eeeb1d383bccc1610de608a9f8 (diff) | |
download | vyos-live-build-54ff9fc7b20dc18fb965a27e2556826282c70272.tar.gz vyos-live-build-54ff9fc7b20dc18fb965a27e2556826282c70272.zip |
Renaming LH_BOOTAPPEND to LH_BOOTAPPEND_LIVE.
Diffstat (limited to 'helpers/lh_config')
-rwxr-xr-x | helpers/lh_config | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/helpers/lh_config b/helpers/lh_config index 5144c1f87..7e7107cb3 100755 --- a/helpers/lh_config +++ b/helpers/lh_config @@ -30,7 +30,7 @@ USAGE="${PROGRAM} [--apt apt|aptitude]\n\ \t [-a|--architecture ARCHITECTURE]\n\ \t [-b|--binary-images iso|net|tar|usb-hdd]\n\ \t [--binary-indices enabled|disabled]\n\ -\t [--bootappend PARAMETER|\"PARAMETERS\"]\n\ +\t [--bootappend-live PARAMETER|\"PARAMETERS\"]\n\ \t [--bootloader grub|syslinux|yaboot]\n\ \t [--bootstrap cdebootstrap|debootstrap]\n\ \t [--bootstrap-config FILE]\n\ @@ -100,7 +100,7 @@ USAGE="${PROGRAM} [--apt apt|aptitude]\n\ Local_arguments () { - ARGUMENTS="`getopt --longoptions apt:,apt-ftp-proxy:,apt-http-proxy:,apt-pdiffs:,apt-pipeline:,apt-recommends:,apt-secure:,bootstrap:,cache:,cache-indices:,cache-packages:,cache-stages:,debconf-frontend:,debconf-nowarnings:,debconf-priority:,genisoimage:,initramfs:,losetup:,mode:,root-command:,tasksel:,includes:,templates:,architecture:,bootstrap-config:,bootstrap-flavour:,bootstrap-keyring:,distribution:,mirror-bootstrap:,mirror-bootstrap-security:,mirror-binary:,mirror-binary-security:,sections:,chroot-filesystem:,union-filesystem:,hooks:,interactive:,keyring-packages:,language:,linux-flavours:,linux-packages:,packages:,packages-lists:,tasks:,security:,symlinks:,sysvinit:,binary-images:,binary-indices:,bootappend:,bootloader:,chroot-build:,debian-installer:,debian-installer-daily:,encryption:,grub-splash:,hostname:,iso-application:,iso-preparer:,iso-publisher:,iso-volume:,iso-memtest:,net-filesystem:,net-mountoptions:,net-path:,net-server:,syslinux-splash:,syslinux-timeout:,username:,source:,source-images:,breakpoints,conffile:,debug,force,help,quiet,usage,verbose,version --name=${PROGRAM} --options a:f:d:m:l:k:p:b:e:s:c:huv --shell sh -- "${@}"`" + ARGUMENTS="`getopt --longoptions apt:,apt-ftp-proxy:,apt-http-proxy:,apt-pdiffs:,apt-pipeline:,apt-recommends:,apt-secure:,bootstrap:,cache:,cache-indices:,cache-packages:,cache-stages:,debconf-frontend:,debconf-nowarnings:,debconf-priority:,genisoimage:,initramfs:,losetup:,mode:,root-command:,tasksel:,includes:,templates:,architecture:,bootstrap-config:,bootstrap-flavour:,bootstrap-keyring:,distribution:,mirror-bootstrap:,mirror-bootstrap-security:,mirror-binary:,mirror-binary-security:,sections:,chroot-filesystem:,union-filesystem:,hooks:,interactive:,keyring-packages:,language:,linux-flavours:,linux-packages:,packages:,packages-lists:,tasks:,security:,symlinks:,sysvinit:,binary-images:,binary-indices:,bootappend-live:,bootloader:,chroot-build:,debian-installer:,debian-installer-daily:,encryption:,grub-splash:,hostname:,iso-application:,iso-preparer:,iso-publisher:,iso-volume:,iso-memtest:,net-filesystem:,net-mountoptions:,net-path:,net-server:,syslinux-splash:,syslinux-timeout:,username:,source:,source-images:,breakpoints,conffile:,debug,force,help,quiet,usage,verbose,version --name=${PROGRAM} --options a:f:d:m:l:k:p:b:e:s:c:huv --shell sh -- "${@}"`" if [ "${?}" != "0" ] then @@ -392,8 +392,8 @@ Local_arguments () shift 2 ;; - --bootappend) - LH_BOOTAPPEND="${2}" + --bootappend-live) + LH_BOOTAPPEND_LIVE="${2}" shift 2 ;; @@ -836,9 +836,9 @@ LH_BINARY_IMAGES="${LH_BINARY_IMAGES}" # (Default: ${LH_BINARY_INDICES}) LH_BINARY_INDICES="${LH_BINARY_INDICES}" -# \$LH_BOOTAPPEND: set boot parameters +# \$LH_BOOTAPPEND_LIVE: set boot parameters # (Default: empty) -LH_BOOTAPPEND="${LH_BOOTAPPEND}" +LH_BOOTAPPEND_LIVE="${LH_BOOTAPPEND_LIVE}" # \$LH_BOOTLOADER: set bootloader # (Default: ${LH_BOOTLOADER}) |