summaryrefslogtreecommitdiff
path: root/distribution/yocto-advanced/poky/meta-mini/recipes-kernel/recipes-bsp
diff options
context:
space:
mode:
authorManuel Traut <manut@linutronix.de>2016-01-12 12:00:25 +0100
committerManuel Traut <manut@linutronix.de>2016-01-12 12:00:25 +0100
commit498830a97001a793c12aef3d011c5374a05b4a83 (patch)
tree2c7e64e9ddb6556e22d21393f10cddc5bd990952 /distribution/yocto-advanced/poky/meta-mini/recipes-kernel/recipes-bsp
parentc99be12a9a7b6270e9b3db4c5f96cb8e8eb0c7c1 (diff)
mv yocto examples into example dir
Signed-off-by: Manuel Traut <manut@linutronix.de>
Diffstat (limited to 'distribution/yocto-advanced/poky/meta-mini/recipes-kernel/recipes-bsp')
-rw-r--r--distribution/yocto-advanced/poky/meta-mini/recipes-kernel/recipes-bsp/mini-image/maxi-mini-image.bb3
-rw-r--r--distribution/yocto-advanced/poky/meta-mini/recipes-kernel/recipes-bsp/mini-image/mini-image.bb2
-rw-r--r--distribution/yocto-advanced/poky/meta-mini/recipes-kernel/recipes-bsp/u-boot/u-boot-script_git.bb63
3 files changed, 0 insertions, 68 deletions
diff --git a/distribution/yocto-advanced/poky/meta-mini/recipes-kernel/recipes-bsp/mini-image/maxi-mini-image.bb b/distribution/yocto-advanced/poky/meta-mini/recipes-kernel/recipes-bsp/mini-image/maxi-mini-image.bb
deleted file mode 100644
index bae7f2a..0000000
--- a/distribution/yocto-advanced/poky/meta-mini/recipes-kernel/recipes-bsp/mini-image/maxi-mini-image.bb
+++ /dev/null
@@ -1,3 +0,0 @@
-require /home/local/src/poky/meta-mini/recipes-bsp/mini-image/mini-image.bb
-IMAGE_INSTALL = "eglibc hello hellocm autohello"
-DESCRIPTION = ""
diff --git a/distribution/yocto-advanced/poky/meta-mini/recipes-kernel/recipes-bsp/mini-image/mini-image.bb b/distribution/yocto-advanced/poky/meta-mini/recipes-kernel/recipes-bsp/mini-image/mini-image.bb
deleted file mode 100644
index 7049969..0000000
--- a/distribution/yocto-advanced/poky/meta-mini/recipes-kernel/recipes-bsp/mini-image/mini-image.bb
+++ /dev/null
@@ -1,2 +0,0 @@
-IMAGE_LINGUAS = " "
-inherit core-image
diff --git a/distribution/yocto-advanced/poky/meta-mini/recipes-kernel/recipes-bsp/u-boot/u-boot-script_git.bb b/distribution/yocto-advanced/poky/meta-mini/recipes-kernel/recipes-bsp/u-boot/u-boot-script_git.bb
deleted file mode 100644
index c0b88e1..0000000
--- a/distribution/yocto-advanced/poky/meta-mini/recipes-kernel/recipes-bsp/u-boot/u-boot-script_git.bb
+++ /dev/null
@@ -1,63 +0,0 @@
-LICENSE = "GPLv2+"
-LIC_FILES_CHKSUM = "file://Licenses/README;md5=025bf9f768cbcb1a165dbe1a110babfb"
-DEPENDS = "u-boot-mkimage-native"
-
-PV = "v2014.01+git${SRCPV}"
-
-SRCREV = "aed9475361820a65e37ed936c833322cbbc0f2b5"
-SRCBRANCH = "v2014.04-20140419"
-SRC_URI = "git://github.com/boundarydevices/u-boot-imx6.git;protocol=https;branch=${SRCBRANCH}"
-
-S = "${WORKDIR}/git"
-
-inherit deploy
-
-do_mkimage () {
-
- # allow deploy to use the ${MACHINE} name to simplify things
- if [ ! -d board/boundary/${MACHINE} ]; then
- mkdir board/boundary/${MACHINE}
- fi
- bootscript=board/boundary/nitrogen6x/6x_bootscript-yocto.txt;
- if ! [ -f $bootscript ]; then
- bootscript=board/boundary/nitrogen6x/6x_bootscript-yocto.txt;
- fi
- echo "bootscript == $bootscript"
-
- upgradescript=board/boundary/nitrogen6x/6x_upgrade.txt;
- if ! [ -f $upgradescript ]; then
- upgradescript=board/boundary/nitrogen6x/6x_upgrade.txt;
- fi
-
- uboot-mkimage -A arm -O linux -T script -C none -a 0 -e 0 \
- -n "boot script" -d $bootscript \
- board/boundary/${MACHINE}/6x_bootscript
-
- uboot-mkimage -A arm -O linux -T script -C none -a 0 -e 0 \
- -n "upgrade script" -d $upgradescript \
- board/boundary/${MACHINE}/6x_upgrade
-}
-
-addtask mkimage after do_compile before do_install
-
-do_deploy () {
- install -d ${DEPLOYDIR}
- install ${S}/board/boundary/${MACHINE}/6x_bootscript \
- ${DEPLOYDIR}/6x_bootscript-${MACHINE}-${PV}-${PR}
- install ${S}/board/boundary/${MACHINE}/6x_upgrade \
- ${DEPLOYDIR}/6x_upgrade-${MACHINE}-${PV}-${PR}
-
- cd ${DEPLOYDIR}
- rm -f 6x_bootscript-${MACHINE} 6x_upgrade-${MACHINE}
- ln -sf 6x_bootscript-${MACHINE}-${PV}-${PR} 6x_bootscript-${MACHINE}
- ln -sf 6x_upgrade-${MACHINE}-${PV}-${PR} 6x_upgrade-${MACHINE}
-}
-
-addtask deploy after do_install before do_build
-
-do_compile[noexec] = "1"
-do_install[noexec] = "1"
-do_populate_sysroot[noexec] = "1"
-
-PACKAGE_ARCH = "${MACHINE_ARCH}"
-COMPATIBLE_MACHINE = "(imx6qsabrelite)"