mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 07:34:31 +00:00
751b9b5189
This patch enables the OneNAND boot within U-Boot. Before this work, we used another OneNAND IPL called X-Loader based on open source. With this work, we can build the oneboot.bin image without other program. The build sequence is simple. First, it compiles the u-boot.bin Second, it compiles OneNAND IPL Finally, it becomes the oneboot.bin from OneNAND IPL and u-boot.bin The mechanism is similar with NAND boot except it boots from itself. Another thing is that you can only use the OneNAND IPL only to work other bootloader such as RedBoot and so on. Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
14 lines
367 B
Makefile
14 lines
367 B
Makefile
#
|
|
# (C) Copyright 2005-2008 Samsung Electronics
|
|
# Kyungmin Park <kyungmin.park@samsung.com>
|
|
#
|
|
# Samsung Apollon board with OMAP2420 (ARM1136) cpu
|
|
#
|
|
# Apollon has 1 bank of 128MB mDDR-SDRAM on CS0
|
|
# Physical Address:
|
|
# 8000'0000 (bank0)
|
|
# 8800'0000 (bank1)
|
|
# Linux-Kernel is expected to be at 8000'8000, entry 8000'8000
|
|
# (mem base + reserved)
|
|
|
|
TEXT_BASE = 0x00000000
|