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 | |
parent | e903dbdcc2e60eeb4924c3f8466a9763f6ed2fba (diff) | |
download | aports-479bcc87e93c1e992c3e21837bd5fc932ea819f9.tar.bz2 aports-479bcc87e93c1e992c3e21837bd5fc932ea819f9.tar.xz |
main/syslinux: add $TYPE to $modules
Diffstat (limited to 'main')
-rw-r--r-- | main/syslinux/APKBUILD | 4 | ||||
-rwxr-xr-x | main/syslinux/update-extlinux | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/main/syslinux/APKBUILD b/main/syslinux/APKBUILD index f42a5dff7f..1097c7e9f3 100644 --- a/main/syslinux/APKBUILD +++ b/main/syslinux/APKBUILD @@ -1,7 +1,7 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=syslinux pkgver=4.04 -pkgrel=2 +pkgrel=3 pkgdesc="a boot loader for the Linux operating system which operates off an MS-DOS/Windows FAT filesystem." url="http://syslinux.org" arch="x86 x86_64" @@ -37,4 +37,4 @@ package() { md5sums="a3936208767eb7ced65320abe2e33a10 syslinux-4.04.tar.bz2 37f8ae1cbb41b68241d6027abd828318 extlinux.conf -efe69677c78d8037f62a24267d598559 update-extlinux" +0d769b8a7c01137535bbd26f130a0658 update-extlinux" 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 |