Accepting request 393982 from Base:System

1

OBS-URL: https://build.opensuse.org/request/show/393982
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/u-boot?expand=0&rev=74
This commit is contained in:
Dominique Leuenberger 2016-05-10 07:27:03 +00:00 committed by Git OBS Bridge
parent a8303dfa1a
commit 51760cc5b2
86 changed files with 738 additions and 224 deletions

View File

@ -64,21 +64,26 @@ if [ ! "$1" -o ! "$2" -o ! "$3" ]; then
exit 0 exit 0
fi fi
MVEBU_SPL=0
OMAP_SPL=0 OMAP_SPL=0
ORIGEN_SPL=0
ROCKCHIP_SPL=0 ROCKCHIP_SPL=0
SUNXI_SPL=0 SUNXI_SPL=0
ARNDALE_SPL=0 ARNDALE_SPL=0
CUBOXI_SPL=0 CUBOXI_SPL=0
ORIGEN_SPL=0
UDOO_SPL=0 UDOO_SPL=0
case "$(echo $BOARDCONFIG | sed -e 's/_defconfig//')" in case "$(echo $BOARDCONFIG | sed -e 's/_defconfig//')" in
mx53loco|mx6qsabrelite|efika*) mx53loco|mx6qsabrelite|efika*)
BINEND=imx BINEND=imx
;; ;;
omap*|am335x*|pcm051*) BINEND=img omap*|am335x*|pcm051*)
OMAP_SPL=1 ;; BINEND=img
arndale) BINEND=bin OMAP_SPL=1
ARNDALE_SPL=1 ;; ;;
arndale)
BINEND=bin
ARNDALE_SPL=1
;;
Bananapi*|Cubieboard*|Cubietruck*|*-OLinuXino*) Bananapi*|Cubieboard*|Cubietruck*|*-OLinuXino*)
BINEND=img BINEND=img
SUNXI_SPL=1 SUNXI_SPL=1
@ -108,6 +113,10 @@ firefly-rk3288)
ROCKCHIP_SPL_IMAGE_TYPES="rksd rkimage" ROCKCHIP_SPL_IMAGE_TYPES="rksd rkimage"
ROCKCHIP_SPL_SOC=rk3288 ROCKCHIP_SPL_SOC=rk3288
;; ;;
clearfog)
BINEND=img
MVEBU_SPL=1
;;
*) BINEND=bin ;; *) BINEND=bin ;;
esac esac
@ -118,6 +127,7 @@ s/ARCH_RESTRICTIONS/$ARCH_RESTRICTIONS/g
s/BINEND/$BINEND/g s/BINEND/$BINEND/g
s/ORIGEN_SPL/$ORIGEN_SPL/g s/ORIGEN_SPL/$ORIGEN_SPL/g
s/ARNDALE_SPL/$ARNDALE_SPL/g s/ARNDALE_SPL/$ARNDALE_SPL/g
s/MVEBU_SPL/$MVEBU_SPL/g
s/ROCKCHIP_SPL_IMAGE_TYPES/$ROCKCHIP_SPL_IMAGE_TYPES/g s/ROCKCHIP_SPL_IMAGE_TYPES/$ROCKCHIP_SPL_IMAGE_TYPES/g
s/ROCKCHIP_SPL_SOC/$ROCKCHIP_SPL_SOC/g s/ROCKCHIP_SPL_SOC/$ROCKCHIP_SPL_SOC/g
s/ROCKCHIP_SPL/$ROCKCHIP_SPL/g s/ROCKCHIP_SPL/$ROCKCHIP_SPL/g

View File

@ -1,3 +1,11 @@
-------------------------------------------------------------------
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
- Package Marvell SPL for ClearFog
- Tidy package summaries and descriptions
* Fix spelling of U-Boot
* Don't assume ARM
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com

View File

@ -18,12 +18,13 @@
# #
%define mvebu_spl 0
%define x_loader 0 %define x_loader 0
%define origen_spl 0
%define rockchip_spl 0 %define rockchip_spl 0
%define sunxi_spl 1 %define sunxi_spl 1
%define arndale_spl 0 %define arndale_spl 0
%define cuboxi_spl 0 %define cuboxi_spl 0
%define origen_spl 0
%define udoo_spl 0 %define udoo_spl 0
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
@ -32,7 +33,7 @@
Name: u-boot-a10-olinuxino-lime Name: u-boot-a10-olinuxino-lime
Version: 2016.05~rc3 Version: 2016.05~rc3
Release: 0 Release: 0
Summary: The u-boot firmware for the a10-olinuxino-lime arm platform Summary: The U-Boot firmware for the a10-olinuxino-lime platform
License: GPL-2.0 License: GPL-2.0
Group: System/Boot Group: System/Boot
Url: http://www.denx.de/wiki/U-Boot Url: http://www.denx.de/wiki/U-Boot
@ -68,15 +69,15 @@ ExclusiveArch: armv7l armv7hl
%description %description
Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors. Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors.
This package contains the firmware for the a10-olinuxino-lime arm platform. This package contains the firmware for the a10-olinuxino-lime platform.
%package doc %package doc
Summary: Documentation for the u-boot Firmware Summary: Documentation for the U-Boot Firmware
Group: Documentation/Other Group: Documentation/Other
%description doc %description doc
Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors. Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors.
This package contains documentation for u-boot firmware This package contains documentation for U-Boot firmware.
%prep %prep
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
@ -137,6 +138,9 @@ install -D -m 0755 spl/origen-spl.bin %{buildroot}/boot/origen-spl.bin
install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin
install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img
%endif %endif
%if %mvebu_spl == 1
install -D -m 0755 u-boot-spl.kwb %{buildroot}%{uboot_dir}/u-boot-spl.kwb
%endif
%if %rockchip_spl == 1 %if %rockchip_spl == 1
install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin
for t in ; do for t in ; do

View File

@ -1,3 +1,11 @@
-------------------------------------------------------------------
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
- Package Marvell SPL for ClearFog
- Tidy package summaries and descriptions
* Fix spelling of U-Boot
* Don't assume ARM
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com

View File

@ -18,12 +18,13 @@
# #
%define mvebu_spl 0
%define x_loader 0 %define x_loader 0
%define origen_spl 0
%define rockchip_spl 0 %define rockchip_spl 0
%define sunxi_spl 1 %define sunxi_spl 1
%define arndale_spl 0 %define arndale_spl 0
%define cuboxi_spl 0 %define cuboxi_spl 0
%define origen_spl 0
%define udoo_spl 0 %define udoo_spl 0
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
@ -32,7 +33,7 @@
Name: u-boot-a13-olinuxino Name: u-boot-a13-olinuxino
Version: 2016.05~rc3 Version: 2016.05~rc3
Release: 0 Release: 0
Summary: The u-boot firmware for the a13-olinuxino arm platform Summary: The U-Boot firmware for the a13-olinuxino platform
License: GPL-2.0 License: GPL-2.0
Group: System/Boot Group: System/Boot
Url: http://www.denx.de/wiki/U-Boot Url: http://www.denx.de/wiki/U-Boot
@ -68,15 +69,15 @@ ExclusiveArch: armv7l armv7hl
%description %description
Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors. Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors.
This package contains the firmware for the a13-olinuxino arm platform. This package contains the firmware for the a13-olinuxino platform.
%package doc %package doc
Summary: Documentation for the u-boot Firmware Summary: Documentation for the U-Boot Firmware
Group: Documentation/Other Group: Documentation/Other
%description doc %description doc
Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors. Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors.
This package contains documentation for u-boot firmware This package contains documentation for U-Boot firmware.
%prep %prep
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
@ -137,6 +138,9 @@ install -D -m 0755 spl/origen-spl.bin %{buildroot}/boot/origen-spl.bin
install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin
install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img
%endif %endif
%if %mvebu_spl == 1
install -D -m 0755 u-boot-spl.kwb %{buildroot}%{uboot_dir}/u-boot-spl.kwb
%endif
%if %rockchip_spl == 1 %if %rockchip_spl == 1
install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin
for t in ; do for t in ; do

View File

@ -1,3 +1,11 @@
-------------------------------------------------------------------
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
- Package Marvell SPL for ClearFog
- Tidy package summaries and descriptions
* Fix spelling of U-Boot
* Don't assume ARM
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com

View File

@ -18,12 +18,13 @@
# #
%define mvebu_spl 0
%define x_loader 0 %define x_loader 0
%define origen_spl 0
%define rockchip_spl 0 %define rockchip_spl 0
%define sunxi_spl 1 %define sunxi_spl 1
%define arndale_spl 0 %define arndale_spl 0
%define cuboxi_spl 0 %define cuboxi_spl 0
%define origen_spl 0
%define udoo_spl 0 %define udoo_spl 0
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
@ -32,7 +33,7 @@
Name: u-boot-a13-olinuxinom Name: u-boot-a13-olinuxinom
Version: 2016.05~rc3 Version: 2016.05~rc3
Release: 0 Release: 0
Summary: The u-boot firmware for the a13-olinuxinom arm platform Summary: The U-Boot firmware for the a13-olinuxinom platform
License: GPL-2.0 License: GPL-2.0
Group: System/Boot Group: System/Boot
Url: http://www.denx.de/wiki/U-Boot Url: http://www.denx.de/wiki/U-Boot
@ -68,15 +69,15 @@ ExclusiveArch: armv7l armv7hl
%description %description
Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors. Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors.
This package contains the firmware for the a13-olinuxinom arm platform. This package contains the firmware for the a13-olinuxinom platform.
%package doc %package doc
Summary: Documentation for the u-boot Firmware Summary: Documentation for the U-Boot Firmware
Group: Documentation/Other Group: Documentation/Other
%description doc %description doc
Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors. Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors.
This package contains documentation for u-boot firmware This package contains documentation for U-Boot firmware.
%prep %prep
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
@ -137,6 +138,9 @@ install -D -m 0755 spl/origen-spl.bin %{buildroot}/boot/origen-spl.bin
install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin
install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img
%endif %endif
%if %mvebu_spl == 1
install -D -m 0755 u-boot-spl.kwb %{buildroot}%{uboot_dir}/u-boot-spl.kwb
%endif
%if %rockchip_spl == 1 %if %rockchip_spl == 1
install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin
for t in ; do for t in ; do

View File

@ -1,3 +1,11 @@
-------------------------------------------------------------------
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
- Package Marvell SPL for ClearFog
- Tidy package summaries and descriptions
* Fix spelling of U-Boot
* Don't assume ARM
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com

View File

@ -18,12 +18,13 @@
# #
%define mvebu_spl 0
%define x_loader 0 %define x_loader 0
%define origen_spl 0
%define rockchip_spl 0 %define rockchip_spl 0
%define sunxi_spl 1 %define sunxi_spl 1
%define arndale_spl 0 %define arndale_spl 0
%define cuboxi_spl 0 %define cuboxi_spl 0
%define origen_spl 0
%define udoo_spl 0 %define udoo_spl 0
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
@ -32,7 +33,7 @@
Name: u-boot-a20-olinuxino-lime Name: u-boot-a20-olinuxino-lime
Version: 2016.05~rc3 Version: 2016.05~rc3
Release: 0 Release: 0
Summary: The u-boot firmware for the a20-olinuxino-lime arm platform Summary: The U-Boot firmware for the a20-olinuxino-lime platform
License: GPL-2.0 License: GPL-2.0
Group: System/Boot Group: System/Boot
Url: http://www.denx.de/wiki/U-Boot Url: http://www.denx.de/wiki/U-Boot
@ -68,15 +69,15 @@ ExclusiveArch: armv7l armv7hl
%description %description
Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors. Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors.
This package contains the firmware for the a20-olinuxino-lime arm platform. This package contains the firmware for the a20-olinuxino-lime platform.
%package doc %package doc
Summary: Documentation for the u-boot Firmware Summary: Documentation for the U-Boot Firmware
Group: Documentation/Other Group: Documentation/Other
%description doc %description doc
Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors. Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors.
This package contains documentation for u-boot firmware This package contains documentation for U-Boot firmware.
%prep %prep
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
@ -137,6 +138,9 @@ install -D -m 0755 spl/origen-spl.bin %{buildroot}/boot/origen-spl.bin
install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin
install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img
%endif %endif
%if %mvebu_spl == 1
install -D -m 0755 u-boot-spl.kwb %{buildroot}%{uboot_dir}/u-boot-spl.kwb
%endif
%if %rockchip_spl == 1 %if %rockchip_spl == 1
install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin
for t in ; do for t in ; do

