blob: 7c68dfbe5bd71683a24b8a63043ac4d4ef4414ae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
include modutils_${PV}.oe
PR = "r4"
inherit cross
S = "${WORKDIR}/modutils-${PV}"
DEPENDS = "patcher-native"
PACKAGES = ""
SRC_URI += "file://modutils-cross/module.h.diff;patch=1"
sbindir = "${prefix}/bin"
EXTRA_OECONF_append = " --program-prefix=${TARGET_PREFIX}"
CFLAGS_prepend_mipsel = "-D__MIPSEL__"
CFLAGS_prepend_mipseb = "-D__MIPSEB__"
do_stage () {
oe_runmake install
}
do_install () {
:
}
|