main/mkinitfs: fix crc32 module deps for ext4

ref #7611
This commit is contained in:
Natanael Copa 2017-08-03 15:02:34 +02:00
parent f05d7396b5
commit 32dd6f16bf
2 changed files with 37 additions and 2 deletions

View File

@ -0,0 +1,33 @@
From 9d2040756a0b701c79140f14ce7c8d53d66a2d40 Mon Sep 17 00:00:00 2001
From: Natanael Copa <ncopa@alpinelinux.org>
Date: Thu, 3 Aug 2017 14:59:48 +0200
Subject: [PATCH] features: ext4 needs crc32
ref #7611
fix a duplicate in xfs while at it
---
features.d/ext4.modules | 2 ++
features.d/xfs.modules | 1 -
2 files changed, 2 insertions(+), 1 deletion(-)
diff --git a/features.d/ext4.modules b/features.d/ext4.modules
index a5bb1c3..45eaf5e 100644
--- a/features.d/ext4.modules
+++ b/features.d/ext4.modules
@@ -1 +1,3 @@
+kernel/arch/*/crypto/crc32*
+kernel/crypto/crc32*
kernel/fs/ext4
diff --git a/features.d/xfs.modules b/features.d/xfs.modules
index 2b7fd53..cbf9f0b 100644
--- a/features.d/xfs.modules
+++ b/features.d/xfs.modules
@@ -1,4 +1,3 @@
kernel/arch/*/crypto/crc32*
-kernel/arch/*/crypto/crc32*
kernel/crypto/crc32*
kernel/fs/xfs
--
2.13.2

View File

@ -2,7 +2,7 @@
pkgname=mkinitfs
pkgver=3.1.0
_ver=${pkgver%_git*}
pkgrel=0
pkgrel=1
pkgdesc="Tool to generate initramfs images for Alpine"
url="http://git.alpinelinux.org/cgit/mkinitfs"
makedepends_build=""
@ -12,6 +12,7 @@ depends="busybox apk-tools>=2.0 lddtree>=1.25"
install="$pkgname.pre-upgrade $pkgname.post-install $pkgname.post-upgrade"
triggers="$pkgname.trigger=/usr/share/kernel/*"
source="http://dev.alpinelinux.org/archive/$pkgname/$pkgname-$_ver.tar.xz
0001-features-ext4-needs-crc32.patch
"
arch="all"
license="GPL2"
@ -27,4 +28,5 @@ package() {
make install DESTDIR="$pkgdir" || return 1
}
sha512sums="ec80702c6b41cb7898679377bef949cc1079b006c2dcc760c801f60a411eb1d3b3fd34ae2088b0bd3779202953466bce6efd62253d93dda32a8bca9bcd8942fc mkinitfs-3.1.0.tar.xz"
sha512sums="ec80702c6b41cb7898679377bef949cc1079b006c2dcc760c801f60a411eb1d3b3fd34ae2088b0bd3779202953466bce6efd62253d93dda32a8bca9bcd8942fc mkinitfs-3.1.0.tar.xz
e66961014d5d68c6e5a529f365f2d8d17fb0c10892b4a61d0c7838ae01ed11f1749912badd902af3a9b5452de72647dd007dda1653c4b0fcd9a6b95e7bf834b9 0001-features-ext4-needs-crc32.patch"