wok-current rev 2925
Do not use busybox depmod
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Thu May 07 09:09:46 2009 +0200 (2009-05-07) |
parents | 089faf1045bc |
children | f306d126580e |
files | busybox-pam/receipt busybox/receipt depmod/receipt module-init-tools/receipt |
line diff
1.1 --- a/busybox-pam/receipt Thu May 07 07:54:25 2009 +0200 1.2 +++ b/busybox-pam/receipt Thu May 07 09:09:46 2009 +0200 1.3 @@ -49,6 +49,7 @@ 1.4 genpkg_rules() 1.5 { 1.6 cp -a $src/_install/* $fs 1.7 + rm -f $fs/sbin/depmod 1.8 cp -a stuff/etc $fs 1.9 mkdir -p $fs/etc/init.d 1.10 # Busybox config files.
2.1 --- a/busybox/receipt Thu May 07 07:54:25 2009 +0200 2.2 +++ b/busybox/receipt Thu May 07 09:09:46 2009 +0200 2.3 @@ -46,6 +46,7 @@ 2.4 genpkg_rules() 2.5 { 2.6 cp -a $src/_install/* $fs 2.7 + rm -f $fs/sbin/depmod 2.8 mkdir -p $fs/etc/init.d 2.9 # Busybox config files. 2.10 cp stuff/busybox.conf $fs/etc
3.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 3.2 +++ b/depmod/receipt Thu May 07 09:09:46 2009 +0200 3.3 @@ -0,0 +1,17 @@ 3.4 +# SliTaz package receipt. 3.5 + 3.6 +PACKAGE="depmod" 3.7 +VERSION="3.2" 3.8 +CATEGORY="base-system" 3.9 +SHORT_DESC="Kernel modules dependancy tool." 3.10 +MAINTAINER="pascal.bellard@slitaz.org" 3.11 +DEPENDS="zlib lzlib" 3.12 +WEB_SITE="http://ftp.kernel.org/pub/linux/utils/kernel/module-init-tools/" 3.13 +WANTED="module-init-tools" 3.14 + 3.15 +# Rules to gen a SliTaz package suitable for Tazpkg. 3.16 +genpkg_rules() 3.17 +{ 3.18 + mkdir -p $fs/sbin 3.19 + cp $_pkg/sbin/depmod $fs/sbin 3.20 +}
4.1 --- a/module-init-tools/receipt Thu May 07 07:54:25 2009 +0200 4.2 +++ b/module-init-tools/receipt Thu May 07 09:09:46 2009 +0200 4.3 @@ -5,7 +5,7 @@ 4.4 CATEGORY="base-system" 4.5 SHORT_DESC="Kernel modules manipulation tools." 4.6 MAINTAINER="pascal.bellard@slitaz.org" 4.7 -DEPENDS="zlib lzlib" 4.8 +DEPENDS="zlib lzlib depmod" 4.9 TARBALL="$PACKAGE-$VERSION.tar.gz" 4.10 WEB_SITE="http://ftp.kernel.org/pub/linux/utils/kernel/module-init-tools/" 4.11 WGET_URL="${WEB_SITE}$TARBALL" 4.12 @@ -29,7 +29,6 @@ 4.13 genpkg_rules() 4.14 { 4.15 mkdir -p $fs/sbin $fs/etc 4.16 - cp $_pkg/sbin/depmod $fs/sbin 4.17 cp $_pkg/sbin/insmod $fs/sbin 4.18 cp $_pkg/sbin/modinfo $fs/sbin 4.19 cp $_pkg/sbin/modprobe $fs/sbin