diff options
11 files changed, 145 insertions, 174 deletions
diff --git a/main/openrc/0001-call-sbin-mkmntdirs-in-localmount-OpenRC-service.patch b/main/openrc/0001-call-sbin-mkmntdirs-in-localmount-OpenRC-service.patch index 5a3eb69190..f6996b3fc7 100644 --- a/main/openrc/0001-call-sbin-mkmntdirs-in-localmount-OpenRC-service.patch +++ b/main/openrc/0001-call-sbin-mkmntdirs-in-localmount-OpenRC-service.patch @@ -1,24 +1,25 @@ -From 4af966ca19380c00f04e4f7ab88362050a8e6559 Mon Sep 17 00:00:00 2001 +From 94742e085ac96d366401df883df96d35d0eafd5a Mon Sep 17 00:00:00 2001 From: Natanael Copa <ncopa@alpinelinux.org> -Date: Wed, 17 Aug 2016 17:38:20 +0200 +Date: Wed, 1 Feb 2017 04:04:52 +0000 Subject: [PATCH 1/7] call /sbin/mkmntdirs in localmount OpenRC service --- - init.d/localmount.in | 1 + - 1 file changed, 1 insertion(+) + init.d/localmount.in | 2 ++ + 1 file changed, 2 insertions(+) diff --git a/init.d/localmount.in b/init.d/localmount.in -index d2c9321..a9bba15 100644 +index cae80c34..3dbb375b 100644 --- a/init.d/localmount.in +++ b/init.d/localmount.in -@@ -21,6 +21,7 @@ depend() +@@ -21,6 +21,8 @@ depend() start() { + [ -x /sbin/mkmntdirs ] && mkmntdirs ++ # Mount local filesystems in /etc/fstab. + # The types variable must start with no, and must be a type local critical= types="noproc" x= no_netdev= rc= - for x in $net_fs_list $extra_net_fs_list; do -- -2.9.3 +2.11.0 diff --git a/main/openrc/0002-force-root-be-rw-before-localmount.patch b/main/openrc/0002-force-root-be-rw-before-localmount.patch index 7c14c94a28..5ee5de8b80 100644 --- a/main/openrc/0002-force-root-be-rw-before-localmount.patch +++ b/main/openrc/0002-force-root-be-rw-before-localmount.patch @@ -1,6 +1,6 @@ -From 485b33d2474c040d433b0e7b6e1b5cc81b280a70 Mon Sep 17 00:00:00 2001 +From f0f00e6845edaf75e8b8d5f4ca49035d0ee657cb Mon Sep 17 00:00:00 2001 From: Natanael Copa <ncopa@alpinelinux.org> -Date: Wed, 17 Aug 2016 17:13:20 +0200 +Date: Wed, 1 Feb 2017 04:05:44 +0000 Subject: [PATCH 2/7] force root be rw before localmount The service that pulls in root remount is mtab which we dont need/use. @@ -9,7 +9,7 @@ The service that pulls in root remount is mtab which we dont need/use. 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init.d/localmount.in b/init.d/localmount.in -index a9bba15..ed8fb85 100644 +index 3dbb375b..c349c951 100644 --- a/init.d/localmount.in +++ b/init.d/localmount.in @@ -13,7 +13,7 @@ description="Mounts disks and swap according to /etc/fstab." @@ -22,5 +22,5 @@ index a9bba15..ed8fb85 100644 after lvm modules keyword -docker -jail -lxc -prefix -systemd-nspawn -vserver -- -2.9.3 +2.11.0 diff --git a/main/openrc/0003-sysctl-add-compatibility-for-busybox-sysctl.patch b/main/openrc/0003-sysctl-add-compatibility-for-busybox-sysctl.patch new file mode 100644 index 0000000000..3803bcca81 --- /dev/null +++ b/main/openrc/0003-sysctl-add-compatibility-for-busybox-sysctl.patch @@ -0,0 +1,46 @@ +From ed120780512b6dd0bfabba0ea59d06d1099924b0 Mon Sep 17 00:00:00 2001 +From: William Pitcock <nenolod@dereferenced.org> +Date: Wed, 1 Feb 2017 04:08:33 +0000 +Subject: [PATCH 3/7] sysctl: add compatibility for busybox sysctl + +--- + init.d/sysctl.in | 21 +++++++++++++++++++-- + 1 file changed, 19 insertions(+), 2 deletions(-) + +diff --git a/init.d/sysctl.in b/init.d/sysctl.in +index cb756f3a..fc22364b 100644 +--- a/init.d/sysctl.in ++++ b/init.d/sysctl.in +@@ -38,10 +38,27 @@ BSD_sysctl() + + Linux_sysctl() + { +- local quiet ++ local quiet retval=0 + yesno $rc_verbose || quiet=-q + +- sysctl ${quiet} --system ++ set -- ++ eindent ++ for i in /run/sysctl.d/*.conf \ ++ /etc/sysctl.d/*.conf \ ++ /usr/local/lib/sysctl.d/*.conf \ ++ /usr/lib/sysctl.d/*.conf \ ++ /lib/sysctl.d/*.conf \ ++ /etc/sysctl.conf; do ++ if [ -e "$i" ]; then ++ vebegin "applying $conf" ++ sysctl ${quiet} -p "$i" ++ retval=$(( $retval + $? )) ++ veend $retval ++ fi ++ done ++ eoutdent ++ ++ return $retval + } + + start() +-- +2.11.0 + diff --git a/main/openrc/0003-sysctl.Linux.in-fix-for-busybox-sysctl.patch b/main/openrc/0003-sysctl.Linux.in-fix-for-busybox-sysctl.patch deleted file mode 100644 index 22f1a626d8..0000000000 --- a/main/openrc/0003-sysctl.Linux.in-fix-for-busybox-sysctl.patch +++ /dev/null @@ -1,42 +0,0 @@ -From 67cea9c310c90198f7f788d6ac1a90b8ed57183c Mon Sep 17 00:00:00 2001 -From: Natanael Copa <ncopa@alpinelinux.org> -Date: Wed, 17 Aug 2016 17:14:37 +0200 -Subject: [PATCH 3/7] sysctl.Linux.in: fix for busybox sysctl - -busybox sysctl does not support --system ---- - init.d/sysctl.Linux.in | 17 ++++++++++++++--- - 1 file changed, 14 insertions(+), 3 deletions(-) - -diff --git a/init.d/sysctl.Linux.in b/init.d/sysctl.Linux.in -index f5e0ab6..e1a1932 100644 ---- a/init.d/sysctl.Linux.in -+++ b/init.d/sysctl.Linux.in -@@ -17,10 +17,21 @@ depend() - - start() - { -- local quiet -+ local quiet rc=0 - yesno $rc_verbose || quiet=-q - - ebegin "Configuring kernel parameters" -- sysctl ${quiet} --system -- eend $? "Unable to configure some kernel parameters" -+ set -- -+ for i in /run/sysctl.d/*.conf \ -+ /etc/sysctl.d/*.conf \ -+ /usr/local/lib/sysctl.d/*.conf \ -+ /usr/lib/sysctl.d/*.conf \ -+ /lib/sysctl.d/*.conf \ -+ /etc/sysctl.conf; do -+ if [ -e "$i" ]; then -+ sysctl ${quiet} -p "$i" -+ rc=$(( $rc + $? )) -+ fi -+ done -+ eend $rc "Unable to configure some kernel parameters" - } --- -2.9.3 - diff --git a/main/openrc/0005-hide-error-when-migrating-var-run-to-run.patch b/main/openrc/0004-hide-error-when-migrating-var-run-to-run.patch index bc096195d6..801d3b2363 100644 --- a/main/openrc/0005-hide-error-when-migrating-var-run-to-run.patch +++ b/main/openrc/0004-hide-error-when-migrating-var-run-to-run.patch @@ -1,7 +1,7 @@ -From 1cbf5a9babbe35de0791c6ccc7e02c3553682300 Mon Sep 17 00:00:00 2001 +From 496b984f889531bf629d77a5fa2211f8cb0a1183 Mon Sep 17 00:00:00 2001 From: Natanael Copa <ncopa@alpinelinux.org> Date: Wed, 17 Aug 2016 17:18:21 +0200 -Subject: [PATCH 5/7] hide error when migrating /var/run to /run +Subject: [PATCH 4/7] hide error when migrating /var/run to /run The script tries to copy non-existing files. We simply hide the error @@ -11,7 +11,7 @@ http://bugs.alpinelinux.org/issues/3160 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init.d/bootmisc.in b/init.d/bootmisc.in -index efc1c57..6e473ad 100644 +index efc1c572..6e473ade 100644 --- a/init.d/bootmisc.in +++ b/init.d/bootmisc.in @@ -112,7 +112,7 @@ migrate_to_run() @@ -24,5 +24,5 @@ index efc1c57..6e473ad 100644 eend $? fi -- -2.9.3 +2.11.0 diff --git a/main/openrc/0004-swap-only-unmount-tmpfs-when-shutting-down.patch b/main/openrc/0004-swap-only-unmount-tmpfs-when-shutting-down.patch deleted file mode 100644 index 5d19293f05..0000000000 --- a/main/openrc/0004-swap-only-unmount-tmpfs-when-shutting-down.patch +++ /dev/null @@ -1,30 +0,0 @@ -From 751d17bcdb7306f46179b403cfafc88c39bf3b25 Mon Sep 17 00:00:00 2001 -From: Natanael Copa <ncopa@alpinelinux.org> -Date: Wed, 17 Aug 2016 17:15:25 +0200 -Subject: [PATCH 4/7] swap: only unmount tmpfs when shutting down - -http://bugs.alpinelinux.org/issues/711 ---- - init.d/swap.in | 6 ++++-- - 1 file changed, 4 insertions(+), 2 deletions(-) - -diff --git a/init.d/swap.in b/init.d/swap.in -index 4fb2b35..093d19f 100644 ---- a/init.d/swap.in -+++ b/init.d/swap.in -@@ -32,8 +32,10 @@ stop() - - # Try to unmount all tmpfs filesystems not in use, else a deadlock may - # occur. As $RC_SVCDIR may also be tmpfs we cd to it to lock it -- cd "$RC_SVCDIR" -- umount -a -t tmpfs 2>/dev/null -+ if [ "$RC_RUNLEVEL" = "shutdown" ]; then -+ cd "$RC_SVCDIR" -+ umount -a -t tmpfs 2>/dev/null -+ fi - - case "$RC_UNAME" in - NetBSD|OpenBSD) swapctl -U -t noblk >/dev/null;; --- -2.9.3 - diff --git a/main/openrc/0006-rc-pull-in-sysinit-and-boot-as-stacked-levels-when-n.patch b/main/openrc/0005-rc-pull-in-sysinit-and-boot-as-stacked-levels-when-n.patch index b31d7b34d5..eb1ad14085 100644 --- a/main/openrc/0006-rc-pull-in-sysinit-and-boot-as-stacked-levels-when-n.patch +++ b/main/openrc/0005-rc-pull-in-sysinit-and-boot-as-stacked-levels-when-n.patch @@ -1,7 +1,7 @@ -From 284053cf953511fd4c5c2d0da144e623fd92cdb7 Mon Sep 17 00:00:00 2001 +From b62d7b9438af6dac50d52708777070f312e6650c Mon Sep 17 00:00:00 2001 From: Natanael Copa <ncopa@alpinelinux.org> -Date: Wed, 17 Aug 2016 17:19:20 +0200 -Subject: [PATCH 6/7] rc: pull in sysinit and boot as stacked levels when +Date: Wed, 1 Feb 2017 04:17:14 +0000 +Subject: [PATCH 5/7] rc: pull in sysinit and boot as stacked levels when needed We need start services from sysinit and boot runlevel, even if the new @@ -21,34 +21,34 @@ Fixes issue #54. 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/rc/rc.c b/src/rc/rc.c -index ed06bf7..a9cfd11 100644 +index 110591e4..13a7e0d4 100644 --- a/src/rc/rc.c +++ b/src/rc/rc.c -@@ -741,6 +741,7 @@ int main(int argc, char **argv) - static RC_STRINGLIST *types_nw; - static RC_STRINGLIST *types_nwua; - static RC_DEPTREE *deptree; +@@ -738,6 +738,7 @@ int main(int argc, char **argv) + const char *bootlevel = NULL; + char *newlevel = NULL; + const char *systype = NULL; + RC_STRINGLIST *runlevel_chain; RC_STRINGLIST *deporder = NULL; RC_STRINGLIST *tmplist; RC_STRING *service; -@@ -996,6 +997,7 @@ int main(int argc, char **argv) - hotplugged_services = rc_services_in_state(RC_SERVICE_HOTPLUGGED); - start_services = rc_services_in_runlevel_stacked(newlevel ? +@@ -993,6 +994,7 @@ int main(int argc, char **argv) + main_hotplugged_services = rc_services_in_state(RC_SERVICE_HOTPLUGGED); + main_start_services = rc_services_in_runlevel_stacked(newlevel ? newlevel : runlevel); + runlevel_chain = rc_runlevel_stacks(newlevel ? newlevel : runlevel); if (strcmp(newlevel ? newlevel : runlevel, RC_LEVEL_SHUTDOWN) != 0 && strcmp(newlevel ? newlevel : runlevel, RC_LEVEL_SYSINIT) != 0) { -@@ -1013,6 +1015,7 @@ int main(int argc, char **argv) +@@ -1010,6 +1012,7 @@ int main(int argc, char **argv) tmplist = rc_services_in_runlevel(bootlevel); - TAILQ_CONCAT(start_services, tmplist, entries); + TAILQ_CONCAT(main_start_services, tmplist, entries); free(tmplist); + rc_stringlist_add(runlevel_chain, bootlevel); } - if (hotplugged_services) { - TAILQ_FOREACH(service, hotplugged_services, -@@ -1021,6 +1024,7 @@ int main(int argc, char **argv) + if (main_hotplugged_services) { + TAILQ_FOREACH(service, main_hotplugged_services, +@@ -1018,6 +1021,7 @@ int main(int argc, char **argv) service->value); } } @@ -56,10 +56,10 @@ index ed06bf7..a9cfd11 100644 } parallel = rc_conf_yesno("rc_parallel"); -@@ -1077,9 +1081,6 @@ int main(int argc, char **argv) +@@ -1074,9 +1078,6 @@ int main(int argc, char **argv) /* If we have a list of services to start then... */ - if (start_services) { + if (main_start_services) { - /* Get a list of the chained runlevels which compose the target runlevel */ - RC_STRINGLIST *runlevel_chain = rc_runlevel_stacks(runlevel); - @@ -67,5 +67,5 @@ index ed06bf7..a9cfd11 100644 RC_STRING *rlevel; TAILQ_FOREACH_REVERSE(rlevel, runlevel_chain, rc_stringlist, entries) -- -2.9.3 +2.11.0 diff --git a/main/openrc/0006-mount-efivars-read-only.patch b/main/openrc/0006-mount-efivars-read-only.patch new file mode 100644 index 0000000000..656cefa197 --- /dev/null +++ b/main/openrc/0006-mount-efivars-read-only.patch @@ -0,0 +1,27 @@ +From 6658bee44645724c17f6b41ab0cf146e5e0c0248 Mon Sep 17 00:00:00 2001 +From: Natanael Copa <ncopa@alpinelinux.org> +Date: Wed, 1 Feb 2017 04:18:53 +0000 +Subject: [PATCH 6/7] mount efivars read-only + +unintentional writes to efivars may result in bricked hardware. mount it +read-only to play safe. +--- + init.d/sysfs.in | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/init.d/sysfs.in b/init.d/sysfs.in +index 6d6ec62c..235aebc3 100644 +--- a/init.d/sysfs.in ++++ b/init.d/sysfs.in +@@ -111,7 +111,7 @@ mount_misc() + ! mountinfo -q /sys/firmware/efi/efivars; then + if grep -qs efivarfs /proc/filesystems; then + ebegin "Mounting efivarfs filesystem" +- mount -n -t efivarfs -o ${sysfs_opts} \ ++ mount -n -t efivarfs -o ro,${sysfs_opts} \ + efivarfs /sys/firmware/efi/efivars + eend $? + fi +-- +2.11.0 + diff --git a/main/openrc/0008-make-consolefont-service-compatible-with-busyboxs-se.patch b/main/openrc/0007-make-consolefont-service-compatible-with-busyboxs-se.patch index df2ffb702b..6c23e2ab06 100644 --- a/main/openrc/0008-make-consolefont-service-compatible-with-busyboxs-se.patch +++ b/main/openrc/0007-make-consolefont-service-compatible-with-busyboxs-se.patch @@ -1,7 +1,7 @@ -From 89433b052ae581dca15a7aa2e6da17b27c2ee80b Mon Sep 17 00:00:00 2001 +From 3d0d2b89745597ea973129eafa3f999cf19d761f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B6ren=20Tempel?= <soeren+git@soeren-tempel.net> Date: Wed, 17 Aug 2016 17:52:58 +0200 -Subject: [PATCH 8/8] make consolefont service compatible with busyboxs setfont +Subject: [PATCH 7/7] make consolefont service compatible with busyboxs setfont applet Compared to kdbs setfont program it doesn't support -O and -m. @@ -11,7 +11,7 @@ Compared to kdbs setfont program it doesn't support -O and -m. 2 files changed, 4 insertions(+), 14 deletions(-) diff --git a/conf.d/consolefont b/conf.d/consolefont -index e01ae84..75544b2 100644 +index e01ae842..75544b2f 100644 --- a/conf.d/consolefont +++ b/conf.d/consolefont @@ -3,16 +3,9 @@ @@ -34,7 +34,7 @@ index e01ae84..75544b2 100644 -#unicodemap="iso01" +#consoletranslation="8859-1_to_uni.trans" diff --git a/init.d/consolefont.in b/init.d/consolefont.in -index 9fe95af..173ed42 100644 +index 9fe95afa..173ed426 100644 --- a/init.d/consolefont.in +++ b/init.d/consolefont.in @@ -22,7 +22,6 @@ start() @@ -66,5 +66,5 @@ index 9fe95af..173ed42 100644 return $retval -- -2.9.3 +2.11.0 diff --git a/main/openrc/0007-mount-efivars-read-only.patch b/main/openrc/0007-mount-efivars-read-only.patch deleted file mode 100644 index fccd39ffca..0000000000 --- a/main/openrc/0007-mount-efivars-read-only.patch +++ /dev/null @@ -1,27 +0,0 @@ -From 79ec18e070f7ff4a93c5f8bd4d821eee7c21558f Mon Sep 17 00:00:00 2001 -From: Natanael Copa <ncopa@alpinelinux.org> -Date: Wed, 17 Aug 2016 17:20:15 +0200 -Subject: [PATCH 7/7] mount efivars read-only - -unintentional writes to efivars may result in bricked hardware. mount it -read-only to play safe. ---- - init.d/sysfs.in | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/init.d/sysfs.in b/init.d/sysfs.in -index 6929810..3e4c26c 100644 ---- a/init.d/sysfs.in -+++ b/init.d/sysfs.in -@@ -105,7 +105,7 @@ mount_misc() - modprobe -q efivarfs - if grep -qs efivarfs /proc/filesystems; then - ebegin "Mounting efivarfs filesystem" -- mount -n -t efivarfs -o ${sysfs_opts} \ -+ mount -n -t efivarfs -o ro,${sysfs_opts} \ - efivarfs /sys/firmware/efi/efivars - eend $? - fi --- -2.9.3 - diff --git a/main/openrc/APKBUILD b/main/openrc/APKBUILD index 85ad939b5e..30628aa8c4 100644 --- a/main/openrc/APKBUILD +++ b/main/openrc/APKBUILD @@ -1,8 +1,8 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=openrc -pkgver=0.21.7 +pkgver=0.23.2 _ver=${pkgver/_git*/} -pkgrel=4 +pkgrel=0 pkgdesc="OpenRC manages the services, startup and shutdown of a host" url="http://git.overlays.gentoo.org/gitweb/?p=proj/openrc.git" arch="all" @@ -15,12 +15,11 @@ source="$pkgname-$pkgver.tar.gz::https://github.com/OpenRC/openrc/archive/$pkgve 0001-call-sbin-mkmntdirs-in-localmount-OpenRC-service.patch 0002-force-root-be-rw-before-localmount.patch - 0003-sysctl.Linux.in-fix-for-busybox-sysctl.patch - 0004-swap-only-unmount-tmpfs-when-shutting-down.patch - 0005-hide-error-when-migrating-var-run-to-run.patch - 0006-rc-pull-in-sysinit-and-boot-as-stacked-levels-when-n.patch - 0007-mount-efivars-read-only.patch - 0008-make-consolefont-service-compatible-with-busyboxs-se.patch + 0003-sysctl-add-compatibility-for-busybox-sysctl.patch + 0004-hide-error-when-migrating-var-run-to-run.patch + 0005-rc-pull-in-sysinit-and-boot-as-stacked-levels-when-n.patch + 0006-mount-efivars-read-only.patch + 0007-make-consolefont-service-compatible-with-busyboxs-se.patch openrc.logrotate hostname.initd @@ -71,15 +70,14 @@ package() { install -d "$pkgdir"/etc/local.d "$pkgdir"/run } -md5sums="50cd24a1bfc3ef2f82b81cd44b5aeb66 openrc-0.21.7.tar.gz -ac16fca77d315dd92ef39db43dd2b39c 0001-call-sbin-mkmntdirs-in-localmount-OpenRC-service.patch -58f42bb7ba1eb8bfc07554dc150a8a6c 0002-force-root-be-rw-before-localmount.patch -04bcb11513ad0178fc00508f288b2160 0003-sysctl.Linux.in-fix-for-busybox-sysctl.patch -9fc84b1130c7a0ad93553c8808af1476 0004-swap-only-unmount-tmpfs-when-shutting-down.patch -2ba09bebca524be06bd2ba9eeabd1be6 0005-hide-error-when-migrating-var-run-to-run.patch -f402d67b185803ea899053c3bccfc87c 0006-rc-pull-in-sysinit-and-boot-as-stacked-levels-when-n.patch -63a6b0e12a5c71d66c1dcb64bc907b6d 0007-mount-efivars-read-only.patch -fdb251e2c6cdc7ec6911bc5dbac88ac3 0008-make-consolefont-service-compatible-with-busyboxs-se.patch +md5sums="0a39c94b4b88faa87fc3a4445757fc94 openrc-0.23.2.tar.gz +02f4e31e32f9a3e39d18ac584535e085 0001-call-sbin-mkmntdirs-in-localmount-OpenRC-service.patch +4d9990a419c9482e0c381508a3571f0e 0002-force-root-be-rw-before-localmount.patch +70c05e5415b5733f075a6e25bf264b8f 0003-sysctl-add-compatibility-for-busybox-sysctl.patch +1c0fdb51605c1690ae6c81a7913ae8c2 0004-hide-error-when-migrating-var-run-to-run.patch +4c244568d93ab91117a122f3d26895bf 0005-rc-pull-in-sysinit-and-boot-as-stacked-levels-when-n.patch +43b372f599764f1054d113b12e33e4f7 0006-mount-efivars-read-only.patch +9665f09b75a8ce5e0ae53d88fd53daef 0007-make-consolefont-service-compatible-with-busyboxs-se.patch d83df5513f08f09fa9e7353327701bf7 openrc.logrotate 60b4cf93ca19aff577fd743ab42878a8 hostname.initd dddb3d66d87e4cc503c8513e7b0e666a hwdrivers.initd @@ -89,15 +87,14 @@ dddb3d66d87e4cc503c8513e7b0e666a hwdrivers.initd ead05c56ea93a420dd280eba243b5e5b networking.initd c1ec888202d868710b5749f7b217d1e3 modloop.confd 8a49d8ae0ec6502d0b5ddb568e73138d sysfsconf.initd" -sha256sums="522409fb65f4c751e7d01faec54a9446501837abc9e6ee1bea868cb88e4bd603 openrc-0.21.7.tar.gz -9dc7b80480ea8c54fe4fd3967098906d3c535ff420879bb5d8d646e5f7f627bf 0001-call-sbin-mkmntdirs-in-localmount-OpenRC-service.patch -28648317df903af33e369397f52285f8a865b6151f8a89f4d490e28bcebf13b0 0002-force-root-be-rw-before-localmount.patch -d6418b65b9f2f8f31f7b87fb5a3d38baf836b4eed6544f2a6a2b980fd6cc30dd 0003-sysctl.Linux.in-fix-for-busybox-sysctl.patch -6fe8105fe7b18f8d529ee07b4ec53985db84b141cbf5f675c242e09d8c8ebc3b 0004-swap-only-unmount-tmpfs-when-shutting-down.patch -47188ade6627eeadcd9934976f131b7dea574192219be895a9802f6c24d56e09 0005-hide-error-when-migrating-var-run-to-run.patch -0447481a30d1af83293861cf53eef9b0b241d02eeb015e2d10b310acea126c9b 0006-rc-pull-in-sysinit-and-boot-as-stacked-levels-when-n.patch -cd35c4040a9b21da394c598a8996390dab1c520e93e84707014094ab82827163 0007-mount-efivars-read-only.patch -bddeb20a3bfba12b7e8d88cb75143e301e49a47c06235483f500565eff64310c 0008-make-consolefont-service-compatible-with-busyboxs-se.patch +sha256sums="244a9902a98694a7fd59ad3dec49bd9e61a6b22864795ed31ef8fc81aa474251 openrc-0.23.2.tar.gz +0a4edea94da4c7c9e13df8bd7836834e1a29bac9d582295e6a737f5580f47936 0001-call-sbin-mkmntdirs-in-localmount-OpenRC-service.patch +c495add3bc867604f757df0cbdd0fb486b7a082eeec383065dcd8f478146b6ce 0002-force-root-be-rw-before-localmount.patch +4e344ea28a77682b576baf1683f145b143529a64f330fe332402b23f4dbf095a 0003-sysctl-add-compatibility-for-busybox-sysctl.patch +08f6b6e05ed614b5bc750e17fbe97dc14d365d3efdbd24a4aa33a3301c4edc9f 0004-hide-error-when-migrating-var-run-to-run.patch +4f2c30bd06ec997991057a9e2850d0181163394bf3583fb7b9fec0fedbf1971a 0005-rc-pull-in-sysinit-and-boot-as-stacked-levels-when-n.patch +87265e603e229bdd07a6be845b69aa38d7e6356830e1d66fc59352ff953c1aa2 0006-mount-efivars-read-only.patch +20725b5a98da2932db3f5daa5112ab09e590ca0fec4cf8763612b0d6ca046428 0007-make-consolefont-service-compatible-with-busyboxs-se.patch 30a81fb2f761083088d4d6a3d435fc842966d44588e9837b45ffd03e48be6eb6 openrc.logrotate dda515d7d906cebcf4137746939f3fdccc7f504fe097ef1dbf429e3e6773a013 hostname.initd 381ba933e6bc545a738ca0d12de9052e90381a850c4a5682b8603f00be64ac81 hwdrivers.initd @@ -107,15 +104,14 @@ af015110acf1f24024f2c21e69042a5ac313c90c88bfb1a653d03d33721c9929 modloop.initd d925fd36f0a5b85bc6fddfc5e4bee0ab2198577944c11c065a9ff551d046529a networking.initd a5a0316cd59f5401b1d789bb466c98186201277ba6f014017b14965fcc10c254 modloop.confd 63e7b8c3118612d250f55a711c3e8f0fd328ddd54464e50d0425496cc580beb4 sysfsconf.initd" -sha512sums="3b04af849550a7fb7fbc441a666a9562692e5e3fed0c27e92cf5d98345953ddd2e76177646b9ccc29903c097f89ce588cefc82f66f4dddb36a496e05811a926b openrc-0.21.7.tar.gz -33bb89638bce6908911643d78586bd24b1a009eec0379a6e7b93ea360dda8512de3730583d177f68f81b6777d6c4ef5a70f1731ad040826f1133c9345486e5d8 0001-call-sbin-mkmntdirs-in-localmount-OpenRC-service.patch -a7468878fdb47de7b0e26eb5a664401e914332e173c5c0a4a3b50ac40f4f20ba750da9600bf1521501d5a5e73ac5f9f17254ccfd17ab6bdcbc8c04fce2a4ef68 0002-force-root-be-rw-before-localmount.patch -4d790d2e0b2ff05580f7481a800e8b77fd7015218d3177e156710e9470ee5b29a0a1c97d5af4ce3a4f5cf7724b67c0eb02cf8c87f3ed82b090b95914d8d9bde8 0003-sysctl.Linux.in-fix-for-busybox-sysctl.patch -e68933f16a2112fdf41bf9827266dd776801656a656fb961c17bb5eaf483e4791e46594b6b47b221a826a83a76e51cd0ec2f0f74c3c6b4b3ac0c0c96ff2f53f1 0004-swap-only-unmount-tmpfs-when-shutting-down.patch -c70d0bb6c8149c370231ef875d37fcfc77a3a6b0511252161abd9c5141bd14d2e12ae74f208f9b8e26057579cb732dad71ce7c1731d79273634d4d69f412565f 0005-hide-error-when-migrating-var-run-to-run.patch -769712a6ad7d401a03b15a29dbe5cb62e67e289a5ff252b470b43a265c7cd51a8bb4819d645c29eb10abdf39d9f705173d1b53d23608f638be7917a6d83a7fc7 0006-rc-pull-in-sysinit-and-boot-as-stacked-levels-when-n.patch -e1d23634e7b6d68c488efefa5a4c5b1ca59385eaab298bd3ac88903f60dd5b20d634da4c837c5a2fed012ec8b07894547984c0646aef7a3b2ab41250e778a874 0007-mount-efivars-read-only.patch -ee9152339674d4cf5609f01a110938ed9817b719679466d71a3ddf192ccaaceb1a7a49a09c2f4f51ec19b85ec9c0ec2ff68765013d8350b9d0d8671e509d5c55 0008-make-consolefont-service-compatible-with-busyboxs-se.patch +sha512sums="6c8483d36812d21ba45bf3c386c6f1c03a9c01c10f48b7e7eb26707d105568b8017ba8a7728a794ac0ac6fedab10cea2bc9587f4d5ddb1957001e03f872e8f18 openrc-0.23.2.tar.gz +71fce711adbcb411189a089f1d49567c50348e12c42b7a9c9b582dae5d18051f88ccf81c768337e87d6792d953e84d1e8b93d7978a1947d7d20ef3b1cd330875 0001-call-sbin-mkmntdirs-in-localmount-OpenRC-service.patch +a229dc9e2037a9ab87858f1a8be2a55bfa351125c3051a60a6e9096e6d0d606832766ebe5302aab88ae15e1aa2c416403701e3c283b45ab16f1e458cc3ac40cd 0002-force-root-be-rw-before-localmount.patch +9dea3fcdb90e3e8078a771beefeba3ca91b9966a1b8ee9ff96cf460e7dd21abbc4a46a501a960c3edf5a76c083c2cf60ccb06d9da7a4c6df2a50660745beb278 0003-sysctl-add-compatibility-for-busybox-sysctl.patch +d54630d40a2d6b10a325cb012d4efcda997a60c008ca953ce5d60059d3f267308a59dabddf93a5fc0d301aa91967137d144effbe5f574394af768ce4ebc48738 0004-hide-error-when-migrating-var-run-to-run.patch +39a35c54ec9112fe84c901ed155a711cec8e194af02d5483ee60b80743dab12391e6fdc7b3da2f86844dd4edcf53e681ff95bd4d6fa1101a89ce54dce2ddbb7c 0005-rc-pull-in-sysinit-and-boot-as-stacked-levels-when-n.patch +af69800eafc08754193833ba06cf20f45c0113715e9f7252eac846fe6bc306a33839d43431b439191667e6f0beb052dc5a2f840325b7cbf270bda014a8ede638 0006-mount-efivars-read-only.patch +234c4f3cf39df3350dbea25c00b8d584794b28194f44c726767a6a16d91a26fee1b5d2dd16635f19803fc015b4e9d99c52b23128e6b815938b88365feba8cf59 0007-make-consolefont-service-compatible-with-busyboxs-se.patch 12bb6354e808fbf47bbab963de55ee7901738b4a912659982c57ef2777fff9a670e867fcb8ec316a76b151032c92dc89a950d7d1d835ef53f753a8f3b41d2cec openrc.logrotate 99b542c0903ad6874b8c308b2e0660a4fe2ff9db962dfec65325cd12c368873a2ae800d5e6d42dc4deff775e1d5c0068869eb72581f7ab16e88d5738afe1d3dd hostname.initd c06eac7264f6cc6888563feeae5ca745aae538323077903de1b19102e4f16baa34c18b8c27af5dd5423e7670834e2261e9aa55f2b1ec8d8fdc2be105fe894d55 hwdrivers.initd |