View File

@ -1,3 +1,11 @@
-------------------------------------------------------------------
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
- Package Marvell SPL for ClearFog
- Tidy package summaries and descriptions
* Fix spelling of U-Boot
* Don't assume ARM
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com

View File

@ -18,12 +18,13 @@
# #
%define mvebu_spl 0
%define x_loader 0 %define x_loader 0
%define origen_spl 0
%define rockchip_spl 0 %define rockchip_spl 0
%define sunxi_spl 1 %define sunxi_spl 1
%define arndale_spl 0 %define arndale_spl 0
%define cuboxi_spl 0 %define cuboxi_spl 0
%define origen_spl 0
%define udoo_spl 0 %define udoo_spl 0
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
@ -32,7 +33,7 @@
Name: u-boot-a20-olinuxino-lime2 Name: u-boot-a20-olinuxino-lime2
Version: 2016.05~rc3 Version: 2016.05~rc3
Release: 0 Release: 0
Summary: The u-boot firmware for the a20-olinuxino-lime2 arm platform Summary: The U-Boot firmware for the a20-olinuxino-lime2 platform
License: GPL-2.0 License: GPL-2.0
Group: System/Boot Group: System/Boot
Url: http://www.denx.de/wiki/U-Boot Url: http://www.denx.de/wiki/U-Boot
@ -68,15 +69,15 @@ ExclusiveArch: armv7l armv7hl
%description %description
Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors. Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors.
This package contains the firmware for the a20-olinuxino-lime2 arm platform. This package contains the firmware for the a20-olinuxino-lime2 platform.
%package doc %package doc
Summary: Documentation for the u-boot Firmware Summary: Documentation for the U-Boot Firmware
Group: Documentation/Other Group: Documentation/Other
%description doc %description doc
Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors. Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors.
This package contains documentation for u-boot firmware This package contains documentation for U-Boot firmware.
%prep %prep
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
@ -137,6 +138,9 @@ install -D -m 0755 spl/origen-spl.bin %{buildroot}/boot/origen-spl.bin
install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin
install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img
%endif %endif
%if %mvebu_spl == 1
install -D -m 0755 u-boot-spl.kwb %{buildroot}%{uboot_dir}/u-boot-spl.kwb
%endif
%if %rockchip_spl == 1 %if %rockchip_spl == 1
install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin
for t in ; do for t in ; do

View File

@ -1,3 +1,11 @@
-------------------------------------------------------------------
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
- Package Marvell SPL for ClearFog
- Tidy package summaries and descriptions
* Fix spelling of U-Boot
* Don't assume ARM
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com

View File

@ -18,12 +18,13 @@
# #
%define mvebu_spl 0
%define x_loader 0 %define x_loader 0
%define origen_spl 0
%define rockchip_spl 0 %define rockchip_spl 0
%define sunxi_spl 1 %define sunxi_spl 1
%define arndale_spl 0 %define arndale_spl 0
%define cuboxi_spl 0 %define cuboxi_spl 0
%define origen_spl 0
%define udoo_spl 0 %define udoo_spl 0
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
@ -32,7 +33,7 @@
Name: u-boot-a20-olinuxinomicro Name: u-boot-a20-olinuxinomicro
Version: 2016.05~rc3 Version: 2016.05~rc3
Release: 0 Release: 0
Summary: The u-boot firmware for the a20-olinuxinomicro arm platform Summary: The U-Boot firmware for the a20-olinuxinomicro platform
License: GPL-2.0 License: GPL-2.0
Group: System/Boot Group: System/Boot
Url: http://www.denx.de/wiki/U-Boot Url: http://www.denx.de/wiki/U-Boot
@ -68,15 +69,15 @@ ExclusiveArch: armv7l armv7hl
%description %description
Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors. Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors.
This package contains the firmware for the a20-olinuxinomicro arm platform. This package contains the firmware for the a20-olinuxinomicro platform.
%package doc %package doc
Summary: Documentation for the u-boot Firmware Summary: Documentation for the U-Boot Firmware
Group: Documentation/Other Group: Documentation/Other
%description doc %description doc
Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors. Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors.
This package contains documentation for u-boot firmware This package contains documentation for U-Boot firmware.
%prep %prep
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
@ -137,6 +138,9 @@ install -D -m 0755 spl/origen-spl.bin %{buildroot}/boot/origen-spl.bin
install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin
install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img
%endif %endif
%if %mvebu_spl == 1
install -D -m 0755 u-boot-spl.kwb %{buildroot}%{uboot_dir}/u-boot-spl.kwb
%endif
%if %rockchip_spl == 1 %if %rockchip_spl == 1
install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin
for t in ; do for t in ; do

View File

@ -1,3 +1,11 @@
-------------------------------------------------------------------
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
- Package Marvell SPL for ClearFog
- Tidy package summaries and descriptions
* Fix spelling of U-Boot
* Don't assume ARM
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com

View File

@ -18,12 +18,13 @@
# #
%define mvebu_spl 0
%define x_loader 1 %define x_loader 1
%define origen_spl 0
%define rockchip_spl 0 %define rockchip_spl 0
%define sunxi_spl 0 %define sunxi_spl 0
%define arndale_spl 0 %define arndale_spl 0
%define cuboxi_spl 0 %define cuboxi_spl 0
%define origen_spl 0
%define udoo_spl 0 %define udoo_spl 0
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
@ -32,7 +33,7 @@
Name: u-boot-am335xboneblack Name: u-boot-am335xboneblack
Version: 2016.05~rc3 Version: 2016.05~rc3
Release: 0 Release: 0
Summary: The u-boot firmware for the am335xboneblack arm platform Summary: The U-Boot firmware for the am335xboneblack platform
License: GPL-2.0 License: GPL-2.0
Group: System/Boot Group: System/Boot
Url: http://www.denx.de/wiki/U-Boot Url: http://www.denx.de/wiki/U-Boot
@ -68,15 +69,15 @@ ExclusiveArch: armv7l armv7hl
%description %description
Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors. Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors.
This package contains the firmware for the am335xboneblack arm platform. This package contains the firmware for the am335xboneblack platform.
%package doc %package doc
Summary: Documentation for the u-boot Firmware Summary: Documentation for the U-Boot Firmware
Group: Documentation/Other Group: Documentation/Other
%description doc %description doc
Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors. Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors.
This package contains documentation for u-boot firmware This package contains documentation for U-Boot firmware.
%prep %prep
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
@ -137,6 +138,9 @@ install -D -m 0755 spl/origen-spl.bin %{buildroot}/boot/origen-spl.bin
install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin
install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img
%endif %endif
%if %mvebu_spl == 1
install -D -m 0755 u-boot-spl.kwb %{buildroot}%{uboot_dir}/u-boot-spl.kwb
%endif
%if %rockchip_spl == 1 %if %rockchip_spl == 1
install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin
for t in ; do for t in ; do

View File

@ -1,3 +1,11 @@
-------------------------------------------------------------------
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
- Package Marvell SPL for ClearFog
- Tidy package summaries and descriptions
* Fix spelling of U-Boot
* Don't assume ARM
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com

View File

@ -18,12 +18,13 @@
# #
%define mvebu_spl 0
%define x_loader 1 %define x_loader 1
%define origen_spl 0
%define rockchip_spl 0 %define rockchip_spl 0
%define sunxi_spl 0 %define sunxi_spl 0
%define arndale_spl 0 %define arndale_spl 0
%define cuboxi_spl 0 %define cuboxi_spl 0
%define origen_spl 0
%define udoo_spl 0 %define udoo_spl 0
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
@ -32,7 +33,7 @@
Name: u-boot-am335xevm Name: u-boot-am335xevm
Version: 2016.05~rc3 Version: 2016.05~rc3
Release: 0 Release: 0
Summary: The u-boot firmware for the am335xevm arm platform Summary: The U-Boot firmware for the am335xevm platform
License: GPL-2.0 License: GPL-2.0
Group: System/Boot Group: System/Boot
Url: http://www.denx.de/wiki/U-Boot Url: http://www.denx.de/wiki/U-Boot
@ -68,15 +69,15 @@ ExclusiveArch: armv7l armv7hl
%description %description
Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors. Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors.
This package contains the firmware for the am335xevm arm platform. This package contains the firmware for the am335xevm platform.
%package doc %package doc
Summary: Documentation for the u-boot Firmware Summary: Documentation for the U-Boot Firmware
Group: Documentation/Other Group: Documentation/Other
%description doc %description doc
Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors. Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors.
This package contains documentation for u-boot firmware This package contains documentation for U-Boot firmware.
%prep %prep
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
@ -137,6 +138,9 @@ install -D -m 0755 spl/origen-spl.bin %{buildroot}/boot/origen-spl.bin
install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin
install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img
%endif %endif
%if %mvebu_spl == 1
install -D -m 0755 u-boot-spl.kwb %{buildroot}%{uboot_dir}/u-boot-spl.kwb
%endif
%if %rockchip_spl == 1 %if %rockchip_spl == 1
install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin
for t in ; do for t in ; do

View File

@ -1,3 +1,11 @@
-------------------------------------------------------------------
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
- Package Marvell SPL for ClearFog
- Tidy package summaries and descriptions
* Fix spelling of U-Boot
* Don't assume ARM
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com

View File

@ -18,12 +18,13 @@
# #
%define mvebu_spl 0
%define x_loader 0 %define x_loader 0
%define origen_spl 0
%define rockchip_spl 0 %define rockchip_spl 0
%define sunxi_spl 0 %define sunxi_spl 0
%define arndale_spl 0 %define arndale_spl 0
%define cuboxi_spl 0 %define cuboxi_spl 0
%define origen_spl 0
%define udoo_spl 0 %define udoo_spl 0
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
@ -32,7 +33,7 @@
Name: u-boot-am57xxevm Name: u-boot-am57xxevm
Version: 2016.05~rc3 Version: 2016.05~rc3
Release: 0 Release: 0
Summary: The u-boot firmware for the am57xxevm arm platform Summary: The U-Boot firmware for the am57xxevm platform
License: GPL-2.0 License: GPL-2.0
Group: System/Boot Group: System/Boot
Url: http://www.denx.de/wiki/U-Boot Url: http://www.denx.de/wiki/U-Boot
@ -68,15 +69,15 @@ ExclusiveArch: armv7l armv7hl
%description %description
Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors. Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors.
This package contains the firmware for the am57xxevm arm platform. This package contains the firmware for the am57xxevm platform.
%package doc %package doc
Summary: Documentation for the u-boot Firmware Summary: Documentation for the U-Boot Firmware
Group: Documentation/Other Group: Documentation/Other
%description doc %description doc
Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors. Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors.
This package contains documentation for u-boot firmware This package contains documentation for U-Boot firmware.
%prep %prep
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
@ -137,6 +138,9 @@ install -D -m 0755 spl/origen-spl.bin %{buildroot}/boot/origen-spl.bin
install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin
install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img
%endif %endif
%if %mvebu_spl == 1
install -D -m 0755 u-boot-spl.kwb %{buildroot}%{uboot_dir}/u-boot-spl.kwb
%endif
%if %rockchip_spl == 1 %if %rockchip_spl == 1
install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin
for t in ; do for t in ; do

View File

@ -1,3 +1,11 @@
-------------------------------------------------------------------
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
- Package Marvell SPL for ClearFog
- Tidy package summaries and descriptions
* Fix spelling of U-Boot
* Don't assume ARM
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com

View File

