mirror of
https://git.yoctoproject.org/poky
synced 2026-02-08 01:36:38 +01:00
Having one monolithic packages directory makes it hard to find things and is generally overwhelming. This commit splits it into several logical sections roughly based on function, recipes.txt gives more information about the classifications used. The opportunity is also used to switch from "packages" to "recipes" as used in OpenEmbedded as the term "packages" can be confusing to people and has many different meanings. Not all recipes have been classified yet, this is just a first pass at separating things out. Some packages are moved to meta-extras as they're no longer actively used or maintained. Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
40 lines
1.1 KiB
BlitzBasic
40 lines
1.1 KiB
BlitzBasic
require module-init-tools.inc
|
|
PR = "r1"
|
|
|
|
# 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
|
|
}
|