summaryrefslogtreecommitdiffstats
path: root/recipes-kernel/linux/linux-qoriq-sdk-headers.bb
blob: 0ee4fc1d54afb1036972090cc225feb30b2b0848 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
DESCRIPTION = "Linux kernel headers for Freescale platforms"
SECTION = "devel"
LICENSE = "GPLv2"

PR = "${INC_PR}.1"

INHIBIT_DEFAULT_DEPS = "1"
PROVIDES = "linux-libc-headers ${PN}"
RPROVIDES_${PN}-dev += "linux-libc-headers-dev"
RPROVIDES_${PN}-dbg += "linux-libc-headers-dbg"
RDEPENDS_${PN}-dev = ""
RRECOMMENDS_${PN}-dbg = "linux-libc-headers-dev (= ${EXTENDPKGV})"

require recipes-kernel/linux/linux-qoriq-sdk.inc

SRC_URI_append += " file://scripts-Makefile.headersinst-install-headers-from-sc.patch"

inherit kernel-arch

do_configure() {
        oe_runmake allnoconfig
}

do_compile () {
}

do_install() {
        oe_runmake headers_install INSTALL_HDR_PATH=${D}${exec_prefix}
        # Kernel should not be exporting this header
        rm -f ${D}${exec_prefix}/include/scsi/scsi.h

        # The ..install.cmd conflicts between various configure runs
        find ${D}${includedir} -name ..install.cmd | xargs rm -f
}