angstrom-uboot-scripts: add recipe to generate .scr files easily
authorKoen Kooi <koen@openembedded.org>
Mon, 7 Sep 2009 13:40:32 +0000 (15:40 +0200)
committerKoen Kooi <koen@openembedded.org>
Mon, 7 Sep 2009 13:40:32 +0000 (15:40 +0200)
* the recipe puts them both in deploy and in ${datadir}/u-boot-scripts

recipes/angstrom/angstrom-uboot-scripts.bb [new file with mode: 0644]
recipes/angstrom/angstrom-uboot-scripts/pico.cmd [new file with mode: 0644]

diff --git a/recipes/angstrom/angstrom-uboot-scripts.bb b/recipes/angstrom/angstrom-uboot-scripts.bb
new file mode 100644 (file)
index 0000000..bcdba45
--- /dev/null
@@ -0,0 +1,36 @@
+DESCRIPTION = "Various uboot scripts"
+
+DEPENDS = "u-boot-mkimage-native"
+
+SRC_URI = "file://*.cmd"
+
+do_configure() {
+       cp ${WORKDIR}/*.cmd ${S}
+}
+
+do_compile() {
+       for i in *.cmd ; do
+               uboot-mkimage -A ${TARGET_ARCH} -O linux -T script -C none -a 0 -e 0 -n "Angstrom $i" -d $i $i.scr
+       done
+}
+
+do_install() {
+       install -d ${D}${datadir}/u-boot-scripts
+       for i in *.scr ; do
+               install -m 0644 $i ${D}${datadir}/u-boot-scripts
+       done
+}
+
+FILES_${PN} += "${datadir}"
+
+addtask deploy before do_package after do_install
+
+do_deploy() {
+       install -d ${DEPLOY_DIR_IMAGE}
+       for i in *.scr ; do
+               cp $i ${DEPLOY_DIR_IMAGE}
+               package_stagefile_shell ${DEPLOY_DIR_IMAGE}/$i
+       done
+}
+
+PACKAGE_ARCH = "${MACHINE_ARCH}"
diff --git a/recipes/angstrom/angstrom-uboot-scripts/pico.cmd b/recipes/angstrom/angstrom-uboot-scripts/pico.cmd
new file mode 100644 (file)
index 0000000..695ee26
--- /dev/null
@@ -0,0 +1,3 @@
+setenv dvimode '640x480MR-24@60'
+run loaduimage
+run mmcboot