@ -18,12 +18,13 @@
# #
%define mvebu_spl 0
%define x_loader 0 %define x_loader 0
%define origen_spl 0
%define rockchip_spl 0 %define rockchip_spl 0
%define sunxi_spl 0 %define sunxi_spl 0
%define arndale_spl 0 %define arndale_spl 0
%define cuboxi_spl 0 %define cuboxi_spl 0
%define origen_spl 0
%define udoo_spl 0 %define udoo_spl 0
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
@ -32,7 +33,7 @@
Name: u-boot-am57xxevmnodt Name: u-boot-am57xxevmnodt
Version: 2016.05~rc3 Version: 2016.05~rc3
Release: 0 Release: 0
Summary: The u-boot firmware for the am57xxevmnodt arm platform Summary: The U-Boot firmware for the am57xxevmnodt platform
License: GPL-2.0 License: GPL-2.0
Group: System/Boot Group: System/Boot
Url: http://www.denx.de/wiki/U-Boot Url: http://www.denx.de/wiki/U-Boot
@ -68,15 +69,15 @@ ExclusiveArch: armv7l armv7hl
%description %description
Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors. Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors.
This package contains the firmware for the am57xxevmnodt arm platform. This package contains the firmware for the am57xxevmnodt platform.
%package doc %package doc
Summary: Documentation for the u-boot Firmware Summary: Documentation for the U-Boot Firmware
Group: Documentation/Other Group: Documentation/Other
%description doc %description doc
Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors. Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors.
This package contains documentation for u-boot firmware This package contains documentation for U-Boot firmware.
%prep %prep
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
@ -137,6 +138,9 @@ install -D -m 0755 spl/origen-spl.bin %{buildroot}/boot/origen-spl.bin
install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin
install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img
%endif %endif
%if %mvebu_spl == 1
install -D -m 0755 u-boot-spl.kwb %{buildroot}%{uboot_dir}/u-boot-spl.kwb
%endif
%if %rockchip_spl == 1 %if %rockchip_spl == 1
install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin
for t in ; do for t in ; do

View File

@ -1,3 +1,11 @@
-------------------------------------------------------------------
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
- Package Marvell SPL for ClearFog
- Tidy package summaries and descriptions
* Fix spelling of U-Boot
* Don't assume ARM
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com

View File

@ -18,12 +18,13 @@
# #
%define mvebu_spl 0
%define x_loader 0 %define x_loader 0
%define origen_spl 0
%define rockchip_spl 0 %define rockchip_spl 0
%define sunxi_spl 0 %define sunxi_spl 0
%define arndale_spl 1 %define arndale_spl 1
%define cuboxi_spl 0 %define cuboxi_spl 0
%define origen_spl 0
%define udoo_spl 0 %define udoo_spl 0
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
@ -32,7 +33,7 @@
Name: u-boot-arndale Name: u-boot-arndale
Version: 2016.05~rc3 Version: 2016.05~rc3
Release: 0 Release: 0
Summary: The u-boot firmware for the arndale arm platform Summary: The U-Boot firmware for the arndale platform
License: GPL-2.0 License: GPL-2.0
Group: System/Boot Group: System/Boot
Url: http://www.denx.de/wiki/U-Boot Url: http://www.denx.de/wiki/U-Boot
@ -68,15 +69,15 @@ ExclusiveArch: armv7l armv7hl
%description %description
Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors. Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors.
This package contains the firmware for the arndale arm platform. This package contains the firmware for the arndale platform.
%package doc %package doc
Summary: Documentation for the u-boot Firmware Summary: Documentation for the U-Boot Firmware
Group: Documentation/Other Group: Documentation/Other
%description doc %description doc
Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors. Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors.
This package contains documentation for u-boot firmware This package contains documentation for U-Boot firmware.
%prep %prep
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
@ -137,6 +138,9 @@ install -D -m 0755 spl/origen-spl.bin %{buildroot}/boot/origen-spl.bin
install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin
install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img
%endif %endif
%if %mvebu_spl == 1
install -D -m 0755 u-boot-spl.kwb %{buildroot}%{uboot_dir}/u-boot-spl.kwb
%endif
%if %rockchip_spl == 1 %if %rockchip_spl == 1
install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin
for t in ; do for t in ; do

View File

@ -1,3 +1,11 @@
-------------------------------------------------------------------
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
- Package Marvell SPL for ClearFog
- Tidy package summaries and descriptions
* Fix spelling of U-Boot
* Don't assume ARM
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com

View File

@ -18,12 +18,13 @@
# #
%define mvebu_spl 0
%define x_loader 0 %define x_loader 0
%define origen_spl 0
%define rockchip_spl 0 %define rockchip_spl 0
%define sunxi_spl 1 %define sunxi_spl 1
%define arndale_spl 0 %define arndale_spl 0
%define cuboxi_spl 0 %define cuboxi_spl 0
%define origen_spl 0
%define udoo_spl 0 %define udoo_spl 0
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
@ -32,7 +33,7 @@
Name: u-boot-bananapi Name: u-boot-bananapi
Version: 2016.05~rc3 Version: 2016.05~rc3
Release: 0 Release: 0
Summary: The u-boot firmware for the bananapi arm platform Summary: The U-Boot firmware for the bananapi platform
License: GPL-2.0 License: GPL-2.0
Group: System/Boot Group: System/Boot
Url: http://www.denx.de/wiki/U-Boot Url: http://www.denx.de/wiki/U-Boot
@ -68,15 +69,15 @@ ExclusiveArch: armv7l armv7hl
%description %description
Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors. Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors.
This package contains the firmware for the bananapi arm platform. This package contains the firmware for the bananapi platform.
%package doc %package doc
Summary: Documentation for the u-boot Firmware Summary: Documentation for the U-Boot Firmware
Group: Documentation/Other Group: Documentation/Other
%description doc %description doc
Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors. Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors.
This package contains documentation for u-boot firmware This package contains documentation for U-Boot firmware.
%prep %prep
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
@ -137,6 +138,9 @@ install -D -m 0755 spl/origen-spl.bin %{buildroot}/boot/origen-spl.bin
install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin
install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img
%endif %endif
%if %mvebu_spl == 1
install -D -m 0755 u-boot-spl.kwb %{buildroot}%{uboot_dir}/u-boot-spl.kwb
%endif
%if %rockchip_spl == 1 %if %rockchip_spl == 1
install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin
for t in ; do for t in ; do

View File

@ -1,3 +1,11 @@
-------------------------------------------------------------------
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
- Package Marvell SPL for ClearFog
- Tidy package summaries and descriptions
* Fix spelling of U-Boot
* Don't assume ARM
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com

View File

@ -18,12 +18,13 @@
# #
%define mvebu_spl 1
%define x_loader 0 %define x_loader 0
%define origen_spl 0
%define rockchip_spl 0 %define rockchip_spl 0
%define sunxi_spl 0 %define sunxi_spl 0
%define arndale_spl 0 %define arndale_spl 0
%define cuboxi_spl 0 %define cuboxi_spl 0
%define origen_spl 0
%define udoo_spl 0 %define udoo_spl 0
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
@ -32,7 +33,7 @@
Name: u-boot-clearfog Name: u-boot-clearfog
Version: 2016.05~rc3 Version: 2016.05~rc3
Release: 0 Release: 0
Summary: The u-boot firmware for the clearfog arm platform Summary: The U-Boot firmware for the clearfog platform
License: GPL-2.0 License: GPL-2.0
Group: System/Boot Group: System/Boot
Url: http://www.denx.de/wiki/U-Boot Url: http://www.denx.de/wiki/U-Boot
@ -68,15 +69,15 @@ ExclusiveArch: armv7l armv7hl
%description %description
Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors. Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors.
This package contains the firmware for the clearfog arm platform. This package contains the firmware for the clearfog platform.
%package doc %package doc
Summary: Documentation for the u-boot Firmware Summary: Documentation for the U-Boot Firmware
Group: Documentation/Other Group: Documentation/Other
%description doc %description doc
Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors. Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors.
This package contains documentation for u-boot firmware This package contains documentation for U-Boot firmware.
%prep %prep
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
@ -117,14 +118,14 @@ done
# Some times u-boot needs a dtb to configure itself appended to the binary. # Some times u-boot needs a dtb to configure itself appended to the binary.
# In that case prefer the one with a working dtb already appended. # In that case prefer the one with a working dtb already appended.
if [ -f u-boot-dtb-tegra.bin ]; then if [ -f u-boot-dtb-tegra.bin ]; then
install -D -m 0644 u-boot-dtb-tegra.bin %{buildroot}%{uboot_dir}/u-boot.bin install -D -m 0644 u-boot-dtb-tegra.img %{buildroot}%{uboot_dir}/u-boot.img
elif [ -f u-boot-dtb.bin ]; then elif [ -f u-boot-dtb.img ]; then
install -D -m 0644 u-boot-dtb.bin %{buildroot}%{uboot_dir}/u-boot.bin install -D -m 0644 u-boot-dtb.img %{buildroot}%{uboot_dir}/u-boot.img
else else
install -D -m 0644 u-boot.bin %{buildroot}%{uboot_dir}/u-boot.bin install -D -m 0644 u-boot.img %{buildroot}%{uboot_dir}/u-boot.img
fi fi
%if "%{name}" == "u-boot-qemu-ppce500" %if "%{name}" == "u-boot-qemu-ppce500"
mv %{buildroot}%{uboot_dir}/u-boot.bin %{buildroot}%{uboot_dir}/u-boot.e500 mv %{buildroot}%{uboot_dir}/u-boot.img %{buildroot}%{uboot_dir}/u-boot.e500
%endif %endif
%endif %endif
%if %x_loader == 1 %if %x_loader == 1
@ -137,6 +138,9 @@ install -D -m 0755 spl/origen-spl.bin %{buildroot}/boot/origen-spl.bin
install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin
install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img
%endif %endif
%if %mvebu_spl == 1
install -D -m 0755 u-boot-spl.kwb %{buildroot}%{uboot_dir}/u-boot-spl.kwb
%endif
%if %rockchip_spl == 1 %if %rockchip_spl == 1
install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin
for t in ; do for t in ; do

View File

@ -1,3 +1,11 @@
-------------------------------------------------------------------
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
- Package Marvell SPL for ClearFog
- Tidy package summaries and descriptions
* Fix spelling of U-Boot
* Don't assume ARM
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com

View File

@ -18,12 +18,13 @@
# #
%define mvebu_spl 0
%define x_loader 0 %define x_loader 0
%define origen_spl 0
%define rockchip_spl 0 %define rockchip_spl 0
%define sunxi_spl 0 %define sunxi_spl 0
%define arndale_spl 0 %define arndale_spl 0
%define cuboxi_spl 0 %define cuboxi_spl 0
%define origen_spl 0
%define udoo_spl 0 %define udoo_spl 0
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
@ -32,7 +33,7 @@
Name: u-boot-colibrit20 Name: u-boot-colibrit20
Version: 2016.05~rc3 Version: 2016.05~rc3
Release: 0 Release: 0
Summary: The u-boot firmware for the colibrit20 arm platform Summary: The U-Boot firmware for the colibrit20 platform
License: GPL-2.0 License: GPL-2.0
Group: System/Boot Group: System/Boot
Url: http://www.denx.de/wiki/U-Boot Url: http://www.denx.de/wiki/U-Boot
@ -68,15 +69,15 @@ ExclusiveArch: armv7l armv7hl
%description %description
Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors. Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors.
This package contains the firmware for the colibrit20 arm platform. This package contains the firmware for the colibrit20 platform.
%package doc %package doc
Summary: Documentation for the u-boot Firmware Summary: Documentation for the U-Boot Firmware
Group: Documentation/Other Group: Documentation/Other
%description doc %description doc
Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors. Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors.
This package contains documentation for u-boot firmware This package contains documentation for U-Boot firmware.
%prep %prep
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
@ -137,6 +138,9 @@ install -D -m 0755 spl/origen-spl.bin %{buildroot}/boot/origen-spl.bin
install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin
install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img
%endif %endif
%if %mvebu_spl == 1
install -D -m 0755 u-boot-spl.kwb %{buildroot}%{uboot_dir}/u-boot-spl.kwb
%endif
%if %rockchip_spl == 1 %if %rockchip_spl == 1
install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin
for t in ; do for t in ; do

View File

@ -1,3 +1,11 @@
-------------------------------------------------------------------
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
- Package Marvell SPL for ClearFog
- Tidy package summaries and descriptions
* Fix spelling of U-Boot
* Don't assume ARM
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com

View File

