diff options
author | Phil Blundell <philb@gnu.org> | 2009-06-05 12:01:26 +0100 |
---|---|---|
committer | Phil Blundell <philb@gnu.org> | 2009-06-05 12:01:26 +0100 |
commit | ec553931380d33ae62daff5963f3aab6aa7fa2b0 (patch) | |
tree | 790924b2aa3a3636b8e588a231989b42b21724c4 /recipes/u-boot/u-boot_git.bb | |
parent | 559b91e22f1548eca55642ffbcd113928ed0e655 (diff) | |
parent | 84da8738de685a0cce37759ac3aa08c1579d9427 (diff) |
Merge branch 'org.openembedded.dev' of git@new.openembedded.org:openembedded into org.openembedded.dev
Diffstat (limited to 'recipes/u-boot/u-boot_git.bb')
-rw-r--r-- | recipes/u-boot/u-boot_git.bb | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/recipes/u-boot/u-boot_git.bb b/recipes/u-boot/u-boot_git.bb index ebe686c378..1cf4b2c426 100644 --- a/recipes/u-boot/u-boot_git.bb +++ b/recipes/u-boot/u-boot_git.bb @@ -55,6 +55,12 @@ SRCREV_sequoa = "cf3b41e0c1111dbb865b6e34e9f3c3d3145a6093" SRC_URI = "git://www.denx.de/git/u-boot.git;protocol=git " SRC_URI_sequoia = "git://www.denx.de/git/u-boot.git;protocol=git;tag=cf3b41e0c1111dbb865b6e34e9f3c3d3145a6093 " +SRC_URI_mini2440 = "git://repo.or.cz/u-boot-openmoko/mini2440.git;protocol=git;branch=dev-mini2440-stable" +SRCREV_mini2440 = "3516c35fb777ca959e5cadf2156a792ca10e1cff" + +SRC_URI_micro2440 = "git://repo.or.cz/u-boot-openmoko/mini2440.git;protocol=git;branch=dev-mini2440-stable" +SRCREV_micro2440 = "3516c35fb777ca959e5cadf2156a792ca10e1cff" + SRC_URI_neuros-osd2 += "file://Makefile-fix.patch;patch=1" SRC_URI_append_akita = "file://pdaXrom-u-boot.patch;patch=1 \ file://uboot-eabi-fix-HACK2.patch;patch=1 \ @@ -83,3 +89,12 @@ do_configure_prepend_spitz() { do_configure_prepend_c7x0() { sed -i s:ROOT_FLASH_SIZE:${ROOT_FLASH_SIZE}:g ${S}/include/configs/corgi.h } + +do_deploy_prepend_mini2440() { + cp ${S}/u-boot-nand16k.bin ${S}/u-boot.bin +} + +do_deploy_prepend_micro2440() { + cp ${S}/u-boot-nand16k.bin ${S}/u-boot.bin +} + |