mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-09-10 02:44:00 +00:00
1) crash-memory-driver: fixed typo to include proper patch
2) crash-memory-driver: keep license,...
patch against comments on pull request:
1) HOMEPAGE updated
2) UPSTREAM_CHECK_URI updated
3) exports removed
4) if [ -f "gdb-16.2.patch" ]; then... removed
5) notes about QA Issue: reference to TMPDIR [buildpaths] added
6) notes ./crash --buildinfo removed
7) LIC_FILES_CHKSUM: use license text in crash.c
8) PV = "9.0.2+git${SRCPV}" -> SRCPV removed
9) removed unused patches
10) crash: LICENSE = GPL-3.0-only
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
30 lines
797 B
BlitzBasic
30 lines
797 B
BlitzBasic
require crash.inc
|
|
|
|
BBCLASSEXTEND = "native cross"
|
|
|
|
EXTRA_OEMAKE:class-cross = 'RPMPKG="${PV}" \
|
|
GDB_TARGET="${BUILD_SYS} --target=${TARGET_SYS}" \
|
|
GDB_HOST="${BUILD_SYS}" \
|
|
GDB_MAKE_JOBS="${PARALLEL_MAKE}" \
|
|
'
|
|
|
|
EXTRA_OEMAKE:append:class-native = " LDFLAGS='${BUILD_LDFLAGS}'"
|
|
EXTRA_OEMAKE:append:class-cross = " LDFLAGS='${BUILD_LDFLAGS}'"
|
|
|
|
DEPENDS:append:class-cross = " zlib-native"
|
|
|
|
do_install:class-target () {
|
|
oe_runmake DESTDIR=${D} install
|
|
}
|
|
|
|
do_install:class-native () {
|
|
oe_runmake DESTDIR=${D}${STAGING_DIR_NATIVE} install
|
|
}
|
|
|
|
do_install:class-cross () {
|
|
install -m 0755 ${S}/crash ${D}/${bindir}
|
|
}
|
|
|
|
RDEPENDS:${PN}:class-native = ""
|
|
RDEPENDS:${PN}:class-cross = ""
|