@ -18,12 +18,13 @@
# #
%define mvebu_spl 0
%define x_loader 0 %define x_loader 0
%define origen_spl 0
%define rockchip_spl 0 %define rockchip_spl 0
%define sunxi_spl 1 %define sunxi_spl 1
%define arndale_spl 0 %define arndale_spl 0
%define cuboxi_spl 0 %define cuboxi_spl 0
%define origen_spl 0
%define udoo_spl 0 %define udoo_spl 0
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
@ -32,7 +33,7 @@
Name: u-boot-cubieboard Name: u-boot-cubieboard
Version: 2016.05~rc3 Version: 2016.05~rc3
Release: 0 Release: 0
Summary: The u-boot firmware for the cubieboard arm platform Summary: The U-Boot firmware for the cubieboard platform
License: GPL-2.0 License: GPL-2.0
Group: System/Boot Group: System/Boot
Url: http://www.denx.de/wiki/U-Boot Url: http://www.denx.de/wiki/U-Boot
@ -68,15 +69,15 @@ ExclusiveArch: armv7l armv7hl
%description %description
Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors. Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors.
This package contains the firmware for the cubieboard arm platform. This package contains the firmware for the cubieboard platform.
%package doc %package doc
Summary: Documentation for the u-boot Firmware Summary: Documentation for the U-Boot Firmware
Group: Documentation/Other Group: Documentation/Other
%description doc %description doc
Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors. Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors.
This package contains documentation for u-boot firmware This package contains documentation for U-Boot firmware.
%prep %prep
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
@ -137,6 +138,9 @@ install -D -m 0755 spl/origen-spl.bin %{buildroot}/boot/origen-spl.bin
install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin
install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img
%endif %endif
%if %mvebu_spl == 1
install -D -m 0755 u-boot-spl.kwb %{buildroot}%{uboot_dir}/u-boot-spl.kwb
%endif
%if %rockchip_spl == 1 %if %rockchip_spl == 1
install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin
for t in ; do for t in ; do

View File

@ -1,3 +1,11 @@
-------------------------------------------------------------------
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
- Package Marvell SPL for ClearFog
- Tidy package summaries and descriptions
* Fix spelling of U-Boot
* Don't assume ARM
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com

View File

@ -18,12 +18,13 @@
# #
%define mvebu_spl 0
%define x_loader 0 %define x_loader 0
%define origen_spl 0
%define rockchip_spl 0 %define rockchip_spl 0
%define sunxi_spl 1 %define sunxi_spl 1
%define arndale_spl 0 %define arndale_spl 0
%define cuboxi_spl 0 %define cuboxi_spl 0
%define origen_spl 0
%define udoo_spl 0 %define udoo_spl 0
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
@ -32,7 +33,7 @@
Name: u-boot-cubieboard2 Name: u-boot-cubieboard2
Version: 2016.05~rc3 Version: 2016.05~rc3
Release: 0 Release: 0
Summary: The u-boot firmware for the cubieboard2 arm platform Summary: The U-Boot firmware for the cubieboard2 platform
License: GPL-2.0 License: GPL-2.0
Group: System/Boot Group: System/Boot
Url: http://www.denx.de/wiki/U-Boot Url: http://www.denx.de/wiki/U-Boot
@ -68,15 +69,15 @@ ExclusiveArch: armv7l armv7hl
%description %description
Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors. Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors.
This package contains the firmware for the cubieboard2 arm platform. This package contains the firmware for the cubieboard2 platform.
%package doc %package doc
Summary: Documentation for the u-boot Firmware Summary: Documentation for the U-Boot Firmware
Group: Documentation/Other Group: Documentation/Other
%description doc %description doc
Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors. Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors.
This package contains documentation for u-boot firmware This package contains documentation for U-Boot firmware.
%prep %prep
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
@ -137,6 +138,9 @@ install -D -m 0755 spl/origen-spl.bin %{buildroot}/boot/origen-spl.bin
install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin
install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img
%endif %endif
%if %mvebu_spl == 1
install -D -m 0755 u-boot-spl.kwb %{buildroot}%{uboot_dir}/u-boot-spl.kwb
%endif
%if %rockchip_spl == 1 %if %rockchip_spl == 1
install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin
for t in ; do for t in ; do

View File

@ -1,3 +1,11 @@
-------------------------------------------------------------------
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
- Package Marvell SPL for ClearFog
- Tidy package summaries and descriptions
* Fix spelling of U-Boot
* Don't assume ARM
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com

View File

@ -18,12 +18,13 @@
# #
%define mvebu_spl 0
%define x_loader 0 %define x_loader 0
%define origen_spl 0
%define rockchip_spl 0 %define rockchip_spl 0
%define sunxi_spl 1 %define sunxi_spl 1
%define arndale_spl 0 %define arndale_spl 0
%define cuboxi_spl 0 %define cuboxi_spl 0
%define origen_spl 0
%define udoo_spl 0 %define udoo_spl 0
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
@ -32,7 +33,7 @@
Name: u-boot-cubietruck Name: u-boot-cubietruck
Version: 2016.05~rc3 Version: 2016.05~rc3
Release: 0 Release: 0
Summary: The u-boot firmware for the cubietruck arm platform Summary: The U-Boot firmware for the cubietruck platform
License: GPL-2.0 License: GPL-2.0
Group: System/Boot Group: System/Boot
Url: http://www.denx.de/wiki/U-Boot Url: http://www.denx.de/wiki/U-Boot
@ -68,15 +69,15 @@ ExclusiveArch: armv7l armv7hl
%description %description
Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors. Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors.
This package contains the firmware for the cubietruck arm platform. This package contains the firmware for the cubietruck platform.
%package doc %package doc
Summary: Documentation for the u-boot Firmware Summary: Documentation for the U-Boot Firmware
Group: Documentation/Other Group: Documentation/Other
%description doc %description doc
Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors. Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors.
This package contains documentation for u-boot firmware This package contains documentation for U-Boot firmware.
%prep %prep
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
@ -137,6 +138,9 @@ install -D -m 0755 spl/origen-spl.bin %{buildroot}/boot/origen-spl.bin
install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin
install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img
%endif %endif
%if %mvebu_spl == 1
install -D -m 0755 u-boot-spl.kwb %{buildroot}%{uboot_dir}/u-boot-spl.kwb
%endif
%if %rockchip_spl == 1 %if %rockchip_spl == 1
install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin
for t in ; do for t in ; do

View File

@ -1,3 +1,11 @@
-------------------------------------------------------------------
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
- Package Marvell SPL for ClearFog
- Tidy package summaries and descriptions
* Fix spelling of U-Boot
* Don't assume ARM
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com

View File

@ -18,12 +18,13 @@
# #
%define mvebu_spl 0
%define x_loader 0 %define x_loader 0
%define origen_spl 0
%define rockchip_spl 1 %define rockchip_spl 1
%define sunxi_spl 0 %define sunxi_spl 0
%define arndale_spl 0 %define arndale_spl 0
%define cuboxi_spl 0 %define cuboxi_spl 0
%define origen_spl 0
%define udoo_spl 0 %define udoo_spl 0
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
@ -32,7 +33,7 @@
Name: u-boot-firefly-rk3288 Name: u-boot-firefly-rk3288
Version: 2016.05~rc3 Version: 2016.05~rc3
Release: 0 Release: 0
Summary: The u-boot firmware for the firefly-rk3288 arm platform Summary: The U-Boot firmware for the firefly-rk3288 platform
License: GPL-2.0 License: GPL-2.0
Group: System/Boot Group: System/Boot
Url: http://www.denx.de/wiki/U-Boot Url: http://www.denx.de/wiki/U-Boot
@ -68,15 +69,15 @@ ExclusiveArch: armv7l armv7hl
%description %description
Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors. Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors.
This package contains the firmware for the firefly-rk3288 arm platform. This package contains the firmware for the firefly-rk3288 platform.
%package doc %package doc
Summary: Documentation for the u-boot Firmware Summary: Documentation for the U-Boot Firmware
Group: Documentation/Other Group: Documentation/Other
%description doc %description doc
Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors. Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors.
This package contains documentation for u-boot firmware This package contains documentation for U-Boot firmware.
%prep %prep
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
@ -137,6 +138,9 @@ install -D -m 0755 spl/origen-spl.bin %{buildroot}/boot/origen-spl.bin
install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin
install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img
%endif %endif
%if %mvebu_spl == 1
install -D -m 0755 u-boot-spl.kwb %{buildroot}%{uboot_dir}/u-boot-spl.kwb
%endif
%if %rockchip_spl == 1 %if %rockchip_spl == 1
install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin
for t in rksd rkimage; do for t in rksd rkimage; do

View File

@ -1,3 +1,11 @@
-------------------------------------------------------------------
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
- Package Marvell SPL for ClearFog
- Tidy package summaries and descriptions
* Fix spelling of U-Boot
* Don't assume ARM
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com

View File

@ -18,12 +18,13 @@
# #
%define mvebu_spl 0
%define x_loader 0 %define x_loader 0
%define origen_spl 0
%define rockchip_spl 0 %define rockchip_spl 0
%define sunxi_spl 0 %define sunxi_spl 0
%define arndale_spl 0 %define arndale_spl 0
%define cuboxi_spl 0 %define cuboxi_spl 0
%define origen_spl 0
%define udoo_spl 0 %define udoo_spl 0
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
@ -32,7 +33,7 @@
Name: u-boot-highbank Name: u-boot-highbank
Version: 2016.05~rc3 Version: 2016.05~rc3
Release: 0 Release: 0
Summary: The u-boot firmware for the highbank arm platform Summary: The U-Boot firmware for the highbank platform
License: GPL-2.0 License: GPL-2.0
Group: System/Boot Group: System/Boot
Url: http://www.denx.de/wiki/U-Boot Url: http://www.denx.de/wiki/U-Boot
@ -68,15 +69,15 @@ ExclusiveArch: armv7l armv7hl
%description %description
Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors. Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors.
This package contains the firmware for the highbank arm platform. This package contains the firmware for the highbank platform.
%package doc %package doc
Summary: Documentation for the u-boot Firmware Summary: Documentation for the U-Boot Firmware
Group: Documentation/Other Group: Documentation/Other
%description doc %description doc
Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors. Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors.
This package contains documentation for u-boot firmware This package contains documentation for U-Boot firmware.
%prep %prep
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
@ -137,6 +138,9 @@ install -D -m 0755 spl/origen-spl.bin %{buildroot}/boot/origen-spl.bin
install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin
install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img
%endif %endif
%if %mvebu_spl == 1
install -D -m 0755 u-boot-spl.kwb %{buildroot}%{uboot_dir}/u-boot-spl.kwb
%endif
%if %rockchip_spl == 1 %if %rockchip_spl == 1
install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin
for t in ; do for t in ; do

View File

@ -1,3 +1,11 @@
-------------------------------------------------------------------
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
- Package Marvell SPL for ClearFog
- Tidy package summaries and descriptions
* Fix spelling of U-Boot
* Don't assume ARM
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com

View File

@ -18,12 +18,13 @@
# #
%define mvebu_spl 0
%define x_loader 0 %define x_loader 0
%define origen_spl 0
%define rockchip_spl 0 %define rockchip_spl 0
%define sunxi_spl 1 %define sunxi_spl 1
%define arndale_spl 0 %define arndale_spl 0
%define cuboxi_spl 0 %define cuboxi_spl 0
%define origen_spl 0
%define udoo_spl 0 %define udoo_spl 0
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
@ -32,7 +33,7 @@
Name: u-boot-hyundaia7hd Name: u-boot-hyundaia7hd
Version: 2016.05~rc3 Version: 2016.05~rc3
Release: 0 Release: 0
Summary: The u-boot firmware for the hyundaia7hd arm platform Summary: The U-Boot firmware for the hyundaia7hd platform
License: GPL-2.0 License: GPL-2.0
Group: System/Boot Group: System/Boot
Url: http://www.denx.de/wiki/U-Boot Url: http://www.denx.de/wiki/U-Boot
@ -68,15 +69,15 @@ ExclusiveArch: armv7l armv7hl
%description %description
Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors. Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors.
This package contains the firmware for the hyundaia7hd arm platform. This package contains the firmware for the hyundaia7hd platform.
%package doc %package doc
Summary: Documentation for the u-boot Firmware Summary: Documentation for the U-Boot Firmware
Group: Documentation/Other Group: Documentation/Other
%description doc %description doc
Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors. Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors.
This package contains documentation for u-boot firmware This package contains documentation for U-Boot firmware.
%prep %prep
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
@ -137,6 +138,9 @@ install -D -m 0755 spl/origen-spl.bin %{buildroot}/boot/origen-spl.bin
install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin
install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img
%endif %endif
%if %mvebu_spl == 1
install -D -m 0755 u-boot-spl.kwb %{buildroot}%{uboot_dir}/u-boot-spl.kwb
%endif
%if %rockchip_spl == 1 %if %rockchip_spl == 1
install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin
for t in ; do for t in ; do

View File

@ -1,3 +1,11 @@
-------------------------------------------------------------------
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
- Package Marvell SPL for ClearFog
- Tidy package summaries and descriptions
* Fix spelling of U-Boot
* Don't assume ARM
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com

View File

