e2fsprogs: add initramfs support, include e2fsck to initramfs

Signed-off-by: Stephan Raue <stephan@openelec.tv>
This commit is contained in:
Stephan Raue 2014-05-25 19:22:15 +02:00
parent 0cae567bc0
commit 48ef37a2f7
2 changed files with 40 additions and 1 deletions

View File

@ -23,7 +23,7 @@ PKG_ARCH="any"
PKG_LICENSE="GPL"
PKG_SITE="http://www.openelec.tv"
PKG_URL=""
PKG_DEPENDS_TARGET="toolchain libc:init busybox:init linux:init plymouth-lite:init diskdev_cmds:init"
PKG_DEPENDS_TARGET="toolchain libc:init busybox:init linux:init plymouth-lite:init diskdev_cmds:init e2fsprogs:init"
PKG_PRIORITY="optional"
PKG_SECTION="virtual"
PKG_SHORTDESC="initramfs: Metapackage for installing initramfs"

View File

@ -24,6 +24,7 @@ PKG_LICENSE="GPL"
PKG_SITE="http://e2fsprogs.sourceforge.net/"
PKG_URL="$SOURCEFORGE_SRC/$PKG_NAME/$PKG_NAME/1.42/$PKG_NAME-$PKG_VERSION.tar.gz"
PKG_DEPENDS_TARGET="toolchain"
PKG_DEPENDS_INIT="toolchain"
PKG_PRIORITY="optional"
PKG_SECTION="tools"
PKG_SHORTDESC="e2fsprogs: Utilities for use with the ext2 filesystem"
@ -63,6 +64,34 @@ PKG_CONFIGURE_OPTS_TARGET="--prefix=/usr \
--disable-rpath \
--with-gnu-ld"
PKG_CONFIGURE_OPTS_INIT="--prefix=/ \
--bindir=/bin \
--sbindir=/sbin \
--enable-verbose-makecmds \
--enable-symlink-install \
--enable-symlink-build \
--disable-compression \
--disable-htree \
--disable-elf-shlibs \
--disable-bsd-shlibs \
--disable-profile \
--disable-jbd-debug \
--disable-blkid-debug \
--disable-testio-debug \
--enable-libuuid \
--enable-libblkid \
--disable-debugfs \
--disable-imager \
--disable-resizer \
--enable-fsck \
--disable-e2initrd-helper \
--enable-tls \
--disable-uuidd \
--disable-nls \
--disable-rpath \
--with-gnu-ld"
pre_configure_target() {
# e2fsprogs fails to build with LTO support on gcc-4.9
strip_lto
@ -79,3 +108,13 @@ post_makeinstall_target() {
rm -rf $INSTALL/sbin/logsave
rm -rf $INSTALL/sbin/mklost+found
}
pre_configure_init() {
# e2fsprogs fails to build with LTO support on gcc-4.9
strip_lto
}
makeinstall_init() {
mkdir -p $INSTALL/sbin
cp e2fsck/e2fsck $INSTALL/sbin
}