diff options
author | Michel Pollet <buserror@gmail.com> | 2009-04-04 16:49:22 +0100 |
---|---|---|
committer | Florian Boor <florian.boor@kernelconcepts.de> | 2009-06-04 17:54:46 +0200 |
commit | 6e8356065687546693129064226d0bcdb238d750 (patch) | |
tree | 26617498782e7e2ee2240ad9b94a2842ef7b0439 /conf | |
parent | 23a25eecdea20e7b58291410204a78feb2351af9 (diff) |
Added support for u-boot git
Automagically load u-boot git and build that.
Make sure we use the 16k aligned one, so it can
be flashed with mtd_debug.
Signed-off-by: Michel Pollet <buserror@gmail.com>
Diffstat (limited to 'conf')
-rw-r--r-- | conf/machine/mini2440.conf | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/conf/machine/mini2440.conf b/conf/machine/mini2440.conf index 5ac3765666..f72bb24f9c 100644 --- a/conf/machine/mini2440.conf +++ b/conf/machine/mini2440.conf @@ -5,6 +5,7 @@ TARGET_ARCH = "arm" +PREFERRED_VERSION_u-boot = "git" PREFERRED_PROVIDER_virtual/kernel = "linux-mini2440" # used by sysvinit_2 @@ -15,10 +16,10 @@ IMAGE_DEVICE_TABLES = "files/device_table-minimal.txt \ IMAGE_FSTYPES = "jffs2 ext3 tar.gz" -MACHINE_FEATURES = "kernel26 touchscreen screen lcd rgb16" +MACHINE_FEATURES = "kernel26 uboot touchscreen screen lcd rgb16" MACHINE_FEATURES += "usbhost usbgadget" MACHINE_FEATURES += "i2c spi" -MACHINE_FEATURES += "mmc mmcroot" +MACHINE_FEATURES += "mmc mmcroot vfat" MACHINE_FEATURES += "ethernet" MACHINE_FEATURES += "sound alsa" @@ -26,9 +27,5 @@ KERNEL_IMAGETYPE = "uImage" require conf/machine/include/tune-arm920t.inc -#FEED_ARCH = "armv4t" -#BASE_PACKAGE_ARCH = "armv4t" -#TARGET_CC_ARCH = "-marm -march=armv4t -mtune=arm920t" -#PACKAGE_EXTRA_ARCHS += "armv4 armv4t" - +EXTRA_IMAGEDEPENDS += "u-boot" EXTRA_IMAGECMD_jffs2 = "--pad --little-endian --squash -s 0x200 -n -e 16KiB" |