@ -18,12 +18,13 @@
# #
%define mvebu_spl 0
%define x_loader 0 %define x_loader 0
%define origen_spl 0
%define rockchip_spl 0 %define rockchip_spl 0
%define sunxi_spl 0 %define sunxi_spl 0
%define arndale_spl 0 %define arndale_spl 0
%define cuboxi_spl 0 %define cuboxi_spl 0
%define origen_spl 0
%define udoo_spl 0 %define udoo_spl 0
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
@ -32,7 +33,7 @@
Name: u-boot-jetson-tk1 Name: u-boot-jetson-tk1
Version: 2016.05~rc3 Version: 2016.05~rc3
Release: 0 Release: 0
Summary: The u-boot firmware for the jetson-tk1 arm platform Summary: The U-Boot firmware for the jetson-tk1 platform
License: GPL-2.0 License: GPL-2.0
Group: System/Boot Group: System/Boot
Url: http://www.denx.de/wiki/U-Boot Url: http://www.denx.de/wiki/U-Boot
@ -68,15 +69,15 @@ ExclusiveArch: armv7l armv7hl
%description %description
Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors. Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors.
This package contains the firmware for the jetson-tk1 arm platform. This package contains the firmware for the jetson-tk1 platform.
%package doc %package doc
Summary: Documentation for the u-boot Firmware Summary: Documentation for the U-Boot Firmware
Group: Documentation/Other Group: Documentation/Other
%description doc %description doc
Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors. Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors.
This package contains documentation for u-boot firmware This package contains documentation for U-Boot firmware.
%prep %prep
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
@ -137,6 +138,9 @@ install -D -m 0755 spl/origen-spl.bin %{buildroot}/boot/origen-spl.bin
install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin
install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img
%endif %endif
%if %mvebu_spl == 1
install -D -m 0755 u-boot-spl.kwb %{buildroot}%{uboot_dir}/u-boot-spl.kwb
%endif
%if %rockchip_spl == 1 %if %rockchip_spl == 1
install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin
for t in ; do for t in ; do

View File

@ -1,3 +1,11 @@
-------------------------------------------------------------------
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
- Package Marvell SPL for ClearFog
- Tidy package summaries and descriptions
* Fix spelling of U-Boot
* Don't assume ARM
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com

View File

@ -18,12 +18,13 @@
# #
%define mvebu_spl 0
%define x_loader 0 %define x_loader 0
%define origen_spl 0
%define rockchip_spl 0 %define rockchip_spl 0
%define sunxi_spl 1 %define sunxi_spl 1
%define arndale_spl 0 %define arndale_spl 0
%define cuboxi_spl 0 %define cuboxi_spl 0
%define origen_spl 0
%define udoo_spl 0 %define udoo_spl 0
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
@ -32,7 +33,7 @@
Name: u-boot-melea1000 Name: u-boot-melea1000
Version: 2016.05~rc3 Version: 2016.05~rc3
Release: 0 Release: 0
Summary: The u-boot firmware for the melea1000 arm platform Summary: The U-Boot firmware for the melea1000 platform
License: GPL-2.0 License: GPL-2.0
Group: System/Boot Group: System/Boot
Url: http://www.denx.de/wiki/U-Boot Url: http://www.denx.de/wiki/U-Boot
@ -68,15 +69,15 @@ ExclusiveArch: armv7l armv7hl
%description %description
Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors. Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors.
This package contains the firmware for the melea1000 arm platform. This package contains the firmware for the melea1000 platform.
%package doc %package doc
Summary: Documentation for the u-boot Firmware Summary: Documentation for the U-Boot Firmware
Group: Documentation/Other Group: Documentation/Other
%description doc %description doc
Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors. Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors.
This package contains documentation for u-boot firmware This package contains documentation for U-Boot firmware.
%prep %prep
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
@ -137,6 +138,9 @@ install -D -m 0755 spl/origen-spl.bin %{buildroot}/boot/origen-spl.bin
install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin
install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img
%endif %endif
%if %mvebu_spl == 1
install -D -m 0755 u-boot-spl.kwb %{buildroot}%{uboot_dir}/u-boot-spl.kwb
%endif
%if %rockchip_spl == 1 %if %rockchip_spl == 1
install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin
for t in ; do for t in ; do

View File

@ -1,3 +1,11 @@
-------------------------------------------------------------------
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
- Package Marvell SPL for ClearFog
- Tidy package summaries and descriptions
* Fix spelling of U-Boot
* Don't assume ARM
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com

View File

@ -18,12 +18,13 @@
# #
%define mvebu_spl 0
%define x_loader 0 %define x_loader 0
%define origen_spl 0
%define rockchip_spl 0 %define rockchip_spl 0
%define sunxi_spl 0 %define sunxi_spl 0
%define arndale_spl 0 %define arndale_spl 0
%define cuboxi_spl 0 %define cuboxi_spl 0
%define origen_spl 0
%define udoo_spl 0 %define udoo_spl 0
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
@ -32,7 +33,7 @@
Name: u-boot-merriia80optimus Name: u-boot-merriia80optimus
Version: 2016.05~rc3 Version: 2016.05~rc3
Release: 0 Release: 0
Summary: The u-boot firmware for the merriia80optimus arm platform Summary: The U-Boot firmware for the merriia80optimus platform
License: GPL-2.0 License: GPL-2.0
Group: System/Boot Group: System/Boot
Url: http://www.denx.de/wiki/U-Boot Url: http://www.denx.de/wiki/U-Boot
@ -68,15 +69,15 @@ ExclusiveArch: armv7l armv7hl
%description %description
Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors. Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors.
This package contains the firmware for the merriia80optimus arm platform. This package contains the firmware for the merriia80optimus platform.
%package doc %package doc
Summary: Documentation for the u-boot Firmware Summary: Documentation for the U-Boot Firmware
Group: Documentation/Other Group: Documentation/Other
%description doc %description doc
Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors. Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors.
This package contains documentation for u-boot firmware This package contains documentation for U-Boot firmware.
%prep %prep
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
@ -137,6 +138,9 @@ install -D -m 0755 spl/origen-spl.bin %{buildroot}/boot/origen-spl.bin
install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin
install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img
%endif %endif
%if %mvebu_spl == 1
install -D -m 0755 u-boot-spl.kwb %{buildroot}%{uboot_dir}/u-boot-spl.kwb
%endif
%if %rockchip_spl == 1 %if %rockchip_spl == 1
install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin
for t in ; do for t in ; do

View File

@ -1,3 +1,11 @@
-------------------------------------------------------------------
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
- Package Marvell SPL for ClearFog
- Tidy package summaries and descriptions
* Fix spelling of U-Boot
* Don't assume ARM
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com

View File

@ -18,12 +18,13 @@
# #
%define mvebu_spl 0
%define x_loader 0 %define x_loader 0
%define origen_spl 0
%define rockchip_spl 0 %define rockchip_spl 0
%define sunxi_spl 0 %define sunxi_spl 0
%define arndale_spl 0 %define arndale_spl 0
%define cuboxi_spl 0 %define cuboxi_spl 0
%define origen_spl 0
%define udoo_spl 0 %define udoo_spl 0
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
@ -32,7 +33,7 @@
Name: u-boot-mx53loco Name: u-boot-mx53loco
Version: 2016.05~rc3 Version: 2016.05~rc3
Release: 0 Release: 0
Summary: The u-boot firmware for the mx53loco arm platform Summary: The U-Boot firmware for the mx53loco platform
License: GPL-2.0 License: GPL-2.0
Group: System/Boot Group: System/Boot
Url: http://www.denx.de/wiki/U-Boot Url: http://www.denx.de/wiki/U-Boot
@ -68,15 +69,15 @@ ExclusiveArch: armv7l armv7hl
%description %description
Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors. Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors.
This package contains the firmware for the mx53loco arm platform. This package contains the firmware for the mx53loco platform.
%package doc %package doc
Summary: Documentation for the u-boot Firmware Summary: Documentation for the U-Boot Firmware
Group: Documentation/Other Group: Documentation/Other
%description doc %description doc
Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors. Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors.
This package contains documentation for u-boot firmware This package contains documentation for U-Boot firmware.
%prep %prep
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
@ -137,6 +138,9 @@ install -D -m 0755 spl/origen-spl.bin %{buildroot}/boot/origen-spl.bin
install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin
install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img
%endif %endif
%if %mvebu_spl == 1
install -D -m 0755 u-boot-spl.kwb %{buildroot}%{uboot_dir}/u-boot-spl.kwb
%endif
%if %rockchip_spl == 1 %if %rockchip_spl == 1
install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin
for t in ; do for t in ; do

View File

@ -1,3 +1,11 @@
-------------------------------------------------------------------
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
- Package Marvell SPL for ClearFog
- Tidy package summaries and descriptions
* Fix spelling of U-Boot
* Don't assume ARM
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com

View File

@ -18,12 +18,13 @@
# #
%define mvebu_spl 0
%define x_loader 0 %define x_loader 0
%define origen_spl 0
%define rockchip_spl 0 %define rockchip_spl 0
%define sunxi_spl 0 %define sunxi_spl 0
%define arndale_spl 0 %define arndale_spl 0
%define cuboxi_spl 1 %define cuboxi_spl 1
%define origen_spl 0
%define udoo_spl 0 %define udoo_spl 0
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
@ -32,7 +33,7 @@
Name: u-boot-mx6cuboxi Name: u-boot-mx6cuboxi
Version: 2016.05~rc3 Version: 2016.05~rc3
Release: 0 Release: 0
Summary: The u-boot firmware for the mx6cuboxi arm platform Summary: The U-Boot firmware for the mx6cuboxi platform
License: GPL-2.0 License: GPL-2.0
Group: System/Boot Group: System/Boot
Url: http://www.denx.de/wiki/U-Boot Url: http://www.denx.de/wiki/U-Boot
@ -68,15 +69,15 @@ ExclusiveArch: armv7l armv7hl
%description %description
Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors. Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors.
This package contains the firmware for the mx6cuboxi arm platform. This package contains the firmware for the mx6cuboxi platform.
%package doc %package doc
Summary: Documentation for the u-boot Firmware Summary: Documentation for the U-Boot Firmware
Group: Documentation/Other Group: Documentation/Other
%description doc %description doc
Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors. Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors.
This package contains documentation for u-boot firmware This package contains documentation for U-Boot firmware.
%prep %prep
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
@ -137,6 +138,9 @@ install -D -m 0755 spl/origen-spl.bin %{buildroot}/boot/origen-spl.bin
install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin
install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img
%endif %endif
%if %mvebu_spl == 1
install -D -m 0755 u-boot-spl.kwb %{buildroot}%{uboot_dir}/u-boot-spl.kwb
%endif
%if %rockchip_spl == 1 %if %rockchip_spl == 1
install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin
for t in ; do for t in ; do

View File

@ -1,3 +1,11 @@
-------------------------------------------------------------------
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
- Package Marvell SPL for ClearFog
- Tidy package summaries and descriptions
* Fix spelling of U-Boot
* Don't assume ARM
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com

View File

@ -18,12 +18,13 @@
# #
%define mvebu_spl 0
%define x_loader 0 %define x_loader 0
%define origen_spl 0
%define rockchip_spl 0 %define rockchip_spl 0
%define sunxi_spl 0 %define sunxi_spl 0
%define arndale_spl 0 %define arndale_spl 0
%define cuboxi_spl 0 %define cuboxi_spl 0
%define origen_spl 0
%define udoo_spl 0 %define udoo_spl 0
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
@ -32,7 +33,7 @@
Name: u-boot-mx6qsabrelite Name: u-boot-mx6qsabrelite
Version: 2016.05~rc3 Version: 2016.05~rc3
Release: 0 Release: 0
Summary: The u-boot firmware for the mx6qsabrelite arm platform Summary: The U-Boot firmware for the mx6qsabrelite platform
License: GPL-2.0 License: GPL-2.0
Group: System/Boot Group: System/Boot
Url: http://www.denx.de/wiki/U-Boot Url: http://www.denx.de/wiki/U-Boot
@ -68,15 +69,15 @@ ExclusiveArch: armv7l armv7hl
%description %description
Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors. Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors.
This package contains the firmware for the mx6qsabrelite arm platform. This package contains the firmware for the mx6qsabrelite platform.
%package doc %package doc
Summary: Documentation for the u-boot Firmware Summary: Documentation for the U-Boot Firmware
Group: Documentation/Other Group: Documentation/Other
%description doc %description doc
Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors. Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors.
This package contains documentation for u-boot firmware This package contains documentation for U-Boot firmware.
%prep %prep
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
@ -137,6 +138,9 @@ install -D -m 0755 spl/origen-spl.bin %{buildroot}/boot/origen-spl.bin
install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin
install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img
%endif %endif
%if %mvebu_spl == 1
install -D -m 0755 u-boot-spl.kwb %{buildroot}%{uboot_dir}/u-boot-spl.kwb
%endif
%if %rockchip_spl == 1 %if %rockchip_spl == 1
install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin
for t in ; do for t in ; do

