ARM: Add URLs for MLO and U-Boot binaries

taken from http://gumstix.org/how-to/70-writing-images-to-flash.html
This commit is contained in:
François Revol
2014-11-01 02:27:57 +01:00
parent f680a1a723
commit b1d21fa3e8
+22
View File
@@ -20,6 +20,28 @@ HAIKU_BOARD_LOADER_FAKE_OS = netbsd ;
# (must be different than real load address) # (must be different than real load address)
HAIKU_BOARD_LOADER_UIBASE = 0x84000000 ; HAIKU_BOARD_LOADER_UIBASE = 0x84000000 ;
#
# Flash image
#
# OMAP x-loader image, must be first file in Flash image
HAIKU_BOARD_MLO_IMAGE ?= MLO ;
HAIKU_BOARD_MLO_IMAGE_URL =
http://cumulus.gumstix.org/images/angstrom/developer/current/MLO ;
# u-boot binary image filename, to build the flash image
# XXX: Locate it somehow (for now just put it in generated/)
HAIKU_BOARD_UBOOT_IMAGE ?= u-boot.bin ;
HAIKU_BOARD_UBOOT_IMAGE_URL =
http://cumulus.gumstix.org/images/angstrom/developer/current/u-boot.bin ;
mloFile = [ DownloadFile $(HAIKU_BOARD_MLO_IMAGE)
: $(HAIKU_BOARD_MLO_IMAGE_URL) ] ;
ubootFile = [ DownloadFile $(HAIKU_BOARD_UBOOT_IMAGE)
: $(HAIKU_BOARD_UBOOT_IMAGE_URL) ] ;
# #
# mmc/SD image # mmc/SD image
# #