mirror of
https://git.yoctoproject.org/poky
synced 2026-02-13 12:13:02 +01:00
We can't use htobe* and be*toh functions because they are not available on older versions of glibc, For example, shipped on Centos 5.5. Change to directly calling bswap_* as defined in byteswap.h. (From OE-Core master rev: 63edb6b9a8bdf2f5541edd618f2f598185e37223) (From OE-Core rev: 2e791639625746037626e348cfac4ad1109bb9ae) Signed-off-by: Ting Liu <b28495@freescale.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Robert Yang <liezhi.yang@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
18 lines
479 B
BlitzBasic
18 lines
479 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
|
|
inherit native
|
|
|
|
SRC_URI += "file://fix-undefined-O_CLOEXEC.patch \
|
|
file://0001-Fix-build-with-older-gcc-4.6.patch \
|
|
file://Change-to-calling-bswap_-instead-of-htobe-and-be-toh.patch \
|
|
"
|
|
|
|
do_install_append (){
|
|
for tool in depmod insmod lsmod modinfo modprobe rmmod
|
|
do
|
|
ln -s kmod ${D}${bindir}/$tool
|
|
done
|
|
}
|