mirror of
https://git.yoctoproject.org/poky
synced 2026-02-07 17:26:36 +01:00
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>
43 lines
1.2 KiB
BlitzBasic
43 lines
1.2 KiB
BlitzBasic
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"
|