This website works better with JavaScript.
Explore
Help
Sign In
Whitebox
/
u-boot
Watch
1
Star
0
Fork
You've already forked u-boot
0
Code
Issues
Pull Requests
Releases
Wiki
Activity
upstream u-boot with additional patches for our devices/boards:
https://lists.denx.de/pipermail/u-boot/2017-March/282789.html
(AXP crashes) ; Gbit ethernet patch for some LIME2 revisions ; with SPI flash support
28375
Commits
3
Branches
0
Tags
148 MiB
Tree:
20c34115d6
u-boot
/
configs
/
grsim_leon2_defconfig
4 lines
75 B
Raw
Normal View
History
Unescape
Escape
sparc: move CONFIG_SYS_TEXT_BASE to Kconfig Defining CONFIG_SYS_TEXT_BASE in config.mk is very old style. Create CONFIG_SYS_TEXT_BASE option in Kconfig, but let it depend on CONFIG_SPARC because we do not want to disturb the other architectures that still define CONFIG_SYS_TEXT_BASE in their header files. Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com> Cc: Daniel Hellstrom <daniel@gaisler.com>
10 years ago
CONFIG_SYS_TEXT_BASE=0x00000000
kconfig: add board Kconfig and defconfig files This commit adds: - arch/${ARCH}/Kconfig provide a menu to select target boards - board/${VENDOR}/${BOARD}/Kconfig or board/${BOARD}/Kconfig set CONFIG macros to the appropriate values for each board - configs/${TARGET_BOARD}_defconfig default setting of each board (This commit was automatically generated by a conversion script based on boards.cfg) In Linux Kernel, defconfig files are located under arch/${ARCH}/configs/ directory. It works in Linux Kernel since ARCH is always given from the command line for cross compile. But in U-Boot, ARCH is not given from the command line. Which means we cannot know ARCH until the board configuration is done. That is why all the "*_defconfig" files should be gathered into a single directory ./configs/. Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com> Acked-by: Simon Glass <sjg@chromium.org>
11 years ago
CONFIG_SPARC=y
CONFIG_TARGET_GRSIM_LEON2=y