mirror of
https://git.yoctoproject.org/poky
synced 2026-09-15 15:49:32 +02:00
packages: Separate out most of the remaining packages into recipes
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
This commit is contained in:
27
meta/recipes-devtools/yaffs2/yaffs2-utils.inc
Normal file
27
meta/recipes-devtools/yaffs2/yaffs2-utils.inc
Normal file
@@ -0,0 +1,27 @@
|
||||
DESCRIPTION = "Tools for managing 'yaffs2' file systems."
|
||||
SECTION = "base"
|
||||
HOMEPAGE = "http://www.yaffs.net"
|
||||
LICENSE = "GPLv2"
|
||||
PV = "0.0.0+cvs${SRCDATE}"
|
||||
PR = "r0"
|
||||
DEPENDS = "mtd-utils"
|
||||
|
||||
SRC_URI = "cvs://anonymous@cvs.aleph1.co.uk/home/aleph1/cvs;module=yaffs2 \
|
||||
file://mkyaffs2image.patch;patch=1"
|
||||
S = "${WORKDIR}/yaffs2"
|
||||
|
||||
CFLAGS += "-I.. -DCONFIG_YAFFS_UTIL"
|
||||
CFLAGS_append_virtclass-native = " -I.. -DCONFIG_YAFFS_UTIL"
|
||||
|
||||
do_compile() {
|
||||
cd utils && oe_runmake
|
||||
}
|
||||
|
||||
do_install() {
|
||||
install -d ${D}${sbindir}/
|
||||
for i in mkyaffsimage mkyaffs2image; do
|
||||
install -m 0755 utils/$i ${D}${sbindir}/
|
||||
done
|
||||
}
|
||||
|
||||
BBCLASSEXTEND = "native"
|
||||
Reference in New Issue
Block a user