mirror of
https://git.yoctoproject.org/poky
synced 2026-02-09 18:23:02 +01:00
[Patches]
KEEP _ignore_arch_directory_: ignore /etc/modprobe.d/arch, not sure reason now.
keep it and to be verified later
REMOVE _module-init-tools-remove-index.patch_: in upstream
NEW _disable_man.patch_: a simpler patch to replace below removed two
REMOVE _manpagesopt_: due to above new patch
REMOVE _no_man_rebuild_: ditto
KEEP _modutils_extension_: poky has its own name convention and thus need such knowledge
in code
[Recipe]
- adjust indention
- remove some old lines like ${S} and EXTRA_OECONF
Signed-off-by: Kevin Tian <kevin.tian@intel.com>
40 lines
1.1 KiB
BlitzBasic
40 lines
1.1 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
|
|
}
|