2012-01-12 16:48:32 +00:00
|
|
|
# Template file for 'dracut'
|
|
|
|
pkgname=dracut
|
2014-10-24 14:37:32 +00:00
|
|
|
version=040
|
2014-12-30 09:42:39 +00:00
|
|
|
revision=4
|
2014-03-14 09:42:54 +00:00
|
|
|
build_style=meta
|
2013-06-13 04:57:13 +00:00
|
|
|
hostmakedepends="libxslt docbook-xsl asciidoc"
|
2014-10-25 09:09:56 +00:00
|
|
|
depends="psmisc cpio"
|
2014-01-01 15:10:11 +00:00
|
|
|
conf_files="/etc/dracut.conf"
|
|
|
|
make_dirs="
|
|
|
|
/etc/dracut.conf.d 0755 root root
|
|
|
|
/usr/lib/dracut/dracut.conf.d 0755 root root"
|
2012-05-27 07:57:11 +00:00
|
|
|
homepage="http://www.kernel.org/pub/linux/utils/boot/dracut/dracut.html"
|
2012-01-12 16:48:32 +00:00
|
|
|
short_desc="A new initramfs infrastructure"
|
|
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
2012-05-27 07:57:11 +00:00
|
|
|
license="GPL-2"
|
2012-07-03 07:24:40 +00:00
|
|
|
distfiles="${KERNEL_SITE}/utils/boot/$pkgname/$pkgname-$version.tar.xz"
|
2014-10-24 14:37:32 +00:00
|
|
|
checksum=b6e743353804b46e350177b9ecb9a8511df7e8c4ff9e0b4f3b4f72bc509c98a3
|
2012-01-13 11:19:30 +00:00
|
|
|
|
2013-10-10 07:57:50 +00:00
|
|
|
do_build() {
|
2014-10-24 14:37:32 +00:00
|
|
|
export CFLAGS="$CFLAGS -Wformat"
|
2013-10-10 07:57:50 +00:00
|
|
|
make ${makejobs} sysconfdir=/etc systemdsystemunitdir=/usr/lib/systemd/system
|
|
|
|
}
|
|
|
|
do_install() {
|
2012-01-13 11:19:30 +00:00
|
|
|
# fix path to busybox.
|
2012-05-27 07:57:11 +00:00
|
|
|
sed -i "s|/sbin/busybox|/bin/busybox|g" modules.d/05busybox/module-setup.sh
|
2013-10-10 07:57:50 +00:00
|
|
|
make DESTDIR=${DESTDIR} sysconfdir=/etc systemdsystemunitdir=/usr/lib/systemd/system install
|
2014-10-25 09:09:56 +00:00
|
|
|
# Remove --rsyncable argument for gzip WTF??
|
|
|
|
sed -i 's,--rsyncable,,g' ${DESTDIR}/usr/bin/dracut
|
2013-10-10 07:57:50 +00:00
|
|
|
|
2012-05-29 12:30:26 +00:00
|
|
|
# kernel hooks.
|
2013-10-10 07:57:50 +00:00
|
|
|
vinstall ${FILESDIR}/kernel-hook-postinst 755 etc/kernel.d/post-install 10-dracut
|
|
|
|
vinstall ${FILESDIR}/kernel-hook-postrm 755 etc/kernel.d/post-remove 10-dracut
|
2012-05-29 12:30:26 +00:00
|
|
|
}
|
2013-04-12 07:46:44 +00:00
|
|
|
|
|
|
|
dracut-network_package() {
|
2014-04-28 10:04:01 +00:00
|
|
|
depends="dracut-${version}_${revision}"
|
2013-06-13 04:55:10 +00:00
|
|
|
short_desc+=" - network modules"
|
2013-04-12 07:46:44 +00:00
|
|
|
noarch=yes
|
|
|
|
pkg_install() {
|
|
|
|
for f in 40network 90livenet 95fcoe 95iscsi \
|
|
|
|
95nbd 95nfs 95zfcp 95znet; do
|
|
|
|
vmove usr/lib/dracut/modules.d/${f}
|
|
|
|
done
|
|
|
|
}
|
|
|
|
}
|