mirror of
https://git.yoctoproject.org/poky
synced 2026-07-27 19:37:10 +00:00
modules-init-tools(-cross): update to 3.16
Update to get support for Linux 3.0. Delete the ignore_arch_directory.patch (as it does not apply to 3.16). (From OE-Core rev: 773fc8fc45224e37d442d927ed28d50680fb954c) Signed-off-by: Anders Darander <anders@chargestorm.se> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
586ccf2a3f
commit
c878cb8ba7
@@ -0,0 +1,42 @@
|
||||
require module-init-tools.inc
|
||||
PR = "r0"
|
||||
|
||||
# autotools set prefix to /usr, however we want them in /bin and /sbin
|
||||
bindir = "/bin"
|
||||
sbindir = "/sbin"
|
||||
|
||||
do_install() {
|
||||
autotools_do_install
|
||||
for f in bin/lsmod sbin/insmod sbin/rmmod sbin/modprobe sbin/modinfo sbin/depmod; do
|
||||
mv ${D}/$f ${D}/$f.26
|
||||
done
|
||||
}
|
||||
|
||||
pkg_postinst_module-init-tools() {
|
||||
for f in sbin/insmod sbin/modprobe sbin/rmmod sbin/modinfo; do
|
||||
bn=`basename $f`
|
||||
update-alternatives --install /$f $bn /$f.26 60
|
||||
done
|
||||
update-alternatives --install /bin/lsmod bin-lsmod /bin/lsmod.26 60
|
||||
update-alternatives --install /sbin/lsmod lsmod /bin/lsmod.26 60
|
||||
}
|
||||
|
||||
pkg_prerm_module-init-tools() {
|
||||
for f in sbin/insmod sbin/modprobe sbin/rmmod sbin/modinfo; do
|
||||
bn=`basename $f`
|
||||
update-alternatives --remove $bn /$f.26
|
||||
done
|
||||
update-alternatives --remove bin-lsmod /bin/lsmod.26
|
||||
update-alternatives --remove lsmod /bin/lsmod.26
|
||||
}
|
||||
|
||||
pkg_postinst_module-init-tools-depmod() {
|
||||
update-alternatives --install /sbin/depmod depmod /sbin/depmod.26 60
|
||||
}
|
||||
|
||||
pkg_prerm_module-init-tools-depmod() {
|
||||
update-alternatives --remove depmod /sbin/depmod.26
|
||||
}
|
||||
|
||||
SRC_URI[md5sum] = "bc44832c6e41707b8447e2847d2019f5"
|
||||
SRC_URI[sha256sum] = "e1f2cdcae64a8effc25e545a5e0bdaf312f816ebbcd0916e4e87450755fab64b"
|
||||
Reference in New Issue
Block a user