View File

@ -1,3 +1,11 @@
-------------------------------------------------------------------
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
- Package Marvell SPL for ClearFog
- Tidy package summaries and descriptions
* Fix spelling of U-Boot
* Don't assume ARM
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com

View File

@ -18,12 +18,13 @@
# #
%define mvebu_spl 0
%define x_loader 0 %define x_loader 0
%define origen_spl 0
%define rockchip_spl 0 %define rockchip_spl 0
%define sunxi_spl 0 %define sunxi_spl 0
%define arndale_spl 0 %define arndale_spl 0
%define cuboxi_spl 0 %define cuboxi_spl 0
%define origen_spl 0
%define udoo_spl 0 %define udoo_spl 0
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
@ -32,7 +33,7 @@
Name: u-boot-odroid-xu3 Name: u-boot-odroid-xu3
Version: 2016.05~rc3 Version: 2016.05~rc3
Release: 0 Release: 0
Summary: The u-boot firmware for the odroid-xu3 arm platform Summary: The U-Boot firmware for the odroid-xu3 platform
License: GPL-2.0 License: GPL-2.0
Group: System/Boot Group: System/Boot
Url: http://www.denx.de/wiki/U-Boot Url: http://www.denx.de/wiki/U-Boot
@ -68,15 +69,15 @@ ExclusiveArch: armv7l armv7hl
%description %description
Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors. Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors.
This package contains the firmware for the odroid-xu3 arm platform. This package contains the firmware for the odroid-xu3 platform.
%package doc %package doc
Summary: Documentation for the u-boot Firmware Summary: Documentation for the U-Boot Firmware
Group: Documentation/Other Group: Documentation/Other
%description doc %description doc
Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors. Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors.
This package contains documentation for u-boot firmware This package contains documentation for U-Boot firmware.
%prep %prep
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
@ -137,6 +138,9 @@ install -D -m 0755 spl/origen-spl.bin %{buildroot}/boot/origen-spl.bin
install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin
install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img
%endif %endif
%if %mvebu_spl == 1
install -D -m 0755 u-boot-spl.kwb %{buildroot}%{uboot_dir}/u-boot-spl.kwb
%endif
%if %rockchip_spl == 1 %if %rockchip_spl == 1
install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin
for t in ; do for t in ; do

View File

@ -1,3 +1,11 @@
-------------------------------------------------------------------
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
- Package Marvell SPL for ClearFog
- Tidy package summaries and descriptions
* Fix spelling of U-Boot
* Don't assume ARM
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com

View File

@ -18,12 +18,13 @@
# #
%define mvebu_spl 0
%define x_loader 0 %define x_loader 0
%define origen_spl 0
%define rockchip_spl 0 %define rockchip_spl 0
%define sunxi_spl 0 %define sunxi_spl 0
%define arndale_spl 0 %define arndale_spl 0
%define cuboxi_spl 0 %define cuboxi_spl 0
%define origen_spl 0
%define udoo_spl 0 %define udoo_spl 0
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
@ -32,7 +33,7 @@
Name: u-boot-odroid Name: u-boot-odroid
Version: 2016.05~rc3 Version: 2016.05~rc3
Release: 0 Release: 0
Summary: The u-boot firmware for the odroid arm platform Summary: The U-Boot firmware for the odroid platform
License: GPL-2.0 License: GPL-2.0
Group: System/Boot Group: System/Boot
Url: http://www.denx.de/wiki/U-Boot Url: http://www.denx.de/wiki/U-Boot
@ -68,15 +69,15 @@ ExclusiveArch: armv7l armv7hl
%description %description
Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors. Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors.
This package contains the firmware for the odroid arm platform. This package contains the firmware for the odroid platform.
%package doc %package doc
Summary: Documentation for the u-boot Firmware Summary: Documentation for the U-Boot Firmware
Group: Documentation/Other Group: Documentation/Other
%description doc %description doc
Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors. Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors.
This package contains documentation for u-boot firmware This package contains documentation for U-Boot firmware.
%prep %prep
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
@ -137,6 +138,9 @@ install -D -m 0755 spl/origen-spl.bin %{buildroot}/boot/origen-spl.bin
install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin
install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img
%endif %endif
%if %mvebu_spl == 1
install -D -m 0755 u-boot-spl.kwb %{buildroot}%{uboot_dir}/u-boot-spl.kwb
%endif
%if %rockchip_spl == 1 %if %rockchip_spl == 1
install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin
for t in ; do for t in ; do

View File

@ -1,3 +1,11 @@
-------------------------------------------------------------------
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
- Package Marvell SPL for ClearFog
- Tidy package summaries and descriptions
* Fix spelling of U-Boot
* Don't assume ARM
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com

View File

@ -18,12 +18,13 @@
# #
%define mvebu_spl 0
%define x_loader 1 %define x_loader 1
%define origen_spl 0
%define rockchip_spl 0 %define rockchip_spl 0
%define sunxi_spl 0 %define sunxi_spl 0
%define arndale_spl 0 %define arndale_spl 0
%define cuboxi_spl 0 %define cuboxi_spl 0
%define origen_spl 0
%define udoo_spl 0 %define udoo_spl 0
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
@ -32,7 +33,7 @@
Name: u-boot-omap3beagle Name: u-boot-omap3beagle
Version: 2016.05~rc3 Version: 2016.05~rc3
Release: 0 Release: 0
Summary: The u-boot firmware for the omap3beagle arm platform Summary: The U-Boot firmware for the omap3beagle platform
License: GPL-2.0 License: GPL-2.0
Group: System/Boot Group: System/Boot
Url: http://www.denx.de/wiki/U-Boot Url: http://www.denx.de/wiki/U-Boot
@ -68,15 +69,15 @@ ExclusiveArch: armv7l armv7hl
%description %description
Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors. Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors.
This package contains the firmware for the omap3beagle arm platform. This package contains the firmware for the omap3beagle platform.
%package doc %package doc
Summary: Documentation for the u-boot Firmware Summary: Documentation for the U-Boot Firmware
Group: Documentation/Other Group: Documentation/Other
%description doc %description doc
Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors. Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors.
This package contains documentation for u-boot firmware This package contains documentation for U-Boot firmware.
%prep %prep
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
@ -137,6 +138,9 @@ install -D -m 0755 spl/origen-spl.bin %{buildroot}/boot/origen-spl.bin
install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin
install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img
%endif %endif
%if %mvebu_spl == 1
install -D -m 0755 u-boot-spl.kwb %{buildroot}%{uboot_dir}/u-boot-spl.kwb
%endif
%if %rockchip_spl == 1 %if %rockchip_spl == 1
install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin
for t in ; do for t in ; do

View File

@ -1,3 +1,11 @@
-------------------------------------------------------------------
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
- Package Marvell SPL for ClearFog
- Tidy package summaries and descriptions
* Fix spelling of U-Boot
* Don't assume ARM
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com

View File

@ -18,12 +18,13 @@
# #
%define mvebu_spl 0
%define x_loader 1 %define x_loader 1
%define origen_spl 0
%define rockchip_spl 0 %define rockchip_spl 0
%define sunxi_spl 0 %define sunxi_spl 0
%define arndale_spl 0 %define arndale_spl 0
%define cuboxi_spl 0 %define cuboxi_spl 0
%define origen_spl 0
%define udoo_spl 0 %define udoo_spl 0
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
@ -32,7 +33,7 @@
Name: u-boot-omap4panda Name: u-boot-omap4panda
Version: 2016.05~rc3 Version: 2016.05~rc3
Release: 0 Release: 0
Summary: The u-boot firmware for the omap4panda arm platform Summary: The U-Boot firmware for the omap4panda platform
License: GPL-2.0 License: GPL-2.0
Group: System/Boot Group: System/Boot
Url: http://www.denx.de/wiki/U-Boot Url: http://www.denx.de/wiki/U-Boot
@ -68,15 +69,15 @@ ExclusiveArch: armv7l armv7hl
%description %description
Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors. Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors.
This package contains the firmware for the omap4panda arm platform. This package contains the firmware for the omap4panda platform.
%package doc %package doc
Summary: Documentation for the u-boot Firmware Summary: Documentation for the U-Boot Firmware
Group: Documentation/Other Group: Documentation/Other
%description doc %description doc
Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors. Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors.
This package contains documentation for u-boot firmware This package contains documentation for U-Boot firmware.
%prep %prep
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
@ -137,6 +138,9 @@ install -D -m 0755 spl/origen-spl.bin %{buildroot}/boot/origen-spl.bin
install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin
install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img
%endif %endif
%if %mvebu_spl == 1
install -D -m 0755 u-boot-spl.kwb %{buildroot}%{uboot_dir}/u-boot-spl.kwb
%endif
%if %rockchip_spl == 1 %if %rockchip_spl == 1
install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin
for t in ; do for t in ; do

View File

@ -1,3 +1,11 @@
-------------------------------------------------------------------
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
- Package Marvell SPL for ClearFog
- Tidy package summaries and descriptions
* Fix spelling of U-Boot
* Don't assume ARM
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com

View File

@ -18,12 +18,13 @@
# #
%define mvebu_spl 0
%define x_loader 0 %define x_loader 0
%define origen_spl 0
%define rockchip_spl 0 %define rockchip_spl 0
%define sunxi_spl 0 %define sunxi_spl 0
%define arndale_spl 0 %define arndale_spl 0
%define cuboxi_spl 0 %define cuboxi_spl 0
%define origen_spl 0
%define udoo_spl 0 %define udoo_spl 0
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
@ -32,7 +33,7 @@
Name: u-boot-orangepipc Name: u-boot-orangepipc
Version: 2016.05~rc3 Version: 2016.05~rc3
Release: 0 Release: 0
Summary: The u-boot firmware for the orangepipc arm platform Summary: The U-Boot firmware for the orangepipc platform
License: GPL-2.0 License: GPL-2.0
Group: System/Boot Group: System/Boot
Url: http://www.denx.de/wiki/U-Boot Url: http://www.denx.de/wiki/U-Boot
@ -68,15 +69,15 @@ ExclusiveArch: armv7l armv7hl
%description %description
Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors. Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors.
This package contains the firmware for the orangepipc arm platform. This package contains the firmware for the orangepipc platform.
%package doc %package doc
Summary: Documentation for the u-boot Firmware Summary: Documentation for the U-Boot Firmware
Group: Documentation/Other Group: Documentation/Other
%description doc %description doc
Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors. Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors.
This package contains documentation for u-boot firmware This package contains documentation for U-Boot firmware.
%prep %prep
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
@ -137,6 +138,9 @@ install -D -m 0755 spl/origen-spl.bin %{buildroot}/boot/origen-spl.bin
install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin
install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img
%endif %endif
%if %mvebu_spl == 1
install -D -m 0755 u-boot-spl.kwb %{buildroot}%{uboot_dir}/u-boot-spl.kwb
%endif
%if %rockchip_spl == 1 %if %rockchip_spl == 1
install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin
for t in ; do for t in ; do

View File

@ -1,3 +1,11 @@
-------------------------------------------------------------------
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
- Package Marvell SPL for ClearFog
- Tidy package summaries and descriptions
* Fix spelling of U-Boot
* Don't assume ARM
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com

View File

