diff options
author | Nicolas Thill <nico@openwrt.org> | 2014-11-06 00:05:10 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2014-11-06 00:05:10 +0000 |
commit | e39e1ba005b36cbd350b72b90b52f38c56b245e2 (patch) | |
tree | b7a651768de18438034f82bdced01a17a3656175 | |
parent | d738d22bf8303bd84e925b2b0c90793a1f3d89e5 (diff) | |
download | upstream-e39e1ba005b36cbd350b72b90b52f38c56b245e2.tar.gz upstream-e39e1ba005b36cbd350b72b90b52f38c56b245e2.tar.bz2 upstream-e39e1ba005b36cbd350b72b90b52f38c56b245e2.zip |
uboot-sunxi: cosmetic changes
This will ease adding new targets and updating:
* split UBOOTS var into multiple lines
* remove version from TITLE
Signed-off-by: Nicolas Thill <nico@openwrt.org>
SVN-Revision: 43187
-rw-r--r-- | package/boot/uboot-sunxi/Makefile | 37 |
1 files changed, 24 insertions, 13 deletions
diff --git a/package/boot/uboot-sunxi/Makefile b/package/boot/uboot-sunxi/Makefile index 5ab52360f2..17616cb2cb 100644 --- a/package/boot/uboot-sunxi/Makefile +++ b/package/boot/uboot-sunxi/Makefile @@ -1,5 +1,5 @@ # -# Copyright (C) 2013 OpenWrt.org +# Copyright (C) 2013-2014 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. @@ -25,50 +25,61 @@ define uboot/Default endef define uboot/A10-OLinuXino-Lime - TITLE:=U-Boot 2014.04 for the A10 OLinuXino LIME + TITLE:=U-Boot for the A10 OLinuXino LIME endef define uboot/A13-OLinuXino - TITLE:=U-Boot 2014.04 for the A13 OlinuXino + TITLE:=U-Boot for the A13 OlinuXino endef define uboot/A20-OLinuXino_MICRO - TITLE:=U-Boot 2014.04 for A20 OLinuXino MICRO + TITLE:=U-Boot for A20 OLinuXino MICRO endef define uboot/Bananapi - TITLE:=U-Boot 2014.04 for Bananapi + TITLE:=U-Boot for Bananapi endef define uboot/Cubieboard - TITLE:=U-Boot 2014.04 for Cubieboard + TITLE:=U-Boot for Cubieboard endef define uboot/Cubieboard2 - TITLE:=U-Boot 2014.04 for Cubieboard2 + TITLE:=U-Boot for Cubieboard2 endef define uboot/Cubietruck - TITLE:=U-Boot 2014.04 for Cubietruck + TITLE:=U-Boot for Cubietruck endef define uboot/Hackberry - TITLE:=U-Boot 2014.04 for the Hackbeery + TITLE:=U-Boot for the Hackbeery endef define uboot/OLIMEX-A13-SOM - TITLE:=U-Boot 2014.04 for the Olimex A13 SOM + TITLE:=U-Boot for the Olimex A13 SOM endef define uboot/pcDuino - TITLE:=U-Boot 2014.04 for pcDuino + TITLE:=U-Boot for pcDuino endef define uboot/Linksprite_pcDuino3 - TITLE:=U-Boot 2014.04 for Linksprite pcDuino3 + TITLE:=U-Boot for Linksprite pcDuino3 endef -UBOOTS:=A10-OLinuXino-Lime A13-OLinuXino A20-OLinuXino_MICRO Bananapi Cubieboard Cubieboard2 Cubietruck Hackberry pcDuino Linksprite_pcDuino3 OLIMEX-A13-SOM +UBOOTS:= \ + A10-OLinuXino-Lime \ + A13-OLinuXino \ + A20-OLinuXino_MICRO \ + Bananapi \ + Cubieboard \ + Cubieboard2 \ + Cubietruck \ + Hackberry \ + OLIMEX-A13-SOM \ + pcDuino \ + Linksprite_pcDuino3 \ define Package/uboot/template define Package/uboot-sunxi-$(1) |