diff options
author | William Pitcock <nenolod@dereferenced.org> | 2011-06-30 01:29:37 -0500 |
---|---|---|
committer | William Pitcock <nenolod@dereferenced.org> | 2011-06-30 01:29:37 -0500 |
commit | 479bcc87e93c1e992c3e21837bd5fc932ea819f9 (patch) | |
tree | 1bbf9720f9ff6120041d658f464f9e062825cf0a /main/syslinux/update-extlinux | |
parent | e903dbdcc2e60eeb4924c3f8466a9763f6ed2fba (diff) | |
download | aports-479bcc87e93c1e992c3e21837bd5fc932ea819f9.tar.bz2 aports-479bcc87e93c1e992c3e21837bd5fc932ea819f9.tar.xz |
main/syslinux: add $TYPE to $modules
Diffstat (limited to 'main/syslinux/update-extlinux')
-rwxr-xr-x | main/syslinux/update-extlinux | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/syslinux/update-extlinux b/main/syslinux/update-extlinux index 8a5509b9e3..25585334be 100755 --- a/main/syslinux/update-extlinux +++ b/main/syslinux/update-extlinux @@ -72,7 +72,7 @@ for kernel in $(find /boot -name vmlinuz-* -type f); do fi echo " MENU LABEL Linux $tag" >> /boot/extlinux.conf.new echo " KERNEL $(basename $kernel)" >> /boot/extlinux.conf.new - echo " APPEND $initramfs root=$root modules=$modules $default_kernel_opts" >> /boot/extlinux.conf.new + echo " APPEND $initramfs root=$root modules=$modules,$TYPE $default_kernel_opts" >> /boot/extlinux.conf.new lst=$(($lst + 1)) done |