@ -18,12 +18,13 @@
# #
%define mvebu_spl 0
%define x_loader 0 %define x_loader 0
%define origen_spl 0
%define rockchip_spl 0 %define rockchip_spl 0
%define sunxi_spl 0 %define sunxi_spl 0
%define arndale_spl 0 %define arndale_spl 0
%define cuboxi_spl 0 %define cuboxi_spl 0
%define origen_spl 0
%define udoo_spl 0 %define udoo_spl 0
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
@ -32,7 +33,7 @@
Name: u-boot-p2371-2180 Name: u-boot-p2371-2180
Version: 2016.05~rc3 Version: 2016.05~rc3
Release: 0 Release: 0
Summary: The u-boot firmware for the p2371-2180 arm platform Summary: The U-Boot firmware for the p2371-2180 platform
License: GPL-2.0 License: GPL-2.0
Group: System/Boot Group: System/Boot
Url: http://www.denx.de/wiki/U-Boot Url: http://www.denx.de/wiki/U-Boot
@ -68,15 +69,15 @@ ExclusiveArch: aarch64
%description %description
Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors. Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors.
This package contains the firmware for the p2371-2180 arm platform. This package contains the firmware for the p2371-2180 platform.
%package doc %package doc
Summary: Documentation for the u-boot Firmware Summary: Documentation for the U-Boot Firmware
Group: Documentation/Other Group: Documentation/Other
%description doc %description doc
Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors. Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors.
This package contains documentation for u-boot firmware This package contains documentation for U-Boot firmware.
%prep %prep
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
@ -137,6 +138,9 @@ install -D -m 0755 spl/origen-spl.bin %{buildroot}/boot/origen-spl.bin
install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin
install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img
%endif %endif
%if %mvebu_spl == 1
install -D -m 0755 u-boot-spl.kwb %{buildroot}%{uboot_dir}/u-boot-spl.kwb
%endif
%if %rockchip_spl == 1 %if %rockchip_spl == 1
install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin
for t in ; do for t in ; do

View File

@ -1,3 +1,11 @@
-------------------------------------------------------------------
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
- Package Marvell SPL for ClearFog
- Tidy package summaries and descriptions
* Fix spelling of U-Boot
* Don't assume ARM
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com

View File

@ -18,12 +18,13 @@
# #
%define mvebu_spl 0
%define x_loader 0 %define x_loader 0
%define origen_spl 0
%define rockchip_spl 0 %define rockchip_spl 0
%define sunxi_spl 0 %define sunxi_spl 0
%define arndale_spl 0 %define arndale_spl 0
%define cuboxi_spl 0 %define cuboxi_spl 0
%define origen_spl 0
%define udoo_spl 0 %define udoo_spl 0
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
@ -32,7 +33,7 @@
Name: u-boot-paz00 Name: u-boot-paz00
Version: 2016.05~rc3 Version: 2016.05~rc3
Release: 0 Release: 0
Summary: The u-boot firmware for the paz00 arm platform Summary: The U-Boot firmware for the paz00 platform
License: GPL-2.0 License: GPL-2.0
Group: System/Boot Group: System/Boot
Url: http://www.denx.de/wiki/U-Boot Url: http://www.denx.de/wiki/U-Boot
@ -68,15 +69,15 @@ ExclusiveArch: armv7l armv7hl
%description %description
Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors. Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors.
This package contains the firmware for the paz00 arm platform. This package contains the firmware for the paz00 platform.
%package doc %package doc
Summary: Documentation for the u-boot Firmware Summary: Documentation for the U-Boot Firmware
Group: Documentation/Other Group: Documentation/Other
%description doc %description doc
Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors. Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors.
This package contains documentation for u-boot firmware This package contains documentation for U-Boot firmware.
%prep %prep
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
@ -137,6 +138,9 @@ install -D -m 0755 spl/origen-spl.bin %{buildroot}/boot/origen-spl.bin
install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin
install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img
%endif %endif
%if %mvebu_spl == 1
install -D -m 0755 u-boot-spl.kwb %{buildroot}%{uboot_dir}/u-boot-spl.kwb
%endif
%if %rockchip_spl == 1 %if %rockchip_spl == 1
install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin
for t in ; do for t in ; do

View File

@ -1,3 +1,11 @@
-------------------------------------------------------------------
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
- Package Marvell SPL for ClearFog
- Tidy package summaries and descriptions
* Fix spelling of U-Boot
* Don't assume ARM
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com

View File

@ -18,12 +18,13 @@
# #
%define mvebu_spl 0
%define x_loader 1 %define x_loader 1
%define origen_spl 0
%define rockchip_spl 0 %define rockchip_spl 0
%define sunxi_spl 0 %define sunxi_spl 0
%define arndale_spl 0 %define arndale_spl 0
%define cuboxi_spl 0 %define cuboxi_spl 0
%define origen_spl 0
%define udoo_spl 0 %define udoo_spl 0
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
@ -32,7 +33,7 @@
Name: u-boot-pcm051rev3 Name: u-boot-pcm051rev3
Version: 2016.05~rc3 Version: 2016.05~rc3
Release: 0 Release: 0
Summary: The u-boot firmware for the pcm051rev3 arm platform Summary: The U-Boot firmware for the pcm051rev3 platform
License: GPL-2.0 License: GPL-2.0
Group: System/Boot Group: System/Boot
Url: http://www.denx.de/wiki/U-Boot Url: http://www.denx.de/wiki/U-Boot
@ -68,15 +69,15 @@ ExclusiveArch: armv7l armv7hl
%description %description
Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors. Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors.
This package contains the firmware for the pcm051rev3 arm platform. This package contains the firmware for the pcm051rev3 platform.
%package doc %package doc
Summary: Documentation for the u-boot Firmware Summary: Documentation for the U-Boot Firmware
Group: Documentation/Other Group: Documentation/Other
%description doc %description doc
Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors. Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors.
This package contains documentation for u-boot firmware This package contains documentation for U-Boot firmware.
%prep %prep
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
@ -137,6 +138,9 @@ install -D -m 0755 spl/origen-spl.bin %{buildroot}/boot/origen-spl.bin
install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin
install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img
%endif %endif
%if %mvebu_spl == 1
install -D -m 0755 u-boot-spl.kwb %{buildroot}%{uboot_dir}/u-boot-spl.kwb
%endif
%if %rockchip_spl == 1 %if %rockchip_spl == 1
install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin
for t in ; do for t in ; do

View File

@ -1,3 +1,11 @@
-------------------------------------------------------------------
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
- Package Marvell SPL for ClearFog
- Tidy package summaries and descriptions
* Fix spelling of U-Boot
* Don't assume ARM
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com

View File

@ -18,12 +18,13 @@
# #
%define mvebu_spl 0
%define x_loader 0 %define x_loader 0
%define origen_spl 0
%define rockchip_spl 0 %define rockchip_spl 0
%define sunxi_spl 0 %define sunxi_spl 0
%define arndale_spl 0 %define arndale_spl 0
%define cuboxi_spl 0 %define cuboxi_spl 0
%define origen_spl 0
%define udoo_spl 0 %define udoo_spl 0
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
@ -32,7 +33,7 @@
Name: u-boot-qemu-ppce500 Name: u-boot-qemu-ppce500
Version: 2016.05~rc3 Version: 2016.05~rc3
Release: 0 Release: 0
Summary: The u-boot firmware for the qemu-ppce500 arm platform Summary: The U-Boot firmware for the qemu-ppce500 platform
License: GPL-2.0 License: GPL-2.0
Group: System/Boot Group: System/Boot
Url: http://www.denx.de/wiki/U-Boot Url: http://www.denx.de/wiki/U-Boot
@ -68,15 +69,15 @@ ExclusiveArch: ppc
%description %description
Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors. Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors.
This package contains the firmware for the qemu-ppce500 arm platform. This package contains the firmware for the qemu-ppce500 platform.
%package doc %package doc
Summary: Documentation for the u-boot Firmware Summary: Documentation for the U-Boot Firmware
Group: Documentation/Other Group: Documentation/Other
%description doc %description doc
Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors. Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors.
This package contains documentation for u-boot firmware This package contains documentation for U-Boot firmware.
%prep %prep
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
@ -137,6 +138,9 @@ install -D -m 0755 spl/origen-spl.bin %{buildroot}/boot/origen-spl.bin
install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin
install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img
%endif %endif
%if %mvebu_spl == 1
install -D -m 0755 u-boot-spl.kwb %{buildroot}%{uboot_dir}/u-boot-spl.kwb
%endif
%if %rockchip_spl == 1 %if %rockchip_spl == 1
install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin
for t in ; do for t in ; do

View File

@ -1,3 +1,11 @@
-------------------------------------------------------------------
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
- Package Marvell SPL for ClearFog
- Tidy package summaries and descriptions
* Fix spelling of U-Boot
* Don't assume ARM
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com

View File

@ -18,12 +18,13 @@
# #
%define mvebu_spl 0
%define x_loader 0 %define x_loader 0
%define origen_spl 0
%define rockchip_spl 0 %define rockchip_spl 0
%define sunxi_spl 0 %define sunxi_spl 0
%define arndale_spl 0 %define arndale_spl 0
%define cuboxi_spl 0 %define cuboxi_spl 0
%define origen_spl 0
%define udoo_spl 0 %define udoo_spl 0
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
@ -32,7 +33,7 @@
Name: u-boot-rpi Name: u-boot-rpi
Version: 2016.05~rc3 Version: 2016.05~rc3
Release: 0 Release: 0
Summary: The u-boot firmware for the rpi arm platform Summary: The U-Boot firmware for the rpi platform
License: GPL-2.0 License: GPL-2.0
Group: System/Boot Group: System/Boot
Url: http://www.denx.de/wiki/U-Boot Url: http://www.denx.de/wiki/U-Boot
@ -68,15 +69,15 @@ ExclusiveArch: armv6l armv6hl
%description %description
Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors. Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors.
This package contains the firmware for the rpi arm platform. This package contains the firmware for the rpi platform.
%package doc %package doc
Summary: Documentation for the u-boot Firmware Summary: Documentation for the U-Boot Firmware
Group: Documentation/Other Group: Documentation/Other
%description doc %description doc
Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors. Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors.
This package contains documentation for u-boot firmware This package contains documentation for U-Boot firmware.
%prep %prep
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
@ -137,6 +138,9 @@ install -D -m 0755 spl/origen-spl.bin %{buildroot}/boot/origen-spl.bin
install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin
install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img
%endif %endif
%if %mvebu_spl == 1
install -D -m 0755 u-boot-spl.kwb %{buildroot}%{uboot_dir}/u-boot-spl.kwb
%endif
%if %rockchip_spl == 1 %if %rockchip_spl == 1
install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin
for t in ; do for t in ; do

View File

@ -1,3 +1,11 @@
-------------------------------------------------------------------
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
- Package Marvell SPL for ClearFog
- Tidy package summaries and descriptions
* Fix spelling of U-Boot
* Don't assume ARM
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com

View File

@ -18,12 +18,13 @@
# #
%define mvebu_spl 0
%define x_loader 0 %define x_loader 0
%define origen_spl 0
%define rockchip_spl 0 %define rockchip_spl 0
%define sunxi_spl 0 %define sunxi_spl 0
%define arndale_spl 0 %define arndale_spl 0
%define cuboxi_spl 0 %define cuboxi_spl 0
%define origen_spl 0
%define udoo_spl 0 %define udoo_spl 0
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
@ -32,7 +33,7 @@
Name: u-boot-rpi2 Name: u-boot-rpi2
Version: 2016.05~rc3 Version: 2016.05~rc3
Release: 0 Release: 0
Summary: The u-boot firmware for the rpi2 arm platform Summary: The U-Boot firmware for the rpi2 platform
License: GPL-2.0 License: GPL-2.0
Group: System/Boot Group: System/Boot
Url: http://www.denx.de/wiki/U-Boot Url: http://www.denx.de/wiki/U-Boot
@ -68,15 +69,15 @@ ExclusiveArch: armv7l armv7hl
%description %description
Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors. Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors.
This package contains the firmware for the rpi2 arm platform. This package contains the firmware for the rpi2 platform.
%package doc %package doc
Summary: Documentation for the u-boot Firmware Summary: Documentation for the U-Boot Firmware
Group: Documentation/Other Group: Documentation/Other
%description doc %description doc
Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors. Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors.
This package contains documentation for u-boot firmware This package contains documentation for U-Boot firmware.
%prep %prep
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
@ -137,6 +138,9 @@ install -D -m 0755 spl/origen-spl.bin %{buildroot}/boot/origen-spl.bin
install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin
install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img
%endif %endif
%if %mvebu_spl == 1
install -D -m 0755 u-boot-spl.kwb %{buildroot}%{uboot_dir}/u-boot-spl.kwb
%endif
%if %rockchip_spl == 1 %if %rockchip_spl == 1
install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin
for t in ; do for t in ; do

View File

@ -1,3 +1,11 @@
-------------------------------------------------------------------
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
- Package Marvell SPL for ClearFog
- Tidy package summaries and descriptions
* Fix spelling of U-Boot
* Don't assume ARM
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com

