# HG changeset patch # User Pascal Bellard # Date 1241680186 -7200 # Node ID 8785eea6ab59a1ce0bbe5a6a71fddaa56d3eb16a # Parent 089faf1045bc5f6a3ff39d2cb4e2e97e4884f7c3 Do not use busybox depmod diff -r 089faf1045bc -r 8785eea6ab59 busybox-pam/receipt --- a/busybox-pam/receipt Thu May 07 07:54:25 2009 +0200 +++ b/busybox-pam/receipt Thu May 07 09:09:46 2009 +0200 @@ -49,6 +49,7 @@ genpkg_rules() { cp -a $src/_install/* $fs + rm -f $fs/sbin/depmod cp -a stuff/etc $fs mkdir -p $fs/etc/init.d # Busybox config files. diff -r 089faf1045bc -r 8785eea6ab59 busybox/receipt --- a/busybox/receipt Thu May 07 07:54:25 2009 +0200 +++ b/busybox/receipt Thu May 07 09:09:46 2009 +0200 @@ -46,6 +46,7 @@ genpkg_rules() { cp -a $src/_install/* $fs + rm -f $fs/sbin/depmod mkdir -p $fs/etc/init.d # Busybox config files. cp stuff/busybox.conf $fs/etc diff -r 089faf1045bc -r 8785eea6ab59 depmod/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/depmod/receipt Thu May 07 09:09:46 2009 +0200 @@ -0,0 +1,17 @@ +# SliTaz package receipt. + +PACKAGE="depmod" +VERSION="3.2" +CATEGORY="base-system" +SHORT_DESC="Kernel modules dependancy tool." +MAINTAINER="pascal.bellard@slitaz.org" +DEPENDS="zlib lzlib" +WEB_SITE="http://ftp.kernel.org/pub/linux/utils/kernel/module-init-tools/" +WANTED="module-init-tools" + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/sbin + cp $_pkg/sbin/depmod $fs/sbin +} diff -r 089faf1045bc -r 8785eea6ab59 module-init-tools/receipt --- a/module-init-tools/receipt Thu May 07 07:54:25 2009 +0200 +++ b/module-init-tools/receipt Thu May 07 09:09:46 2009 +0200 @@ -5,7 +5,7 @@ CATEGORY="base-system" SHORT_DESC="Kernel modules manipulation tools." MAINTAINER="pascal.bellard@slitaz.org" -DEPENDS="zlib lzlib" +DEPENDS="zlib lzlib depmod" TARBALL="$PACKAGE-$VERSION.tar.gz" WEB_SITE="http://ftp.kernel.org/pub/linux/utils/kernel/module-init-tools/" WGET_URL="${WEB_SITE}$TARBALL" @@ -29,7 +29,6 @@ genpkg_rules() { mkdir -p $fs/sbin $fs/etc - cp $_pkg/sbin/depmod $fs/sbin cp $_pkg/sbin/insmod $fs/sbin cp $_pkg/sbin/modinfo $fs/sbin cp $_pkg/sbin/modprobe $fs/sbin