mirror of
https://git.yoctoproject.org/poky
synced 2026-06-15 05:40:00 +00:00
28cc7b4362
Lack of be32toh() is handled upstream since 2014. Linux 2.6.23 was released 2007, distributions with kernels older than that are far outside the host distributions still supported today. (From OE-Core rev: c4d77ddd13ad43b52f22a32dc7a3d34cc2692dce) Signed-off-by: Adrian Bunk <bunk@stusta.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
16 lines
300 B
BlitzBasic
16 lines
300 B
BlitzBasic
# Copyright (C) 2012 Khem Raj <raj.khem@gmail.com>
|
|
# Released under the MIT license (see COPYING.MIT for the terms)
|
|
|
|
require kmod.inc
|
|
|
|
DEPENDS += "zlib-native"
|
|
|
|
inherit native
|
|
|
|
do_install_append (){
|
|
for tool in depmod insmod lsmod modinfo modprobe rmmod
|
|
do
|
|
ln -s kmod ${D}${bindir}/$tool
|
|
done
|
|
}
|