From mboxrd@z Thu Jan 1 00:00:00 1970 From: Simon Glass Date: Tue, 16 May 2017 19:38:22 -0600 Subject: [U-Boot] [PATCH v2 5/7] rockchip: rk3368: add Sheep board In-Reply-To: <1494842030-6653-1-git-send-email-andy.yan@rock-chips.com> References: <1494841762-6340-1-git-send-email-andy.yan@rock-chips.com> <1494842030-6653-1-git-send-email-andy.yan@rock-chips.com> Message-ID: List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On 15 May 2017 at 03:53, Andy Yan wrote: > Sheep board is designed by Rockchip as a EVB for rk3368. > Currently it is able to boot a linux kernel and system > to console with the miniloader run as fist level loader. > > Reviewed-by: Simon Glass > Signed-off-by: Andy Yan > --- > > Changes in v2: > - add a README to describe how to boot the board > > arch/arm/dts/Makefile | 1 + > arch/arm/dts/rk3368-sheep.dts | 283 +++++++++++++++++++++++++++++ > arch/arm/mach-rockchip/rk3368/Kconfig | 11 ++ > board/rockchip/sheep_rk3368/Kconfig | 15 ++ > board/rockchip/sheep_rk3368/MAINTAINERS | 6 + > board/rockchip/sheep_rk3368/Makefile | 7 + > board/rockchip/sheep_rk3368/README | 44 +++++ > board/rockchip/sheep_rk3368/sheep_rk3368.c | 37 ++++ > configs/sheep-rk3368_defconfig | 28 +++ > include/configs/sheep_rk3368.h | 21 +++ > 10 files changed, 453 insertions(+) > create mode 100644 arch/arm/dts/rk3368-sheep.dts > create mode 100644 board/rockchip/sheep_rk3368/Kconfig > create mode 100644 board/rockchip/sheep_rk3368/MAINTAINERS > create mode 100644 board/rockchip/sheep_rk3368/Makefile > create mode 100644 board/rockchip/sheep_rk3368/README > create mode 100644 board/rockchip/sheep_rk3368/sheep_rk3368.c > create mode 100644 configs/sheep-rk3368_defconfig > create mode 100644 include/configs/sheep_rk3368.h > Can you also please add the board to README.rockchip with a link to the README file.