diff options
Diffstat (limited to 'meta/recipes-kernel/kern-tools')
-rw-r--r-- | meta/recipes-kernel/kern-tools/kern-tools-native_git.bb | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/meta/recipes-kernel/kern-tools/kern-tools-native_git.bb b/meta/recipes-kernel/kern-tools/kern-tools-native_git.bb new file mode 100644 index 000000000..9ce5bd70b --- /dev/null +++ b/meta/recipes-kernel/kern-tools/kern-tools-native_git.bb @@ -0,0 +1,29 @@ +DESCRIPTION = "Scripts and utilities for managing Wind River kernels." +LICENSE = "GPL" +LIC_FILES_CHKSUM = "file://git/tools/kgit;beginline=5;endline=9;md5=e2bf4415f3d843f43d2e22b0d91a6fee" + +DEPENDS = "git-native" + +PR = r5 +PV = "0.1+git${SRCPV}" + +inherit native + +SRC_URI = "git://git.pokylinux.org/wr-kernel-tools.git;protocol=git" +S = "${WORKDIR}" + +kern_tools_LIST = kgit kgit-init kgit-meta \ + kgit-checkpoint kgit-clean \ + generate_cfg kconf_check configme \ + createme updateme patchme get_defconfig scc + +do_compile() { + : +} + +do_install() { + install -d ${D}${bindir} + for s in ${kern_tools_LIST}; do + install -m 0755 ${S}/git/tools/$s ${D}${bindir} + done +} |