mirror of
https://git.yoctoproject.org/poky
synced 2026-04-29 09:32:11 +02:00
By default the linux-yocto recipes operate on the current branch and use it as a trigger to locate the description of a board. This model works well when using the git repo outside of a build system since the commands can be simply invoked and will do something useful. However, it does mean that you can't have two BSPs that differ only by configuration, building out of a single branch in the repository. This means that you must have many branches for very similar BSPs. This model is still preferred, but having the choice of branching strategies is better. With this change we can have multiple BSPs using a single branch with the preferred description being hinted from the build system by passing the $machine value to updateme/configme. Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
30 lines
714 B
BlitzBasic
30 lines
714 B
BlitzBasic
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 guilt-native"
|
|
|
|
PR = r9
|
|
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
|
|
}
|