View File

@ -18,12 +18,13 @@
# #
%define mvebu_spl 0
%define x_loader 0 %define x_loader 0
%define origen_spl 0
%define rockchip_spl 0 %define rockchip_spl 0
%define sunxi_spl 0 %define sunxi_spl 0
%define arndale_spl 0 %define arndale_spl 0
%define cuboxi_spl 0 %define cuboxi_spl 0
%define origen_spl 0
%define udoo_spl 0 %define udoo_spl 0
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
@ -32,7 +33,7 @@
Name: u-boot-rpi3 Name: u-boot-rpi3
Version: 2016.05~rc3 Version: 2016.05~rc3
Release: 0 Release: 0
Summary: The u-boot firmware for the rpi3 arm platform Summary: The U-Boot firmware for the rpi3 platform
License: GPL-2.0 License: GPL-2.0
Group: System/Boot Group: System/Boot
Url: http://www.denx.de/wiki/U-Boot Url: http://www.denx.de/wiki/U-Boot
@ -68,15 +69,15 @@ ExclusiveArch: aarch64
%description %description
Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors. Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors.
This package contains the firmware for the rpi3 arm platform. This package contains the firmware for the rpi3 platform.
%package doc %package doc
Summary: Documentation for the u-boot Firmware Summary: Documentation for the U-Boot Firmware
Group: Documentation/Other Group: Documentation/Other
%description doc %description doc
Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors. Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors.
This package contains documentation for u-boot firmware This package contains documentation for U-Boot firmware.
%prep %prep
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
@ -137,6 +138,9 @@ install -D -m 0755 spl/origen-spl.bin %{buildroot}/boot/origen-spl.bin
install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin
install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img
%endif %endif
%if %mvebu_spl == 1
install -D -m 0755 u-boot-spl.kwb %{buildroot}%{uboot_dir}/u-boot-spl.kwb
%endif
%if %rockchip_spl == 1 %if %rockchip_spl == 1
install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin
for t in ; do for t in ; do

View File

@ -1,3 +1,11 @@
-------------------------------------------------------------------
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
- Package Marvell SPL for ClearFog
- Tidy package summaries and descriptions
* Fix spelling of U-Boot
* Don't assume ARM
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com

View File

@ -18,12 +18,13 @@
# #
%define mvebu_spl 0
%define x_loader 0 %define x_loader 0
%define origen_spl 0
%define rockchip_spl 0 %define rockchip_spl 0
%define sunxi_spl 0 %define sunxi_spl 0
%define arndale_spl 0 %define arndale_spl 0
%define cuboxi_spl 0 %define cuboxi_spl 0
%define origen_spl 0
%define udoo_spl 0 %define udoo_spl 0
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
@ -32,7 +33,7 @@
Name: u-boot-snow Name: u-boot-snow
Version: 2016.05~rc3 Version: 2016.05~rc3
Release: 0 Release: 0
Summary: The u-boot firmware for the snow arm platform Summary: The U-Boot firmware for the snow platform
License: GPL-2.0 License: GPL-2.0
Group: System/Boot Group: System/Boot
Url: http://www.denx.de/wiki/U-Boot Url: http://www.denx.de/wiki/U-Boot
@ -68,15 +69,15 @@ ExclusiveArch: armv7l armv7hl
%description %description
Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors. Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors.
This package contains the firmware for the snow arm platform. This package contains the firmware for the snow platform.
%package doc %package doc
Summary: Documentation for the u-boot Firmware Summary: Documentation for the U-Boot Firmware
Group: Documentation/Other Group: Documentation/Other
%description doc %description doc
Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors. Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors.
This package contains documentation for u-boot firmware This package contains documentation for U-Boot firmware.
%prep %prep
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
@ -137,6 +138,9 @@ install -D -m 0755 spl/origen-spl.bin %{buildroot}/boot/origen-spl.bin
install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin
install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img
%endif %endif
%if %mvebu_spl == 1
install -D -m 0755 u-boot-spl.kwb %{buildroot}%{uboot_dir}/u-boot-spl.kwb
%endif
%if %rockchip_spl == 1 %if %rockchip_spl == 1
install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin
for t in ; do for t in ; do

View File

@ -1,3 +1,11 @@
-------------------------------------------------------------------
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
- Package Marvell SPL for ClearFog
- Tidy package summaries and descriptions
* Fix spelling of U-Boot
* Don't assume ARM
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com

View File

@ -18,12 +18,13 @@
# #
%define mvebu_spl 0
%define x_loader 0 %define x_loader 0
%define origen_spl 0
%define rockchip_spl 0 %define rockchip_spl 0
%define sunxi_spl 0 %define sunxi_spl 0
%define arndale_spl 0 %define arndale_spl 0
%define cuboxi_spl 0 %define cuboxi_spl 0
%define origen_spl 0
%define udoo_spl 0 %define udoo_spl 0
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
@ -32,7 +33,7 @@
Name: u-boot-spring Name: u-boot-spring
Version: 2016.05~rc3 Version: 2016.05~rc3
Release: 0 Release: 0
Summary: The u-boot firmware for the spring arm platform Summary: The U-Boot firmware for the spring platform
License: GPL-2.0 License: GPL-2.0
Group: System/Boot Group: System/Boot
Url: http://www.denx.de/wiki/U-Boot Url: http://www.denx.de/wiki/U-Boot
@ -68,15 +69,15 @@ ExclusiveArch: armv7l armv7hl
%description %description
Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors. Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors.
This package contains the firmware for the spring arm platform. This package contains the firmware for the spring platform.
%package doc %package doc
Summary: Documentation for the u-boot Firmware Summary: Documentation for the U-Boot Firmware
Group: Documentation/Other Group: Documentation/Other
%description doc %description doc
Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors. Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors.
This package contains documentation for u-boot firmware This package contains documentation for U-Boot firmware.
%prep %prep
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
@ -137,6 +138,9 @@ install -D -m 0755 spl/origen-spl.bin %{buildroot}/boot/origen-spl.bin
install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin
install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img
%endif %endif
%if %mvebu_spl == 1
install -D -m 0755 u-boot-spl.kwb %{buildroot}%{uboot_dir}/u-boot-spl.kwb
%endif
%if %rockchip_spl == 1 %if %rockchip_spl == 1
install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin
for t in ; do for t in ; do

View File

@ -1,3 +1,11 @@
-------------------------------------------------------------------
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
- Package Marvell SPL for ClearFog
- Tidy package summaries and descriptions
* Fix spelling of U-Boot
* Don't assume ARM
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com

View File

@ -18,12 +18,13 @@
# #
%define mvebu_spl 0
%define x_loader 0 %define x_loader 0
%define origen_spl 0
%define rockchip_spl 0 %define rockchip_spl 0
%define sunxi_spl 0 %define sunxi_spl 0
%define arndale_spl 0 %define arndale_spl 0
%define cuboxi_spl 0 %define cuboxi_spl 0
%define origen_spl 0
%define udoo_spl 1 %define udoo_spl 1
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
@ -32,7 +33,7 @@
Name: u-boot-udoo Name: u-boot-udoo
Version: 2016.05~rc3 Version: 2016.05~rc3
Release: 0 Release: 0
Summary: The u-boot firmware for the udoo arm platform Summary: The U-Boot firmware for the udoo platform
License: GPL-2.0 License: GPL-2.0
Group: System/Boot Group: System/Boot
Url: http://www.denx.de/wiki/U-Boot Url: http://www.denx.de/wiki/U-Boot
@ -68,15 +69,15 @@ ExclusiveArch: armv7l armv7hl
%description %description
Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors. Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors.
This package contains the firmware for the udoo arm platform. This package contains the firmware for the udoo platform.
%package doc %package doc
Summary: Documentation for the u-boot Firmware Summary: Documentation for the U-Boot Firmware
Group: Documentation/Other Group: Documentation/Other
%description doc %description doc
Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors. Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors.
This package contains documentation for u-boot firmware This package contains documentation for U-Boot firmware.
%prep %prep
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
@ -137,6 +138,9 @@ install -D -m 0755 spl/origen-spl.bin %{buildroot}/boot/origen-spl.bin
install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin
install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img
%endif %endif
%if %mvebu_spl == 1
install -D -m 0755 u-boot-spl.kwb %{buildroot}%{uboot_dir}/u-boot-spl.kwb
%endif
%if %rockchip_spl == 1 %if %rockchip_spl == 1
install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin
for t in ; do for t in ; do

View File

@ -1,3 +1,11 @@
-------------------------------------------------------------------
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
- Package Marvell SPL for ClearFog
- Tidy package summaries and descriptions
* Fix spelling of U-Boot
* Don't assume ARM
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com Thu Apr 28 15:46:09 UTC 2016 - agraf@suse.com

View File

@ -24,7 +24,7 @@
Name: u-boot Name: u-boot
Version: 2016.05~rc3 Version: 2016.05~rc3
Release: 0 Release: 0
Summary: Tools for the u-boot Firmware Summary: Tools for the U-Boot Firmware
License: GPL-2.0 License: GPL-2.0
Group: System/Boot Group: System/Boot
Url: http://www.denx.de/wiki/U-Boot Url: http://www.denx.de/wiki/U-Boot
@ -35,17 +35,17 @@ BuildRoot: %{_tmppath}/%{name}-%{version}-build
%description %description
Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors. Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors.
This package contains: This package contains:
mkimage- a tool that creates kernel bootable images for u-boot. mkimage- a tool that creates kernel bootable images for U-Boot.
%package tools %package tools
Summary: Tools for the u-boot Firmware Summary: Tools for the U-Boot Firmware
Group: System/Boot Group: System/Boot
%description tools %description tools
Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors. Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors.
This package contains: This package contains:
mkimage- a tool that creates kernel bootable images for u-boot. mkimage- a tool that creates kernel bootable images for U-Boot.
%prep %prep
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}

View File

@ -18,12 +18,13 @@
# #
%define mvebu_spl MVEBU_SPL
%define x_loader OMAP_SPL %define x_loader OMAP_SPL
%define origen_spl ORIGEN_SPL
%define rockchip_spl ROCKCHIP_SPL %define rockchip_spl ROCKCHIP_SPL
%define sunxi_spl SUNXI_SPL %define sunxi_spl SUNXI_SPL
%define arndale_spl ARNDALE_SPL %define arndale_spl ARNDALE_SPL
%define cuboxi_spl CUBOXI_SPL %define cuboxi_spl CUBOXI_SPL
%define origen_spl ORIGEN_SPL
%define udoo_spl UDOO_SPL %define udoo_spl UDOO_SPL
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
@ -32,7 +33,7 @@
Name: u-boot-BOARDNAME Name: u-boot-BOARDNAME
Version: 2016.05~rc3 Version: 2016.05~rc3
Release: 0 Release: 0
Summary: The u-boot firmware for the BOARDNAME arm platform Summary: The U-Boot firmware for the BOARDNAME platform
License: GPL-2.0 License: GPL-2.0
Group: System/Boot Group: System/Boot
Url: http://www.denx.de/wiki/U-Boot Url: http://www.denx.de/wiki/U-Boot
@ -68,15 +69,15 @@ ExclusiveArch: ARCH_RESTRICTIONS
%description %description
Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors. Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors.
This package contains the firmware for the BOARDNAME arm platform. This package contains the firmware for the BOARDNAME platform.
%package doc %package doc
Summary: Documentation for the u-boot Firmware Summary: Documentation for the U-Boot Firmware
Group: Documentation/Other Group: Documentation/Other
%description doc %description doc
Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors. Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors.
This package contains documentation for u-boot firmware This package contains documentation for U-Boot firmware.
%prep %prep
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
@ -137,6 +138,9 @@ install -D -m 0755 spl/origen-spl.bin %{buildroot}/boot/origen-spl.bin
install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin
install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img
%endif %endif
%if %mvebu_spl == 1
install -D -m 0755 u-boot-spl.kwb %{buildroot}%{uboot_dir}/u-boot-spl.kwb
%endif
%if %rockchip_spl == 1 %if %rockchip_spl == 1
install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin install -D -m 0644 spl/u-boot-spl-dtb.bin %{buildroot}%{uboot_dir}/u-boot-spl-dtb.bin
for t in ROCKCHIP_SPL_IMAGE_TYPES; do for t in ROCKCHIP_SPL_IMAGE_TYPES; do