From mboxrd@z Thu Jan 1 00:00:00 1970 From: Kever Yang Date: Mon, 11 Jul 2016 11:14:46 +0800 Subject: [U-Boot] [PATCH] board: move all the rockchip board in one folder In-Reply-To: References: <1467948658-18267-1-git-send-email-kever.yang@rock-chips.com> Message-ID: <57830F26.5080407@rock-chips.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Hi Simon, On 07/09/2016 10:38 PM, Simon Glass wrote: > Hi Kevin, > > On 7 July 2016 at 21:49, Eddie Cai wrote: >> 2016-07-08 11:30 GMT+08:00 Kever Yang : >>> The 'evb_rk3036' and 'kylin' is not a vendor name, let's replace them >>> to 'rockchip' which is a real _vendor_ name, and meet the architecure >>> 'board///'. >>> >>> More boards from rockchip like evb_rk3288, evb_rk3399 will comes later. >>> >>> Signed-off-by: Kever Yang >> Reviewed-by: Eddie Cai >>> --- >>> arch/arm/mach-rockchip/rk3036/Kconfig | 4 +- >>> board/evb_rk3036/evb_rk3036/Kconfig | 15 ------ >>> board/evb_rk3036/evb_rk3036/MAINTAINERS | 0 >>> board/evb_rk3036/evb_rk3036/Makefile | 7 --- >>> board/evb_rk3036/evb_rk3036/evb_rk3036.c | 49 ------------------ >>> board/kylin/kylin_rk3036/Kconfig | 15 ------ >>> board/kylin/kylin_rk3036/MAINTAINERS | 0 >>> board/kylin/kylin_rk3036/Makefile | 7 --- >>> board/kylin/kylin_rk3036/kylin_rk3036.c | 81 ------------------------------ >>> board/rockchip/evb_rk3036/Kconfig | 15 ++++++ >>> board/rockchip/evb_rk3036/MAINTAINERS | 0 >>> board/rockchip/evb_rk3036/Makefile | 7 +++ >>> board/rockchip/evb_rk3036/evb_rk3036.c | 49 ++++++++++++++++++ >>> board/rockchip/kylin_rk3036/Kconfig | 15 ++++++ >>> board/rockchip/kylin_rk3036/MAINTAINERS | 0 >>> board/rockchip/kylin_rk3036/Makefile | 7 +++ >>> board/rockchip/kylin_rk3036/kylin_rk3036.c | 81 ++++++++++++++++++++++++++++++ >>> 17 files changed, 176 insertions(+), 176 deletions(-) >>> delete mode 100644 board/evb_rk3036/evb_rk3036/Kconfig >>> delete mode 100644 board/evb_rk3036/evb_rk3036/MAINTAINERS >>> delete mode 100644 board/evb_rk3036/evb_rk3036/Makefile >>> delete mode 100644 board/evb_rk3036/evb_rk3036/evb_rk3036.c >>> delete mode 100644 board/kylin/kylin_rk3036/Kconfig >>> delete mode 100644 board/kylin/kylin_rk3036/MAINTAINERS >>> delete mode 100644 board/kylin/kylin_rk3036/Makefile >>> delete mode 100644 board/kylin/kylin_rk3036/kylin_rk3036.c >>> create mode 100644 board/rockchip/evb_rk3036/Kconfig >>> create mode 100644 board/rockchip/evb_rk3036/MAINTAINERS >>> create mode 100644 board/rockchip/evb_rk3036/Makefile >>> create mode 100644 board/rockchip/evb_rk3036/evb_rk3036.c >>> create mode 100644 board/rockchip/kylin_rk3036/Kconfig >>> create mode 100644 board/rockchip/kylin_rk3036/MAINTAINERS >>> create mode 100644 board/rockchip/kylin_rk3036/Makefile >>> create mode 100644 board/rockchip/kylin_rk3036/kylin_rk3036.c > Did you use patman for these? I think it should show these as renames > rather than delete/add deltas. Sorry, I didn't use the patman, I use git format-patch and get send-email instead, I will re-send this patch again with patman. BTW, I get below error when I use patman, I have no idea about where I need to define the 'board' node. Cleaned 1 patches Traceback (most recent call last): File "./tools/patman/patman", line 159, in options.add_maintainers) File "u-boot/tools/patman/series.py", line 225, in MakeCcFile raise_on_error=raise_on_error) File "u-boot/tools/patman/gitutil.py", line 326, in BuildEmailList raw += LookupEmail(item, alias, raise_on_error=raise_on_error) File "u-boot/tools/patman/gitutil.py", line 500, in LookupEmail raise ValueError, msg ValueError: Alias 'board' not found Thanks, - Kever > > Regards, > Simon > > >