diff options
author | David Lechner | 2016-02-26 00:46:07 -0600 |
---|---|---|
committer | Tom Rini | 2016-03-14 19:18:40 -0400 |
commit | 2ac07f75d1977008e829d00bcce16143e171765d (patch) | |
tree | e0e9dccb8441feb6a11fb53a65b989cdc51d4a5e /board/lego/ev3/Makefile | |
parent | 6f6e9439e4646242bb504e7b5c1ac0dfbf986cfb (diff) |
arm: Add support for LEGO MINDSTORMS EV3
This is based on the davinci da850evm. It can boot from either the
on-board 16MB flash or from a microSD card. It also reads board
information from an I2C EEPROM.
The EV3 itself initally boots from write-protected EEPROM, so no
u-boot SPL is needed.
Signed-off-by: David Lechner <david@lechnology.com>
Reviewed-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'board/lego/ev3/Makefile')
-rw-r--r-- | board/lego/ev3/Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/board/lego/ev3/Makefile b/board/lego/ev3/Makefile new file mode 100644 index 00000000000..f3e717ab661 --- /dev/null +++ b/board/lego/ev3/Makefile @@ -0,0 +1,10 @@ +# +# (C) Copyright 2000, 2001, 2002 +# Wolfgang Denk, DENX Software Engineering, wd@denx.de. +# +# Copyright (C) 2007 Sergey Kubushyn <ksi@koi8.net> +# +# SPDX-License-Identifier: GPL-2.0+ +# + +obj-y += legoev3.o |