mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-16 16:27:27 +00:00
8f0de34919
Signed-off-by: Matthew McClintock <msm@freescale.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
31 lines
654 B
BlitzBasic
31 lines
654 B
BlitzBasic
DESCRIPTION = "Builds cramfs filesystems for embedded systems"
|
|
LICENSE = "GPLv2"
|
|
LIC_FILES_CHKSUM = "file://${WORKDIR}/linux/COPYING;md5=9579385572eb40eded61dcb07e0038a4"
|
|
DEPENDS = "zlib"
|
|
SRCDATE = "20110110"
|
|
PV = "1.1+cvs${SRCDATE}"
|
|
PR = "r1"
|
|
|
|
SRC_URI = "cvs://anonymous@cramfs.cvs.sourceforge.net/cvsroot/cramfs;module=linux"
|
|
S = "${WORKDIR}/linux/scripts/cramfs"
|
|
|
|
EXTRA_OEMAKE = "\
|
|
'CC=${CC}' \
|
|
'CFLAGS=${CFLAGS}' \
|
|
'LDFLAGS=${LDFLAGS}' \
|
|
"
|
|
|
|
|
|
do_compile_prepend() {
|
|
ln -sf GNUmakefile Makefile
|
|
}
|
|
|
|
do_install() {
|
|
install -d ${D}${bindir}
|
|
install mkcramfs ${D}${bindir}
|
|
install cramfsck ${D}${bindir}
|
|
}
|
|
|
|
BBCLASSEXTEND = "native"
|
|
|