diff options
author | Simon Glass <sjg@chromium.org> | 2015-08-30 16:55:41 -0600 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2015-09-02 21:28:24 -0600 |
commit | 17aa548cedd9a4c063590d29ac27160dc67f47f9 (patch) | |
tree | 0f57ba0e658d3d8891aea4a4cf6581c6b31c75d1 /board/firefly/firefly-rk3288/Kconfig | |
parent | 1b2fd5bf4eedfaf5af9d8fc219781fb521d12c7a (diff) | |
download | u-boot-imx-17aa548cedd9a4c063590d29ac27160dc67f47f9.zip u-boot-imx-17aa548cedd9a4c063590d29ac27160dc67f47f9.tar.gz u-boot-imx-17aa548cedd9a4c063590d29ac27160dc67f47f9.tar.bz2 |
rockchip: Add basic support for firefly-rk3288
The Firefly RK3288 is a suitable target board for initial mainline Rockchip
support. It includes a good set of peripherals, a recent SoC and it is
readily available.
This adds only some basic files required to allow the baord to display a
serial message in SPL and hang.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'board/firefly/firefly-rk3288/Kconfig')
-rw-r--r-- | board/firefly/firefly-rk3288/Kconfig | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/board/firefly/firefly-rk3288/Kconfig b/board/firefly/firefly-rk3288/Kconfig new file mode 100644 index 0000000..1c2bca8 --- /dev/null +++ b/board/firefly/firefly-rk3288/Kconfig @@ -0,0 +1,15 @@ +if TARGET_FIREFLY_RK3288 + +config SYS_BOARD + default "firefly-rk3288" + +config SYS_VENDOR + default "firefly" + +config SYS_CONFIG_NAME + default "firefly-rk3288" + +config BOARD_SPECIFIC_OPTIONS # dummy + def_bool y + +endif |