diff options
author | Daniel Baumann <daniel@debian.org> | 2008-08-14 21:33:56 +0200 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2011-03-09 19:03:39 +0100 |
commit | 3e3bb4260766082847fb162baf1a99aa4fbf7c49 (patch) | |
tree | 3ca00b38e66da4a2bd0bf83a1503e89a41ca47b6 /helpers/lh_config | |
parent | fe8484f3cd11620e793dba71425abcb3cde9757e (diff) | |
download | vyos-live-build-3e3bb4260766082847fb162baf1a99aa4fbf7c49.tar.gz vyos-live-build-3e3bb4260766082847fb162baf1a99aa4fbf7c49.zip |
Moving win32-loader inclusion support from external hook into main program (Closes: #476546).
Diffstat (limited to 'helpers/lh_config')
-rwxr-xr-x | helpers/lh_config | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/helpers/lh_config b/helpers/lh_config index f7f0cbd3b..f7a46e2ce 100755 --- a/helpers/lh_config +++ b/helpers/lh_config @@ -114,11 +114,12 @@ USAGE="${PROGRAM} [--apt apt|aptitude]\n\ \t [--union-filesystem aufs|unionfs]\n\ \t [--exposed-root enabled|disabled]\n\ \t [--username NAME]\n\ -\t [--verbose]" +\t [--verbose]\n\" +\t [--win32-loader enabled|disabled]" Local_arguments () { - ARGUMENTS="$(getopt --longoptions apt:,apt-ftp-proxy:,apt-http-proxy:,apt-pdiffs:,apt-options:,aptitute-options:,apt-pipeline:,apt-recommends:,apt-secure:,bootstrap:,cache:,cache-indices:,cache-packages:,cache-stages:,debconf-frontend:,debconf-nowarnings:,debconf-priority:,genisoimage:,initramfs:,fdisk:,losetup:,mode:,root-command:,use-fakeroot:,tasksel:,includes:,templates:,architecture:,bootstrap-config:,bootstrap-flavour:,bootstrap-keyring:,distribution:,mirror-bootstrap:,mirror-chroot:,mirror-chroot-security:,mirror-binary:,mirror-binary-security:,sections:,chroot-filesystem:,union-filesystem:,exposed-root:,hooks:,interactive:,keyring-packages:,language:,linux-flavours:,linux-packages:,packages:,packages-lists:,tasks:,security:,symlinks:,sysvinit:,binary-filesystem:,binary-images:,binary-indices:,bootappend-install:,bootappend-live:,bootloader:,checksums:,chroot-build:,debian-installer:,,debian-installer-distribution:,debian-installer-preseedfile:,encryption:,grub-splash:,hostname:,iso-application:,iso-preparer:,iso-publisher:,iso-volume:,jffs2-eraseblock:,memtest:,net-root-filesystem:,net-root-mountoptions:,net-root-path:,net-root-server:,net-cow-filesystem:,net-cow-mountoptions:,net-cow-path:,net-cow-server:,net-tarball:,syslinux-splash:,syslinux-timeout:,syslinux-menu:,username:,source:,source-images:,breakpoints,conffile:,debug,force,help,ignore-system-defaults,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-options:,aptitute-options:,apt-pipeline:,apt-recommends:,apt-secure:,bootstrap:,cache:,cache-indices:,cache-packages:,cache-stages:,debconf-frontend:,debconf-nowarnings:,debconf-priority:,genisoimage:,initramfs:,fdisk:,losetup:,mode:,root-command:,use-fakeroot:,tasksel:,includes:,templates:,architecture:,bootstrap-config:,bootstrap-flavour:,bootstrap-keyring:,distribution:,mirror-bootstrap:,mirror-chroot:,mirror-chroot-security:,mirror-binary:,mirror-binary-security:,sections:,chroot-filesystem:,union-filesystem:,exposed-root:,hooks:,interactive:,keyring-packages:,language:,linux-flavours:,linux-packages:,packages:,packages-lists:,tasks:,security:,symlinks:,sysvinit:,binary-filesystem:,binary-images:,binary-indices:,bootappend-install:,bootappend-live:,bootloader:,checksums:,chroot-build:,debian-installer:,,debian-installer-distribution:,debian-installer-preseedfile:,encryption:,grub-splash:,hostname:,iso-application:,iso-preparer:,iso-publisher:,iso-volume:,jffs2-eraseblock:,memtest:,net-root-filesystem:,net-root-mountoptions:,net-root-path:,net-root-server:,net-cow-filesystem:,net-cow-mountoptions:,net-cow-path:,net-cow-server:,net-tarball:,syslinux-splash:,syslinux-timeout:,syslinux-menu:,username,:win32-loader:,source:,source-images:,breakpoints,conffile:,debug,force,help,ignore-system-defaults,quiet,usage,verbose,version--name=${PROGRAM} --options a:f:d:m:l:k:p:b:e:s:c:huv --shell sh -- "${@}")" if [ "${?}" != "0" ] then @@ -589,6 +590,11 @@ Local_arguments () shift 2 ;; + --win32-loader) + LH_WIN32_LOADER="${2}" + shift 2 + ;; + # config/source --source) LH_SOURCE="${2}" @@ -1044,6 +1050,10 @@ LH_JFFS2_ERASEBLOCK="" # (Default: ${LH_MEMTEST}) LH_MEMTEST="${LH_MEMTEST}" +# \$LH_WIN32_LOADER: set win32-loader +# (Default: ${LH_WIN32_LOADER}) +LH_WIN32_LOADER="${LH_WIN32_LOADER}) + # \$LH_NET_ROOT_FILESYSTEM: set netboot filesystem # (Default: ${LH_NET_ROOT_FILESYSTEM}) LH_NET_ROOT_FILESYSTEM="${LH_NET_ROOT_FILESYSTEM}" |