mirror of
https://git.yoctoproject.org/poky
synced 2026-02-09 18:23:02 +01:00
Modify linux-libc-headers-yocto to use the common linux-yocto routines, so headers exported to userspace will track the branches in the yocto kernel git repository. This commit also switches supported boards to prefer the yocto libc headers. Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
49 lines
1003 B
BlitzBasic
49 lines
1003 B
BlitzBasic
require linux-libc-headers.inc
|
|
include recipes-kernel/linux/linux-yocto.inc
|
|
|
|
B = "${S}"
|
|
|
|
INHIBIT_DEFAULT_DEPS = "1"
|
|
DEPENDS += "unifdef-native"
|
|
PROVIDES = "linux-libc-headers"
|
|
PV = "2.6.34+git-${SRCPV}"
|
|
PR = "r1"
|
|
|
|
SRC_URI = "git://git.pokylinux.org/linux-2.6-windriver.git;fullclone=1"
|
|
|
|
SRCREV_FORMAT = "meta_machine"
|
|
SRC_URI = "git://git.pokylinux.org/linux-2.6-windriver.git;protocol=git;fullclone=1;branch=${KBRANCH};name=machine \
|
|
git://git.pokylinux.org/linux-2.6-windriver.git;protocol=git;noclone=1;branch=wrs_meta;name=meta"
|
|
|
|
set_arch() {
|
|
case ${TARGET_ARCH} in
|
|
arm*) ARCH=arm ;;
|
|
i*86*) ARCH=i386 ;;
|
|
ia64*) ARCH=ia64 ;;
|
|
mips*) ARCH=mips ;;
|
|
powerpc*) ARCH=powerpc ;;
|
|
x86_64*) ARCH=x86_64 ;;
|
|
esac
|
|
}
|
|
|
|
do_configure() {
|
|
set_arch
|
|
oe_runmake allnoconfig ARCH=$ARCH
|
|
}
|
|
|
|
do_kernel_configme() {
|
|
}
|
|
|
|
do_patch () {
|
|
}
|
|
|
|
do_compile () {
|
|
}
|
|
|
|
do_install() {
|
|
set_arch
|
|
oe_runmake headers_install INSTALL_HDR_PATH=${D}${exec_prefix} ARCH=$ARCH
|
|
}
|
|
|
|
BBCLASSEXTEND = "nativesdk"
|