From: Koen Kooi Date: Mon, 7 Sep 2009 13:40:32 +0000 (+0200) Subject: angstrom-uboot-scripts: add recipe to generate .scr files easily X-Git-Tag: Release-2010-05/1~2504 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4f2d73c53ab0b10d5c9660c14611a0e65773ad2f;p=openembedded.git angstrom-uboot-scripts: add recipe to generate .scr files easily * the recipe puts them both in deploy and in ${datadir}/u-boot-scripts --- diff --git a/recipes/angstrom/angstrom-uboot-scripts.bb b/recipes/angstrom/angstrom-uboot-scripts.bb new file mode 100644 index 0000000000..bcdba45d9f --- /dev/null +++ b/recipes/angstrom/angstrom-uboot-scripts.bb @@ -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 index 0000000000..695ee26357 --- /dev/null +++ b/recipes/angstrom/angstrom-uboot-scripts/pico.cmd @@ -0,0 +1,3 @@ +setenv dvimode '640x480MR-24@60' +run loaduimage +run mmcboot