summaryrefslogtreecommitdiff
path: root/meta/packages/kern-tools
diff options
context:
space:
mode:
Diffstat (limited to 'meta/packages/kern-tools')
-rw-r--r--meta/packages/kern-tools/kern-tools-native_git.bb29
1 files changed, 0 insertions, 29 deletions
diff --git a/meta/packages/kern-tools/kern-tools-native_git.bb b/meta/packages/kern-tools/kern-tools-native_git.bb
deleted file mode 100644
index 9ce5bd70b..000000000
--- a/meta/packages/kern-tools/kern-tools-native_git.bb
+++ /dev/null
@@ -1,29 +0,0 @@
-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
-}