diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2019-12-18 18:47:10 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2019-12-18 18:48:54 +0000 |
commit | 8319c779552d6bcc19c6ea307dd1d42f2cf7f960 (patch) | |
tree | 866cb4723836f3bb0482e494861d624a8e5466bf | |
parent | 813b25bfa8f9e2b15fbed615ec24b96785e51963 (diff) | |
download | aports-8319c779552d6bcc19c6ea307dd1d42f2cf7f960.tar.bz2 aports-8319c779552d6bcc19c6ea307dd1d42f2cf7f960.tar.xz |
main/syslinux: update default config
replace ext3 with ext4
give xen dom0 384M memory by default
-rw-r--r-- | main/syslinux/APKBUILD | 4 | ||||
-rw-r--r-- | main/syslinux/update-extlinux.conf | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/main/syslinux/APKBUILD b/main/syslinux/APKBUILD index c940f4a525..363f16ca39 100644 --- a/main/syslinux/APKBUILD +++ b/main/syslinux/APKBUILD @@ -1,7 +1,7 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=syslinux pkgver=6.04_pre1 -pkgrel=5 +pkgrel=6 _ver=${pkgver/_/-} pkgdesc="Boot loader for the Linux operating system" url="http://syslinux.org" @@ -58,7 +58,7 @@ package() { } sha512sums="7927dd39be8e2dcf4138a6fea33def67d19d938379d694f15b48fdd2f5924c028b7a9e7bd71d0c7c6630c203e9e2a54296628e530632ad5e6f55b1ebefe8fc98 syslinux-6.04-pre1.tar.xz -16ac39066b6dfd7870e17b7f60934d1dcd59679aea9e8b78ea7352cf03c692d717d555bce8ed12f566864a06332e3a527551ee5974e51261157524b14e90556b update-extlinux.conf +9d2b82c91525de584daad6b0c0e2df5d13092c47e91a812e26405f5ff78d4587a8ae7f7a8590124687307f83efb15f686e4090193adc7b4e3601a4200f9283cd update-extlinux.conf bfeb911507c079c8b01027a7823e562d81100b1fcd0786c707ad33c5ce18fa0eb6d6db34bc7b6cbbc419248188970cebe8286345f4aa3662d16644c51f50b98c update-extlinux 92fa48133ef702092d7acafae0e0e20f9355cd2b5fe199b96fcccba5a1e688c360de4d069391815255f5493228ad03998d20b99748323396d20d12a1f27c60cd 0018-prevent-pow-optimization.patch 6fb63b50a6c746445a58badc81cbf8525f38e2a7868b97ac21aa9d20c162f2318fab6c25505614700033a840aa5c06c3cef3065f11b5b5f4e514474194ff4b54 fix-sysmacros.patch" diff --git a/main/syslinux/update-extlinux.conf b/main/syslinux/update-extlinux.conf index 1a5f7b310c..1dddff2263 100644 --- a/main/syslinux/update-extlinux.conf +++ b/main/syslinux/update-extlinux.conf @@ -15,7 +15,7 @@ default_kernel_opts=quiet # modules # modules which should be loaded before pivot_root -modules=sd-mod,usb-storage,ext3 +modules=sd-mod,usb-storage,ext4 # root # root device - if not specified, will be guessed using @@ -48,8 +48,8 @@ serial_baud=115200 # xen_opts # options to hand to xen hypervisor, useful ones are: -# dom0_mem=256M (give domain-0 environment 256M ram) -xen_opts=dom0_mem=256M +# dom0_mem=384M (give domain-0 environment 384M ram) +xen_opts=dom0_mem=384M # if you copy /usr/share/syslinux/reboot.c32 to /boot/, a menu entry # will be auto-generated for it |