blob: 579af3658e73c5bbcaecdf3c07a55dccf8f46bad (
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
|
# the binaries are statical linked against klibc
require kexec-tools.inc
PR = "r8"
DEPENDS = "klibc"
SRC_URI += "file://kexec-static.patch;patch=1 \
file://kexec-klibc.patch;patch=1 \
"
S = "${WORKDIR}/kexec-tools-${PV}"
EXTRA_OECONF = " --without-zlib"
# reset inherited OE flags to avoid e.g. ggdb3 and keep size small
export CFLAGS=""
export CPPFLAGS=""
export LDFLAGS=""
export CC=${TARGET_PREFIX}klcc
PACKAGES =+ "kexec-klibc-static kdump-klibc-static"
FILES_kexec-klibc-static = "${sbindir}/kexec"
FILES_kdump-klibc-static = "${sbindir}/kdump"
|