diff options
author | Daniel Hellstrom <daniel@gaisler.com> | 2011-01-26 01:36:35 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-03-16 21:19:04 -0400 |
commit | 684151a75bf25f5aeb8a23010da91a34e17b7353 (patch) | |
tree | a738b589dfaf8a524a606a7b26f0f2a8d34bdd90 /arch/sparc/Kconfig | |
parent | 44ed3c0c47906297924c3fde801dc160f6996f7c (diff) |
sparc32: added U-Boot build target: uImage
This is only for LEON as u-boot for SPARC only supports LEON.
Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
Acked-by: Sam Ravnborg <sam@ravnborg.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'arch/sparc/Kconfig')
-rw-r--r-- | arch/sparc/Kconfig | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/arch/sparc/Kconfig b/arch/sparc/Kconfig index 13d2b6721da2..e48f471be547 100644 --- a/arch/sparc/Kconfig +++ b/arch/sparc/Kconfig | |||
@@ -461,6 +461,39 @@ config SPARC_LEON | |||
461 | from www.gaisler.com. You can download a sparc-linux cross-compilation | 461 | from www.gaisler.com. You can download a sparc-linux cross-compilation |
462 | toolchain at www.gaisler.com. | 462 | toolchain at www.gaisler.com. |
463 | 463 | ||
464 | if SPARC_LEON | ||
465 | menu "U-Boot options" | ||
466 | |||
467 | config UBOOT_LOAD_ADDR | ||
468 | hex "uImage Load Address" | ||
469 | default 0x40004000 | ||
470 | ---help--- | ||
471 | U-Boot kernel load address, the address in physical address space | ||
472 | where u-boot will place the Linux kernel before booting it. | ||
473 | This address is normally the base address of main memory + 0x4000. | ||
474 | |||
475 | config UBOOT_FLASH_ADDR | ||
476 | hex "uImage.o Load Address" | ||
477 | default 0x00080000 | ||
478 | ---help--- | ||
479 | Optional setting only affecting the uImage.o ELF-image used to | ||
480 | download the uImage file to the target using a ELF-loader other than | ||
481 | U-Boot. It may for example be used to download an uImage to FLASH with | ||
482 | the GRMON utility before even starting u-boot. | ||
483 | |||
484 | config UBOOT_ENTRY_ADDR | ||
485 | hex "uImage Entry Address" | ||
486 | default 0xf0004000 | ||
487 | ---help--- | ||
488 | Do not change this unless you know what you're doing. This is | ||
489 | hardcoded by the SPARC32 and LEON port. | ||
490 | |||
491 | This is the virtual address u-boot jumps to when booting the Linux | ||
492 | Kernel. | ||
493 | |||
494 | endmenu | ||
495 | endif | ||
496 | |||
464 | endmenu | 497 | endmenu |
465 | 498 | ||
466 | menu "Bus options (PCI etc.)" | 499 | menu "Bus options (PCI etc.)" |