From 7e312e0bb87d0e8c6c0c469036873648eb841749 Mon Sep 17 00:00:00 2001 From: Natanael Copa Date: Fri, 7 Jan 2011 13:34:33 +0000 Subject: main/mkinitfs: upgrade to 2.3.0 --- ...01-init-support-lvm-ontop-of-raid-devices.patch | 63 ---------------------- main/mkinitfs/APKBUILD | 8 ++- 2 files changed, 3 insertions(+), 68 deletions(-) delete mode 100644 main/mkinitfs/0001-init-support-lvm-ontop-of-raid-devices.patch (limited to 'main/mkinitfs') diff --git a/main/mkinitfs/0001-init-support-lvm-ontop-of-raid-devices.patch b/main/mkinitfs/0001-init-support-lvm-ontop-of-raid-devices.patch deleted file mode 100644 index fe28fdfa6f..0000000000 --- a/main/mkinitfs/0001-init-support-lvm-ontop-of-raid-devices.patch +++ /dev/null @@ -1,63 +0,0 @@ -From d869559037802dcef6e2cd8551ab3ac0ececf690 Mon Sep 17 00:00:00 2001 -From: Natanael Copa -Date: Fri, 24 Dec 2010 15:31:54 +0000 -Subject: [PATCH] init: support lvm ontop of raid devices - ---- - initramfs-init.in | 19 ++++++++++++------- - 1 files changed, 12 insertions(+), 7 deletions(-) - -diff --git a/initramfs-init.in b/initramfs-init.in -index 81b7150..d140d75 100755 ---- a/initramfs-init.in -+++ b/initramfs-init.in -@@ -173,6 +173,14 @@ setup_inittab_console(){ - done - } - -+# start lvm if exists -+start_lvm() { -+ [ -x /sbin/lvm ] || return -+ modprobe dm-mod -+ lvm vgscan --mknodes --ignorelockingfailure >/dev/null 2>&1 &&\ -+ lvm vgchange --ignorelockingfailure -a y >/dev/null 2>&1 -+} -+ - # gotta start from somewhere :) - echo "Alpine Init $VERSION" - -@@ -260,13 +268,6 @@ scan_drivers - scan_drivers - eend 0 - --# start lvm if exists --if [ -x /sbin/lvm ]; then -- modprobe dm-mod -- lvm vgscan --mknodes --ignorelockingfailure >/dev/null 2>&1 &&\ -- lvm vgchange --ignorelockingfailure -a y >/dev/null 2>&1 --fi -- - # check if root=... was set - if [ -n "$KOPT_root" ]; then - if [ "$SINGLEMODE" = "yes" ]; then -@@ -282,6 +283,7 @@ if [ -n "$KOPT_root" ]; then - raidautorun "$KOPT_root" - ;; - esac -+ start_lvm - ebegin "Mounting root" - retry_mount -o ro $KOPT_root $sysroot 2>/dev/null - eend $? -@@ -297,6 +299,9 @@ if [ -n "$KOPT_root" ]; then - exec /bin/busybox sh - fi - -+# incase we have alpine_dev on raid device... -+start_lvm -+ - # we only want to wait for usb if really needed at this point - if [ -z "${ALPINE_DEV##*usb*}" ]; then - wait_usb --- -1.7.3.4 - diff --git a/main/mkinitfs/APKBUILD b/main/mkinitfs/APKBUILD index 4d04a1f055..a659a5f195 100644 --- a/main/mkinitfs/APKBUILD +++ b/main/mkinitfs/APKBUILD @@ -1,13 +1,12 @@ # Maintainer: Natanael Copa pkgname=mkinitfs -pkgver=2.2.0 -pkgrel=1 +pkgver=2.3.0 +pkgrel=0 pkgdesc="Tool to generate initramfs images for Alpine" url=http://git.alpinelinux.org/cgit/mkinitfs depends="busybox apk-tools>=2.0" triggers="$pkgname.trigger:/usr/share/kernel/*" source="http://git.alpinelinux.org/cgit/$pkgname/snapshot/$pkgname-$pkgver.tar.bz2 - 0001-init-support-lvm-ontop-of-raid-devices.patch eglibc.patch " arch="all" @@ -43,6 +42,5 @@ package() { cd "$srcdir"/$pkgname-$pkgver make install DESTDIR="$pkgdir" || return 1 } -md5sums="b3abed1ee80ae69947350b795c7211e5 mkinitfs-2.2.0.tar.bz2 -eeb2edd5c5db0b00d10eea57132e0249 0001-init-support-lvm-ontop-of-raid-devices.patch +md5sums="fb53ace85fc7d1980bc19cb258ed00c4 mkinitfs-2.3.0.tar.bz2 e59c2f7de496fe430b07e32fd812ebe0 eglibc.patch" -- cgit v1.2.3