diff --git a/0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch b/0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch index 5915730..594efa0 100644 --- a/0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch +++ b/0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch @@ -1,4 +1,4 @@ -From b5facb51166914779628971afd309996b1900ccd Mon Sep 17 00:00:00 2001 +From 3ff1b84161bcb99538111fed22b105a080605e8e Mon Sep 17 00:00:00 2001 From: Alexander Graf Date: Wed, 13 Apr 2016 13:44:29 +0200 Subject: [PATCH] XXX openSUSE XXX: Load dtb from partition 2 @@ -16,10 +16,10 @@ Signed-off-by: Alexander Graf 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/config_distro_bootcmd.h b/include/config_distro_bootcmd.h -index 9ecaf38..42e39e7 100644 +index 0e01e82..efca44b 100644 --- a/include/config_distro_bootcmd.h +++ b/include/config_distro_bootcmd.h -@@ -125,16 +125,16 @@ +@@ -121,16 +121,16 @@ "fi\0" \ \ "load_efi_dtb=" \ diff --git a/0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch b/0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch index e3c0164..242ddcc 100644 --- a/0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch +++ b/0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch @@ -1,4 +1,4 @@ -From 6f767d5e668cb854662317401debe9e812ac348d Mon Sep 17 00:00:00 2001 +From 7be6d47c2fb9c821b2966cbd34b7cf596a69edd1 Mon Sep 17 00:00:00 2001 From: Alexander Graf Date: Mon, 2 May 2016 23:25:07 +0200 Subject: [PATCH] Revert "Revert "omap3: Use raw SPL by default for mmc1"" @@ -9,7 +9,7 @@ This reverts commit 7fa75d0ac5502db813d109c1df7bd0da34688685. 1 file changed, 2 deletions(-) diff --git a/arch/arm/mach-omap2/boot-common.c b/arch/arm/mach-omap2/boot-common.c -index 385310b..c7125e9 100644 +index 7ae3d80..bdbc1c6 100644 --- a/arch/arm/mach-omap2/boot-common.c +++ b/arch/arm/mach-omap2/boot-common.c @@ -116,8 +116,6 @@ void save_omap_boot_params(void) diff --git a/0003-Makefile-Fix-linking-with-modern-bi.patch b/0003-Makefile-Fix-linking-with-modern-bi.patch new file mode 100644 index 0000000..3079d7b --- /dev/null +++ b/0003-Makefile-Fix-linking-with-modern-bi.patch @@ -0,0 +1,67 @@ +From 7cc861a93885f088bce2d51229543700b617f299 Mon Sep 17 00:00:00 2001 +From: Joel Stanley +Date: Fri, 16 Dec 2016 15:23:30 +1030 +Subject: [PATCH] Makefile: Fix linking with modern binutils +MIME-Version: 1.0 +Content-Type: text/plain; charset=UTF-8 +Content-Transfer-Encoding: 8bit + +Since Binutils 1a9ccd70f9a7[1] u-boot will not link targets that set +CONFIG_SYS_TEXT_BASE=0 with the following error: + + LD u-boot +arm-linux-gnueabi-ld.bfd: u-boot: Not enough room for program headers, try + linking with -N +arm-linux-gnueabi-ld.bfd: final link failed: Bad value + +The issue can be reproduced with the bad binutils and the rock2_defconfig +target. + +This issue was also encountered by the powerpc kernel[2], with the fix +being to pass --no-dynamic-linker for linkers newer than 2.26 when this +flag was introduced. The option tells ld that the PIE or shared lib does +not need loaded program headers. + +Ubuntu Zesty's Binutils 2.27.51.20161202 hits this error. + +[1] https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;a=commit;h=1a9ccd70f9a7 +[2] https://git.kernel.org/cgit/linux/kernel/git/powerpc/linux.git/commit/?h=next&id=ff45000fcb56b5b0f1a14a865d3541746d838a0a + +Signed-off-by: Joel Stanley +[AF: Apply to LDFLAGS_$(SPL_BIN) as well, suggested by Tom Rini] +Signed-off-by: Andreas Färber +--- + Makefile | 4 ++++ + scripts/Makefile.spl | 4 ++++ + 2 files changed, 8 insertions(+) + +diff --git a/Makefile b/Makefile +index 323d646..10f1cbb 100644 +--- a/Makefile ++++ b/Makefile +@@ -804,6 +804,10 @@ ALL-y += $(CONFIG_BUILD_TARGET:"%"=%) + endif + + LDFLAGS_u-boot += $(LDFLAGS_FINAL) ++ ++# Avoid 'Not enough room for program headers' error on binutils 2.28 onwards. ++LDFLAGS_u-boot += $(call ld-option, --no-dynamic-linker) ++ + ifneq ($(CONFIG_SYS_TEXT_BASE),) + LDFLAGS_u-boot += -Ttext $(CONFIG_SYS_TEXT_BASE) + endif +diff --git a/scripts/Makefile.spl b/scripts/Makefile.spl +index b52f996..dec0025 100644 +--- a/scripts/Makefile.spl ++++ b/scripts/Makefile.spl +@@ -276,6 +276,10 @@ $(obj)/u-boot-x86-16bit-spl.bin: $(obj)/u-boot-spl FORCE + $(call if_changed,objcopy) + + LDFLAGS_$(SPL_BIN) += -T u-boot-spl.lds $(LDFLAGS_FINAL) ++ ++# Avoid 'Not enough room for program headers' error on binutils 2.28 onwards. ++LDFLAGS_$(SPL_BIN) += $(call ld-option, --no-dynamic-linker) ++ + ifneq ($(CONFIG_SPL_TEXT_BASE),) + LDFLAGS_$(SPL_BIN) += -Ttext $(CONFIG_SPL_TEXT_BASE) + endif diff --git a/pre_checkin.sh b/pre_checkin.sh index 2353857..3e3e21b 100644 --- a/pre_checkin.sh +++ b/pre_checkin.sh @@ -29,13 +29,15 @@ armv7_boards="$armv7_boards rpi_2 rpi_3_32b" # Nvidia armv7_boards="$armv7_boards colibri_t20 paz00 jetson-tk1" # Rockchip -armv7_boards="$armv7_boards firefly-rk3288" +armv7_boards="$armv7_boards firefly-rk3288 tinker-rk3288" # Marvell armv7_boards="$armv7_boards clearfog" # Altera armv7_boards="$armv7_boards socfpga_de0_nano_soc" aarch64_boards="dragonboard410c hikey odroid-c2 p2371-2180 pine64_plus rpi_3" +# Marvell +aarch64_boards="$aarch64_boards mvebu_db-88f3720 mvebu_db-88f7040 mvebu_db-88f8040" ppc_boards="qemu-ppce500" @@ -114,7 +116,7 @@ udoo_neo) BINEND=img IMX6_SPL=1 ;; -firefly-rk3288) +firefly-rk3288|tinker-rk3288) BINEND=img ROCKCHIP_SPL=1 ROCKCHIP_SPL_IMAGE_TYPES="rksd rkimage" diff --git a/u-boot-2017.01.tar.bz2 b/u-boot-2017.01.tar.bz2 deleted file mode 100644 index c80aff4..0000000 --- a/u-boot-2017.01.tar.bz2 +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6c425175f93a4bcf2ec9faf5658ef279633dbd7856a293d95bd1ff516528ecf2 -size 12224884 diff --git a/u-boot-2017.03.tar.bz2 b/u-boot-2017.03.tar.bz2 new file mode 100644 index 0000000..86d3789 --- /dev/null +++ b/u-boot-2017.03.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f54baf3f9325bf444c7905f3a5b6f83680edb1e6e1a4d5f8a5ad80abe885113f +size 12287670 diff --git a/u-boot-a10-olinuxino-lime.changes b/u-boot-a10-olinuxino-lime.changes index 9364ee2..4e8877d 100644 --- a/u-boot-a10-olinuxino-lime.changes +++ b/u-boot-a10-olinuxino-lime.changes @@ -1,3 +1,38 @@ +------------------------------------------------------------------- +Sun Apr 9 18:24:30 UTC 2017 - afaerber@suse.de + +- Add tinker-rk3288 +- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.03 +* Fix firefly-rk3288 and tinker-rk3288 build with binutils 2.28. + 0003-Makefile-Fix-linking-with-modern-bi.patch +- U-Boot has no CFLAGS, so apply $RPM_OPT_FLAGS to HOSTCFLAGS instead + +------------------------------------------------------------------- +Mon Mar 20 11:10:57 UTC 2017 - afaerber@suse.de + +- Tidy Raspberry Pi conditionals +- Enable CONFIG_OF_LIBFDT_OVERLAY for Raspberry Pi only for now + +------------------------------------------------------------------- +Mon Mar 20 09:43:14 UTC 2017 - afaerber@suse.de + +- Add mvebudb-88f{3720,7040,8040} + +------------------------------------------------------------------- +Tue Mar 14 08:47:33 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.03 + +------------------------------------------------------------------- +Wed Mar 1 09:36:39 UTC 2017 - guillaume@opensuse.org + +- Add libopenssl-devel as BuildRequires (needed by some configs) + +------------------------------------------------------------------- +Tue Feb 28 08:37:55 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.03-rc3 + ------------------------------------------------------------------- Wed Feb 22 13:38:25 UTC 2017 - hsehic@suse.com diff --git a/u-boot-a10-olinuxino-lime.spec b/u-boot-a10-olinuxino-lime.spec index a20ac5f..ee79e1c 100644 --- a/u-boot-a10-olinuxino-lime.spec +++ b/u-boot-a10-olinuxino-lime.spec @@ -29,11 +29,15 @@ %define imx6_spl 0 %define socfpga_spl 0 +%if "a10-olinuxino-lime" == "rpi" || "a10-olinuxino-lime" == "rpi2" || "a10-olinuxino-lime" == "rpi332b" || "a10-olinuxino-lime" == "rpi3" +%define is_rpi 1 +%endif + # archive_version differs from version for RC version only -%define archive_version 2017.01 +%define archive_version 2017.03 Name: u-boot-a10-olinuxino-lime -Version: 2017.01 +Version: 2017.03 Release: 0 Summary: The U-Boot firmware for the a10-olinuxino-lime platform License: GPL-2.0 @@ -45,10 +49,13 @@ Source3: update_git.sh Source300: u-boot-rpmlintrc Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch +Patch0003: 0003-Makefile-Fix-linking-with-modern-bi.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build # Arndale board need DTC >= 1.4 BuildRequires: bc BuildRequires: dtc >= 1.4.0 +# u-boot-clearfog (tools/kwbimage.c) needs openssl to build +BuildRequires: libopenssl-devel # u-boot-firefly-rk3288 needs python to build BuildRequires: python %if "%{name}" == "u-boot-qemu-ppce500" @@ -56,7 +63,7 @@ BuildRequires: python BuildRequires: qemu Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500 %endif -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} # Owns /boot/vc directory BuildRequires: raspberrypi-firmware # For mountpoint @@ -86,16 +93,24 @@ This package contains documentation for U-Boot firmware. %setup -q -n u-boot-%{archive_version} %patch0001 -p1 %patch0002 -p1 +%patch0003 -p1 %build export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s) -make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" A10-OLinuXino-Lime_defconfig -make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes +make %{?jobs:-j %jobs} CROSS_COMPILE= HOSTCFLAGS="$RPM_OPT_FLAGS" A10-OLinuXino-Lime_defconfig +%if 0%{?is_rpi} +# U-Boot is installed in the filesystem, so we are confident there's enough space. +echo "Attempting to enable fdt apply command (.dtbo) support." +echo "CONFIG_OF_LIBFDT_OVERLAY=y" >> .config +%endif +make %{?jobs:-j %jobs} CROSS_COMPILE= HOSTCFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes + %if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring" # Chromebook ARM (snow) and HP Chromebook 11 (spring) need a uImage format export TEXT_START=$(awk '$NF == "_start" { printf "0x"$1 }' System.map) ./tools/mkimage -A arm -O linux -T kernel -C none -a $TEXT_START -e $TEXT_START -n uboot -d u-boot-dtb.bin u-boot.img %endif + %if %rockchip_spl == 1 for t in ; do ./tools/mkimage -n -d spl/u-boot-spl.bin -T $t u-boot-spl.$t @@ -107,7 +122,7 @@ export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | export NO_BRP_STRIP_DEBUG=true export NO_DEBUGINFO_STRIP_DEBUG=true %define uboot_dir /boot -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} %define uboot_dir /boot/vc %endif %if "%{name}" == "u-boot-qemu-ppce500" @@ -168,7 +183,7 @@ install -D -m 0755 SPL %{buildroot}/boot/imx6-spl.bin install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp %endif -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} %post # On the Raspberry Pi we chain-load u-boot.bin from bootcode.bin via config.txt. # It needs to be on the first FAT partition, wherever we mounted it. diff --git a/u-boot-a13-olinuxino.changes b/u-boot-a13-olinuxino.changes index 9364ee2..4e8877d 100644 --- a/u-boot-a13-olinuxino.changes +++ b/u-boot-a13-olinuxino.changes @@ -1,3 +1,38 @@ +------------------------------------------------------------------- +Sun Apr 9 18:24:30 UTC 2017 - afaerber@suse.de + +- Add tinker-rk3288 +- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.03 +* Fix firefly-rk3288 and tinker-rk3288 build with binutils 2.28. + 0003-Makefile-Fix-linking-with-modern-bi.patch +- U-Boot has no CFLAGS, so apply $RPM_OPT_FLAGS to HOSTCFLAGS instead + +------------------------------------------------------------------- +Mon Mar 20 11:10:57 UTC 2017 - afaerber@suse.de + +- Tidy Raspberry Pi conditionals +- Enable CONFIG_OF_LIBFDT_OVERLAY for Raspberry Pi only for now + +------------------------------------------------------------------- +Mon Mar 20 09:43:14 UTC 2017 - afaerber@suse.de + +- Add mvebudb-88f{3720,7040,8040} + +------------------------------------------------------------------- +Tue Mar 14 08:47:33 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.03 + +------------------------------------------------------------------- +Wed Mar 1 09:36:39 UTC 2017 - guillaume@opensuse.org + +- Add libopenssl-devel as BuildRequires (needed by some configs) + +------------------------------------------------------------------- +Tue Feb 28 08:37:55 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.03-rc3 + ------------------------------------------------------------------- Wed Feb 22 13:38:25 UTC 2017 - hsehic@suse.com diff --git a/u-boot-a13-olinuxino.spec b/u-boot-a13-olinuxino.spec index 55afab2..ddbbbcb 100644 --- a/u-boot-a13-olinuxino.spec +++ b/u-boot-a13-olinuxino.spec @@ -29,11 +29,15 @@ %define imx6_spl 0 %define socfpga_spl 0 +%if "a13-olinuxino" == "rpi" || "a13-olinuxino" == "rpi2" || "a13-olinuxino" == "rpi332b" || "a13-olinuxino" == "rpi3" +%define is_rpi 1 +%endif + # archive_version differs from version for RC version only -%define archive_version 2017.01 +%define archive_version 2017.03 Name: u-boot-a13-olinuxino -Version: 2017.01 +Version: 2017.03 Release: 0 Summary: The U-Boot firmware for the a13-olinuxino platform License: GPL-2.0 @@ -45,10 +49,13 @@ Source3: update_git.sh Source300: u-boot-rpmlintrc Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch +Patch0003: 0003-Makefile-Fix-linking-with-modern-bi.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build # Arndale board need DTC >= 1.4 BuildRequires: bc BuildRequires: dtc >= 1.4.0 +# u-boot-clearfog (tools/kwbimage.c) needs openssl to build +BuildRequires: libopenssl-devel # u-boot-firefly-rk3288 needs python to build BuildRequires: python %if "%{name}" == "u-boot-qemu-ppce500" @@ -56,7 +63,7 @@ BuildRequires: python BuildRequires: qemu Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500 %endif -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} # Owns /boot/vc directory BuildRequires: raspberrypi-firmware # For mountpoint @@ -86,16 +93,24 @@ This package contains documentation for U-Boot firmware. %setup -q -n u-boot-%{archive_version} %patch0001 -p1 %patch0002 -p1 +%patch0003 -p1 %build export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s) -make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" A13-OLinuXino_defconfig -make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes +make %{?jobs:-j %jobs} CROSS_COMPILE= HOSTCFLAGS="$RPM_OPT_FLAGS" A13-OLinuXino_defconfig +%if 0%{?is_rpi} +# U-Boot is installed in the filesystem, so we are confident there's enough space. +echo "Attempting to enable fdt apply command (.dtbo) support." +echo "CONFIG_OF_LIBFDT_OVERLAY=y" >> .config +%endif +make %{?jobs:-j %jobs} CROSS_COMPILE= HOSTCFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes + %if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring" # Chromebook ARM (snow) and HP Chromebook 11 (spring) need a uImage format export TEXT_START=$(awk '$NF == "_start" { printf "0x"$1 }' System.map) ./tools/mkimage -A arm -O linux -T kernel -C none -a $TEXT_START -e $TEXT_START -n uboot -d u-boot-dtb.bin u-boot.img %endif + %if %rockchip_spl == 1 for t in ; do ./tools/mkimage -n -d spl/u-boot-spl.bin -T $t u-boot-spl.$t @@ -107,7 +122,7 @@ export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | export NO_BRP_STRIP_DEBUG=true export NO_DEBUGINFO_STRIP_DEBUG=true %define uboot_dir /boot -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} %define uboot_dir /boot/vc %endif %if "%{name}" == "u-boot-qemu-ppce500" @@ -168,7 +183,7 @@ install -D -m 0755 SPL %{buildroot}/boot/imx6-spl.bin install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp %endif -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} %post # On the Raspberry Pi we chain-load u-boot.bin from bootcode.bin via config.txt. # It needs to be on the first FAT partition, wherever we mounted it. diff --git a/u-boot-a13-olinuxinom.changes b/u-boot-a13-olinuxinom.changes index 9364ee2..4e8877d 100644 --- a/u-boot-a13-olinuxinom.changes +++ b/u-boot-a13-olinuxinom.changes @@ -1,3 +1,38 @@ +------------------------------------------------------------------- +Sun Apr 9 18:24:30 UTC 2017 - afaerber@suse.de + +- Add tinker-rk3288 +- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.03 +* Fix firefly-rk3288 and tinker-rk3288 build with binutils 2.28. + 0003-Makefile-Fix-linking-with-modern-bi.patch +- U-Boot has no CFLAGS, so apply $RPM_OPT_FLAGS to HOSTCFLAGS instead + +------------------------------------------------------------------- +Mon Mar 20 11:10:57 UTC 2017 - afaerber@suse.de + +- Tidy Raspberry Pi conditionals +- Enable CONFIG_OF_LIBFDT_OVERLAY for Raspberry Pi only for now + +------------------------------------------------------------------- +Mon Mar 20 09:43:14 UTC 2017 - afaerber@suse.de + +- Add mvebudb-88f{3720,7040,8040} + +------------------------------------------------------------------- +Tue Mar 14 08:47:33 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.03 + +------------------------------------------------------------------- +Wed Mar 1 09:36:39 UTC 2017 - guillaume@opensuse.org + +- Add libopenssl-devel as BuildRequires (needed by some configs) + +------------------------------------------------------------------- +Tue Feb 28 08:37:55 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.03-rc3 + ------------------------------------------------------------------- Wed Feb 22 13:38:25 UTC 2017 - hsehic@suse.com diff --git a/u-boot-a13-olinuxinom.spec b/u-boot-a13-olinuxinom.spec index 5a9fb01..7363ebc 100644 --- a/u-boot-a13-olinuxinom.spec +++ b/u-boot-a13-olinuxinom.spec @@ -29,11 +29,15 @@ %define imx6_spl 0 %define socfpga_spl 0 +%if "a13-olinuxinom" == "rpi" || "a13-olinuxinom" == "rpi2" || "a13-olinuxinom" == "rpi332b" || "a13-olinuxinom" == "rpi3" +%define is_rpi 1 +%endif + # archive_version differs from version for RC version only -%define archive_version 2017.01 +%define archive_version 2017.03 Name: u-boot-a13-olinuxinom -Version: 2017.01 +Version: 2017.03 Release: 0 Summary: The U-Boot firmware for the a13-olinuxinom platform License: GPL-2.0 @@ -45,10 +49,13 @@ Source3: update_git.sh Source300: u-boot-rpmlintrc Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch +Patch0003: 0003-Makefile-Fix-linking-with-modern-bi.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build # Arndale board need DTC >= 1.4 BuildRequires: bc BuildRequires: dtc >= 1.4.0 +# u-boot-clearfog (tools/kwbimage.c) needs openssl to build +BuildRequires: libopenssl-devel # u-boot-firefly-rk3288 needs python to build BuildRequires: python %if "%{name}" == "u-boot-qemu-ppce500" @@ -56,7 +63,7 @@ BuildRequires: python BuildRequires: qemu Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500 %endif -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} # Owns /boot/vc directory BuildRequires: raspberrypi-firmware # For mountpoint @@ -86,16 +93,24 @@ This package contains documentation for U-Boot firmware. %setup -q -n u-boot-%{archive_version} %patch0001 -p1 %patch0002 -p1 +%patch0003 -p1 %build export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s) -make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" A13-OLinuXinoM_defconfig -make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes +make %{?jobs:-j %jobs} CROSS_COMPILE= HOSTCFLAGS="$RPM_OPT_FLAGS" A13-OLinuXinoM_defconfig +%if 0%{?is_rpi} +# U-Boot is installed in the filesystem, so we are confident there's enough space. +echo "Attempting to enable fdt apply command (.dtbo) support." +echo "CONFIG_OF_LIBFDT_OVERLAY=y" >> .config +%endif +make %{?jobs:-j %jobs} CROSS_COMPILE= HOSTCFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes + %if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring" # Chromebook ARM (snow) and HP Chromebook 11 (spring) need a uImage format export TEXT_START=$(awk '$NF == "_start" { printf "0x"$1 }' System.map) ./tools/mkimage -A arm -O linux -T kernel -C none -a $TEXT_START -e $TEXT_START -n uboot -d u-boot-dtb.bin u-boot.img %endif + %if %rockchip_spl == 1 for t in ; do ./tools/mkimage -n -d spl/u-boot-spl.bin -T $t u-boot-spl.$t @@ -107,7 +122,7 @@ export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | export NO_BRP_STRIP_DEBUG=true export NO_DEBUGINFO_STRIP_DEBUG=true %define uboot_dir /boot -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} %define uboot_dir /boot/vc %endif %if "%{name}" == "u-boot-qemu-ppce500" @@ -168,7 +183,7 @@ install -D -m 0755 SPL %{buildroot}/boot/imx6-spl.bin install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp %endif -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} %post # On the Raspberry Pi we chain-load u-boot.bin from bootcode.bin via config.txt. # It needs to be on the first FAT partition, wherever we mounted it. diff --git a/u-boot-a20-olinuxino-lime.changes b/u-boot-a20-olinuxino-lime.changes index 9364ee2..4e8877d 100644 --- a/u-boot-a20-olinuxino-lime.changes +++ b/u-boot-a20-olinuxino-lime.changes @@ -1,3 +1,38 @@ +------------------------------------------------------------------- +Sun Apr 9 18:24:30 UTC 2017 - afaerber@suse.de + +- Add tinker-rk3288 +- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.03 +* Fix firefly-rk3288 and tinker-rk3288 build with binutils 2.28. + 0003-Makefile-Fix-linking-with-modern-bi.patch +- U-Boot has no CFLAGS, so apply $RPM_OPT_FLAGS to HOSTCFLAGS instead + +------------------------------------------------------------------- +Mon Mar 20 11:10:57 UTC 2017 - afaerber@suse.de + +- Tidy Raspberry Pi conditionals +- Enable CONFIG_OF_LIBFDT_OVERLAY for Raspberry Pi only for now + +------------------------------------------------------------------- +Mon Mar 20 09:43:14 UTC 2017 - afaerber@suse.de + +- Add mvebudb-88f{3720,7040,8040} + +------------------------------------------------------------------- +Tue Mar 14 08:47:33 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.03 + +------------------------------------------------------------------- +Wed Mar 1 09:36:39 UTC 2017 - guillaume@opensuse.org + +- Add libopenssl-devel as BuildRequires (needed by some configs) + +------------------------------------------------------------------- +Tue Feb 28 08:37:55 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.03-rc3 + ------------------------------------------------------------------- Wed Feb 22 13:38:25 UTC 2017 - hsehic@suse.com diff --git a/u-boot-a20-olinuxino-lime.spec b/u-boot-a20-olinuxino-lime.spec index 9acb011..01027f3 100644 --- a/u-boot-a20-olinuxino-lime.spec +++ b/u-boot-a20-olinuxino-lime.spec @@ -29,11 +29,15 @@ %define imx6_spl 0 %define socfpga_spl 0 +%if "a20-olinuxino-lime" == "rpi" || "a20-olinuxino-lime" == "rpi2" || "a20-olinuxino-lime" == "rpi332b" || "a20-olinuxino-lime" == "rpi3" +%define is_rpi 1 +%endif + # archive_version differs from version for RC version only -%define archive_version 2017.01 +%define archive_version 2017.03 Name: u-boot-a20-olinuxino-lime -Version: 2017.01 +Version: 2017.03 Release: 0 Summary: The U-Boot firmware for the a20-olinuxino-lime platform License: GPL-2.0 @@ -45,10 +49,13 @@ Source3: update_git.sh Source300: u-boot-rpmlintrc Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch +Patch0003: 0003-Makefile-Fix-linking-with-modern-bi.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build # Arndale board need DTC >= 1.4 BuildRequires: bc BuildRequires: dtc >= 1.4.0 +# u-boot-clearfog (tools/kwbimage.c) needs openssl to build +BuildRequires: libopenssl-devel # u-boot-firefly-rk3288 needs python to build BuildRequires: python %if "%{name}" == "u-boot-qemu-ppce500" @@ -56,7 +63,7 @@ BuildRequires: python BuildRequires: qemu Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500 %endif -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} # Owns /boot/vc directory BuildRequires: raspberrypi-firmware # For mountpoint @@ -86,16 +93,24 @@ This package contains documentation for U-Boot firmware. %setup -q -n u-boot-%{archive_version} %patch0001 -p1 %patch0002 -p1 +%patch0003 -p1 %build export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s) -make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" A20-OLinuXino-Lime_defconfig -make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes +make %{?jobs:-j %jobs} CROSS_COMPILE= HOSTCFLAGS="$RPM_OPT_FLAGS" A20-OLinuXino-Lime_defconfig +%if 0%{?is_rpi} +# U-Boot is installed in the filesystem, so we are confident there's enough space. +echo "Attempting to enable fdt apply command (.dtbo) support." +echo "CONFIG_OF_LIBFDT_OVERLAY=y" >> .config +%endif +make %{?jobs:-j %jobs} CROSS_COMPILE= HOSTCFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes + %if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring" # Chromebook ARM (snow) and HP Chromebook 11 (spring) need a uImage format export TEXT_START=$(awk '$NF == "_start" { printf "0x"$1 }' System.map) ./tools/mkimage -A arm -O linux -T kernel -C none -a $TEXT_START -e $TEXT_START -n uboot -d u-boot-dtb.bin u-boot.img %endif + %if %rockchip_spl == 1 for t in ; do ./tools/mkimage -n -d spl/u-boot-spl.bin -T $t u-boot-spl.$t @@ -107,7 +122,7 @@ export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | export NO_BRP_STRIP_DEBUG=true export NO_DEBUGINFO_STRIP_DEBUG=true %define uboot_dir /boot -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} %define uboot_dir /boot/vc %endif %if "%{name}" == "u-boot-qemu-ppce500" @@ -168,7 +183,7 @@ install -D -m 0755 SPL %{buildroot}/boot/imx6-spl.bin install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp %endif -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} %post # On the Raspberry Pi we chain-load u-boot.bin from bootcode.bin via config.txt. # It needs to be on the first FAT partition, wherever we mounted it. diff --git a/u-boot-a20-olinuxino-lime2.changes b/u-boot-a20-olinuxino-lime2.changes index 9364ee2..4e8877d 100644 --- a/u-boot-a20-olinuxino-lime2.changes +++ b/u-boot-a20-olinuxino-lime2.changes @@ -1,3 +1,38 @@ +------------------------------------------------------------------- +Sun Apr 9 18:24:30 UTC 2017 - afaerber@suse.de + +- Add tinker-rk3288 +- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.03 +* Fix firefly-rk3288 and tinker-rk3288 build with binutils 2.28. + 0003-Makefile-Fix-linking-with-modern-bi.patch +- U-Boot has no CFLAGS, so apply $RPM_OPT_FLAGS to HOSTCFLAGS instead + +------------------------------------------------------------------- +Mon Mar 20 11:10:57 UTC 2017 - afaerber@suse.de + +- Tidy Raspberry Pi conditionals +- Enable CONFIG_OF_LIBFDT_OVERLAY for Raspberry Pi only for now + +------------------------------------------------------------------- +Mon Mar 20 09:43:14 UTC 2017 - afaerber@suse.de + +- Add mvebudb-88f{3720,7040,8040} + +------------------------------------------------------------------- +Tue Mar 14 08:47:33 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.03 + +------------------------------------------------------------------- +Wed Mar 1 09:36:39 UTC 2017 - guillaume@opensuse.org + +- Add libopenssl-devel as BuildRequires (needed by some configs) + +------------------------------------------------------------------- +Tue Feb 28 08:37:55 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.03-rc3 + ------------------------------------------------------------------- Wed Feb 22 13:38:25 UTC 2017 - hsehic@suse.com diff --git a/u-boot-a20-olinuxino-lime2.spec b/u-boot-a20-olinuxino-lime2.spec index da0bd6e..681427f 100644 --- a/u-boot-a20-olinuxino-lime2.spec +++ b/u-boot-a20-olinuxino-lime2.spec @@ -29,11 +29,15 @@ %define imx6_spl 0 %define socfpga_spl 0 +%if "a20-olinuxino-lime2" == "rpi" || "a20-olinuxino-lime2" == "rpi2" || "a20-olinuxino-lime2" == "rpi332b" || "a20-olinuxino-lime2" == "rpi3" +%define is_rpi 1 +%endif + # archive_version differs from version for RC version only -%define archive_version 2017.01 +%define archive_version 2017.03 Name: u-boot-a20-olinuxino-lime2 -Version: 2017.01 +Version: 2017.03 Release: 0 Summary: The U-Boot firmware for the a20-olinuxino-lime2 platform License: GPL-2.0 @@ -45,10 +49,13 @@ Source3: update_git.sh Source300: u-boot-rpmlintrc Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch +Patch0003: 0003-Makefile-Fix-linking-with-modern-bi.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build # Arndale board need DTC >= 1.4 BuildRequires: bc BuildRequires: dtc >= 1.4.0 +# u-boot-clearfog (tools/kwbimage.c) needs openssl to build +BuildRequires: libopenssl-devel # u-boot-firefly-rk3288 needs python to build BuildRequires: python %if "%{name}" == "u-boot-qemu-ppce500" @@ -56,7 +63,7 @@ BuildRequires: python BuildRequires: qemu Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500 %endif -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} # Owns /boot/vc directory BuildRequires: raspberrypi-firmware # For mountpoint @@ -86,16 +93,24 @@ This package contains documentation for U-Boot firmware. %setup -q -n u-boot-%{archive_version} %patch0001 -p1 %patch0002 -p1 +%patch0003 -p1 %build export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s) -make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" A20-OLinuXino-Lime2_defconfig -make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes +make %{?jobs:-j %jobs} CROSS_COMPILE= HOSTCFLAGS="$RPM_OPT_FLAGS" A20-OLinuXino-Lime2_defconfig +%if 0%{?is_rpi} +# U-Boot is installed in the filesystem, so we are confident there's enough space. +echo "Attempting to enable fdt apply command (.dtbo) support." +echo "CONFIG_OF_LIBFDT_OVERLAY=y" >> .config +%endif +make %{?jobs:-j %jobs} CROSS_COMPILE= HOSTCFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes + %if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring" # Chromebook ARM (snow) and HP Chromebook 11 (spring) need a uImage format export TEXT_START=$(awk '$NF == "_start" { printf "0x"$1 }' System.map) ./tools/mkimage -A arm -O linux -T kernel -C none -a $TEXT_START -e $TEXT_START -n uboot -d u-boot-dtb.bin u-boot.img %endif + %if %rockchip_spl == 1 for t in ; do ./tools/mkimage -n -d spl/u-boot-spl.bin -T $t u-boot-spl.$t @@ -107,7 +122,7 @@ export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | export NO_BRP_STRIP_DEBUG=true export NO_DEBUGINFO_STRIP_DEBUG=true %define uboot_dir /boot -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} %define uboot_dir /boot/vc %endif %if "%{name}" == "u-boot-qemu-ppce500" @@ -168,7 +183,7 @@ install -D -m 0755 SPL %{buildroot}/boot/imx6-spl.bin install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp %endif -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} %post # On the Raspberry Pi we chain-load u-boot.bin from bootcode.bin via config.txt. # It needs to be on the first FAT partition, wherever we mounted it. diff --git a/u-boot-a20-olinuxinomicro.changes b/u-boot-a20-olinuxinomicro.changes index 9364ee2..4e8877d 100644 --- a/u-boot-a20-olinuxinomicro.changes +++ b/u-boot-a20-olinuxinomicro.changes @@ -1,3 +1,38 @@ +------------------------------------------------------------------- +Sun Apr 9 18:24:30 UTC 2017 - afaerber@suse.de + +- Add tinker-rk3288 +- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.03 +* Fix firefly-rk3288 and tinker-rk3288 build with binutils 2.28. + 0003-Makefile-Fix-linking-with-modern-bi.patch +- U-Boot has no CFLAGS, so apply $RPM_OPT_FLAGS to HOSTCFLAGS instead + +------------------------------------------------------------------- +Mon Mar 20 11:10:57 UTC 2017 - afaerber@suse.de + +- Tidy Raspberry Pi conditionals +- Enable CONFIG_OF_LIBFDT_OVERLAY for Raspberry Pi only for now + +------------------------------------------------------------------- +Mon Mar 20 09:43:14 UTC 2017 - afaerber@suse.de + +- Add mvebudb-88f{3720,7040,8040} + +------------------------------------------------------------------- +Tue Mar 14 08:47:33 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.03 + +------------------------------------------------------------------- +Wed Mar 1 09:36:39 UTC 2017 - guillaume@opensuse.org + +- Add libopenssl-devel as BuildRequires (needed by some configs) + +------------------------------------------------------------------- +Tue Feb 28 08:37:55 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.03-rc3 + ------------------------------------------------------------------- Wed Feb 22 13:38:25 UTC 2017 - hsehic@suse.com diff --git a/u-boot-a20-olinuxinomicro.spec b/u-boot-a20-olinuxinomicro.spec index 146642b..82bbb71 100644 --- a/u-boot-a20-olinuxinomicro.spec +++ b/u-boot-a20-olinuxinomicro.spec @@ -29,11 +29,15 @@ %define imx6_spl 0 %define socfpga_spl 0 +%if "a20-olinuxinomicro" == "rpi" || "a20-olinuxinomicro" == "rpi2" || "a20-olinuxinomicro" == "rpi332b" || "a20-olinuxinomicro" == "rpi3" +%define is_rpi 1 +%endif + # archive_version differs from version for RC version only -%define archive_version 2017.01 +%define archive_version 2017.03 Name: u-boot-a20-olinuxinomicro -Version: 2017.01 +Version: 2017.03 Release: 0 Summary: The U-Boot firmware for the a20-olinuxinomicro platform License: GPL-2.0 @@ -45,10 +49,13 @@ Source3: update_git.sh Source300: u-boot-rpmlintrc Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch +Patch0003: 0003-Makefile-Fix-linking-with-modern-bi.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build # Arndale board need DTC >= 1.4 BuildRequires: bc BuildRequires: dtc >= 1.4.0 +# u-boot-clearfog (tools/kwbimage.c) needs openssl to build +BuildRequires: libopenssl-devel # u-boot-firefly-rk3288 needs python to build BuildRequires: python %if "%{name}" == "u-boot-qemu-ppce500" @@ -56,7 +63,7 @@ BuildRequires: python BuildRequires: qemu Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500 %endif -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} # Owns /boot/vc directory BuildRequires: raspberrypi-firmware # For mountpoint @@ -86,16 +93,24 @@ This package contains documentation for U-Boot firmware. %setup -q -n u-boot-%{archive_version} %patch0001 -p1 %patch0002 -p1 +%patch0003 -p1 %build export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s) -make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" A20-OLinuXino_MICRO_defconfig -make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes +make %{?jobs:-j %jobs} CROSS_COMPILE= HOSTCFLAGS="$RPM_OPT_FLAGS" A20-OLinuXino_MICRO_defconfig +%if 0%{?is_rpi} +# U-Boot is installed in the filesystem, so we are confident there's enough space. +echo "Attempting to enable fdt apply command (.dtbo) support." +echo "CONFIG_OF_LIBFDT_OVERLAY=y" >> .config +%endif +make %{?jobs:-j %jobs} CROSS_COMPILE= HOSTCFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes + %if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring" # Chromebook ARM (snow) and HP Chromebook 11 (spring) need a uImage format export TEXT_START=$(awk '$NF == "_start" { printf "0x"$1 }' System.map) ./tools/mkimage -A arm -O linux -T kernel -C none -a $TEXT_START -e $TEXT_START -n uboot -d u-boot-dtb.bin u-boot.img %endif + %if %rockchip_spl == 1 for t in ; do ./tools/mkimage -n -d spl/u-boot-spl.bin -T $t u-boot-spl.$t @@ -107,7 +122,7 @@ export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | export NO_BRP_STRIP_DEBUG=true export NO_DEBUGINFO_STRIP_DEBUG=true %define uboot_dir /boot -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} %define uboot_dir /boot/vc %endif %if "%{name}" == "u-boot-qemu-ppce500" @@ -168,7 +183,7 @@ install -D -m 0755 SPL %{buildroot}/boot/imx6-spl.bin install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp %endif -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} %post # On the Raspberry Pi we chain-load u-boot.bin from bootcode.bin via config.txt. # It needs to be on the first FAT partition, wherever we mounted it. diff --git a/u-boot-am335xboneblack.changes b/u-boot-am335xboneblack.changes index 9364ee2..4e8877d 100644 --- a/u-boot-am335xboneblack.changes +++ b/u-boot-am335xboneblack.changes @@ -1,3 +1,38 @@ +------------------------------------------------------------------- +Sun Apr 9 18:24:30 UTC 2017 - afaerber@suse.de + +- Add tinker-rk3288 +- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.03 +* Fix firefly-rk3288 and tinker-rk3288 build with binutils 2.28. + 0003-Makefile-Fix-linking-with-modern-bi.patch +- U-Boot has no CFLAGS, so apply $RPM_OPT_FLAGS to HOSTCFLAGS instead + +------------------------------------------------------------------- +Mon Mar 20 11:10:57 UTC 2017 - afaerber@suse.de + +- Tidy Raspberry Pi conditionals +- Enable CONFIG_OF_LIBFDT_OVERLAY for Raspberry Pi only for now + +------------------------------------------------------------------- +Mon Mar 20 09:43:14 UTC 2017 - afaerber@suse.de + +- Add mvebudb-88f{3720,7040,8040} + +------------------------------------------------------------------- +Tue Mar 14 08:47:33 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.03 + +------------------------------------------------------------------- +Wed Mar 1 09:36:39 UTC 2017 - guillaume@opensuse.org + +- Add libopenssl-devel as BuildRequires (needed by some configs) + +------------------------------------------------------------------- +Tue Feb 28 08:37:55 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.03-rc3 + ------------------------------------------------------------------- Wed Feb 22 13:38:25 UTC 2017 - hsehic@suse.com diff --git a/u-boot-am335xboneblack.spec b/u-boot-am335xboneblack.spec index f386928..a980e3f 100644 --- a/u-boot-am335xboneblack.spec +++ b/u-boot-am335xboneblack.spec @@ -29,11 +29,15 @@ %define imx6_spl 0 %define socfpga_spl 0 +%if "am335xboneblack" == "rpi" || "am335xboneblack" == "rpi2" || "am335xboneblack" == "rpi332b" || "am335xboneblack" == "rpi3" +%define is_rpi 1 +%endif + # archive_version differs from version for RC version only -%define archive_version 2017.01 +%define archive_version 2017.03 Name: u-boot-am335xboneblack -Version: 2017.01 +Version: 2017.03 Release: 0 Summary: The U-Boot firmware for the am335xboneblack platform License: GPL-2.0 @@ -45,10 +49,13 @@ Source3: update_git.sh Source300: u-boot-rpmlintrc Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch +Patch0003: 0003-Makefile-Fix-linking-with-modern-bi.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build # Arndale board need DTC >= 1.4 BuildRequires: bc BuildRequires: dtc >= 1.4.0 +# u-boot-clearfog (tools/kwbimage.c) needs openssl to build +BuildRequires: libopenssl-devel # u-boot-firefly-rk3288 needs python to build BuildRequires: python %if "%{name}" == "u-boot-qemu-ppce500" @@ -56,7 +63,7 @@ BuildRequires: python BuildRequires: qemu Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500 %endif -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} # Owns /boot/vc directory BuildRequires: raspberrypi-firmware # For mountpoint @@ -86,16 +93,24 @@ This package contains documentation for U-Boot firmware. %setup -q -n u-boot-%{archive_version} %patch0001 -p1 %patch0002 -p1 +%patch0003 -p1 %build export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s) -make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" am335x_boneblack_defconfig -make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes +make %{?jobs:-j %jobs} CROSS_COMPILE= HOSTCFLAGS="$RPM_OPT_FLAGS" am335x_boneblack_defconfig +%if 0%{?is_rpi} +# U-Boot is installed in the filesystem, so we are confident there's enough space. +echo "Attempting to enable fdt apply command (.dtbo) support." +echo "CONFIG_OF_LIBFDT_OVERLAY=y" >> .config +%endif +make %{?jobs:-j %jobs} CROSS_COMPILE= HOSTCFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes + %if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring" # Chromebook ARM (snow) and HP Chromebook 11 (spring) need a uImage format export TEXT_START=$(awk '$NF == "_start" { printf "0x"$1 }' System.map) ./tools/mkimage -A arm -O linux -T kernel -C none -a $TEXT_START -e $TEXT_START -n uboot -d u-boot-dtb.bin u-boot.img %endif + %if %rockchip_spl == 1 for t in ; do ./tools/mkimage -n -d spl/u-boot-spl.bin -T $t u-boot-spl.$t @@ -107,7 +122,7 @@ export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | export NO_BRP_STRIP_DEBUG=true export NO_DEBUGINFO_STRIP_DEBUG=true %define uboot_dir /boot -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} %define uboot_dir /boot/vc %endif %if "%{name}" == "u-boot-qemu-ppce500" @@ -168,7 +183,7 @@ install -D -m 0755 SPL %{buildroot}/boot/imx6-spl.bin install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp %endif -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} %post # On the Raspberry Pi we chain-load u-boot.bin from bootcode.bin via config.txt. # It needs to be on the first FAT partition, wherever we mounted it. diff --git a/u-boot-am335xevm.changes b/u-boot-am335xevm.changes index 9364ee2..4e8877d 100644 --- a/u-boot-am335xevm.changes +++ b/u-boot-am335xevm.changes @@ -1,3 +1,38 @@ +------------------------------------------------------------------- +Sun Apr 9 18:24:30 UTC 2017 - afaerber@suse.de + +- Add tinker-rk3288 +- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.03 +* Fix firefly-rk3288 and tinker-rk3288 build with binutils 2.28. + 0003-Makefile-Fix-linking-with-modern-bi.patch +- U-Boot has no CFLAGS, so apply $RPM_OPT_FLAGS to HOSTCFLAGS instead + +------------------------------------------------------------------- +Mon Mar 20 11:10:57 UTC 2017 - afaerber@suse.de + +- Tidy Raspberry Pi conditionals +- Enable CONFIG_OF_LIBFDT_OVERLAY for Raspberry Pi only for now + +------------------------------------------------------------------- +Mon Mar 20 09:43:14 UTC 2017 - afaerber@suse.de + +- Add mvebudb-88f{3720,7040,8040} + +------------------------------------------------------------------- +Tue Mar 14 08:47:33 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.03 + +------------------------------------------------------------------- +Wed Mar 1 09:36:39 UTC 2017 - guillaume@opensuse.org + +- Add libopenssl-devel as BuildRequires (needed by some configs) + +------------------------------------------------------------------- +Tue Feb 28 08:37:55 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.03-rc3 + ------------------------------------------------------------------- Wed Feb 22 13:38:25 UTC 2017 - hsehic@suse.com diff --git a/u-boot-am335xevm.spec b/u-boot-am335xevm.spec index 99d4f45..94a62df 100644 --- a/u-boot-am335xevm.spec +++ b/u-boot-am335xevm.spec @@ -29,11 +29,15 @@ %define imx6_spl 0 %define socfpga_spl 0 +%if "am335xevm" == "rpi" || "am335xevm" == "rpi2" || "am335xevm" == "rpi332b" || "am335xevm" == "rpi3" +%define is_rpi 1 +%endif + # archive_version differs from version for RC version only -%define archive_version 2017.01 +%define archive_version 2017.03 Name: u-boot-am335xevm -Version: 2017.01 +Version: 2017.03 Release: 0 Summary: The U-Boot firmware for the am335xevm platform License: GPL-2.0 @@ -45,10 +49,13 @@ Source3: update_git.sh Source300: u-boot-rpmlintrc Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch +Patch0003: 0003-Makefile-Fix-linking-with-modern-bi.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build # Arndale board need DTC >= 1.4 BuildRequires: bc BuildRequires: dtc >= 1.4.0 +# u-boot-clearfog (tools/kwbimage.c) needs openssl to build +BuildRequires: libopenssl-devel # u-boot-firefly-rk3288 needs python to build BuildRequires: python %if "%{name}" == "u-boot-qemu-ppce500" @@ -56,7 +63,7 @@ BuildRequires: python BuildRequires: qemu Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500 %endif -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} # Owns /boot/vc directory BuildRequires: raspberrypi-firmware # For mountpoint @@ -86,16 +93,24 @@ This package contains documentation for U-Boot firmware. %setup -q -n u-boot-%{archive_version} %patch0001 -p1 %patch0002 -p1 +%patch0003 -p1 %build export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s) -make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" am335x_evm_defconfig -make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes +make %{?jobs:-j %jobs} CROSS_COMPILE= HOSTCFLAGS="$RPM_OPT_FLAGS" am335x_evm_defconfig +%if 0%{?is_rpi} +# U-Boot is installed in the filesystem, so we are confident there's enough space. +echo "Attempting to enable fdt apply command (.dtbo) support." +echo "CONFIG_OF_LIBFDT_OVERLAY=y" >> .config +%endif +make %{?jobs:-j %jobs} CROSS_COMPILE= HOSTCFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes + %if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring" # Chromebook ARM (snow) and HP Chromebook 11 (spring) need a uImage format export TEXT_START=$(awk '$NF == "_start" { printf "0x"$1 }' System.map) ./tools/mkimage -A arm -O linux -T kernel -C none -a $TEXT_START -e $TEXT_START -n uboot -d u-boot-dtb.bin u-boot.img %endif + %if %rockchip_spl == 1 for t in ; do ./tools/mkimage -n -d spl/u-boot-spl.bin -T $t u-boot-spl.$t @@ -107,7 +122,7 @@ export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | export NO_BRP_STRIP_DEBUG=true export NO_DEBUGINFO_STRIP_DEBUG=true %define uboot_dir /boot -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} %define uboot_dir /boot/vc %endif %if "%{name}" == "u-boot-qemu-ppce500" @@ -168,7 +183,7 @@ install -D -m 0755 SPL %{buildroot}/boot/imx6-spl.bin install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp %endif -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} %post # On the Raspberry Pi we chain-load u-boot.bin from bootcode.bin via config.txt. # It needs to be on the first FAT partition, wherever we mounted it. diff --git a/u-boot-am57xxevm.changes b/u-boot-am57xxevm.changes index 9364ee2..4e8877d 100644 --- a/u-boot-am57xxevm.changes +++ b/u-boot-am57xxevm.changes @@ -1,3 +1,38 @@ +------------------------------------------------------------------- +Sun Apr 9 18:24:30 UTC 2017 - afaerber@suse.de + +- Add tinker-rk3288 +- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.03 +* Fix firefly-rk3288 and tinker-rk3288 build with binutils 2.28. + 0003-Makefile-Fix-linking-with-modern-bi.patch +- U-Boot has no CFLAGS, so apply $RPM_OPT_FLAGS to HOSTCFLAGS instead + +------------------------------------------------------------------- +Mon Mar 20 11:10:57 UTC 2017 - afaerber@suse.de + +- Tidy Raspberry Pi conditionals +- Enable CONFIG_OF_LIBFDT_OVERLAY for Raspberry Pi only for now + +------------------------------------------------------------------- +Mon Mar 20 09:43:14 UTC 2017 - afaerber@suse.de + +- Add mvebudb-88f{3720,7040,8040} + +------------------------------------------------------------------- +Tue Mar 14 08:47:33 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.03 + +------------------------------------------------------------------- +Wed Mar 1 09:36:39 UTC 2017 - guillaume@opensuse.org + +- Add libopenssl-devel as BuildRequires (needed by some configs) + +------------------------------------------------------------------- +Tue Feb 28 08:37:55 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.03-rc3 + ------------------------------------------------------------------- Wed Feb 22 13:38:25 UTC 2017 - hsehic@suse.com diff --git a/u-boot-am57xxevm.spec b/u-boot-am57xxevm.spec index 221aa8b..cbdac68 100644 --- a/u-boot-am57xxevm.spec +++ b/u-boot-am57xxevm.spec @@ -29,11 +29,15 @@ %define imx6_spl 0 %define socfpga_spl 0 +%if "am57xxevm" == "rpi" || "am57xxevm" == "rpi2" || "am57xxevm" == "rpi332b" || "am57xxevm" == "rpi3" +%define is_rpi 1 +%endif + # archive_version differs from version for RC version only -%define archive_version 2017.01 +%define archive_version 2017.03 Name: u-boot-am57xxevm -Version: 2017.01 +Version: 2017.03 Release: 0 Summary: The U-Boot firmware for the am57xxevm platform License: GPL-2.0 @@ -45,10 +49,13 @@ Source3: update_git.sh Source300: u-boot-rpmlintrc Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch +Patch0003: 0003-Makefile-Fix-linking-with-modern-bi.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build # Arndale board need DTC >= 1.4 BuildRequires: bc BuildRequires: dtc >= 1.4.0 +# u-boot-clearfog (tools/kwbimage.c) needs openssl to build +BuildRequires: libopenssl-devel # u-boot-firefly-rk3288 needs python to build BuildRequires: python %if "%{name}" == "u-boot-qemu-ppce500" @@ -56,7 +63,7 @@ BuildRequires: python BuildRequires: qemu Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500 %endif -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} # Owns /boot/vc directory BuildRequires: raspberrypi-firmware # For mountpoint @@ -86,16 +93,24 @@ This package contains documentation for U-Boot firmware. %setup -q -n u-boot-%{archive_version} %patch0001 -p1 %patch0002 -p1 +%patch0003 -p1 %build export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s) -make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" am57xx_evm_defconfig -make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes +make %{?jobs:-j %jobs} CROSS_COMPILE= HOSTCFLAGS="$RPM_OPT_FLAGS" am57xx_evm_defconfig +%if 0%{?is_rpi} +# U-Boot is installed in the filesystem, so we are confident there's enough space. +echo "Attempting to enable fdt apply command (.dtbo) support." +echo "CONFIG_OF_LIBFDT_OVERLAY=y" >> .config +%endif +make %{?jobs:-j %jobs} CROSS_COMPILE= HOSTCFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes + %if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring" # Chromebook ARM (snow) and HP Chromebook 11 (spring) need a uImage format export TEXT_START=$(awk '$NF == "_start" { printf "0x"$1 }' System.map) ./tools/mkimage -A arm -O linux -T kernel -C none -a $TEXT_START -e $TEXT_START -n uboot -d u-boot-dtb.bin u-boot.img %endif + %if %rockchip_spl == 1 for t in ; do ./tools/mkimage -n -d spl/u-boot-spl.bin -T $t u-boot-spl.$t @@ -107,7 +122,7 @@ export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | export NO_BRP_STRIP_DEBUG=true export NO_DEBUGINFO_STRIP_DEBUG=true %define uboot_dir /boot -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} %define uboot_dir /boot/vc %endif %if "%{name}" == "u-boot-qemu-ppce500" @@ -168,7 +183,7 @@ install -D -m 0755 SPL %{buildroot}/boot/imx6-spl.bin install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp %endif -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} %post # On the Raspberry Pi we chain-load u-boot.bin from bootcode.bin via config.txt. # It needs to be on the first FAT partition, wherever we mounted it. diff --git a/u-boot-am57xxevmnodt.changes b/u-boot-am57xxevmnodt.changes index 9364ee2..4e8877d 100644 --- a/u-boot-am57xxevmnodt.changes +++ b/u-boot-am57xxevmnodt.changes @@ -1,3 +1,38 @@ +------------------------------------------------------------------- +Sun Apr 9 18:24:30 UTC 2017 - afaerber@suse.de + +- Add tinker-rk3288 +- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.03 +* Fix firefly-rk3288 and tinker-rk3288 build with binutils 2.28. + 0003-Makefile-Fix-linking-with-modern-bi.patch +- U-Boot has no CFLAGS, so apply $RPM_OPT_FLAGS to HOSTCFLAGS instead + +------------------------------------------------------------------- +Mon Mar 20 11:10:57 UTC 2017 - afaerber@suse.de + +- Tidy Raspberry Pi conditionals +- Enable CONFIG_OF_LIBFDT_OVERLAY for Raspberry Pi only for now + +------------------------------------------------------------------- +Mon Mar 20 09:43:14 UTC 2017 - afaerber@suse.de + +- Add mvebudb-88f{3720,7040,8040} + +------------------------------------------------------------------- +Tue Mar 14 08:47:33 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.03 + +------------------------------------------------------------------- +Wed Mar 1 09:36:39 UTC 2017 - guillaume@opensuse.org + +- Add libopenssl-devel as BuildRequires (needed by some configs) + +------------------------------------------------------------------- +Tue Feb 28 08:37:55 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.03-rc3 + ------------------------------------------------------------------- Wed Feb 22 13:38:25 UTC 2017 - hsehic@suse.com diff --git a/u-boot-am57xxevmnodt.spec b/u-boot-am57xxevmnodt.spec index 5223a60..cc84729 100644 --- a/u-boot-am57xxevmnodt.spec +++ b/u-boot-am57xxevmnodt.spec @@ -29,11 +29,15 @@ %define imx6_spl 0 %define socfpga_spl 0 +%if "am57xxevmnodt" == "rpi" || "am57xxevmnodt" == "rpi2" || "am57xxevmnodt" == "rpi332b" || "am57xxevmnodt" == "rpi3" +%define is_rpi 1 +%endif + # archive_version differs from version for RC version only -%define archive_version 2017.01 +%define archive_version 2017.03 Name: u-boot-am57xxevmnodt -Version: 2017.01 +Version: 2017.03 Release: 0 Summary: The U-Boot firmware for the am57xxevmnodt platform License: GPL-2.0 @@ -45,10 +49,13 @@ Source3: update_git.sh Source300: u-boot-rpmlintrc Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch +Patch0003: 0003-Makefile-Fix-linking-with-modern-bi.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build # Arndale board need DTC >= 1.4 BuildRequires: bc BuildRequires: dtc >= 1.4.0 +# u-boot-clearfog (tools/kwbimage.c) needs openssl to build +BuildRequires: libopenssl-devel # u-boot-firefly-rk3288 needs python to build BuildRequires: python %if "%{name}" == "u-boot-qemu-ppce500" @@ -56,7 +63,7 @@ BuildRequires: python BuildRequires: qemu Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500 %endif -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} # Owns /boot/vc directory BuildRequires: raspberrypi-firmware # For mountpoint @@ -86,16 +93,24 @@ This package contains documentation for U-Boot firmware. %setup -q -n u-boot-%{archive_version} %patch0001 -p1 %patch0002 -p1 +%patch0003 -p1 %build export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s) -make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" am57xx_evm_nodt_defconfig -make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes +make %{?jobs:-j %jobs} CROSS_COMPILE= HOSTCFLAGS="$RPM_OPT_FLAGS" am57xx_evm_nodt_defconfig +%if 0%{?is_rpi} +# U-Boot is installed in the filesystem, so we are confident there's enough space. +echo "Attempting to enable fdt apply command (.dtbo) support." +echo "CONFIG_OF_LIBFDT_OVERLAY=y" >> .config +%endif +make %{?jobs:-j %jobs} CROSS_COMPILE= HOSTCFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes + %if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring" # Chromebook ARM (snow) and HP Chromebook 11 (spring) need a uImage format export TEXT_START=$(awk '$NF == "_start" { printf "0x"$1 }' System.map) ./tools/mkimage -A arm -O linux -T kernel -C none -a $TEXT_START -e $TEXT_START -n uboot -d u-boot-dtb.bin u-boot.img %endif + %if %rockchip_spl == 1 for t in ; do ./tools/mkimage -n -d spl/u-boot-spl.bin -T $t u-boot-spl.$t @@ -107,7 +122,7 @@ export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | export NO_BRP_STRIP_DEBUG=true export NO_DEBUGINFO_STRIP_DEBUG=true %define uboot_dir /boot -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} %define uboot_dir /boot/vc %endif %if "%{name}" == "u-boot-qemu-ppce500" @@ -168,7 +183,7 @@ install -D -m 0755 SPL %{buildroot}/boot/imx6-spl.bin install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp %endif -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} %post # On the Raspberry Pi we chain-load u-boot.bin from bootcode.bin via config.txt. # It needs to be on the first FAT partition, wherever we mounted it. diff --git a/u-boot-arndale.changes b/u-boot-arndale.changes index 9364ee2..4e8877d 100644 --- a/u-boot-arndale.changes +++ b/u-boot-arndale.changes @@ -1,3 +1,38 @@ +------------------------------------------------------------------- +Sun Apr 9 18:24:30 UTC 2017 - afaerber@suse.de + +- Add tinker-rk3288 +- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.03 +* Fix firefly-rk3288 and tinker-rk3288 build with binutils 2.28. + 0003-Makefile-Fix-linking-with-modern-bi.patch +- U-Boot has no CFLAGS, so apply $RPM_OPT_FLAGS to HOSTCFLAGS instead + +------------------------------------------------------------------- +Mon Mar 20 11:10:57 UTC 2017 - afaerber@suse.de + +- Tidy Raspberry Pi conditionals +- Enable CONFIG_OF_LIBFDT_OVERLAY for Raspberry Pi only for now + +------------------------------------------------------------------- +Mon Mar 20 09:43:14 UTC 2017 - afaerber@suse.de + +- Add mvebudb-88f{3720,7040,8040} + +------------------------------------------------------------------- +Tue Mar 14 08:47:33 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.03 + +------------------------------------------------------------------- +Wed Mar 1 09:36:39 UTC 2017 - guillaume@opensuse.org + +- Add libopenssl-devel as BuildRequires (needed by some configs) + +------------------------------------------------------------------- +Tue Feb 28 08:37:55 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.03-rc3 + ------------------------------------------------------------------- Wed Feb 22 13:38:25 UTC 2017 - hsehic@suse.com diff --git a/u-boot-arndale.spec b/u-boot-arndale.spec index 1fd1b35..0c3fb66 100644 --- a/u-boot-arndale.spec +++ b/u-boot-arndale.spec @@ -29,11 +29,15 @@ %define imx6_spl 0 %define socfpga_spl 0 +%if "arndale" == "rpi" || "arndale" == "rpi2" || "arndale" == "rpi332b" || "arndale" == "rpi3" +%define is_rpi 1 +%endif + # archive_version differs from version for RC version only -%define archive_version 2017.01 +%define archive_version 2017.03 Name: u-boot-arndale -Version: 2017.01 +Version: 2017.03 Release: 0 Summary: The U-Boot firmware for the arndale platform License: GPL-2.0 @@ -45,10 +49,13 @@ Source3: update_git.sh Source300: u-boot-rpmlintrc Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch +Patch0003: 0003-Makefile-Fix-linking-with-modern-bi.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build # Arndale board need DTC >= 1.4 BuildRequires: bc BuildRequires: dtc >= 1.4.0 +# u-boot-clearfog (tools/kwbimage.c) needs openssl to build +BuildRequires: libopenssl-devel # u-boot-firefly-rk3288 needs python to build BuildRequires: python %if "%{name}" == "u-boot-qemu-ppce500" @@ -56,7 +63,7 @@ BuildRequires: python BuildRequires: qemu Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500 %endif -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} # Owns /boot/vc directory BuildRequires: raspberrypi-firmware # For mountpoint @@ -86,16 +93,24 @@ This package contains documentation for U-Boot firmware. %setup -q -n u-boot-%{archive_version} %patch0001 -p1 %patch0002 -p1 +%patch0003 -p1 %build export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s) -make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" arndale_defconfig -make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes +make %{?jobs:-j %jobs} CROSS_COMPILE= HOSTCFLAGS="$RPM_OPT_FLAGS" arndale_defconfig +%if 0%{?is_rpi} +# U-Boot is installed in the filesystem, so we are confident there's enough space. +echo "Attempting to enable fdt apply command (.dtbo) support." +echo "CONFIG_OF_LIBFDT_OVERLAY=y" >> .config +%endif +make %{?jobs:-j %jobs} CROSS_COMPILE= HOSTCFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes + %if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring" # Chromebook ARM (snow) and HP Chromebook 11 (spring) need a uImage format export TEXT_START=$(awk '$NF == "_start" { printf "0x"$1 }' System.map) ./tools/mkimage -A arm -O linux -T kernel -C none -a $TEXT_START -e $TEXT_START -n uboot -d u-boot-dtb.bin u-boot.img %endif + %if %rockchip_spl == 1 for t in ; do ./tools/mkimage -n -d spl/u-boot-spl.bin -T $t u-boot-spl.$t @@ -107,7 +122,7 @@ export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | export NO_BRP_STRIP_DEBUG=true export NO_DEBUGINFO_STRIP_DEBUG=true %define uboot_dir /boot -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} %define uboot_dir /boot/vc %endif %if "%{name}" == "u-boot-qemu-ppce500" @@ -168,7 +183,7 @@ install -D -m 0755 SPL %{buildroot}/boot/imx6-spl.bin install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp %endif -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} %post # On the Raspberry Pi we chain-load u-boot.bin from bootcode.bin via config.txt. # It needs to be on the first FAT partition, wherever we mounted it. diff --git a/u-boot-bananapi.changes b/u-boot-bananapi.changes index 9364ee2..4e8877d 100644 --- a/u-boot-bananapi.changes +++ b/u-boot-bananapi.changes @@ -1,3 +1,38 @@ +------------------------------------------------------------------- +Sun Apr 9 18:24:30 UTC 2017 - afaerber@suse.de + +- Add tinker-rk3288 +- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.03 +* Fix firefly-rk3288 and tinker-rk3288 build with binutils 2.28. + 0003-Makefile-Fix-linking-with-modern-bi.patch +- U-Boot has no CFLAGS, so apply $RPM_OPT_FLAGS to HOSTCFLAGS instead + +------------------------------------------------------------------- +Mon Mar 20 11:10:57 UTC 2017 - afaerber@suse.de + +- Tidy Raspberry Pi conditionals +- Enable CONFIG_OF_LIBFDT_OVERLAY for Raspberry Pi only for now + +------------------------------------------------------------------- +Mon Mar 20 09:43:14 UTC 2017 - afaerber@suse.de + +- Add mvebudb-88f{3720,7040,8040} + +------------------------------------------------------------------- +Tue Mar 14 08:47:33 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.03 + +------------------------------------------------------------------- +Wed Mar 1 09:36:39 UTC 2017 - guillaume@opensuse.org + +- Add libopenssl-devel as BuildRequires (needed by some configs) + +------------------------------------------------------------------- +Tue Feb 28 08:37:55 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.03-rc3 + ------------------------------------------------------------------- Wed Feb 22 13:38:25 UTC 2017 - hsehic@suse.com diff --git a/u-boot-bananapi.spec b/u-boot-bananapi.spec index 0ff2f54..12bbe14 100644 --- a/u-boot-bananapi.spec +++ b/u-boot-bananapi.spec @@ -29,11 +29,15 @@ %define imx6_spl 0 %define socfpga_spl 0 +%if "bananapi" == "rpi" || "bananapi" == "rpi2" || "bananapi" == "rpi332b" || "bananapi" == "rpi3" +%define is_rpi 1 +%endif + # archive_version differs from version for RC version only -%define archive_version 2017.01 +%define archive_version 2017.03 Name: u-boot-bananapi -Version: 2017.01 +Version: 2017.03 Release: 0 Summary: The U-Boot firmware for the bananapi platform License: GPL-2.0 @@ -45,10 +49,13 @@ Source3: update_git.sh Source300: u-boot-rpmlintrc Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch +Patch0003: 0003-Makefile-Fix-linking-with-modern-bi.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build # Arndale board need DTC >= 1.4 BuildRequires: bc BuildRequires: dtc >= 1.4.0 +# u-boot-clearfog (tools/kwbimage.c) needs openssl to build +BuildRequires: libopenssl-devel # u-boot-firefly-rk3288 needs python to build BuildRequires: python %if "%{name}" == "u-boot-qemu-ppce500" @@ -56,7 +63,7 @@ BuildRequires: python BuildRequires: qemu Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500 %endif -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} # Owns /boot/vc directory BuildRequires: raspberrypi-firmware # For mountpoint @@ -86,16 +93,24 @@ This package contains documentation for U-Boot firmware. %setup -q -n u-boot-%{archive_version} %patch0001 -p1 %patch0002 -p1 +%patch0003 -p1 %build export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s) -make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" Bananapi_defconfig -make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes +make %{?jobs:-j %jobs} CROSS_COMPILE= HOSTCFLAGS="$RPM_OPT_FLAGS" Bananapi_defconfig +%if 0%{?is_rpi} +# U-Boot is installed in the filesystem, so we are confident there's enough space. +echo "Attempting to enable fdt apply command (.dtbo) support." +echo "CONFIG_OF_LIBFDT_OVERLAY=y" >> .config +%endif +make %{?jobs:-j %jobs} CROSS_COMPILE= HOSTCFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes + %if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring" # Chromebook ARM (snow) and HP Chromebook 11 (spring) need a uImage format export TEXT_START=$(awk '$NF == "_start" { printf "0x"$1 }' System.map) ./tools/mkimage -A arm -O linux -T kernel -C none -a $TEXT_START -e $TEXT_START -n uboot -d u-boot-dtb.bin u-boot.img %endif + %if %rockchip_spl == 1 for t in ; do ./tools/mkimage -n -d spl/u-boot-spl.bin -T $t u-boot-spl.$t @@ -107,7 +122,7 @@ export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | export NO_BRP_STRIP_DEBUG=true export NO_DEBUGINFO_STRIP_DEBUG=true %define uboot_dir /boot -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} %define uboot_dir /boot/vc %endif %if "%{name}" == "u-boot-qemu-ppce500" @@ -168,7 +183,7 @@ install -D -m 0755 SPL %{buildroot}/boot/imx6-spl.bin install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp %endif -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} %post # On the Raspberry Pi we chain-load u-boot.bin from bootcode.bin via config.txt. # It needs to be on the first FAT partition, wherever we mounted it. diff --git a/u-boot-clearfog.changes b/u-boot-clearfog.changes index 9364ee2..4e8877d 100644 --- a/u-boot-clearfog.changes +++ b/u-boot-clearfog.changes @@ -1,3 +1,38 @@ +------------------------------------------------------------------- +Sun Apr 9 18:24:30 UTC 2017 - afaerber@suse.de + +- Add tinker-rk3288 +- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.03 +* Fix firefly-rk3288 and tinker-rk3288 build with binutils 2.28. + 0003-Makefile-Fix-linking-with-modern-bi.patch +- U-Boot has no CFLAGS, so apply $RPM_OPT_FLAGS to HOSTCFLAGS instead + +------------------------------------------------------------------- +Mon Mar 20 11:10:57 UTC 2017 - afaerber@suse.de + +- Tidy Raspberry Pi conditionals +- Enable CONFIG_OF_LIBFDT_OVERLAY for Raspberry Pi only for now + +------------------------------------------------------------------- +Mon Mar 20 09:43:14 UTC 2017 - afaerber@suse.de + +- Add mvebudb-88f{3720,7040,8040} + +------------------------------------------------------------------- +Tue Mar 14 08:47:33 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.03 + +------------------------------------------------------------------- +Wed Mar 1 09:36:39 UTC 2017 - guillaume@opensuse.org + +- Add libopenssl-devel as BuildRequires (needed by some configs) + +------------------------------------------------------------------- +Tue Feb 28 08:37:55 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.03-rc3 + ------------------------------------------------------------------- Wed Feb 22 13:38:25 UTC 2017 - hsehic@suse.com diff --git a/u-boot-clearfog.spec b/u-boot-clearfog.spec index b29b8bc..65c742f 100644 --- a/u-boot-clearfog.spec +++ b/u-boot-clearfog.spec @@ -29,11 +29,15 @@ %define imx6_spl 0 %define socfpga_spl 0 +%if "clearfog" == "rpi" || "clearfog" == "rpi2" || "clearfog" == "rpi332b" || "clearfog" == "rpi3" +%define is_rpi 1 +%endif + # archive_version differs from version for RC version only -%define archive_version 2017.01 +%define archive_version 2017.03 Name: u-boot-clearfog -Version: 2017.01 +Version: 2017.03 Release: 0 Summary: The U-Boot firmware for the clearfog platform License: GPL-2.0 @@ -45,10 +49,13 @@ Source3: update_git.sh Source300: u-boot-rpmlintrc Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch +Patch0003: 0003-Makefile-Fix-linking-with-modern-bi.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build # Arndale board need DTC >= 1.4 BuildRequires: bc BuildRequires: dtc >= 1.4.0 +# u-boot-clearfog (tools/kwbimage.c) needs openssl to build +BuildRequires: libopenssl-devel # u-boot-firefly-rk3288 needs python to build BuildRequires: python %if "%{name}" == "u-boot-qemu-ppce500" @@ -56,7 +63,7 @@ BuildRequires: python BuildRequires: qemu Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500 %endif -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} # Owns /boot/vc directory BuildRequires: raspberrypi-firmware # For mountpoint @@ -86,16 +93,24 @@ This package contains documentation for U-Boot firmware. %setup -q -n u-boot-%{archive_version} %patch0001 -p1 %patch0002 -p1 +%patch0003 -p1 %build export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s) -make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" clearfog_defconfig -make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes +make %{?jobs:-j %jobs} CROSS_COMPILE= HOSTCFLAGS="$RPM_OPT_FLAGS" clearfog_defconfig +%if 0%{?is_rpi} +# U-Boot is installed in the filesystem, so we are confident there's enough space. +echo "Attempting to enable fdt apply command (.dtbo) support." +echo "CONFIG_OF_LIBFDT_OVERLAY=y" >> .config +%endif +make %{?jobs:-j %jobs} CROSS_COMPILE= HOSTCFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes + %if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring" # Chromebook ARM (snow) and HP Chromebook 11 (spring) need a uImage format export TEXT_START=$(awk '$NF == "_start" { printf "0x"$1 }' System.map) ./tools/mkimage -A arm -O linux -T kernel -C none -a $TEXT_START -e $TEXT_START -n uboot -d u-boot-dtb.bin u-boot.img %endif + %if %rockchip_spl == 1 for t in ; do ./tools/mkimage -n -d spl/u-boot-spl.bin -T $t u-boot-spl.$t @@ -107,7 +122,7 @@ export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | export NO_BRP_STRIP_DEBUG=true export NO_DEBUGINFO_STRIP_DEBUG=true %define uboot_dir /boot -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} %define uboot_dir /boot/vc %endif %if "%{name}" == "u-boot-qemu-ppce500" @@ -168,7 +183,7 @@ install -D -m 0755 SPL %{buildroot}/boot/imx6-spl.bin install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp %endif -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} %post # On the Raspberry Pi we chain-load u-boot.bin from bootcode.bin via config.txt. # It needs to be on the first FAT partition, wherever we mounted it. diff --git a/u-boot-colibrit20.changes b/u-boot-colibrit20.changes index 9364ee2..4e8877d 100644 --- a/u-boot-colibrit20.changes +++ b/u-boot-colibrit20.changes @@ -1,3 +1,38 @@ +------------------------------------------------------------------- +Sun Apr 9 18:24:30 UTC 2017 - afaerber@suse.de + +- Add tinker-rk3288 +- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.03 +* Fix firefly-rk3288 and tinker-rk3288 build with binutils 2.28. + 0003-Makefile-Fix-linking-with-modern-bi.patch +- U-Boot has no CFLAGS, so apply $RPM_OPT_FLAGS to HOSTCFLAGS instead + +------------------------------------------------------------------- +Mon Mar 20 11:10:57 UTC 2017 - afaerber@suse.de + +- Tidy Raspberry Pi conditionals +- Enable CONFIG_OF_LIBFDT_OVERLAY for Raspberry Pi only for now + +------------------------------------------------------------------- +Mon Mar 20 09:43:14 UTC 2017 - afaerber@suse.de + +- Add mvebudb-88f{3720,7040,8040} + +------------------------------------------------------------------- +Tue Mar 14 08:47:33 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.03 + +------------------------------------------------------------------- +Wed Mar 1 09:36:39 UTC 2017 - guillaume@opensuse.org + +- Add libopenssl-devel as BuildRequires (needed by some configs) + +------------------------------------------------------------------- +Tue Feb 28 08:37:55 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.03-rc3 + ------------------------------------------------------------------- Wed Feb 22 13:38:25 UTC 2017 - hsehic@suse.com diff --git a/u-boot-colibrit20.spec b/u-boot-colibrit20.spec index 2b4bb94..cf380e8 100644 --- a/u-boot-colibrit20.spec +++ b/u-boot-colibrit20.spec @@ -29,11 +29,15 @@ %define imx6_spl 0 %define socfpga_spl 0 +%if "colibrit20" == "rpi" || "colibrit20" == "rpi2" || "colibrit20" == "rpi332b" || "colibrit20" == "rpi3" +%define is_rpi 1 +%endif + # archive_version differs from version for RC version only -%define archive_version 2017.01 +%define archive_version 2017.03 Name: u-boot-colibrit20 -Version: 2017.01 +Version: 2017.03 Release: 0 Summary: The U-Boot firmware for the colibrit20 platform License: GPL-2.0 @@ -45,10 +49,13 @@ Source3: update_git.sh Source300: u-boot-rpmlintrc Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch +Patch0003: 0003-Makefile-Fix-linking-with-modern-bi.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build # Arndale board need DTC >= 1.4 BuildRequires: bc BuildRequires: dtc >= 1.4.0 +# u-boot-clearfog (tools/kwbimage.c) needs openssl to build +BuildRequires: libopenssl-devel # u-boot-firefly-rk3288 needs python to build BuildRequires: python %if "%{name}" == "u-boot-qemu-ppce500" @@ -56,7 +63,7 @@ BuildRequires: python BuildRequires: qemu Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500 %endif -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} # Owns /boot/vc directory BuildRequires: raspberrypi-firmware # For mountpoint @@ -86,16 +93,24 @@ This package contains documentation for U-Boot firmware. %setup -q -n u-boot-%{archive_version} %patch0001 -p1 %patch0002 -p1 +%patch0003 -p1 %build export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s) -make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" colibri_t20_defconfig -make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes +make %{?jobs:-j %jobs} CROSS_COMPILE= HOSTCFLAGS="$RPM_OPT_FLAGS" colibri_t20_defconfig +%if 0%{?is_rpi} +# U-Boot is installed in the filesystem, so we are confident there's enough space. +echo "Attempting to enable fdt apply command (.dtbo) support." +echo "CONFIG_OF_LIBFDT_OVERLAY=y" >> .config +%endif +make %{?jobs:-j %jobs} CROSS_COMPILE= HOSTCFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes + %if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring" # Chromebook ARM (snow) and HP Chromebook 11 (spring) need a uImage format export TEXT_START=$(awk '$NF == "_start" { printf "0x"$1 }' System.map) ./tools/mkimage -A arm -O linux -T kernel -C none -a $TEXT_START -e $TEXT_START -n uboot -d u-boot-dtb.bin u-boot.img %endif + %if %rockchip_spl == 1 for t in ; do ./tools/mkimage -n -d spl/u-boot-spl.bin -T $t u-boot-spl.$t @@ -107,7 +122,7 @@ export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | export NO_BRP_STRIP_DEBUG=true export NO_DEBUGINFO_STRIP_DEBUG=true %define uboot_dir /boot -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} %define uboot_dir /boot/vc %endif %if "%{name}" == "u-boot-qemu-ppce500" @@ -168,7 +183,7 @@ install -D -m 0755 SPL %{buildroot}/boot/imx6-spl.bin install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp %endif -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} %post # On the Raspberry Pi we chain-load u-boot.bin from bootcode.bin via config.txt. # It needs to be on the first FAT partition, wherever we mounted it. diff --git a/u-boot-cubieboard.changes b/u-boot-cubieboard.changes index 9364ee2..4e8877d 100644 --- a/u-boot-cubieboard.changes +++ b/u-boot-cubieboard.changes @@ -1,3 +1,38 @@ +------------------------------------------------------------------- +Sun Apr 9 18:24:30 UTC 2017 - afaerber@suse.de + +- Add tinker-rk3288 +- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.03 +* Fix firefly-rk3288 and tinker-rk3288 build with binutils 2.28. + 0003-Makefile-Fix-linking-with-modern-bi.patch +- U-Boot has no CFLAGS, so apply $RPM_OPT_FLAGS to HOSTCFLAGS instead + +------------------------------------------------------------------- +Mon Mar 20 11:10:57 UTC 2017 - afaerber@suse.de + +- Tidy Raspberry Pi conditionals +- Enable CONFIG_OF_LIBFDT_OVERLAY for Raspberry Pi only for now + +------------------------------------------------------------------- +Mon Mar 20 09:43:14 UTC 2017 - afaerber@suse.de + +- Add mvebudb-88f{3720,7040,8040} + +------------------------------------------------------------------- +Tue Mar 14 08:47:33 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.03 + +------------------------------------------------------------------- +Wed Mar 1 09:36:39 UTC 2017 - guillaume@opensuse.org + +- Add libopenssl-devel as BuildRequires (needed by some configs) + +------------------------------------------------------------------- +Tue Feb 28 08:37:55 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.03-rc3 + ------------------------------------------------------------------- Wed Feb 22 13:38:25 UTC 2017 - hsehic@suse.com diff --git a/u-boot-cubieboard.spec b/u-boot-cubieboard.spec index 648c779..8b4c9f0 100644 --- a/u-boot-cubieboard.spec +++ b/u-boot-cubieboard.spec @@ -29,11 +29,15 @@ %define imx6_spl 0 %define socfpga_spl 0 +%if "cubieboard" == "rpi" || "cubieboard" == "rpi2" || "cubieboard" == "rpi332b" || "cubieboard" == "rpi3" +%define is_rpi 1 +%endif + # archive_version differs from version for RC version only -%define archive_version 2017.01 +%define archive_version 2017.03 Name: u-boot-cubieboard -Version: 2017.01 +Version: 2017.03 Release: 0 Summary: The U-Boot firmware for the cubieboard platform License: GPL-2.0 @@ -45,10 +49,13 @@ Source3: update_git.sh Source300: u-boot-rpmlintrc Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch +Patch0003: 0003-Makefile-Fix-linking-with-modern-bi.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build # Arndale board need DTC >= 1.4 BuildRequires: bc BuildRequires: dtc >= 1.4.0 +# u-boot-clearfog (tools/kwbimage.c) needs openssl to build +BuildRequires: libopenssl-devel # u-boot-firefly-rk3288 needs python to build BuildRequires: python %if "%{name}" == "u-boot-qemu-ppce500" @@ -56,7 +63,7 @@ BuildRequires: python BuildRequires: qemu Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500 %endif -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} # Owns /boot/vc directory BuildRequires: raspberrypi-firmware # For mountpoint @@ -86,16 +93,24 @@ This package contains documentation for U-Boot firmware. %setup -q -n u-boot-%{archive_version} %patch0001 -p1 %patch0002 -p1 +%patch0003 -p1 %build export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s) -make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" Cubieboard_defconfig -make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes +make %{?jobs:-j %jobs} CROSS_COMPILE= HOSTCFLAGS="$RPM_OPT_FLAGS" Cubieboard_defconfig +%if 0%{?is_rpi} +# U-Boot is installed in the filesystem, so we are confident there's enough space. +echo "Attempting to enable fdt apply command (.dtbo) support." +echo "CONFIG_OF_LIBFDT_OVERLAY=y" >> .config +%endif +make %{?jobs:-j %jobs} CROSS_COMPILE= HOSTCFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes + %if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring" # Chromebook ARM (snow) and HP Chromebook 11 (spring) need a uImage format export TEXT_START=$(awk '$NF == "_start" { printf "0x"$1 }' System.map) ./tools/mkimage -A arm -O linux -T kernel -C none -a $TEXT_START -e $TEXT_START -n uboot -d u-boot-dtb.bin u-boot.img %endif + %if %rockchip_spl == 1 for t in ; do ./tools/mkimage -n -d spl/u-boot-spl.bin -T $t u-boot-spl.$t @@ -107,7 +122,7 @@ export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | export NO_BRP_STRIP_DEBUG=true export NO_DEBUGINFO_STRIP_DEBUG=true %define uboot_dir /boot -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} %define uboot_dir /boot/vc %endif %if "%{name}" == "u-boot-qemu-ppce500" @@ -168,7 +183,7 @@ install -D -m 0755 SPL %{buildroot}/boot/imx6-spl.bin install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp %endif -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} %post # On the Raspberry Pi we chain-load u-boot.bin from bootcode.bin via config.txt. # It needs to be on the first FAT partition, wherever we mounted it. diff --git a/u-boot-cubieboard2.changes b/u-boot-cubieboard2.changes index 9364ee2..4e8877d 100644 --- a/u-boot-cubieboard2.changes +++ b/u-boot-cubieboard2.changes @@ -1,3 +1,38 @@ +------------------------------------------------------------------- +Sun Apr 9 18:24:30 UTC 2017 - afaerber@suse.de + +- Add tinker-rk3288 +- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.03 +* Fix firefly-rk3288 and tinker-rk3288 build with binutils 2.28. + 0003-Makefile-Fix-linking-with-modern-bi.patch +- U-Boot has no CFLAGS, so apply $RPM_OPT_FLAGS to HOSTCFLAGS instead + +------------------------------------------------------------------- +Mon Mar 20 11:10:57 UTC 2017 - afaerber@suse.de + +- Tidy Raspberry Pi conditionals +- Enable CONFIG_OF_LIBFDT_OVERLAY for Raspberry Pi only for now + +------------------------------------------------------------------- +Mon Mar 20 09:43:14 UTC 2017 - afaerber@suse.de + +- Add mvebudb-88f{3720,7040,8040} + +------------------------------------------------------------------- +Tue Mar 14 08:47:33 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.03 + +------------------------------------------------------------------- +Wed Mar 1 09:36:39 UTC 2017 - guillaume@opensuse.org + +- Add libopenssl-devel as BuildRequires (needed by some configs) + +------------------------------------------------------------------- +Tue Feb 28 08:37:55 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.03-rc3 + ------------------------------------------------------------------- Wed Feb 22 13:38:25 UTC 2017 - hsehic@suse.com diff --git a/u-boot-cubieboard2.spec b/u-boot-cubieboard2.spec index 4b753ab..1100b7a 100644 --- a/u-boot-cubieboard2.spec +++ b/u-boot-cubieboard2.spec @@ -29,11 +29,15 @@ %define imx6_spl 0 %define socfpga_spl 0 +%if "cubieboard2" == "rpi" || "cubieboard2" == "rpi2" || "cubieboard2" == "rpi332b" || "cubieboard2" == "rpi3" +%define is_rpi 1 +%endif + # archive_version differs from version for RC version only -%define archive_version 2017.01 +%define archive_version 2017.03 Name: u-boot-cubieboard2 -Version: 2017.01 +Version: 2017.03 Release: 0 Summary: The U-Boot firmware for the cubieboard2 platform License: GPL-2.0 @@ -45,10 +49,13 @@ Source3: update_git.sh Source300: u-boot-rpmlintrc Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch +Patch0003: 0003-Makefile-Fix-linking-with-modern-bi.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build # Arndale board need DTC >= 1.4 BuildRequires: bc BuildRequires: dtc >= 1.4.0 +# u-boot-clearfog (tools/kwbimage.c) needs openssl to build +BuildRequires: libopenssl-devel # u-boot-firefly-rk3288 needs python to build BuildRequires: python %if "%{name}" == "u-boot-qemu-ppce500" @@ -56,7 +63,7 @@ BuildRequires: python BuildRequires: qemu Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500 %endif -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} # Owns /boot/vc directory BuildRequires: raspberrypi-firmware # For mountpoint @@ -86,16 +93,24 @@ This package contains documentation for U-Boot firmware. %setup -q -n u-boot-%{archive_version} %patch0001 -p1 %patch0002 -p1 +%patch0003 -p1 %build export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s) -make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" Cubieboard2_defconfig -make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes +make %{?jobs:-j %jobs} CROSS_COMPILE= HOSTCFLAGS="$RPM_OPT_FLAGS" Cubieboard2_defconfig +%if 0%{?is_rpi} +# U-Boot is installed in the filesystem, so we are confident there's enough space. +echo "Attempting to enable fdt apply command (.dtbo) support." +echo "CONFIG_OF_LIBFDT_OVERLAY=y" >> .config +%endif +make %{?jobs:-j %jobs} CROSS_COMPILE= HOSTCFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes + %if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring" # Chromebook ARM (snow) and HP Chromebook 11 (spring) need a uImage format export TEXT_START=$(awk '$NF == "_start" { printf "0x"$1 }' System.map) ./tools/mkimage -A arm -O linux -T kernel -C none -a $TEXT_START -e $TEXT_START -n uboot -d u-boot-dtb.bin u-boot.img %endif + %if %rockchip_spl == 1 for t in ; do ./tools/mkimage -n -d spl/u-boot-spl.bin -T $t u-boot-spl.$t @@ -107,7 +122,7 @@ export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | export NO_BRP_STRIP_DEBUG=true export NO_DEBUGINFO_STRIP_DEBUG=true %define uboot_dir /boot -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} %define uboot_dir /boot/vc %endif %if "%{name}" == "u-boot-qemu-ppce500" @@ -168,7 +183,7 @@ install -D -m 0755 SPL %{buildroot}/boot/imx6-spl.bin install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp %endif -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} %post # On the Raspberry Pi we chain-load u-boot.bin from bootcode.bin via config.txt. # It needs to be on the first FAT partition, wherever we mounted it. diff --git a/u-boot-cubietruck.changes b/u-boot-cubietruck.changes index 9364ee2..4e8877d 100644 --- a/u-boot-cubietruck.changes +++ b/u-boot-cubietruck.changes @@ -1,3 +1,38 @@ +------------------------------------------------------------------- +Sun Apr 9 18:24:30 UTC 2017 - afaerber@suse.de + +- Add tinker-rk3288 +- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.03 +* Fix firefly-rk3288 and tinker-rk3288 build with binutils 2.28. + 0003-Makefile-Fix-linking-with-modern-bi.patch +- U-Boot has no CFLAGS, so apply $RPM_OPT_FLAGS to HOSTCFLAGS instead + +------------------------------------------------------------------- +Mon Mar 20 11:10:57 UTC 2017 - afaerber@suse.de + +- Tidy Raspberry Pi conditionals +- Enable CONFIG_OF_LIBFDT_OVERLAY for Raspberry Pi only for now + +------------------------------------------------------------------- +Mon Mar 20 09:43:14 UTC 2017 - afaerber@suse.de + +- Add mvebudb-88f{3720,7040,8040} + +------------------------------------------------------------------- +Tue Mar 14 08:47:33 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.03 + +------------------------------------------------------------------- +Wed Mar 1 09:36:39 UTC 2017 - guillaume@opensuse.org + +- Add libopenssl-devel as BuildRequires (needed by some configs) + +------------------------------------------------------------------- +Tue Feb 28 08:37:55 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.03-rc3 + ------------------------------------------------------------------- Wed Feb 22 13:38:25 UTC 2017 - hsehic@suse.com diff --git a/u-boot-cubietruck.spec b/u-boot-cubietruck.spec index 1838dd1..b31a11a 100644 --- a/u-boot-cubietruck.spec +++ b/u-boot-cubietruck.spec @@ -29,11 +29,15 @@ %define imx6_spl 0 %define socfpga_spl 0 +%if "cubietruck" == "rpi" || "cubietruck" == "rpi2" || "cubietruck" == "rpi332b" || "cubietruck" == "rpi3" +%define is_rpi 1 +%endif + # archive_version differs from version for RC version only -%define archive_version 2017.01 +%define archive_version 2017.03 Name: u-boot-cubietruck -Version: 2017.01 +Version: 2017.03 Release: 0 Summary: The U-Boot firmware for the cubietruck platform License: GPL-2.0 @@ -45,10 +49,13 @@ Source3: update_git.sh Source300: u-boot-rpmlintrc Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch +Patch0003: 0003-Makefile-Fix-linking-with-modern-bi.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build # Arndale board need DTC >= 1.4 BuildRequires: bc BuildRequires: dtc >= 1.4.0 +# u-boot-clearfog (tools/kwbimage.c) needs openssl to build +BuildRequires: libopenssl-devel # u-boot-firefly-rk3288 needs python to build BuildRequires: python %if "%{name}" == "u-boot-qemu-ppce500" @@ -56,7 +63,7 @@ BuildRequires: python BuildRequires: qemu Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500 %endif -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} # Owns /boot/vc directory BuildRequires: raspberrypi-firmware # For mountpoint @@ -86,16 +93,24 @@ This package contains documentation for U-Boot firmware. %setup -q -n u-boot-%{archive_version} %patch0001 -p1 %patch0002 -p1 +%patch0003 -p1 %build export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s) -make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" Cubietruck_defconfig -make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes +make %{?jobs:-j %jobs} CROSS_COMPILE= HOSTCFLAGS="$RPM_OPT_FLAGS" Cubietruck_defconfig +%if 0%{?is_rpi} +# U-Boot is installed in the filesystem, so we are confident there's enough space. +echo "Attempting to enable fdt apply command (.dtbo) support." +echo "CONFIG_OF_LIBFDT_OVERLAY=y" >> .config +%endif +make %{?jobs:-j %jobs} CROSS_COMPILE= HOSTCFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes + %if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring" # Chromebook ARM (snow) and HP Chromebook 11 (spring) need a uImage format export TEXT_START=$(awk '$NF == "_start" { printf "0x"$1 }' System.map) ./tools/mkimage -A arm -O linux -T kernel -C none -a $TEXT_START -e $TEXT_START -n uboot -d u-boot-dtb.bin u-boot.img %endif + %if %rockchip_spl == 1 for t in ; do ./tools/mkimage -n -d spl/u-boot-spl.bin -T $t u-boot-spl.$t @@ -107,7 +122,7 @@ export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | export NO_BRP_STRIP_DEBUG=true export NO_DEBUGINFO_STRIP_DEBUG=true %define uboot_dir /boot -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} %define uboot_dir /boot/vc %endif %if "%{name}" == "u-boot-qemu-ppce500" @@ -168,7 +183,7 @@ install -D -m 0755 SPL %{buildroot}/boot/imx6-spl.bin install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp %endif -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} %post # On the Raspberry Pi we chain-load u-boot.bin from bootcode.bin via config.txt. # It needs to be on the first FAT partition, wherever we mounted it. diff --git a/u-boot-dragonboard410c.changes b/u-boot-dragonboard410c.changes index 9364ee2..4e8877d 100644 --- a/u-boot-dragonboard410c.changes +++ b/u-boot-dragonboard410c.changes @@ -1,3 +1,38 @@ +------------------------------------------------------------------- +Sun Apr 9 18:24:30 UTC 2017 - afaerber@suse.de + +- Add tinker-rk3288 +- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.03 +* Fix firefly-rk3288 and tinker-rk3288 build with binutils 2.28. + 0003-Makefile-Fix-linking-with-modern-bi.patch +- U-Boot has no CFLAGS, so apply $RPM_OPT_FLAGS to HOSTCFLAGS instead + +------------------------------------------------------------------- +Mon Mar 20 11:10:57 UTC 2017 - afaerber@suse.de + +- Tidy Raspberry Pi conditionals +- Enable CONFIG_OF_LIBFDT_OVERLAY for Raspberry Pi only for now + +------------------------------------------------------------------- +Mon Mar 20 09:43:14 UTC 2017 - afaerber@suse.de + +- Add mvebudb-88f{3720,7040,8040} + +------------------------------------------------------------------- +Tue Mar 14 08:47:33 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.03 + +------------------------------------------------------------------- +Wed Mar 1 09:36:39 UTC 2017 - guillaume@opensuse.org + +- Add libopenssl-devel as BuildRequires (needed by some configs) + +------------------------------------------------------------------- +Tue Feb 28 08:37:55 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.03-rc3 + ------------------------------------------------------------------- Wed Feb 22 13:38:25 UTC 2017 - hsehic@suse.com diff --git a/u-boot-dragonboard410c.spec b/u-boot-dragonboard410c.spec index 037022b..29e1c25 100644 --- a/u-boot-dragonboard410c.spec +++ b/u-boot-dragonboard410c.spec @@ -29,11 +29,15 @@ %define imx6_spl 0 %define socfpga_spl 0 +%if "dragonboard410c" == "rpi" || "dragonboard410c" == "rpi2" || "dragonboard410c" == "rpi332b" || "dragonboard410c" == "rpi3" +%define is_rpi 1 +%endif + # archive_version differs from version for RC version only -%define archive_version 2017.01 +%define archive_version 2017.03 Name: u-boot-dragonboard410c -Version: 2017.01 +Version: 2017.03 Release: 0 Summary: The U-Boot firmware for the dragonboard410c platform License: GPL-2.0 @@ -45,10 +49,13 @@ Source3: update_git.sh Source300: u-boot-rpmlintrc Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch +Patch0003: 0003-Makefile-Fix-linking-with-modern-bi.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build # Arndale board need DTC >= 1.4 BuildRequires: bc BuildRequires: dtc >= 1.4.0 +# u-boot-clearfog (tools/kwbimage.c) needs openssl to build +BuildRequires: libopenssl-devel # u-boot-firefly-rk3288 needs python to build BuildRequires: python %if "%{name}" == "u-boot-qemu-ppce500" @@ -56,7 +63,7 @@ BuildRequires: python BuildRequires: qemu Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500 %endif -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} # Owns /boot/vc directory BuildRequires: raspberrypi-firmware # For mountpoint @@ -86,16 +93,24 @@ This package contains documentation for U-Boot firmware. %setup -q -n u-boot-%{archive_version} %patch0001 -p1 %patch0002 -p1 +%patch0003 -p1 %build export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s) -make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" dragonboard410c_defconfig -make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes +make %{?jobs:-j %jobs} CROSS_COMPILE= HOSTCFLAGS="$RPM_OPT_FLAGS" dragonboard410c_defconfig +%if 0%{?is_rpi} +# U-Boot is installed in the filesystem, so we are confident there's enough space. +echo "Attempting to enable fdt apply command (.dtbo) support." +echo "CONFIG_OF_LIBFDT_OVERLAY=y" >> .config +%endif +make %{?jobs:-j %jobs} CROSS_COMPILE= HOSTCFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes + %if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring" # Chromebook ARM (snow) and HP Chromebook 11 (spring) need a uImage format export TEXT_START=$(awk '$NF == "_start" { printf "0x"$1 }' System.map) ./tools/mkimage -A arm -O linux -T kernel -C none -a $TEXT_START -e $TEXT_START -n uboot -d u-boot-dtb.bin u-boot.img %endif + %if %rockchip_spl == 1 for t in ; do ./tools/mkimage -n -d spl/u-boot-spl.bin -T $t u-boot-spl.$t @@ -107,7 +122,7 @@ export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | export NO_BRP_STRIP_DEBUG=true export NO_DEBUGINFO_STRIP_DEBUG=true %define uboot_dir /boot -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} %define uboot_dir /boot/vc %endif %if "%{name}" == "u-boot-qemu-ppce500" @@ -168,7 +183,7 @@ install -D -m 0755 SPL %{buildroot}/boot/imx6-spl.bin install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp %endif -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} %post # On the Raspberry Pi we chain-load u-boot.bin from bootcode.bin via config.txt. # It needs to be on the first FAT partition, wherever we mounted it. diff --git a/u-boot-firefly-rk3288.changes b/u-boot-firefly-rk3288.changes index 9364ee2..4e8877d 100644 --- a/u-boot-firefly-rk3288.changes +++ b/u-boot-firefly-rk3288.changes @@ -1,3 +1,38 @@ +------------------------------------------------------------------- +Sun Apr 9 18:24:30 UTC 2017 - afaerber@suse.de + +- Add tinker-rk3288 +- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.03 +* Fix firefly-rk3288 and tinker-rk3288 build with binutils 2.28. + 0003-Makefile-Fix-linking-with-modern-bi.patch +- U-Boot has no CFLAGS, so apply $RPM_OPT_FLAGS to HOSTCFLAGS instead + +------------------------------------------------------------------- +Mon Mar 20 11:10:57 UTC 2017 - afaerber@suse.de + +- Tidy Raspberry Pi conditionals +- Enable CONFIG_OF_LIBFDT_OVERLAY for Raspberry Pi only for now + +------------------------------------------------------------------- +Mon Mar 20 09:43:14 UTC 2017 - afaerber@suse.de + +- Add mvebudb-88f{3720,7040,8040} + +------------------------------------------------------------------- +Tue Mar 14 08:47:33 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.03 + +------------------------------------------------------------------- +Wed Mar 1 09:36:39 UTC 2017 - guillaume@opensuse.org + +- Add libopenssl-devel as BuildRequires (needed by some configs) + +------------------------------------------------------------------- +Tue Feb 28 08:37:55 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.03-rc3 + ------------------------------------------------------------------- Wed Feb 22 13:38:25 UTC 2017 - hsehic@suse.com diff --git a/u-boot-firefly-rk3288.spec b/u-boot-firefly-rk3288.spec index 9e3e63d..be3951a 100644 --- a/u-boot-firefly-rk3288.spec +++ b/u-boot-firefly-rk3288.spec @@ -29,11 +29,15 @@ %define imx6_spl 0 %define socfpga_spl 0 +%if "firefly-rk3288" == "rpi" || "firefly-rk3288" == "rpi2" || "firefly-rk3288" == "rpi332b" || "firefly-rk3288" == "rpi3" +%define is_rpi 1 +%endif + # archive_version differs from version for RC version only -%define archive_version 2017.01 +%define archive_version 2017.03 Name: u-boot-firefly-rk3288 -Version: 2017.01 +Version: 2017.03 Release: 0 Summary: The U-Boot firmware for the firefly-rk3288 platform License: GPL-2.0 @@ -45,10 +49,13 @@ Source3: update_git.sh Source300: u-boot-rpmlintrc Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch +Patch0003: 0003-Makefile-Fix-linking-with-modern-bi.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build # Arndale board need DTC >= 1.4 BuildRequires: bc BuildRequires: dtc >= 1.4.0 +# u-boot-clearfog (tools/kwbimage.c) needs openssl to build +BuildRequires: libopenssl-devel # u-boot-firefly-rk3288 needs python to build BuildRequires: python %if "%{name}" == "u-boot-qemu-ppce500" @@ -56,7 +63,7 @@ BuildRequires: python BuildRequires: qemu Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500 %endif -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} # Owns /boot/vc directory BuildRequires: raspberrypi-firmware # For mountpoint @@ -86,16 +93,24 @@ This package contains documentation for U-Boot firmware. %setup -q -n u-boot-%{archive_version} %patch0001 -p1 %patch0002 -p1 +%patch0003 -p1 %build export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s) -make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" firefly-rk3288_defconfig -make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes +make %{?jobs:-j %jobs} CROSS_COMPILE= HOSTCFLAGS="$RPM_OPT_FLAGS" firefly-rk3288_defconfig +%if 0%{?is_rpi} +# U-Boot is installed in the filesystem, so we are confident there's enough space. +echo "Attempting to enable fdt apply command (.dtbo) support." +echo "CONFIG_OF_LIBFDT_OVERLAY=y" >> .config +%endif +make %{?jobs:-j %jobs} CROSS_COMPILE= HOSTCFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes + %if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring" # Chromebook ARM (snow) and HP Chromebook 11 (spring) need a uImage format export TEXT_START=$(awk '$NF == "_start" { printf "0x"$1 }' System.map) ./tools/mkimage -A arm -O linux -T kernel -C none -a $TEXT_START -e $TEXT_START -n uboot -d u-boot-dtb.bin u-boot.img %endif + %if %rockchip_spl == 1 for t in rksd rkimage; do ./tools/mkimage -n rk3288 -d spl/u-boot-spl.bin -T $t u-boot-spl.$t @@ -107,7 +122,7 @@ export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | export NO_BRP_STRIP_DEBUG=true export NO_DEBUGINFO_STRIP_DEBUG=true %define uboot_dir /boot -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} %define uboot_dir /boot/vc %endif %if "%{name}" == "u-boot-qemu-ppce500" @@ -168,7 +183,7 @@ install -D -m 0755 SPL %{buildroot}/boot/imx6-spl.bin install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp %endif -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} %post # On the Raspberry Pi we chain-load u-boot.bin from bootcode.bin via config.txt. # It needs to be on the first FAT partition, wherever we mounted it. diff --git a/u-boot-highbank.changes b/u-boot-highbank.changes index 9364ee2..4e8877d 100644 --- a/u-boot-highbank.changes +++ b/u-boot-highbank.changes @@ -1,3 +1,38 @@ +------------------------------------------------------------------- +Sun Apr 9 18:24:30 UTC 2017 - afaerber@suse.de + +- Add tinker-rk3288 +- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.03 +* Fix firefly-rk3288 and tinker-rk3288 build with binutils 2.28. + 0003-Makefile-Fix-linking-with-modern-bi.patch +- U-Boot has no CFLAGS, so apply $RPM_OPT_FLAGS to HOSTCFLAGS instead + +------------------------------------------------------------------- +Mon Mar 20 11:10:57 UTC 2017 - afaerber@suse.de + +- Tidy Raspberry Pi conditionals +- Enable CONFIG_OF_LIBFDT_OVERLAY for Raspberry Pi only for now + +------------------------------------------------------------------- +Mon Mar 20 09:43:14 UTC 2017 - afaerber@suse.de + +- Add mvebudb-88f{3720,7040,8040} + +------------------------------------------------------------------- +Tue Mar 14 08:47:33 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.03 + +------------------------------------------------------------------- +Wed Mar 1 09:36:39 UTC 2017 - guillaume@opensuse.org + +- Add libopenssl-devel as BuildRequires (needed by some configs) + +------------------------------------------------------------------- +Tue Feb 28 08:37:55 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.03-rc3 + ------------------------------------------------------------------- Wed Feb 22 13:38:25 UTC 2017 - hsehic@suse.com diff --git a/u-boot-highbank.spec b/u-boot-highbank.spec index d954103..8c873ef 100644 --- a/u-boot-highbank.spec +++ b/u-boot-highbank.spec @@ -29,11 +29,15 @@ %define imx6_spl 0 %define socfpga_spl 0 +%if "highbank" == "rpi" || "highbank" == "rpi2" || "highbank" == "rpi332b" || "highbank" == "rpi3" +%define is_rpi 1 +%endif + # archive_version differs from version for RC version only -%define archive_version 2017.01 +%define archive_version 2017.03 Name: u-boot-highbank -Version: 2017.01 +Version: 2017.03 Release: 0 Summary: The U-Boot firmware for the highbank platform License: GPL-2.0 @@ -45,10 +49,13 @@ Source3: update_git.sh Source300: u-boot-rpmlintrc Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch +Patch0003: 0003-Makefile-Fix-linking-with-modern-bi.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build # Arndale board need DTC >= 1.4 BuildRequires: bc BuildRequires: dtc >= 1.4.0 +# u-boot-clearfog (tools/kwbimage.c) needs openssl to build +BuildRequires: libopenssl-devel # u-boot-firefly-rk3288 needs python to build BuildRequires: python %if "%{name}" == "u-boot-qemu-ppce500" @@ -56,7 +63,7 @@ BuildRequires: python BuildRequires: qemu Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500 %endif -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} # Owns /boot/vc directory BuildRequires: raspberrypi-firmware # For mountpoint @@ -86,16 +93,24 @@ This package contains documentation for U-Boot firmware. %setup -q -n u-boot-%{archive_version} %patch0001 -p1 %patch0002 -p1 +%patch0003 -p1 %build export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s) -make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" highbank_defconfig -make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes +make %{?jobs:-j %jobs} CROSS_COMPILE= HOSTCFLAGS="$RPM_OPT_FLAGS" highbank_defconfig +%if 0%{?is_rpi} +# U-Boot is installed in the filesystem, so we are confident there's enough space. +echo "Attempting to enable fdt apply command (.dtbo) support." +echo "CONFIG_OF_LIBFDT_OVERLAY=y" >> .config +%endif +make %{?jobs:-j %jobs} CROSS_COMPILE= HOSTCFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes + %if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring" # Chromebook ARM (snow) and HP Chromebook 11 (spring) need a uImage format export TEXT_START=$(awk '$NF == "_start" { printf "0x"$1 }' System.map) ./tools/mkimage -A arm -O linux -T kernel -C none -a $TEXT_START -e $TEXT_START -n uboot -d u-boot-dtb.bin u-boot.img %endif + %if %rockchip_spl == 1 for t in ; do ./tools/mkimage -n -d spl/u-boot-spl.bin -T $t u-boot-spl.$t @@ -107,7 +122,7 @@ export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | export NO_BRP_STRIP_DEBUG=true export NO_DEBUGINFO_STRIP_DEBUG=true %define uboot_dir /boot -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} %define uboot_dir /boot/vc %endif %if "%{name}" == "u-boot-qemu-ppce500" @@ -168,7 +183,7 @@ install -D -m 0755 SPL %{buildroot}/boot/imx6-spl.bin install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp %endif -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} %post # On the Raspberry Pi we chain-load u-boot.bin from bootcode.bin via config.txt. # It needs to be on the first FAT partition, wherever we mounted it. diff --git a/u-boot-hikey.changes b/u-boot-hikey.changes index 9364ee2..4e8877d 100644 --- a/u-boot-hikey.changes +++ b/u-boot-hikey.changes @@ -1,3 +1,38 @@ +------------------------------------------------------------------- +Sun Apr 9 18:24:30 UTC 2017 - afaerber@suse.de + +- Add tinker-rk3288 +- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.03 +* Fix firefly-rk3288 and tinker-rk3288 build with binutils 2.28. + 0003-Makefile-Fix-linking-with-modern-bi.patch +- U-Boot has no CFLAGS, so apply $RPM_OPT_FLAGS to HOSTCFLAGS instead + +------------------------------------------------------------------- +Mon Mar 20 11:10:57 UTC 2017 - afaerber@suse.de + +- Tidy Raspberry Pi conditionals +- Enable CONFIG_OF_LIBFDT_OVERLAY for Raspberry Pi only for now + +------------------------------------------------------------------- +Mon Mar 20 09:43:14 UTC 2017 - afaerber@suse.de + +- Add mvebudb-88f{3720,7040,8040} + +------------------------------------------------------------------- +Tue Mar 14 08:47:33 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.03 + +------------------------------------------------------------------- +Wed Mar 1 09:36:39 UTC 2017 - guillaume@opensuse.org + +- Add libopenssl-devel as BuildRequires (needed by some configs) + +------------------------------------------------------------------- +Tue Feb 28 08:37:55 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.03-rc3 + ------------------------------------------------------------------- Wed Feb 22 13:38:25 UTC 2017 - hsehic@suse.com diff --git a/u-boot-hikey.spec b/u-boot-hikey.spec index 24daadf..2c5da49 100644 --- a/u-boot-hikey.spec +++ b/u-boot-hikey.spec @@ -29,11 +29,15 @@ %define imx6_spl 0 %define socfpga_spl 0 +%if "hikey" == "rpi" || "hikey" == "rpi2" || "hikey" == "rpi332b" || "hikey" == "rpi3" +%define is_rpi 1 +%endif + # archive_version differs from version for RC version only -%define archive_version 2017.01 +%define archive_version 2017.03 Name: u-boot-hikey -Version: 2017.01 +Version: 2017.03 Release: 0 Summary: The U-Boot firmware for the hikey platform License: GPL-2.0 @@ -45,10 +49,13 @@ Source3: update_git.sh Source300: u-boot-rpmlintrc Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch +Patch0003: 0003-Makefile-Fix-linking-with-modern-bi.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build # Arndale board need DTC >= 1.4 BuildRequires: bc BuildRequires: dtc >= 1.4.0 +# u-boot-clearfog (tools/kwbimage.c) needs openssl to build +BuildRequires: libopenssl-devel # u-boot-firefly-rk3288 needs python to build BuildRequires: python %if "%{name}" == "u-boot-qemu-ppce500" @@ -56,7 +63,7 @@ BuildRequires: python BuildRequires: qemu Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500 %endif -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} # Owns /boot/vc directory BuildRequires: raspberrypi-firmware # For mountpoint @@ -86,16 +93,24 @@ This package contains documentation for U-Boot firmware. %setup -q -n u-boot-%{archive_version} %patch0001 -p1 %patch0002 -p1 +%patch0003 -p1 %build export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s) -make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" hikey_defconfig -make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes +make %{?jobs:-j %jobs} CROSS_COMPILE= HOSTCFLAGS="$RPM_OPT_FLAGS" hikey_defconfig +%if 0%{?is_rpi} +# U-Boot is installed in the filesystem, so we are confident there's enough space. +echo "Attempting to enable fdt apply command (.dtbo) support." +echo "CONFIG_OF_LIBFDT_OVERLAY=y" >> .config +%endif +make %{?jobs:-j %jobs} CROSS_COMPILE= HOSTCFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes + %if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring" # Chromebook ARM (snow) and HP Chromebook 11 (spring) need a uImage format export TEXT_START=$(awk '$NF == "_start" { printf "0x"$1 }' System.map) ./tools/mkimage -A arm -O linux -T kernel -C none -a $TEXT_START -e $TEXT_START -n uboot -d u-boot-dtb.bin u-boot.img %endif + %if %rockchip_spl == 1 for t in ; do ./tools/mkimage -n -d spl/u-boot-spl.bin -T $t u-boot-spl.$t @@ -107,7 +122,7 @@ export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | export NO_BRP_STRIP_DEBUG=true export NO_DEBUGINFO_STRIP_DEBUG=true %define uboot_dir /boot -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} %define uboot_dir /boot/vc %endif %if "%{name}" == "u-boot-qemu-ppce500" @@ -168,7 +183,7 @@ install -D -m 0755 SPL %{buildroot}/boot/imx6-spl.bin install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp %endif -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} %post # On the Raspberry Pi we chain-load u-boot.bin from bootcode.bin via config.txt. # It needs to be on the first FAT partition, wherever we mounted it. diff --git a/u-boot-hyundaia7hd.changes b/u-boot-hyundaia7hd.changes index 9364ee2..4e8877d 100644 --- a/u-boot-hyundaia7hd.changes +++ b/u-boot-hyundaia7hd.changes @@ -1,3 +1,38 @@ +------------------------------------------------------------------- +Sun Apr 9 18:24:30 UTC 2017 - afaerber@suse.de + +- Add tinker-rk3288 +- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.03 +* Fix firefly-rk3288 and tinker-rk3288 build with binutils 2.28. + 0003-Makefile-Fix-linking-with-modern-bi.patch +- U-Boot has no CFLAGS, so apply $RPM_OPT_FLAGS to HOSTCFLAGS instead + +------------------------------------------------------------------- +Mon Mar 20 11:10:57 UTC 2017 - afaerber@suse.de + +- Tidy Raspberry Pi conditionals +- Enable CONFIG_OF_LIBFDT_OVERLAY for Raspberry Pi only for now + +------------------------------------------------------------------- +Mon Mar 20 09:43:14 UTC 2017 - afaerber@suse.de + +- Add mvebudb-88f{3720,7040,8040} + +------------------------------------------------------------------- +Tue Mar 14 08:47:33 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.03 + +------------------------------------------------------------------- +Wed Mar 1 09:36:39 UTC 2017 - guillaume@opensuse.org + +- Add libopenssl-devel as BuildRequires (needed by some configs) + +------------------------------------------------------------------- +Tue Feb 28 08:37:55 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.03-rc3 + ------------------------------------------------------------------- Wed Feb 22 13:38:25 UTC 2017 - hsehic@suse.com diff --git a/u-boot-hyundaia7hd.spec b/u-boot-hyundaia7hd.spec index 9b84559..dfbf38f 100644 --- a/u-boot-hyundaia7hd.spec +++ b/u-boot-hyundaia7hd.spec @@ -29,11 +29,15 @@ %define imx6_spl 0 %define socfpga_spl 0 +%if "hyundaia7hd" == "rpi" || "hyundaia7hd" == "rpi2" || "hyundaia7hd" == "rpi332b" || "hyundaia7hd" == "rpi3" +%define is_rpi 1 +%endif + # archive_version differs from version for RC version only -%define archive_version 2017.01 +%define archive_version 2017.03 Name: u-boot-hyundaia7hd -Version: 2017.01 +Version: 2017.03 Release: 0 Summary: The U-Boot firmware for the hyundaia7hd platform License: GPL-2.0 @@ -45,10 +49,13 @@ Source3: update_git.sh Source300: u-boot-rpmlintrc Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch +Patch0003: 0003-Makefile-Fix-linking-with-modern-bi.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build # Arndale board need DTC >= 1.4 BuildRequires: bc BuildRequires: dtc >= 1.4.0 +# u-boot-clearfog (tools/kwbimage.c) needs openssl to build +BuildRequires: libopenssl-devel # u-boot-firefly-rk3288 needs python to build BuildRequires: python %if "%{name}" == "u-boot-qemu-ppce500" @@ -56,7 +63,7 @@ BuildRequires: python BuildRequires: qemu Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500 %endif -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} # Owns /boot/vc directory BuildRequires: raspberrypi-firmware # For mountpoint @@ -86,16 +93,24 @@ This package contains documentation for U-Boot firmware. %setup -q -n u-boot-%{archive_version} %patch0001 -p1 %patch0002 -p1 +%patch0003 -p1 %build export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s) -make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" Hyundai_A7HD_defconfig -make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes +make %{?jobs:-j %jobs} CROSS_COMPILE= HOSTCFLAGS="$RPM_OPT_FLAGS" Hyundai_A7HD_defconfig +%if 0%{?is_rpi} +# U-Boot is installed in the filesystem, so we are confident there's enough space. +echo "Attempting to enable fdt apply command (.dtbo) support." +echo "CONFIG_OF_LIBFDT_OVERLAY=y" >> .config +%endif +make %{?jobs:-j %jobs} CROSS_COMPILE= HOSTCFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes + %if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring" # Chromebook ARM (snow) and HP Chromebook 11 (spring) need a uImage format export TEXT_START=$(awk '$NF == "_start" { printf "0x"$1 }' System.map) ./tools/mkimage -A arm -O linux -T kernel -C none -a $TEXT_START -e $TEXT_START -n uboot -d u-boot-dtb.bin u-boot.img %endif + %if %rockchip_spl == 1 for t in ; do ./tools/mkimage -n -d spl/u-boot-spl.bin -T $t u-boot-spl.$t @@ -107,7 +122,7 @@ export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | export NO_BRP_STRIP_DEBUG=true export NO_DEBUGINFO_STRIP_DEBUG=true %define uboot_dir /boot -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} %define uboot_dir /boot/vc %endif %if "%{name}" == "u-boot-qemu-ppce500" @@ -168,7 +183,7 @@ install -D -m 0755 SPL %{buildroot}/boot/imx6-spl.bin install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp %endif -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} %post # On the Raspberry Pi we chain-load u-boot.bin from bootcode.bin via config.txt. # It needs to be on the first FAT partition, wherever we mounted it. diff --git a/u-boot-jetson-tk1.changes b/u-boot-jetson-tk1.changes index 9364ee2..4e8877d 100644 --- a/u-boot-jetson-tk1.changes +++ b/u-boot-jetson-tk1.changes @@ -1,3 +1,38 @@ +------------------------------------------------------------------- +Sun Apr 9 18:24:30 UTC 2017 - afaerber@suse.de + +- Add tinker-rk3288 +- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.03 +* Fix firefly-rk3288 and tinker-rk3288 build with binutils 2.28. + 0003-Makefile-Fix-linking-with-modern-bi.patch +- U-Boot has no CFLAGS, so apply $RPM_OPT_FLAGS to HOSTCFLAGS instead + +------------------------------------------------------------------- +Mon Mar 20 11:10:57 UTC 2017 - afaerber@suse.de + +- Tidy Raspberry Pi conditionals +- Enable CONFIG_OF_LIBFDT_OVERLAY for Raspberry Pi only for now + +------------------------------------------------------------------- +Mon Mar 20 09:43:14 UTC 2017 - afaerber@suse.de + +- Add mvebudb-88f{3720,7040,8040} + +------------------------------------------------------------------- +Tue Mar 14 08:47:33 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.03 + +------------------------------------------------------------------- +Wed Mar 1 09:36:39 UTC 2017 - guillaume@opensuse.org + +- Add libopenssl-devel as BuildRequires (needed by some configs) + +------------------------------------------------------------------- +Tue Feb 28 08:37:55 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.03-rc3 + ------------------------------------------------------------------- Wed Feb 22 13:38:25 UTC 2017 - hsehic@suse.com diff --git a/u-boot-jetson-tk1.spec b/u-boot-jetson-tk1.spec index b1d349c..7d25fde 100644 --- a/u-boot-jetson-tk1.spec +++ b/u-boot-jetson-tk1.spec @@ -29,11 +29,15 @@ %define imx6_spl 0 %define socfpga_spl 0 +%if "jetson-tk1" == "rpi" || "jetson-tk1" == "rpi2" || "jetson-tk1" == "rpi332b" || "jetson-tk1" == "rpi3" +%define is_rpi 1 +%endif + # archive_version differs from version for RC version only -%define archive_version 2017.01 +%define archive_version 2017.03 Name: u-boot-jetson-tk1 -Version: 2017.01 +Version: 2017.03 Release: 0 Summary: The U-Boot firmware for the jetson-tk1 platform License: GPL-2.0 @@ -45,10 +49,13 @@ Source3: update_git.sh Source300: u-boot-rpmlintrc Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch +Patch0003: 0003-Makefile-Fix-linking-with-modern-bi.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build # Arndale board need DTC >= 1.4 BuildRequires: bc BuildRequires: dtc >= 1.4.0 +# u-boot-clearfog (tools/kwbimage.c) needs openssl to build +BuildRequires: libopenssl-devel # u-boot-firefly-rk3288 needs python to build BuildRequires: python %if "%{name}" == "u-boot-qemu-ppce500" @@ -56,7 +63,7 @@ BuildRequires: python BuildRequires: qemu Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500 %endif -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} # Owns /boot/vc directory BuildRequires: raspberrypi-firmware # For mountpoint @@ -86,16 +93,24 @@ This package contains documentation for U-Boot firmware. %setup -q -n u-boot-%{archive_version} %patch0001 -p1 %patch0002 -p1 +%patch0003 -p1 %build export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s) -make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" jetson-tk1_defconfig -make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes +make %{?jobs:-j %jobs} CROSS_COMPILE= HOSTCFLAGS="$RPM_OPT_FLAGS" jetson-tk1_defconfig +%if 0%{?is_rpi} +# U-Boot is installed in the filesystem, so we are confident there's enough space. +echo "Attempting to enable fdt apply command (.dtbo) support." +echo "CONFIG_OF_LIBFDT_OVERLAY=y" >> .config +%endif +make %{?jobs:-j %jobs} CROSS_COMPILE= HOSTCFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes + %if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring" # Chromebook ARM (snow) and HP Chromebook 11 (spring) need a uImage format export TEXT_START=$(awk '$NF == "_start" { printf "0x"$1 }' System.map) ./tools/mkimage -A arm -O linux -T kernel -C none -a $TEXT_START -e $TEXT_START -n uboot -d u-boot-dtb.bin u-boot.img %endif + %if %rockchip_spl == 1 for t in ; do ./tools/mkimage -n -d spl/u-boot-spl.bin -T $t u-boot-spl.$t @@ -107,7 +122,7 @@ export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | export NO_BRP_STRIP_DEBUG=true export NO_DEBUGINFO_STRIP_DEBUG=true %define uboot_dir /boot -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} %define uboot_dir /boot/vc %endif %if "%{name}" == "u-boot-qemu-ppce500" @@ -168,7 +183,7 @@ install -D -m 0755 SPL %{buildroot}/boot/imx6-spl.bin install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp %endif -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} %post # On the Raspberry Pi we chain-load u-boot.bin from bootcode.bin via config.txt. # It needs to be on the first FAT partition, wherever we mounted it. diff --git a/u-boot-lamobor1.changes b/u-boot-lamobor1.changes index 9364ee2..4e8877d 100644 --- a/u-boot-lamobor1.changes +++ b/u-boot-lamobor1.changes @@ -1,3 +1,38 @@ +------------------------------------------------------------------- +Sun Apr 9 18:24:30 UTC 2017 - afaerber@suse.de + +- Add tinker-rk3288 +- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.03 +* Fix firefly-rk3288 and tinker-rk3288 build with binutils 2.28. + 0003-Makefile-Fix-linking-with-modern-bi.patch +- U-Boot has no CFLAGS, so apply $RPM_OPT_FLAGS to HOSTCFLAGS instead + +------------------------------------------------------------------- +Mon Mar 20 11:10:57 UTC 2017 - afaerber@suse.de + +- Tidy Raspberry Pi conditionals +- Enable CONFIG_OF_LIBFDT_OVERLAY for Raspberry Pi only for now + +------------------------------------------------------------------- +Mon Mar 20 09:43:14 UTC 2017 - afaerber@suse.de + +- Add mvebudb-88f{3720,7040,8040} + +------------------------------------------------------------------- +Tue Mar 14 08:47:33 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.03 + +------------------------------------------------------------------- +Wed Mar 1 09:36:39 UTC 2017 - guillaume@opensuse.org + +- Add libopenssl-devel as BuildRequires (needed by some configs) + +------------------------------------------------------------------- +Tue Feb 28 08:37:55 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.03-rc3 + ------------------------------------------------------------------- Wed Feb 22 13:38:25 UTC 2017 - hsehic@suse.com diff --git a/u-boot-lamobor1.spec b/u-boot-lamobor1.spec index cb73df7..bb238bb 100644 --- a/u-boot-lamobor1.spec +++ b/u-boot-lamobor1.spec @@ -29,11 +29,15 @@ %define imx6_spl 0 %define socfpga_spl 0 +%if "lamobor1" == "rpi" || "lamobor1" == "rpi2" || "lamobor1" == "rpi332b" || "lamobor1" == "rpi3" +%define is_rpi 1 +%endif + # archive_version differs from version for RC version only -%define archive_version 2017.01 +%define archive_version 2017.03 Name: u-boot-lamobor1 -Version: 2017.01 +Version: 2017.03 Release: 0 Summary: The U-Boot firmware for the lamobor1 platform License: GPL-2.0 @@ -45,10 +49,13 @@ Source3: update_git.sh Source300: u-boot-rpmlintrc Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch +Patch0003: 0003-Makefile-Fix-linking-with-modern-bi.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build # Arndale board need DTC >= 1.4 BuildRequires: bc BuildRequires: dtc >= 1.4.0 +# u-boot-clearfog (tools/kwbimage.c) needs openssl to build +BuildRequires: libopenssl-devel # u-boot-firefly-rk3288 needs python to build BuildRequires: python %if "%{name}" == "u-boot-qemu-ppce500" @@ -56,7 +63,7 @@ BuildRequires: python BuildRequires: qemu Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500 %endif -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} # Owns /boot/vc directory BuildRequires: raspberrypi-firmware # For mountpoint @@ -86,16 +93,24 @@ This package contains documentation for U-Boot firmware. %setup -q -n u-boot-%{archive_version} %patch0001 -p1 %patch0002 -p1 +%patch0003 -p1 %build export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s) -make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" Lamobo_R1_defconfig -make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes +make %{?jobs:-j %jobs} CROSS_COMPILE= HOSTCFLAGS="$RPM_OPT_FLAGS" Lamobo_R1_defconfig +%if 0%{?is_rpi} +# U-Boot is installed in the filesystem, so we are confident there's enough space. +echo "Attempting to enable fdt apply command (.dtbo) support." +echo "CONFIG_OF_LIBFDT_OVERLAY=y" >> .config +%endif +make %{?jobs:-j %jobs} CROSS_COMPILE= HOSTCFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes + %if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring" # Chromebook ARM (snow) and HP Chromebook 11 (spring) need a uImage format export TEXT_START=$(awk '$NF == "_start" { printf "0x"$1 }' System.map) ./tools/mkimage -A arm -O linux -T kernel -C none -a $TEXT_START -e $TEXT_START -n uboot -d u-boot-dtb.bin u-boot.img %endif + %if %rockchip_spl == 1 for t in ; do ./tools/mkimage -n -d spl/u-boot-spl.bin -T $t u-boot-spl.$t @@ -107,7 +122,7 @@ export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | export NO_BRP_STRIP_DEBUG=true export NO_DEBUGINFO_STRIP_DEBUG=true %define uboot_dir /boot -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} %define uboot_dir /boot/vc %endif %if "%{name}" == "u-boot-qemu-ppce500" @@ -168,7 +183,7 @@ install -D -m 0755 SPL %{buildroot}/boot/imx6-spl.bin install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp %endif -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} %post # On the Raspberry Pi we chain-load u-boot.bin from bootcode.bin via config.txt. # It needs to be on the first FAT partition, wherever we mounted it. diff --git a/u-boot-melea1000.changes b/u-boot-melea1000.changes index 9364ee2..4e8877d 100644 --- a/u-boot-melea1000.changes +++ b/u-boot-melea1000.changes @@ -1,3 +1,38 @@ +------------------------------------------------------------------- +Sun Apr 9 18:24:30 UTC 2017 - afaerber@suse.de + +- Add tinker-rk3288 +- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.03 +* Fix firefly-rk3288 and tinker-rk3288 build with binutils 2.28. + 0003-Makefile-Fix-linking-with-modern-bi.patch +- U-Boot has no CFLAGS, so apply $RPM_OPT_FLAGS to HOSTCFLAGS instead + +------------------------------------------------------------------- +Mon Mar 20 11:10:57 UTC 2017 - afaerber@suse.de + +- Tidy Raspberry Pi conditionals +- Enable CONFIG_OF_LIBFDT_OVERLAY for Raspberry Pi only for now + +------------------------------------------------------------------- +Mon Mar 20 09:43:14 UTC 2017 - afaerber@suse.de + +- Add mvebudb-88f{3720,7040,8040} + +------------------------------------------------------------------- +Tue Mar 14 08:47:33 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.03 + +------------------------------------------------------------------- +Wed Mar 1 09:36:39 UTC 2017 - guillaume@opensuse.org + +- Add libopenssl-devel as BuildRequires (needed by some configs) + +------------------------------------------------------------------- +Tue Feb 28 08:37:55 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.03-rc3 + ------------------------------------------------------------------- Wed Feb 22 13:38:25 UTC 2017 - hsehic@suse.com diff --git a/u-boot-melea1000.spec b/u-boot-melea1000.spec index d9ffd1f..9a92d9c 100644 --- a/u-boot-melea1000.spec +++ b/u-boot-melea1000.spec @@ -29,11 +29,15 @@ %define imx6_spl 0 %define socfpga_spl 0 +%if "melea1000" == "rpi" || "melea1000" == "rpi2" || "melea1000" == "rpi332b" || "melea1000" == "rpi3" +%define is_rpi 1 +%endif + # archive_version differs from version for RC version only -%define archive_version 2017.01 +%define archive_version 2017.03 Name: u-boot-melea1000 -Version: 2017.01 +Version: 2017.03 Release: 0 Summary: The U-Boot firmware for the melea1000 platform License: GPL-2.0 @@ -45,10 +49,13 @@ Source3: update_git.sh Source300: u-boot-rpmlintrc Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch +Patch0003: 0003-Makefile-Fix-linking-with-modern-bi.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build # Arndale board need DTC >= 1.4 BuildRequires: bc BuildRequires: dtc >= 1.4.0 +# u-boot-clearfog (tools/kwbimage.c) needs openssl to build +BuildRequires: libopenssl-devel # u-boot-firefly-rk3288 needs python to build BuildRequires: python %if "%{name}" == "u-boot-qemu-ppce500" @@ -56,7 +63,7 @@ BuildRequires: python BuildRequires: qemu Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500 %endif -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} # Owns /boot/vc directory BuildRequires: raspberrypi-firmware # For mountpoint @@ -86,16 +93,24 @@ This package contains documentation for U-Boot firmware. %setup -q -n u-boot-%{archive_version} %patch0001 -p1 %patch0002 -p1 +%patch0003 -p1 %build export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s) -make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" Mele_A1000_defconfig -make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes +make %{?jobs:-j %jobs} CROSS_COMPILE= HOSTCFLAGS="$RPM_OPT_FLAGS" Mele_A1000_defconfig +%if 0%{?is_rpi} +# U-Boot is installed in the filesystem, so we are confident there's enough space. +echo "Attempting to enable fdt apply command (.dtbo) support." +echo "CONFIG_OF_LIBFDT_OVERLAY=y" >> .config +%endif +make %{?jobs:-j %jobs} CROSS_COMPILE= HOSTCFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes + %if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring" # Chromebook ARM (snow) and HP Chromebook 11 (spring) need a uImage format export TEXT_START=$(awk '$NF == "_start" { printf "0x"$1 }' System.map) ./tools/mkimage -A arm -O linux -T kernel -C none -a $TEXT_START -e $TEXT_START -n uboot -d u-boot-dtb.bin u-boot.img %endif + %if %rockchip_spl == 1 for t in ; do ./tools/mkimage -n -d spl/u-boot-spl.bin -T $t u-boot-spl.$t @@ -107,7 +122,7 @@ export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | export NO_BRP_STRIP_DEBUG=true export NO_DEBUGINFO_STRIP_DEBUG=true %define uboot_dir /boot -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} %define uboot_dir /boot/vc %endif %if "%{name}" == "u-boot-qemu-ppce500" @@ -168,7 +183,7 @@ install -D -m 0755 SPL %{buildroot}/boot/imx6-spl.bin install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp %endif -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} %post # On the Raspberry Pi we chain-load u-boot.bin from bootcode.bin via config.txt. # It needs to be on the first FAT partition, wherever we mounted it. diff --git a/u-boot-merriia80optimus.changes b/u-boot-merriia80optimus.changes index 9364ee2..4e8877d 100644 --- a/u-boot-merriia80optimus.changes +++ b/u-boot-merriia80optimus.changes @@ -1,3 +1,38 @@ +------------------------------------------------------------------- +Sun Apr 9 18:24:30 UTC 2017 - afaerber@suse.de + +- Add tinker-rk3288 +- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.03 +* Fix firefly-rk3288 and tinker-rk3288 build with binutils 2.28. + 0003-Makefile-Fix-linking-with-modern-bi.patch +- U-Boot has no CFLAGS, so apply $RPM_OPT_FLAGS to HOSTCFLAGS instead + +------------------------------------------------------------------- +Mon Mar 20 11:10:57 UTC 2017 - afaerber@suse.de + +- Tidy Raspberry Pi conditionals +- Enable CONFIG_OF_LIBFDT_OVERLAY for Raspberry Pi only for now + +------------------------------------------------------------------- +Mon Mar 20 09:43:14 UTC 2017 - afaerber@suse.de + +- Add mvebudb-88f{3720,7040,8040} + +------------------------------------------------------------------- +Tue Mar 14 08:47:33 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.03 + +------------------------------------------------------------------- +Wed Mar 1 09:36:39 UTC 2017 - guillaume@opensuse.org + +- Add libopenssl-devel as BuildRequires (needed by some configs) + +------------------------------------------------------------------- +Tue Feb 28 08:37:55 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.03-rc3 + ------------------------------------------------------------------- Wed Feb 22 13:38:25 UTC 2017 - hsehic@suse.com diff --git a/u-boot-merriia80optimus.spec b/u-boot-merriia80optimus.spec index 83d2df5..31417d0 100644 --- a/u-boot-merriia80optimus.spec +++ b/u-boot-merriia80optimus.spec @@ -29,11 +29,15 @@ %define imx6_spl 0 %define socfpga_spl 0 +%if "merriia80optimus" == "rpi" || "merriia80optimus" == "rpi2" || "merriia80optimus" == "rpi332b" || "merriia80optimus" == "rpi3" +%define is_rpi 1 +%endif + # archive_version differs from version for RC version only -%define archive_version 2017.01 +%define archive_version 2017.03 Name: u-boot-merriia80optimus -Version: 2017.01 +Version: 2017.03 Release: 0 Summary: The U-Boot firmware for the merriia80optimus platform License: GPL-2.0 @@ -45,10 +49,13 @@ Source3: update_git.sh Source300: u-boot-rpmlintrc Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch +Patch0003: 0003-Makefile-Fix-linking-with-modern-bi.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build # Arndale board need DTC >= 1.4 BuildRequires: bc BuildRequires: dtc >= 1.4.0 +# u-boot-clearfog (tools/kwbimage.c) needs openssl to build +BuildRequires: libopenssl-devel # u-boot-firefly-rk3288 needs python to build BuildRequires: python %if "%{name}" == "u-boot-qemu-ppce500" @@ -56,7 +63,7 @@ BuildRequires: python BuildRequires: qemu Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500 %endif -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} # Owns /boot/vc directory BuildRequires: raspberrypi-firmware # For mountpoint @@ -86,16 +93,24 @@ This package contains documentation for U-Boot firmware. %setup -q -n u-boot-%{archive_version} %patch0001 -p1 %patch0002 -p1 +%patch0003 -p1 %build export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s) -make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" Merrii_A80_Optimus_defconfig -make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes +make %{?jobs:-j %jobs} CROSS_COMPILE= HOSTCFLAGS="$RPM_OPT_FLAGS" Merrii_A80_Optimus_defconfig +%if 0%{?is_rpi} +# U-Boot is installed in the filesystem, so we are confident there's enough space. +echo "Attempting to enable fdt apply command (.dtbo) support." +echo "CONFIG_OF_LIBFDT_OVERLAY=y" >> .config +%endif +make %{?jobs:-j %jobs} CROSS_COMPILE= HOSTCFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes + %if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring" # Chromebook ARM (snow) and HP Chromebook 11 (spring) need a uImage format export TEXT_START=$(awk '$NF == "_start" { printf "0x"$1 }' System.map) ./tools/mkimage -A arm -O linux -T kernel -C none -a $TEXT_START -e $TEXT_START -n uboot -d u-boot-dtb.bin u-boot.img %endif + %if %rockchip_spl == 1 for t in ; do ./tools/mkimage -n -d spl/u-boot-spl.bin -T $t u-boot-spl.$t @@ -107,7 +122,7 @@ export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | export NO_BRP_STRIP_DEBUG=true export NO_DEBUGINFO_STRIP_DEBUG=true %define uboot_dir /boot -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} %define uboot_dir /boot/vc %endif %if "%{name}" == "u-boot-qemu-ppce500" @@ -168,7 +183,7 @@ install -D -m 0755 SPL %{buildroot}/boot/imx6-spl.bin install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp %endif -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} %post # On the Raspberry Pi we chain-load u-boot.bin from bootcode.bin via config.txt. # It needs to be on the first FAT partition, wherever we mounted it. diff --git a/u-boot-mvebudb-88f3720.changes b/u-boot-mvebudb-88f3720.changes new file mode 100644 index 0000000..4e8877d --- /dev/null +++ b/u-boot-mvebudb-88f3720.changes @@ -0,0 +1,1532 @@ +------------------------------------------------------------------- +Sun Apr 9 18:24:30 UTC 2017 - afaerber@suse.de + +- Add tinker-rk3288 +- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.03 +* Fix firefly-rk3288 and tinker-rk3288 build with binutils 2.28. + 0003-Makefile-Fix-linking-with-modern-bi.patch +- U-Boot has no CFLAGS, so apply $RPM_OPT_FLAGS to HOSTCFLAGS instead + +------------------------------------------------------------------- +Mon Mar 20 11:10:57 UTC 2017 - afaerber@suse.de + +- Tidy Raspberry Pi conditionals +- Enable CONFIG_OF_LIBFDT_OVERLAY for Raspberry Pi only for now + +------------------------------------------------------------------- +Mon Mar 20 09:43:14 UTC 2017 - afaerber@suse.de + +- Add mvebudb-88f{3720,7040,8040} + +------------------------------------------------------------------- +Tue Mar 14 08:47:33 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.03 + +------------------------------------------------------------------- +Wed Mar 1 09:36:39 UTC 2017 - guillaume@opensuse.org + +- Add libopenssl-devel as BuildRequires (needed by some configs) + +------------------------------------------------------------------- +Tue Feb 28 08:37:55 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.03-rc3 + +------------------------------------------------------------------- +Wed Feb 22 13:38:25 UTC 2017 - hsehic@suse.com + +- Add Lamobo_R1 + +------------------------------------------------------------------- +Wed Jan 11 09:16:16 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.01 + +------------------------------------------------------------------- +Mon Jan 9 12:06:53 UTC 2017 - afaerber@suse.de + +- Add udooneo +- Introduce IMX6_SPL, superseding per-board CUBOXI_SPL and UDOO_SPL + +------------------------------------------------------------------- +Fri Jan 6 14:29:12 UTC 2017 - afaerber@suse.de + +- Add nanopineo +- Inline CHANGE_DATE into u-boot.spec.in to keep future diffs small + +------------------------------------------------------------------- +Thu Jan 5 10:16:20 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.01-rc3 +- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.01 +* Patches dropped: + 0002-XXX-openSUSE-XXX-omap3-Move-to-dist.patch + 0003-Revert-Revert-omap3-Use-raw-SPL-by-.patch + 0004-ARM-bcm283x-Implement-EFI-RTS-reset.patch + 0005-bcm2835-video-Map-frame-buffer-as-3.patch + 0006-bcm2835-Reserve-the-spin-table-in-e.patch + 0007-efi_loader-fix-depends-on-line-of-E.patch + 0008-efi-Use-device-device-path-type-Mes.patch +* Patches added: + 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch + +------------------------------------------------------------------- +Mon Dec 19 20:50:30 UTC 2016 - xxxxxmichl@googlemail.com + +- Added support for DE0-Nanos-SoC board + +------------------------------------------------------------------- +Tue Nov 15 10:30:59 UTC 2016 - guillaume@opensuse.org + +- Updated to v2016.11 + +------------------------------------------------------------------- +Wed Nov 2 13:36:32 UTC 2016 - guillaume@opensuse.org + +- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2016.11 + to fix build of Raspberry Pi 1, 2 and 3 + +------------------------------------------------------------------- +Tue Nov 1 13:10:28 UTC 2016 - guillaume@opensuse.org + +- Updated to v2016.11-rc3 +- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2016.11 +* Patches dropped: + 0004-efi_loader-Allow-boards-to-implemen.patch + 0005-ARM-bcm283x-Implement-EFI-RTS-reset.patch + 0006-efi_loader-gop-Expose-fb-when-32bpp.patch + 0007-bcm2835-video-Map-frame-buffer-as-3.patch + 0008-bcm2835-Reserve-the-spin-table-in-e.patch + 0009-x86-Move-table-csum-into-separate-h.patch + 0010-x86-Move-smbios-generation-into-arc.patch + 0011-efi_loader-Expose-efi_install_confi.patch + 0012-smbios-Allow-compilation-on-64bit-s.patch + 0013-smbios-Expose-in-efi_loader-as-tabl.patch + 0014-efi_loader-Fix-efi_install_configur.patch + 0015-smbios-Provide-serial-number.patch + 0016-efi_loader-Update-description-of-in.patch + 0017-efi_loader-Fix-memory-map-size-chec.patch + 0018-efi_loader-Fix-crash-on-32-bit-syst.patch + 0019-efi_loader-Move-efi_allocate_pool-i.patch + 0020-efi_loader-Track-size-of-pool-alloc.patch + 0021-efi_loader-Readd-freed-pages-to-mem.patch + 0022-efi_loader-Keep-memory-mapping-sort.patch + 0023-efi_loader-Do-not-leak-memory-when-.patch +* Patches added: + 0004-ARM-bcm283x-Implement-EFI-RTS-reset.patch + 0005-bcm2835-video-Map-frame-buffer-as-3.patch + 0006-bcm2835-Reserve-the-spin-table-in-e.patch + 0007-efi_loader-fix-depends-on-line-of-E.patch + 0008-efi-Use-device-device-path-type-Mes.patch + +------------------------------------------------------------------- +Sun Oct 16 16:20:25 UTC 2016 - afaerber@suse.de + +- Updated to v2016.11-rc1 + +------------------------------------------------------------------- +Sat Oct 15 11:25:48 UTC 2016 - agraf@suse.com + +- Backport patches to allow 4.8 kernels to boot +- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2016.09 +* Patches added: + 0016-efi_loader-Update-description-of-in.patch + 0017-efi_loader-Fix-memory-map-size-chec.patch + 0018-efi_loader-Fix-crash-on-32-bit-syst.patch + 0019-efi_loader-Move-efi_allocate_pool-i.patch + 0020-efi_loader-Track-size-of-pool-alloc.patch + 0021-efi_loader-Readd-freed-pages-to-mem.patch + 0022-efi_loader-Keep-memory-mapping-sort.patch + 0023-efi_loader-Do-not-leak-memory-when-.patch + +------------------------------------------------------------------- +Thu Oct 13 13:21:36 UTC 2016 - afaerber@suse.de + +- update_git.sh: Handle SUBLEVEL for %archive_version (x.y.Z) +- Switch to branch tumbleweed-2016.09 + +------------------------------------------------------------------- +Fri Sep 30 20:01:33 UTC 2016 - guillaume@opensuse.org + +- Updated to v2016.09 +- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-staging +* Patches dropped: + 0009-Revert-armv8-Enable-CPUECTLR.SMPEN-.patch + 0010-bcm2835_gpio-Implement-GPIOF_FUNC.patch + 0011-serial-bcm283x_mu-Detect-disabled-s.patch + 0012-x86-Move-table-csum-into-separate-h.patch + 0013-x86-Move-smbios-generation-into-arc.patch + 0014-efi_loader-Expose-efi_install_confi.patch + 0015-smbios-Allow-compilation-on-64bit-s.patch + 0016-smbios-Expose-in-efi_loader-as-tabl.patch + 0017-efi_loader-Fix-efi_install_configur.patch + 0018-smbios-Provide-serial-number.patch + 0019-common-env_nand-Ensure-that-we-have.patch +* Patches added: + 0009-x86-Move-table-csum-into-separate-h.patch + 0010-x86-Move-smbios-generation-into-arc.patch + 0011-efi_loader-Expose-efi_install_confi.patch + 0012-smbios-Allow-compilation-on-64bit-s.patch + 0013-smbios-Expose-in-efi_loader-as-tabl.patch + 0014-efi_loader-Fix-efi_install_configur.patch + 0015-smbios-Provide-serial-number.patch +- Add python as BuildRequires (needed by some boards using DTOC + such as firefly-rk3288) +- Fix firefly-rk3288 by replacing u-boot-spl-dtb.bin + by u-boot-spl.bin +- Updated to v2016.09.01 + +------------------------------------------------------------------- +Wed Sep 28 15:18:17 UTC 2016 - afaerber@suse.de + +- Fix rpi332b installation path and enable %post scriplet + +------------------------------------------------------------------- +Sun Sep 11 03:44:15 UTC 2016 - afaerber@suse.de + +- Add hikey and rpi332b + +------------------------------------------------------------------- +Wed Sep 7 09:02:59 UTC 2016 - guillaume@opensuse.org + +- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed +* Patches added: + 0019-common-env_nand-Ensure-that-we-have.patch + +------------------------------------------------------------------- +Fri Sep 2 23:25:44 UTC 2016 - afaerber@suse.de + +- Add post-install script for Raspberry Pi to install to /boot/efi + where needed. (bsc#996064) + +------------------------------------------------------------------- +Fri Aug 12 14:07:49 UTC 2016 - agraf@suse.com + +- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed +- Update to v3 of the serial detect code (bsc#989511) +* Patches added: + 0010-bcm2835_gpio-Implement-GPIOF_FUNC.patch +* Patches rebased: + 0010-serial-bcm283x_mu-Detect-disabled-s.patch -> 0011-serial-bcm283x_mu-Detect-disabled-s.patch +- Add SMBIOS table on ARM (bsc#989509) +* Patches added: + 0012-x86-Move-table-csum-into-separate-h.patch + 0013-x86-Move-smbios-generation-into-arc.patch + 0014-efi_loader-Expose-efi_install_confi.patch + 0015-smbios-Allow-compilation-on-64bit-s.patch + 0016-smbios-Expose-in-efi_loader-as-tabl.patch + 0017-efi_loader-Fix-efi_install_configur.patch + 0018-smbios-Provide-serial-number.patch + +------------------------------------------------------------------- +Mon Aug 1 18:42:36 UTC 2016 - stefan.bruens@rwth-aachen.de + +- Use deterministic build date by setting DATE_SOURCE_EPOCH + +------------------------------------------------------------------- +Fri Jul 29 21:52:37 UTC 2016 - agraf@suse.com + +- Add dynamic detection of rpi3 uart (bsc#989511) +- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed +* Patches added: + 0010-serial-bcm283x_mu-Detect-disabled-s.patch + +------------------------------------------------------------------- +Sat Jul 16 18:49:35 UTC 2016 - afaerber@suse.de + +- Updated to v2016.07 +* Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed +* Patches dropped (upstreamed): + 0004-video-ipu-Fix-build-with-hard-float.patch + 0005-efi_loader-Clean-up-system-table-on.patch + 0006-efi_loader-gop-Don-t-expose-fb-addr.patch + 0009-arm-Introduce-setjmp-longjmp.patch + 0010-efi_loader-Add-exit-support.patch + 0011-efi_loader-Add-DM_VIDEO-support.patch + 0015-arm-Fix-setjmp.patch +* Patches rebased: + 0007-efi_loader-Allow-boards-to-implemen.patch -> 0004-efi_loader-Allow-boards-to-implemen.patch + 0008-ARM-bcm283x-Implement-EFI-RTS-reset.patch -> 0005-ARM-bcm283x-Implement-EFI-RTS-reset.patch + 0012-efi_loader-gop-Expose-fb-when-32bpp.patch -> 0006-efi_loader-gop-Expose-fb-when-32bpp.patch + 0013-bcm2835-video-Map-frame-buffer-as-3.patch -> 0007-bcm2835-video-Map-frame-buffer-as-3.patch + 0014-bcm2835-Reserve-the-spin-table-in-e.patch -> 0008-bcm2835-Reserve-the-spin-table-in-e.patch +- Revert an ARMv8 breakage from v2016.07 (backport from master) + 0009-Revert-armv8-Enable-CPUECTLR.SMPEN-.patch +- Add dragonboard410c, odroid-c2, pine64_plus + +------------------------------------------------------------------- +Mon Jun 27 11:00:33 UTC 2016 - nadvornik@suse.com + +- Enable SUNXI_SPL for orangepi_pc + +------------------------------------------------------------------- +Mon Jun 27 06:14:09 UTC 2016 - agraf@suse.com + +- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed +* Patches added: + 0015-arm-Fix-setjmp.patch +- Add update_git.sh to source file list + +------------------------------------------------------------------- +Mon Jun 6 22:07:59 UTC 2016 - agraf@suse.com + +- Add efifb support for RPi +- Fix spin table spill on Rpi +- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed +* Patches added: + 0011-efi_loader-Add-DM_VIDEO-support.patch + 0012-efi_loader-gop-Expose-fb-when-32bpp.patch + 0013-bcm2835-video-Map-frame-buffer-as-3.patch + 0014-bcm2835-Reserve-the-spin-table-in-e.patch + +------------------------------------------------------------------- +Mon Jun 6 06:56:34 UTC 2016 - agraf@suse.com + +- Add RTS reboot for RPi +- Add EFI exit support +- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed +* Patches added: + 0007-efi_loader-Allow-boards-to-implemen.patch + 0008-ARM-bcm283x-Implement-EFI-RTS-reset.patch + 0009-arm-Introduce-setjmp-longjmp.patch + 0010-efi_loader-Add-exit-support.patch + +------------------------------------------------------------------- +Fri Jun 3 11:18:13 UTC 2016 - agraf@suse.com + +- Disable EFI GOP fb_addr, so Linux doesn't use it +- Move to git based patch queue workflow +- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed +* Patches dropped: + 0001-video-ipu-Fix-build-with-hard-float-ARM-toolchain.-I.patch + 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch + 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch +* Patches added: + 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch + 0002-XXX-openSUSE-XXX-omap3-Move-to-dist.patch + 0003-Revert-Revert-omap3-Use-raw-SPL-by-.patch + 0004-video-ipu-Fix-build-with-hard-float.patch + 0005-efi_loader-Clean-up-system-table-on.patch + 0006-efi_loader-gop-Don-t-expose-fb-addr.patch + +------------------------------------------------------------------- +Wed May 18 13:07:24 UTC 2016 - afaerber@suse.de + +- Fix rpi3 installation location + +------------------------------------------------------------------- +Wed May 18 12:22:31 UTC 2016 - guillaume@opensuse.org + +- Add 0001-video-ipu-Fix-build-with-hard-float-ARM-toolchain.-I.patch + to fix build on iMX boards (with hard-float toolchains) + +------------------------------------------------------------------- +Tue May 17 12:53:24 UTC 2016 - guillaume@opensuse.org + +- Update to 2016.05 +- Remove upstreamed patch: + * 0003-exynos-Set-CNTFRQ.patch + +------------------------------------------------------------------- +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 + +- Update to 2016.05-rc3 + - Removed patches: + * 0004-iso-Make-little-endian-and-64bit-safe.patch + * 0005-iso-Start-with-partition-1.patch + * 0006-iso-Allow-512-byte-sector-size.patch + * 0007-efi_loader-Split-drive-add-into-function.patch + * 0008-efi_loader-Add-el-torito-support.patch + * 0009-efi_loader-Pass-file-path-to-payload.patch + * 0010-efi_loader-Increase-path-string-to-32-characters.patch + * 0011-distro-Enable-iso-partition-code.patch + * 0012-efi_loader-Use-system-fdt-as-fallback.patch + * 0013-efi_loader-Put-fdt-into-convenient-location.patch + * 0014-efi_loader-Expose-ascending-efi-memory-map.patch + * 0015-efi_loader-Always-flush-in-cache-line-size-granulari.patch + * 0016-efi_loader-Handle-memory-overflows.patch + * 0017-ARM-rpi-fix-64-bit-CONFIG_SYS_TEXT_BASE.patch + +------------------------------------------------------------------- +Fri Apr 15 21:50:37 UTC 2016 - agraf@suse.com + +- Add patch to fix RPi3 aarch64 mode with recent firmware + * 0017-ARM-rpi-fix-64-bit-CONFIG_SYS_TEXT_BASE.patch + +------------------------------------------------------------------- +Wed Apr 13 13:55:13 UTC 2016 - agraf@suse.com + +- Move patch queue to https://github.com/openSUSE/u-boot.git tumbleweed + - Removed old patches: + * 0001-iso-Make-little-endian-and-64bit-safe.patch + * 0002-iso-Start-with-partition-1.patch + * 0003-iso-Allow-512-byte-sector-size.patch + * 0004-efi_loader-Split-drive-add-into-function.patch + * 0005-efi_loader-Add-el-torito-support.patch + * 0006-efi_loader-Pass-file-path-to-payload.patch + * 0007-efi_loader-Increase-path-string-to-32-characters.patch + * 0008-distro-Enable-iso-partition-code.patch + * 0009-efi_loader-Use-system-fdt-as-fallback.patch + * 0010-efi_loader-Put-fdt-into-convenient-location.patch + * 0011-efi_loader-Expose-ascending-efi-memory-map.patch + * 0012-efi_loader-Always-flush-in-cache-line-size-granulari.patch + * u-boot-exynos.patch + * efi-default-env.patch + * omap3-Move-to-distro-bootcmd.patch + - Added new patches: + * 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch + * 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch + * 0003-exynos-Set-CNTFRQ.patch + * 0004-iso-Make-little-endian-and-64bit-safe.patch + * 0005-iso-Start-with-partition-1.patch + * 0006-iso-Allow-512-byte-sector-size.patch + * 0007-efi_loader-Split-drive-add-into-function.patch + * 0008-efi_loader-Add-el-torito-support.patch + * 0009-efi_loader-Pass-file-path-to-payload.patch + * 0010-efi_loader-Increase-path-string-to-32-characters.patch + * 0011-distro-Enable-iso-partition-code.patch + * 0012-efi_loader-Use-system-fdt-as-fallback.patch + * 0013-efi_loader-Put-fdt-into-convenient-location.patch + * 0014-efi_loader-Expose-ascending-efi-memory-map.patch + * 0015-efi_loader-Always-flush-in-cache-line-size-granulari.patch +- Add patch to fix Jetson TK1 + * 0016-efi_loader-Handle-memory-overflows.patch + +------------------------------------------------------------------- +Wed Apr 13 13:16:42 UTC 2016 - guillaume@opensuse.org + +- Use released source archive instead of manually built archive + +------------------------------------------------------------------- +Tue Apr 12 08:38:49 UTC 2016 - agraf@suse.com + +- Update to 2016.05-rc1 +- Remove upstreamed patches: + * efi.patch + * efi2.patch + * efi_loader-Call-fdt-preparation-functions.patch + * efi_loader-Pass-proper-device-path-in-on-boot.patch + * efi_loader-Provide-icache-flush-stub.patch + * efi-map-fdt-as-reserved.patch + * rpi3.patch +- Add EFI fixes and iso boot backports: + * 0001-iso-Make-little-endian-and-64bit-safe.patch + * 0002-iso-Start-with-partition-1.patch + * 0003-iso-Allow-512-byte-sector-size.patch + * 0004-efi_loader-Split-drive-add-into-function.patch + * 0005-efi_loader-Add-el-torito-support.patch + * 0006-efi_loader-Pass-file-path-to-payload.patch + * 0007-efi_loader-Increase-path-string-to-32-characters.patch + * 0008-distro-Enable-iso-partition-code.patch + * 0009-efi_loader-Use-system-fdt-as-fallback.patch + * 0010-efi_loader-Put-fdt-into-convenient-location.patch + * 0011-efi_loader-Expose-ascending-efi-memory-map.patch + * 0012-efi_loader-Always-flush-in-cache-line-size-granulari.patch + +------------------------------------------------------------------- +Sun Apr 3 04:40:53 UTC 2016 - afaerber@suse.de + +- Package .img for firefly-rk3288 +- Package firefly-rk3288 SPL images. Generate them here so that we + notice early if the size constraints are ever again not met. + +------------------------------------------------------------------- +Sat Apr 2 23:08:53 UTC 2016 - afaerber@suse.de + +- Package spl/u-boot-spl for new tegra-uboot-flasher-scripts + +------------------------------------------------------------------- +Fri Apr 1 17:07:55 UTC 2016 - afaerber@suse.de + +- Add clearfog + +------------------------------------------------------------------- +Tue Mar 15 08:47:35 UTC 2016 - guillaume@opensuse.org + +- Update to 2016.03 +- Remove upstreamed patch: + * omap3-Use-raw-SPL-by-default-for-mmc1.patch + +------------------------------------------------------------------- +Sun Mar 13 21:48:46 UTC 2016 - dmueller@suse.com + +- add support for Raspberry Pi 3 (rpi3.patch) + +------------------------------------------------------------------- +Wed Mar 9 22:50:22 UTC 2016 - agraf@suse.com + +- Fix missing 0-terminator in efi patch, breaking boot.scr boot + +------------------------------------------------------------------- +Sat Mar 5 22:02:18 UTC 2016 - afaerber@suse.de + +- Non-free licensed Marvell code has long been removed. + Drop obsolete drop-marvell.patch (bsc#773824) +- Fix indentation of Patch6 in u-boot.spec.in + +------------------------------------------------------------------- +Thu Mar 3 15:02:37 UTC 2016 - agraf@suse.com + +- EFI: Map fdt as reserved + * efi-map-fdt-as-reserved.patch + +------------------------------------------------------------------- +Thu Mar 3 12:52:17 UTC 2016 - agraf@suse.com + +- Fix OMAP3 boards to load u-boot from raw sector offset + * omap3-Use-raw-SPL-by-default-for-mmc1.patch + +------------------------------------------------------------------- +Wed Mar 2 23:46:44 UTC 2016 - agraf@suse.com + +- Allow grub2 to find its config + * efi_loader-Pass-proper-device-path-in-on-boot.patch +- Fix Raspberry Pi 1 build + * efi_loader-Provide-icache-flush-stub.patch + +------------------------------------------------------------------- +Wed Mar 2 10:03:56 UTC 2016 - guillaume@opensuse.org + +- Update to 2016.03-rc3 +- Remove upstreamed patches: + * 0001-spl-if-MMCSD_MODE_RAW-fails-try-MMCSD_MODE_FS-if-ava.patch + +------------------------------------------------------------------- +Tue Mar 1 23:06:57 UTC 2016 - agraf@suse.com + +- Move omap3 to distro bootcmd (to enable efi boot on beagle-xm) + * omap3-Move-to-distro-bootcmd.patch +- Add EFI patch to support FDT fixups (patches in RAM size) + * efi_loader-Call-fdt-preparation-functions.patch + +------------------------------------------------------------------- +Mon Feb 29 23:28:15 UTC 2016 - agraf@suse.com + +- Patch the default u-boot env to search for dtb in /boot at part 2 + * efi-default-env.patch + +------------------------------------------------------------------- +Sun Feb 28 11:02:04 UTC 2016 - agraf@suse.com + +- Use $fdtfile rather than $fdt_name everywhere: + * efi2.patch + +------------------------------------------------------------------- +Sat Feb 27 13:20:29 UTC 2016 - agraf@suse.com + +- Add EFI support about to move upstream: + * efi.patch + +------------------------------------------------------------------- +Mon Feb 22 13:32:31 UTC 2016 - guillaume@opensuse.org + +- Update to 2016.03-rc2 +- Remove upstreamed patches: + * U-Boot-am335x_evm-Don-t-undef-CONFIG_BOOTDELAY.patch + * 0001-udoo-use-load-instead-of-fatload.patch +- Refresh drop-marvell.patch +- Remove dropped doc from file list: doc/README.Modem + +------------------------------------------------------------------- +Wed Feb 17 08:16:15 UTC 2016 - guillaume@opensuse.org + +- Add a patch to fix boot on partition when raw boot mode is also + available: + * 0001-spl-if-MMCSD_MODE_RAW-fails-try-MMCSD_MODE_FS-if-ava.patch + +------------------------------------------------------------------- +Wed Feb 17 08:15:52 UTC 2016 - guillaume@opensuse.org + +- Add am335x_boneblack + +------------------------------------------------------------------- +Sat Feb 13 14:56:43 UTC 2016 - afaerber@suse.de + +- Enable Hyundai_A7HD, superseding :Contrib:sunxi package + +------------------------------------------------------------------- +Thu Feb 9 13:02:26 UTC 2016 - afaerber@suse.de + +- Adjust installation path for qemu-ppce500 to replace qemu-ppc's +* Pull in qemu (not qemu-ppc) for directory ownership + +------------------------------------------------------------------- +Tue Feb 9 00:03:18 UTC 2016 - afaerber@suse.de + +- Add Jetson TX1 board (p2371-2180) +- Fix indentation of last Patch line in .spec.in to match .spec + +------------------------------------------------------------------- +Mon Feb 1 19:35:45 UTC 2016 - agraf@suse.com + +- Add patch to fix exynos armv7 kvm support + * adds u-boot-exynos.patch + +------------------------------------------------------------------- +Tue Jan 19 14:15:58 UTC 2016 - afaerber@suse.de + +- Prepare for non-/boot installation directories +* For /boot/vc pull in raspberrypi-firmware package + +------------------------------------------------------------------- +Fri Jan 15 21:19:43 UTC 2016 - oscar@naiandei.net + +- Add udoo (dual and quad) boards + * adds 0001-udoo-use-load-instead-of-fatload.patch + +------------------------------------------------------------------- +Thu Jan 14 15:43:36 UTC 2016 - afaerber@suse.de + +- Add qemu-ppce500, to replace u-boot.e500 blob in qemu package +* Override CROSS_COMPILE variable to use native gcc + +------------------------------------------------------------------- +Wed Jan 13 14:07:32 UTC 2016 - guillaume@opensuse.org + +- Update to 2016.01 + +------------------------------------------------------------------- +Mon Jan 11 11:08:50 UTC 2016 - guillaume@opensuse.org + +- Update to 2016.01-rc4 + +------------------------------------------------------------------- +Mon Dec 28 13:50:10 UTC 2015 - guillaume@opensuse.org + +- Update to 2016.01-rc3 + +------------------------------------------------------------------- +Sun Dec 20 20:56:54 UTC 2015 - afaerber@suse.de + +- Suppress stripping debug info - it affects u-boot-jetson-tk1 +- Install rpi and rpi2 binaries to /boot/vc + +------------------------------------------------------------------- +Tue Dec 15 09:27:03 UTC 2015 - guillaume@opensuse.org + +- Backport U-Boot-am335x_evm-Don-t-undef-CONFIG_BOOTDELAY.patch + to fix bootdelay on Beaglebone board + +------------------------------------------------------------------- +Tue Dec 15 09:15:30 UTC 2015 - guillaume@opensuse.org + +- Add orangepi_pc board + +------------------------------------------------------------------- +Fri Dec 11 09:23:17 UTC 2015 - guillaume@opensuse.org + +- Add support to am57xx_evm (beagle_x15 with u-boot DT) + +------------------------------------------------------------------- +Fri Dec 11 09:08:25 UTC 2015 - guillaume@opensuse.org + +- Update to 2016.01-rc2: +- Rename 'beagle_x15' to 'am57xx_evm_nodt' to follow upstream +- Remove upstreamed patch: + * U-Boot-1-2-usb-host-xhci-omap-fix-build-break.patch + +------------------------------------------------------------------- +Wed Nov 25 09:38:56 UTC 2015 - guillaume@opensuse.org + +- Update to 2016.01-rc1 +- Remove upstreamed patches: + * 0001-configs-Use-config_distro_defaults.h-in-ti_armv7_com.patch + * 0001-mx6cuboxi-use-load-instead-of-fatload.patch (no more needed) + * U-Boot-image.c-Fix-non-Android-booting-with-ramdisk-and-or-device-tree.patch +- Update drop-marvell.patch + +------------------------------------------------------------------- +Sun Nov 15 13:11:56 UTC 2015 - matwey.kornilov@gmail.com + +- Backport 0001-configs-Use-config_distro_defaults.h-in-ti_armv7_com.patch + +------------------------------------------------------------------- +Sat Nov 14 15:03:05 UTC 2015 - tbechtold@suse.com + +- 0001-mx6cuboxi-use-load-instead-of-fatload.patch + for cubox-i use load instead of fatload + +------------------------------------------------------------------- +Tue Nov 3 08:14:57 UTC 2015 - matwey.kornilov@gmail.com + +- Fix am335x booting + * U-Boot-image.c-Fix-non-Android-booting-with-ramdisk-and-or-device-tree.patch + +------------------------------------------------------------------- +Wed Oct 21 08:16:32 UTC 2015 - guillaume@opensuse.org + +- Add Beagle x15 support +- Fix build for Beagle x15: + * U-Boot-1-2-usb-host-xhci-omap-fix-build-break.patch + +------------------------------------------------------------------- +Tue Oct 20 11:32:30 UTC 2015 - guillaume@opensuse.org + +- Update to 2015.10 +- Remove upstreamed patches: + * 0001-odroid-replace-fatload-with-load-to-be-able-to-use-E.patch + * 0002-odroid-Add-boot-script-boot.scr-support.patch + +------------------------------------------------------------------- +Tue Oct 13 06:58:38 UTC 2015 - guillaume@opensuse.org + +- Update to 2015.10-rc5 +- Remove upstreamed patch: + * arndale-apply-cortex-a15-erratas.patch + +------------------------------------------------------------------- +Thu Oct 8 09:27:15 UTC 2015 - guillaume@opensuse.org + +- Add boot script support to odroid board: + * 0001-odroid-replace-fatload-with-load-to-be-able-to-use-E.patch + * 0002-odroid-Add-boot-script-boot.scr-support.patch + +------------------------------------------------------------------- +Mon Oct 5 18:04:28 UTC 2015 - afaerber@suse.de + +- Add spring and firefly-rk3288 for armv7hl + * Break overly long armv7_boards line in pre_checkin.sh + * Clean up case'ing of defconfigs to avoid excessive wildcards +- Prepare for adding qemu-ppce500 for ppc + * Allow for more than two exclusive architectures (cleanup) + +------------------------------------------------------------------- +Mon Oct 5 11:42:08 UTC 2015 - dmueller@suse.com + +- add arndale-apply-cortex-a15-erratas.patch + +------------------------------------------------------------------- +Thu Oct 1 16:41:38 UTC 2015 - guillaume.gardet@opensuse.org + +- Update to 2015.10-rc4 +- Update drop-marvell.patch + +------------------------------------------------------------------- +Sat Sep 12 12:22:53 UTC 2015 - guillaume@opensuse.org + +- Use u-boot-2015.10-rc3.tar.bz2 package provided on FTP instead of + packaging it manually. + +------------------------------------------------------------------- +Tue Sep 8 08:52:56 UTC 2015 - guillaume@opensuse.org + +- Update to 2015.10-rc3 + +------------------------------------------------------------------- +Wed Sep 2 16:28:02 UTC 2015 - guillaume@opensuse.org + +- Add odroid and odroid-xu3 + +------------------------------------------------------------------- +Tue Aug 18 08:31:48 UTC 2015 - guillaume@opensuse.org + +- Update to 2015.10-rc2 +- Remove upstreamed patch: + * jetson-tk1-gpu-1.patch + * jetson-tk1-gpu-2.patch + +------------------------------------------------------------------- +Thu Aug 6 12:40:58 UTC 2015 - guillaume@opensuse.org + +- Update to 2015.10-rc1 +- Remove upstreamed patch: + * mx53loco-bootscr.patch +- Update patches: + * jetson-tk1-gpu-1.patch + * jetson-tk1-gpu-2.patch + +------------------------------------------------------------------- +Wed Aug 5 13:36:45 UTC 2015 - dmueller@suse.com + +- add mx6cuboxi + +------------------------------------------------------------------- +Wed Jul 22 22:38:23 UTC 2015 - afaerber@suse.de + +- jetson-tk1-gpu-1.patch, + jetson-tk1-gpu-2.patch: Enable the Tegra124 GPU device tree node + +------------------------------------------------------------------- +Mon Jul 20 10:45:39 UTC 2015 - afaerber@suse.de + +- Add u-boot-jetson-tk1 + +------------------------------------------------------------------- +Fri Jul 17 06:42:37 UTC 2015 - afaerber@suse.de + +- Add u-boot-merriia80optimus + +------------------------------------------------------------------- +Wed Jul 15 13:05:24 UTC 2015 - guillaume@opensuse.org + +- Update to 2015.07 + +------------------------------------------------------------------- +Tue Jun 30 07:34:49 UTC 2015 - guillaume@opensuse.org + +- Update to 2015.07-rc3 +- Remove upstreamed patches: + * enable_spl_ext_support_for_ti_armv7.patch + * fix_slow_mmc_on_rpi.patch + +------------------------------------------------------------------- +Thu Jun 18 12:07:10 UTC 2015 - guillaume@opensuse.org + +- Add fix_slow_mmc_on_rpi.patch to speed up MMC load on RPi +- Rework patches (to be upstreamable): + * enable_spl_ext_support_for_ti_armv7.patch + * mx53loco-bootscr.patch +- Remove fix_beagle_spl_build.patch + +------------------------------------------------------------------- +Wed Jun 10 10:07:23 UTC 2015 - guillaume@opensuse.org + +- Update to 2015.07-rc2 +- Update drop-marvell.patch + +------------------------------------------------------------------- +Wed May 27 10:07:49 UTC 2015 - guillaume@opensuse.org + +- Update to 2015.07-rc1: +- Update drop-marvell.patch +- Remove no more needed add_snow_usb_boot.patch + +------------------------------------------------------------------- +Wed Apr 29 07:51:25 UTC 2015 - dmueller@suse.com + +- adjust copyright headers + +------------------------------------------------------------------- +Thu Apr 16 08:34:11 UTC 2015 - guillaume@opensuse.org + +- update to 2015.04 +- Remove upstreamed patch: + 0001-Exynos-Clock-Fix-exynos5_get_periph_rate-for-I2C.patch +- Follow upstream board rename colibri_t20_iris => colibri_t20 + +------------------------------------------------------------------- +Sun Apr 12 19:49:41 UTC 2015 - xxxxxmichl@googlemail.com + +- Added support for A13-OLinuXino, A13-OLinuXino-MICRO, + A20-OLinuXino-MICRO and A20-OLinuXino-LIME from + www.olimex.com + +------------------------------------------------------------------- +Thu Apr 9 07:56:40 UTC 2015 - guillaume@opensuse.org + +- Remove u-boot-vexpressaemv8a (dropped upstream and we now use EFI) + +------------------------------------------------------------------- +Thu Apr 2 09:13:49 UTC 2015 - guillaume@opensuse.org + +- update to 2015.04-rc5 + +------------------------------------------------------------------- +Mon Mar 23 08:39:40 UTC 2015 - guillaume@opensuse.org + +- update to 2015.04-rc4 + +------------------------------------------------------------------- +Wed Mar 4 15:51:55 UTC 2015 - guillaume@opensuse.org + +- Add 0001-Exynos-Clock-Fix-exynos5_get_periph_rate-for-I2C.patch + to fix keyboard on Chromebook + +------------------------------------------------------------------- +Wed Mar 4 15:46:52 UTC 2015 - guillaume@opensuse.org + +- update to 2015.04-rc3 +- update patch: drop-marvell.patch + +------------------------------------------------------------------- +Thu Feb 26 16:48:35 UTC 2015 - guillaume@opensuse.org + +- Update add_snow_usb_boot.patch to boot on USB2 instead of USB3 + +------------------------------------------------------------------- +Wed Feb 25 15:47:07 UTC 2015 - guillaume@opensuse.org + +- Remove unneeded fix_snow_config.patch + +------------------------------------------------------------------- +Tue Feb 24 09:48:50 UTC 2015 - guillaume@opensuse.org + +- Add rpi2 armv7 board + +------------------------------------------------------------------- +Fri Feb 20 12:31:38 UTC 2015 - guillaume@opensuse.org + +- Update to 2015.04-rc2 + +------------------------------------------------------------------- +Fri Feb 20 10:04:14 UTC 2015 - guillaume@opensuse.org + +- Update to 2015.04-rc1 + * Remove upstreamed patch pcm051-bootscr.patch + * Remove no more used patch fix_bootpart_snow_only.patch (now u-boot + scan all known partitions, so no need to set a different boot partition) + +------------------------------------------------------------------- +Sun Jan 25 20:20:46 UTC 2015 - matwey.kornilov@gmail.com + +- Enable pcm051rev3 for Phytec Wega board + * Add pcm051-bootscr.patch: add bootscript support (upstreamed in 2015.04-rc1) + +------------------------------------------------------------------- +Tue Jan 13 14:32:17 UTC 2015 - guillaume@opensuse.org + +- Update to 2015.01: + * Drop upstreamed patches: + - 0001-spl-mmc-Fix-raw-boot-mode-related-to-commit.patch + - fix_sata.patch + * Update partially upstreamed mx53loco-bootscr.patch + +------------------------------------------------------------------- +Tue Dec 16 11:10:23 UTC 2014 - guillaume@opensuse.org + +- Backport SPL MMC raw boot mode fix: + * 0001-spl-mmc-Fix-raw-boot-mode-related-to-commit.patch + +------------------------------------------------------------------- +Sat Dec 13 12:12:41 UTC 2014 - xxxxxmichl@googlemail.com + +- Added support for A20-OLinuXIno-LIME2 and A10-OLinuXino-LIME from + www.olimex.com + +------------------------------------------------------------------- +Tue Dec 9 11:23:41 UTC 2014 - guillaume@opensuse.org + +- Rename XLOADER to OMAP_SPL in pre_checkin.sh and u-boot.spec.in + +------------------------------------------------------------------- +Tue Dec 9 09:15:27 UTC 2014 - guillaume@opensuse.org + +- Update to 2015.01-rc3 + * Drop upstreamed/unneeded patches: + - 0001-exynos-Enable-config_distro_defaults.h.patch + - 0002-exynos5-Use-config_distro_bootcmd.h.patch + - boot_mode_fallback.patch + - fix_snow_usb_support + - fix_spl_ext.patch + - fix_arm_hf_toolchain.patch + - origen-ext2.patch + * Update patch: + - fix_snow_config.patch + * Follow upstream: rpi_b config renamed to rpi + +------------------------------------------------------------------- +Tue Dec 2 12:41:55 UTC 2014 - guillaume@opensuse.org + +- Update snow (chromebook) + * Update patch: + - fix_snow_config.patch patch + * Add patches: + - add_snow_usb_boot.patch to be able to boot from USB0 + - fix_bootpart_snow_only.patch to boot on partition #2 (snow only!) + * Backport patches: + - fix_snow_usb_support.patch to fix USB on snow + - 0001-exynos-Enable-config_distro_defaults.h.patch + - 0002-exynos5-Use-config_distro_bootcmd.h.patch + * Drop unneeded/obsolete patches: + - fix_exynos5_text_base.patch + - fix_snow_extra_env_settings.patch + +------------------------------------------------------------------- +Sun Nov 30 13:17:33 UTC 2014 - guillaume@opensuse.org + +- Add Bananapi initial support + +------------------------------------------------------------------- +Tue Nov 25 08:29:14 UTC 2014 - guillaume@opensuse.org + +- Update to 2015.01-rc2 +- Update patch fix_omap_boot_mode.patch to be upstreamable and +rename it to boot_mode_fallback.patch +- Drop obsolete patch: arndale.patch +- Add patches: + * fix_arm_hf_toolchain.patch: fix build with hard float toolchain + * fix_spl_ext.patch: fix SPL EXT error checks + * fix_sata.patch: fix sata support and fix also mx53loco build + +------------------------------------------------------------------- +Wed Nov 19 21:44:17 CET 2014 - guillaume.gardet@opensuse.org + +- Fix mx53loco-bootscr.patch + +------------------------------------------------------------------- +Mon Nov 17 21:15:50 UTC 2014 - oscar@naiandei.net + +- Add u-boot-with-sunxi-spl.bin for sunxi boards + +------------------------------------------------------------------- +Mon Nov 17 15:17:56 UTC 2014 - guillaume@opensuse.org + +- Make use of RPM_OPT_FLAGS during make + +------------------------------------------------------------------- +Sat Nov 15 14:55:06 UTC 2014 - guillaume@opensuse.org + +- Fix sunxi boards (use u-boot.img instead of u-boot.bin) +- Remove duplicated default install line + +------------------------------------------------------------------- +Tue Nov 11 13:32:36 UTC 2014 - guillaume@opensuse.org + +- Update to 2015.01-rc1 +- Drop upstreamed patches: + * add_spl_extfs_support.patch + * ti_common_initrd_support.patch +- Refresh patch: + * drop-marvell.patch +- Drop CREDITS file from DOC (dropped upstream) + +------------------------------------------------------------------- +Mon Nov 3 10:19:42 UTC 2014 - guillaume@opensuse.org + +- Apply fix_omap_boot_mode.patch only for omap3/omap4 boards + +------------------------------------------------------------------- +Tue Oct 14 13:22:44 UTC 2014 - guillaume@opensuse.org + +- Update to version 2014.10 +- Drop upstreamed patch: + * fix_sabrelite_boot.scr.patch +- Refresh patches: + * arndale.patch + * fix_snow_config.patch + * fix_exynos5_text_base.patch + * exynos5-dt.h.patch (renamed fix_snow_extra_env_settings.patch) + +------------------------------------------------------------------- +Wed Oct 8 07:52:48 UTC 2014 - guillaume@opensuse.org + +- Update to version 2014.10-rc3 +- Drop upstreamed patches: + * beagle-bootscr.patch + * panda-bootscr.patch + * am335x_evm-bootscr.patch +- Refresh patches: + * fix_sabrelite_boot.scr.patch + * drop-marvell.patch + * add_spl_extfs_support.patch +- Add a new patch to fix omap3beagle spl build: + * fix_beagle_spl_build.patch + +------------------------------------------------------------------- +Mon Sep 8 13:06:52 UTC 2014 - guillaume@opensuse.org + +- Drop Hyundai_a7hd and cubox-i boards (now handle in Contrib repos +since it is not upstreamed), so drop related patches: + * v2014.04-sunxi.patch + * cubox-i-v2014.04-port.patch + * cubox-i-enable_raw_rd.patch + +------------------------------------------------------------------- +Wed Sep 3 12:02:22 UTC 2014 - guillaume@opensuse.org + +- Update to version 2014.10-rc2 +- drop upstreamed patch rpi_b-bootscr.patch +- drop fix_spl_build_for_am335x.patch (does build without it) +- Refresh patches: + * drop-marvell.patch + * fix_snow_config.patch + +------------------------------------------------------------------- +Thu Aug 21 08:50:10 UTC 2014 - guillaume@opensuse.org + +- Update SPL EXT fs support: + * For omap boards (beagle and panda), SPL now looks for u-boot.img + as upstream instead of u-boot.bin + * Remove mlo-ext2.patch to make proper patches in +order to ease upstreaming our EXT fs SPL functions + * Add panda-bootscr.patch to fix panda boot (was included in + mlo-ext2.patch) + * Add fix_omap_boot_mode.patch to fix beagle and panda boot mode + (was included in mlo-ext2.patch) + * Add add_spl_extfs_support.patch to get proper SPL EXT fs functions + * Add enable_spl_ext_support_for_ti_armv7.patch to enable SPL EXT fs + support for TI ARMv7 boards + + +------------------------------------------------------------------- +Tue Aug 19 17:35:22 UTC 2014 - matwey.kornilov@gmail.com + +- Update to version 2014.10-rc1 and update patches + +------------------------------------------------------------------- +Thu Jul 31 13:59:00 UTC 2014 - dimstar@opensuse.org + +- Rename rpmlintrc to %{name}-rpmlintrc. + Follow the packaging guidelines. + +------------------------------------------------------------------- +Sat Jun 14 11:58:43 UTC 2014 - afaerber@suse.de + +- add u-boot-cubietruck for Cubietruck (Cubieboard 3) + +------------------------------------------------------------------- +Thu Jun 12 18:52:26 UTC 2014 - josua.m@t-online.de + +- add u-boot-mx6cubox-i for Cubox-i and Hummingboard + * currently conflicts with mlo-ext2 patch for omap4 + so only for cubox-i target mlo-ext2.patch is skipped + and cubox-i patches are applied + * patch source: https://github.com/vorlonofportland/u-boot/ + cubox-i-v2014.04-port.patch + cubox-i-enable_raw_rd.patch + +------------------------------------------------------------------- +Tue Apr 29 13:41:18 UTC 2014 - guillaume@opensuse.org + +- Enhance pre_checkin.sh script to handle arch restrictions + +------------------------------------------------------------------- +Tue Apr 29 13:18:48 UTC 2014 - guillaume@opensuse.org + +- Fix builds : + * 'tools' target is now 'tools-only' + * kermit scripts moved from 'tools/scripts' to 'tools/kermit/' + * Enhanced pre_checkin.sh script to handle uppercases in config name + * Renamed config from cubieboard to Cubieboard + * Renamed config from cubieboard2 to Cubieboard2 + * Renamed config from hyundai_a7hd to Hyundai_A7HD + * Renamed config from mele_a1000 to Mele_A1000 + +------------------------------------------------------------------- +Tue Apr 29 13:06:57 UTC 2014 - guillaume@opensuse.org + +- Add vexpress_aemv8a board + +------------------------------------------------------------------- +Tue Apr 29 08:33:48 UTC 2014 - guillaume@opensuse.org + +- Update to v2014.04 + * Update mlo-ext2.patch + * Update mx53loco-bootscr.patch + * Update origen-ext2.patch + * Dropped v2014.01-sunxi.patch and created + v2014.04-sunxi.patch by diffing u-boot-2014.04 with + u-boot-sunxi.git d9fe0a1e061e2bde6c24a0f7cef4f5023f3bd579 + * Update rpi_b-bootscr.patch + * Drop gnuhash.patch (upstreamed) + +------------------------------------------------------------------- +Thu Mar 27 14:22:23 UTC 2014 - guillaume@opensuse.org + +- add u-boot-mx6qsabrelite (for iMX6 Sabre Lite board) + +------------------------------------------------------------------- +Wed Feb 5 15:07:30 UTC 2014 - guillaume@opensuse.org + +- add u-boot-snow (for Chromebook ARM) + +------------------------------------------------------------------- +Wed Feb 5 14:59:29 UTC 2014 - guillaume@opensuse.org + +- Fix boot.scr location for beagle and origen + +------------------------------------------------------------------- +Thu Jan 30 14:28:34 UTC 2014 - dmueller@suse.com + +- add u-boot-cubieboard2 + +------------------------------------------------------------------- +Thu Jan 30 06:46:45 UTC 2014 - afaerber@suse.de + +- Drop 0006-ARMV7-hardfp-build-fix.patch: + v2014.01 checks if -msoft-float compiles okay, and + U-Boot is soft-float according to Tom Rini + +------------------------------------------------------------------- +Tue Jan 28 15:29:14 UTC 2014 - guillaume@opensuse.org + +- Disable CONFIG_SPL_OS_BOOT for ti armv7 configs with +fix_spl_build_for_am335x.patch to reduce size of am335x SPL + +------------------------------------------------------------------- +Sat Jan 26 22:46:44 UTC 2014 - afaerber@suse.de + +- Update to v2014.01 +* Manually updated 0006-ARMV7-hardfp-build-fix.patch +* Dropped v2013.10-sunxi.patch and created + v2014.01-sunxi.patch by merging u-boot.git v2014.01 onto + u-boot-sunxi.git e4a0232e173577893604b94fc3af7c047570970b +* Added gnuhash.patch to fix .gnu.hash section handling in ldscripts +* Rebased mlo-ext2.patch: + omap4_common.h CONFIG_SUPPORT_RAW_INITRD hunk is now covered by + ti_common_initrd_support.patch. + am335xevm build is known breaking due to size constraints not + trivially solvable without dropping our patch. + +------------------------------------------------------------------- +Sun Jan 26 12:14:10 UTC 2014 - afaerber@suse.de + +- Fix regression in packaging u-boot-dtb-tegra.bin: + There is in fact a u-boot-spl.bin SPL being built, + but it is 0xff-padded as u-boot-spl-pad.bin and then + prepended to u-boot.bin and the .dtb. + u-boot-dtb.bin exists independently as just u-boot.bin and .dtb, + so give preference to u-boot-dtb-tegra.bin over u-boot-dtb.bin. + +------------------------------------------------------------------- +Mon Jan 20 14:05:13 UTC 2014 - agraf@suse.com + +- The "Tegra SPL" is not an SPL but a differently named u-boot.bin + file. Fix up the generation scripts. + +------------------------------------------------------------------- +Sun Jan 19 00:09:41 UTC 2014 - afaerber@suse.de + +- Include Tegra SPL for Colibri T20 + +------------------------------------------------------------------- +Wed Jan 8 17:26:10 UTC 2014 - agraf@suse.com + +- switch raspberry to ext2 + +------------------------------------------------------------------- +Wed Jan 8 13:41:32 UTC 2014 - matwey.kornilov@gmail.com + +- am335x_evm-bootscr.patch: Search for files in /boot, not in /boot/boot + +------------------------------------------------------------------- +Wed Jan 8 02:07:44 UTC 2014 - afaerber@suse.de + +- rpi_b-bootscr.patch: Change rpi_b to use boot.scr + +------------------------------------------------------------------- +Tue Jan 7 16:01:13 UTC 2014 - dmueller@suse.com + +- remove origin flavor + +------------------------------------------------------------------- +Mon Jan 6 22:57:05 UTC 2014 - afaerber@suse.de + +- Enable paz00 config (Toshiba AC100) + +------------------------------------------------------------------- +Mon Jan 6 21:34:03 UTC 2014 - afaerber@suse.de + +- Enable colibri_t20_iris config (Toradex Colibri-T20 on Iris) +- Update u-boot.spec.in copyright and fix typo in comment + +------------------------------------------------------------------- +Sat Jan 4 01:47:50 UTC 2014 - agraf@suse.com + +- prefer u-boot-dtb.bin over u-boot.bin +- simplify files section + +------------------------------------------------------------------- +Fri Jan 3 16:54:30 UTC 2014 - dmueller@suse.com + +- mlo-ext2.patch: Search for files in /boot, not in /boot/boot + +------------------------------------------------------------------- +Mon Dec 30 18:37:50 UTC 2013 - matwey.kornilov@gmail.com + +- Add am335x_evm-bootscr.patch: Add bootscr to AM335x + platform based devices + +------------------------------------------------------------------- +Tue Dec 17 14:33:52 UTC 2013 - guillaume@opensuse.org + +- Remove old unused patches: + * v2013.04-sunxi.patch + * loadaddr-defaults.patch + +------------------------------------------------------------------- +Tue Dec 17 14:10:51 UTC 2013 - guillaume@opensuse.org + +- Add ti_common_initrd_support.patch to enable initrd support for + AM335x boards + +------------------------------------------------------------------- +Tue Dec 17 14:03:50 UTC 2013 - guillaume@opensuse.org + +- Add am335x_evm support which includes: Beagle Bone, + Beagle Bone Black, TI AM335x EVM, TI AM335x EVM-SK + +------------------------------------------------------------------- +Tue Nov 26 13:46:22 UTC 2013 - guillaume@opensuse.org + +- Add Arndale support + +------------------------------------------------------------------- +Tue Nov 26 13:05:10 UTC 2013 - guillaume@opensuse.org + +- Update v2013.04-sunxi.patch to v2013.10-sunxi.patch + +------------------------------------------------------------------- +Mon Nov 25 10:05:48 UTC 2013 - guillaume@opensuse.org + +- Remove kerneladdr and ramdiskaddr definition in u-boot patches + (now done in JeOS image with u-boot hooks) +- Update patches to current version: + * 0006-ARMV7-hardfp-build-fix.patch + * beagle-bootscr.patch + * mx53loco-bootscr.patch + * mlo-ext2.patch +- Merge fix_omap4_ext2_boot.patch in mlo-ext2.patch +- Rename exynos-ext2.patch in origen-ext2.patch + +------------------------------------------------------------------- +Mon Nov 25 09:57:12 UTC 2013 - guillaume@opensuse.org + +- Update to 2013.10 + +------------------------------------------------------------------- +Fri Nov 22 16:25:36 UTC 2013 - guillaume@opensuse.org + +- Fix OMAP4 pandaboard EXT2 boot + +------------------------------------------------------------------- +Fri Sep 13 11:31:14 UTC 2013 - guillaume@opensuse.org + +- Fix u-boot.bin and boot.scr place since they are now in boot/ folder. + +------------------------------------------------------------------- +Wed May 1 20:48:30 UTC 2013 - dmueller@suse.com + +- add support for cubieboard, hyundaia7hd, melea1000 + +------------------------------------------------------------------- +Wed May 1 08:18:26 UTC 2013 - dmueller@suse.com + +- update to 2013.04 + * no upstream changelog available +- remove dead u-boot-raspberrypi* (actually called rpib now) +- add rpib variant + +------------------------------------------------------------------- +Thu Apr 11 17:05:58 UTC 2013 - guillaume.gardet@opensuse.org + +- add omap3_beagle to targets + +------------------------------------------------------------------- +Thu Apr 11 16:05:41 UTC 2013 - dmueller@suse.com + +- remove u8500href subpackage, kernel got dropped + +------------------------------------------------------------------- +Sun Apr 7 14:32:20 UTC 2013 - agraf@suse.com + +- update to 2013.04rc2 +- enable bootz support on all boards + +------------------------------------------------------------------- +Wed Mar 20 07:21:06 UTC 2013 - agraf@suse.com + +- fix mlo-ext2.patch to actually use the ext4 infrastructure + +------------------------------------------------------------------- +Sat Jan 26 10:38:07 UTC 2013 - dmueller@suse.com + +- update mlo-ext2.patch: + * use the ext4 driver now since ext2 got removed + +------------------------------------------------------------------- +Wed Oct 24 22:33:13 UTC 2012 - agraf@suse.com + +- add sdhc-1.patch, sdhc-2.patch, sdhc-3.patch: + * backport upstream sdhc fixes + +------------------------------------------------------------------- +Wed Oct 24 01:37:36 CEST 2012 - agraf@suse.de + +- update to 2012.10: + - refresh patches 0006-ARMV7-hardfp-build-fix.patch, mlo-ext2.patch, + loadaddr-defaults.patch, mx53loco-bootscr.patch + +------------------------------------------------------------------- +Mon Oct 22 12:00:22 UTC 2012 - agraf@suse.com + +- fix origen by putting the ramdisk higher + +------------------------------------------------------------------- +Mon Aug 6 09:39:54 UTC 2012 - dmueller@suse.com + +- remove Marvell sources as they are non-free licensed (bnc#773824) + +------------------------------------------------------------------- +Thu Jul 26 18:21:44 UTC 2012 - agraf@suse.com + +- fix ext2 support for origen +- add origen-spl.bin for origen + +------------------------------------------------------------------- +Thu Jul 26 09:47:31 UTC 2012 - dmueller@suse.com + +- merge u-boot-tools + +------------------------------------------------------------------- +Wed Jul 25 21:05:08 UTC 2012 - agraf@suse.com + +- add ext2 support by default in mx53loco + +------------------------------------------------------------------- +Tue Jul 24 21:28:59 UTC 2012 - agraf@suse.com + +- add support for mx53loco + +------------------------------------------------------------------- +Tue Jul 24 11:25:42 UTC 2012 - dmueller@suse.com + +- remove u-boot-omap3beagle + +------------------------------------------------------------------- +Mon Jul 23 22:34:04 UTC 2012 - agraf@suse.com + +- bump to 2012.04.01 + - fixes bug in cmdline parsing + +------------------------------------------------------------------- +Mon Jul 23 22:26:47 UTC 2012 - agraf@suse.com + +- add calxeda highbank support + +------------------------------------------------------------------- +Thu Jul 12 12:51:56 UTC 2012 - agraf@suse.com + +- autoload boot.scr on beagle, so we can boot again + +------------------------------------------------------------------- +Thu Jul 12 08:12:15 UTC 2012 - agraf@suse.com + +- update to upstream u-boot 2012.04 + -> gets rid of linaro fork, only mainline now + -> gets us omap3 MLO support, no more need for x-loader + -> potentially fixes voltage issues on omap4 + +------------------------------------------------------------------- +Thu Jun 14 09:04:53 UTC 2012 - adrian@suse.de + +- add SUSE style conflicts to avoid installation of multiple + boot loaders + +------------------------------------------------------------------- +Tue Apr 17 11:59:55 UTC 2012 - joop.boonen@opensuse.org + +- Included u-boot.spec.in and gen_spec.sh in the spec file + +------------------------------------------------------------------- +Mon Feb 6 13:25:09 UTC 2012 - agraf@suse.com + +- use ext2 on panda + +------------------------------------------------------------------- +Tue Dec 20 02:36:05 UTC 2011 - agraf@suse.com + +- use ttyO2 as default console= on OMAP boards + +------------------------------------------------------------------- +Mon Dec 19 20:21:21 UTC 2011 - agraf@suse.com + +- add u8500_href and origen configs + +------------------------------------------------------------------- +Fri Dec 16 16:03:01 UTC 2011 - agraf@suse.com + +- fix lint failures + +------------------------------------------------------------------- +Fri Dec 16 14:46:53 CET 2011 - agraf@suse.com + +- don't install map + +------------------------------------------------------------------- +Fri Dec 16 02:16:19 UTC 2011 - agraf@suse.com + +- generalize spec file to be able to build for more boards +- add beagle board spec file +- remove boot.scr + +------------------------------------------------------------------- +Fri Dec 16 01:15:47 UTC 2011 - agraf@suse.com + +- rename to u-boot-omap4panda + +------------------------------------------------------------------- +Tue Dec 13 17:24:45 UTC 2011 - dkukawka@suse.de + +- new package based on u-boot-omap4panda but use linaro u-boot git + repo (http://git.linaro.org/git/boot/u-boot-linaro-stable.git) + instead of mainline u-boot. This package also contains the MLO + (this package obsoletes the x-loader package) + +------------------------------------------------------------------- +Tue Nov 29 22:53:44 UTC 2011 - joop.boonen@opensuse.org + +- COPYING CREDITS README are now in the standard package + +------------------------------------------------------------------- +Thu Nov 24 21:08:58 UTC 2011 - joop.boonen@opensuse.org + +- Corrected the links + +------------------------------------------------------------------- +Tue Nov 22 17:47:17 UTC 2011 - joop.boonen@opensuse.org + +- Build without u-boot tools as we have a u-boot-tools packages + +------------------------------------------------------------------- +Sun Nov 20 17:00:43 UTC 2011 - joop.boonen@opensuse.org + +- Cleaned the spec file up the spec file +- The name is the same as the package name + +------------------------------------------------------------------- +Sun Nov 13 13:13:39 UTC 2011 - joop.boonen@opensuse.org + +- Build u-boot according to http://elinux.org/Panda_How_to_MLO_&_u-boot +- Using .txt config file instead of .scr it's gerated via mkimage + +------------------------------------------------------------------- +Wed Nov 09 22:55:09 UTC 2011 - joop.boonen@opensuse.org + +- Used scr file based on http://elinux.org definition +- Build u-boot 20111109 +- Used the Meego panda u-boot as a base + +------------------------------------------------------------------- +Fri Feb 18 00:00:00 UTC 2011 - raghuveer.murthy@ti.com> +- 2010.09-MeeGo +- Fix for u-boot fails to compile on armv7hl, BMC#13140 + +------------------------------------------------------------------- +Thu Nov 18 00:00:00 UTC 2010 - peter.j.zhu@intel.com> +- 2010.09-MeeGo +- Don't build against i586, BMC#10159 + +------------------------------------------------------------------- +Tue Oct 10 00:00:00 UTC 2010 - nm@ti.com> +- 2010.09.rc1-MeeGo +- Added option to enable boot.scr generation and copy + +------------------------------------------------------------------- +Mon Oct 04 00:00:00 UTC 2010 - nm@ti.com> +- 2010.09.rc1-MeeGo +- Update to 2010.09 + +------------------------------------------------------------------- +Wed Sep 14 00:00:00 UTC 2010 - nm@ti.com> +- 2010.09.rc1-MeeGo +- Update to 2010.09.rc1 +- MeeGo customization +- Enabled PandaBoard, Beagleboard build + +------------------------------------------------------------------- +Wed Mar 31 00:00:00 UTC 2010 - silvan.calarco@mambasoft.it> +- 2009.11.1-1mamba +- update to 2009.11.1 + +------------------------------------------------------------------- +Wed Mar 31 00:00:00 UTC 2010 - diff --git a/u-boot-mvebudb-88f3720.spec b/u-boot-mvebudb-88f3720.spec new file mode 100644 index 0000000..b2ed393 --- /dev/null +++ b/u-boot-mvebudb-88f3720.spec @@ -0,0 +1,217 @@ +# +# spec file for package u-boot-mvebudb-88f3720 +# +# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon +# Copyright (c) 2007-2010 by Silvan Calarco +# +# All modifications and additions to the file contributed by third parties +# remain the property of their copyright owners, unless otherwise agreed +# upon. The license for this file, and modifications and additions to the +# file, is the same license as for the pristine package itself (unless the +# license for the pristine package is not an Open Source License, in which +# case the license is the MIT License). An "Open Source License" is a +# license that conforms to the Open Source Definition (Version 1.9) +# published by the Open Source Initiative. + +# Please submit bugfixes or comments via http://bugs.opensuse.org/ +# + + +%define mvebu_spl 0 +%define x_loader 0 +%define rockchip_spl 0 +%define sunxi_spl 0 +%define arndale_spl 0 +%define cuboxi_spl 0 +%define origen_spl 0 +%define udoo_spl 0 +%define imx6_spl 0 +%define socfpga_spl 0 + +%if "mvebudb-88f3720" == "rpi" || "mvebudb-88f3720" == "rpi2" || "mvebudb-88f3720" == "rpi332b" || "mvebudb-88f3720" == "rpi3" +%define is_rpi 1 +%endif + +# archive_version differs from version for RC version only +%define archive_version 2017.03 + +Name: u-boot-mvebudb-88f3720 +Version: 2017.03 +Release: 0 +Summary: The U-Boot firmware for the mvebudb-88f3720 platform +License: GPL-2.0 +Group: System/Boot +Url: http://www.denx.de/wiki/U-Boot +Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2 +Source2: arndale-bl1.img +Source3: update_git.sh +Source300: u-boot-rpmlintrc +Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch +Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch +Patch0003: 0003-Makefile-Fix-linking-with-modern-bi.patch +BuildRoot: %{_tmppath}/%{name}-%{version}-build +# Arndale board need DTC >= 1.4 +BuildRequires: bc +BuildRequires: dtc >= 1.4.0 +# u-boot-clearfog (tools/kwbimage.c) needs openssl to build +BuildRequires: libopenssl-devel +# u-boot-firefly-rk3288 needs python to build +BuildRequires: python +%if "%{name}" == "u-boot-qemu-ppce500" +# Owns /usr/share/qemu directory +BuildRequires: qemu +Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500 +%endif +%if 0%{?is_rpi} +# Owns /boot/vc directory +BuildRequires: raspberrypi-firmware +# For mountpoint +Requires(post): util-linux +%endif +Provides: u-boot-loader +Conflicts: otherproviders(u-boot-loader) +%if %x_loader == 1 +Obsoletes: x-loader-mvebudb-88f3720 +Provides: x-loader-mvebudb-88f3720 +%endif +ExclusiveArch: aarch64 + +%description +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 mvebudb-88f3720 platform. + +%package doc +Summary: Documentation for the U-Boot Firmware +Group: Documentation/Other + +%description doc +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. + +%prep +%setup -q -n u-boot-%{archive_version} +%patch0001 -p1 +%patch0002 -p1 +%patch0003 -p1 + +%build +export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s) +make %{?jobs:-j %jobs} CROSS_COMPILE= HOSTCFLAGS="$RPM_OPT_FLAGS" mvebu_db-88f3720_defconfig +%if 0%{?is_rpi} +# U-Boot is installed in the filesystem, so we are confident there's enough space. +echo "Attempting to enable fdt apply command (.dtbo) support." +echo "CONFIG_OF_LIBFDT_OVERLAY=y" >> .config +%endif +make %{?jobs:-j %jobs} CROSS_COMPILE= HOSTCFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes + +%if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring" +# Chromebook ARM (snow) and HP Chromebook 11 (spring) need a uImage format +export TEXT_START=$(awk '$NF == "_start" { printf "0x"$1 }' System.map) +./tools/mkimage -A arm -O linux -T kernel -C none -a $TEXT_START -e $TEXT_START -n uboot -d u-boot-dtb.bin u-boot.img +%endif + +%if %rockchip_spl == 1 +for t in ; do + ./tools/mkimage -n -d spl/u-boot-spl.bin -T $t u-boot-spl.$t +done +%endif + +%install +export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s) +export NO_BRP_STRIP_DEBUG=true +export NO_DEBUGINFO_STRIP_DEBUG=true +%define uboot_dir /boot +%if 0%{?is_rpi} +%define uboot_dir /boot/vc +%endif +%if "%{name}" == "u-boot-qemu-ppce500" +%define uboot_dir %{_datadir}/qemu +%endif +%if "%{name}" == "u-boot-jetson-tk1" +# tegra-uboot-flasher needs several intermediate files, under their original name. +for f in u-boot u-boot.dtb u-boot-dtb-tegra.bin u-boot-nodtb-tegra.bin spl/u-boot-spl; do + install -D -m 0644 $f %{buildroot}/boot/$f +done +%else +# 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. +if [ -f u-boot-dtb-tegra.bin ]; then + install -D -m 0644 u-boot-dtb-tegra.bin %{buildroot}%{uboot_dir}/u-boot.bin +elif [ -f u-boot-dtb.bin ]; then + install -D -m 0644 u-boot-dtb.bin %{buildroot}%{uboot_dir}/u-boot.bin +else + install -D -m 0644 u-boot.bin %{buildroot}%{uboot_dir}/u-boot.bin +fi +%if "%{name}" == "u-boot-qemu-ppce500" +mv %{buildroot}%{uboot_dir}/u-boot.bin %{buildroot}%{uboot_dir}/u-boot.e500 +%endif +%endif +%if %x_loader == 1 +install -D -m 0755 MLO %{buildroot}/boot/MLO +%endif +%if %origen_spl == 1 +install -D -m 0755 spl/origen-spl.bin %{buildroot}/boot/origen-spl.bin +%endif +%if %arndale_spl == 1 +install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin +install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img +%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 +install -D -m 0644 spl/u-boot-spl.bin %{buildroot}%{uboot_dir}/u-boot-spl.bin +for t in ; do + install -D -m 0644 u-boot-spl.$t %{buildroot}%{uboot_dir}/u-boot-spl.$t +done +%endif +%if %sunxi_spl == 1 +install -D -m 0755 spl/sunxi-spl.bin %{buildroot}/boot/sunxi-spl.bin +install -D -m 0755 u-boot-sunxi-with-spl.bin %{buildroot}/boot/u-boot-sunxi-with-spl.bin +%endif +%if %cuboxi_spl == 1 +install -D -m 0755 SPL %{buildroot}/boot/cuboxi-spl.bin +%endif +%if %udoo_spl == 1 +install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin +%endif +%if %imx6_spl == 1 +install -D -m 0755 SPL %{buildroot}/boot/imx6-spl.bin +%endif +%if %socfpga_spl == 1 +install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp +%endif + +%if 0%{?is_rpi} +%post +# On the Raspberry Pi we chain-load u-boot.bin from bootcode.bin via config.txt. +# It needs to be on the first FAT partition, wherever we mounted it. +# a) Unmounted, then do nothing. +# b) Mounted as /boot/vc, then they're in the right place already. +# c) Mounted as /boot/efi, with /boot/vc as symlink, then nothing to be done. +# d) Mounted as /boot/efi, with /boot/vc a directory, then copy files over. +if mountpoint -q /boot/efi; then + [[ "$(readlink -f /boot/efi)" -ef "$(readlink -f %{uboot_dir})" ]] || cp %{uboot_dir}/u-boot.bin /boot/efi/ +fi +%endif + +%files +%defattr(-,root,root) +%{uboot_dir}/* +%doc Licenses/gpl-2.0.txt README + +%files doc +%defattr(-,root,root) +# Generic documents +%doc doc/README.JFFS2 doc/README.JFFS2_NAND doc/README.commands +%doc doc/README.autoboot doc/README.commands doc/README.console doc/README.dns +%doc doc/README.hwconfig doc/README.nand doc/README.NetConsole doc/README.serial_multi +%doc doc/README.SNTP doc/README.standalone doc/README.update doc/README.usb +%doc doc/README.video doc/README.VLAN doc/README.silent doc/README.POST +# Copy some useful kermit scripts as well +%doc tools/kermit/dot.kermrc tools/kermit/flash_param tools/kermit/send_cmd tools/kermit/send_image +# Now any h/w dependent Documentation +%doc doc/README.ARM-memory-map + +%changelog diff --git a/u-boot-mvebudb-88f7040.changes b/u-boot-mvebudb-88f7040.changes new file mode 100644 index 0000000..4e8877d --- /dev/null +++ b/u-boot-mvebudb-88f7040.changes @@ -0,0 +1,1532 @@ +------------------------------------------------------------------- +Sun Apr 9 18:24:30 UTC 2017 - afaerber@suse.de + +- Add tinker-rk3288 +- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.03 +* Fix firefly-rk3288 and tinker-rk3288 build with binutils 2.28. + 0003-Makefile-Fix-linking-with-modern-bi.patch +- U-Boot has no CFLAGS, so apply $RPM_OPT_FLAGS to HOSTCFLAGS instead + +------------------------------------------------------------------- +Mon Mar 20 11:10:57 UTC 2017 - afaerber@suse.de + +- Tidy Raspberry Pi conditionals +- Enable CONFIG_OF_LIBFDT_OVERLAY for Raspberry Pi only for now + +------------------------------------------------------------------- +Mon Mar 20 09:43:14 UTC 2017 - afaerber@suse.de + +- Add mvebudb-88f{3720,7040,8040} + +------------------------------------------------------------------- +Tue Mar 14 08:47:33 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.03 + +------------------------------------------------------------------- +Wed Mar 1 09:36:39 UTC 2017 - guillaume@opensuse.org + +- Add libopenssl-devel as BuildRequires (needed by some configs) + +------------------------------------------------------------------- +Tue Feb 28 08:37:55 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.03-rc3 + +------------------------------------------------------------------- +Wed Feb 22 13:38:25 UTC 2017 - hsehic@suse.com + +- Add Lamobo_R1 + +------------------------------------------------------------------- +Wed Jan 11 09:16:16 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.01 + +------------------------------------------------------------------- +Mon Jan 9 12:06:53 UTC 2017 - afaerber@suse.de + +- Add udooneo +- Introduce IMX6_SPL, superseding per-board CUBOXI_SPL and UDOO_SPL + +------------------------------------------------------------------- +Fri Jan 6 14:29:12 UTC 2017 - afaerber@suse.de + +- Add nanopineo +- Inline CHANGE_DATE into u-boot.spec.in to keep future diffs small + +------------------------------------------------------------------- +Thu Jan 5 10:16:20 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.01-rc3 +- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.01 +* Patches dropped: + 0002-XXX-openSUSE-XXX-omap3-Move-to-dist.patch + 0003-Revert-Revert-omap3-Use-raw-SPL-by-.patch + 0004-ARM-bcm283x-Implement-EFI-RTS-reset.patch + 0005-bcm2835-video-Map-frame-buffer-as-3.patch + 0006-bcm2835-Reserve-the-spin-table-in-e.patch + 0007-efi_loader-fix-depends-on-line-of-E.patch + 0008-efi-Use-device-device-path-type-Mes.patch +* Patches added: + 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch + +------------------------------------------------------------------- +Mon Dec 19 20:50:30 UTC 2016 - xxxxxmichl@googlemail.com + +- Added support for DE0-Nanos-SoC board + +------------------------------------------------------------------- +Tue Nov 15 10:30:59 UTC 2016 - guillaume@opensuse.org + +- Updated to v2016.11 + +------------------------------------------------------------------- +Wed Nov 2 13:36:32 UTC 2016 - guillaume@opensuse.org + +- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2016.11 + to fix build of Raspberry Pi 1, 2 and 3 + +------------------------------------------------------------------- +Tue Nov 1 13:10:28 UTC 2016 - guillaume@opensuse.org + +- Updated to v2016.11-rc3 +- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2016.11 +* Patches dropped: + 0004-efi_loader-Allow-boards-to-implemen.patch + 0005-ARM-bcm283x-Implement-EFI-RTS-reset.patch + 0006-efi_loader-gop-Expose-fb-when-32bpp.patch + 0007-bcm2835-video-Map-frame-buffer-as-3.patch + 0008-bcm2835-Reserve-the-spin-table-in-e.patch + 0009-x86-Move-table-csum-into-separate-h.patch + 0010-x86-Move-smbios-generation-into-arc.patch + 0011-efi_loader-Expose-efi_install_confi.patch + 0012-smbios-Allow-compilation-on-64bit-s.patch + 0013-smbios-Expose-in-efi_loader-as-tabl.patch + 0014-efi_loader-Fix-efi_install_configur.patch + 0015-smbios-Provide-serial-number.patch + 0016-efi_loader-Update-description-of-in.patch + 0017-efi_loader-Fix-memory-map-size-chec.patch + 0018-efi_loader-Fix-crash-on-32-bit-syst.patch + 0019-efi_loader-Move-efi_allocate_pool-i.patch + 0020-efi_loader-Track-size-of-pool-alloc.patch + 0021-efi_loader-Readd-freed-pages-to-mem.patch + 0022-efi_loader-Keep-memory-mapping-sort.patch + 0023-efi_loader-Do-not-leak-memory-when-.patch +* Patches added: + 0004-ARM-bcm283x-Implement-EFI-RTS-reset.patch + 0005-bcm2835-video-Map-frame-buffer-as-3.patch + 0006-bcm2835-Reserve-the-spin-table-in-e.patch + 0007-efi_loader-fix-depends-on-line-of-E.patch + 0008-efi-Use-device-device-path-type-Mes.patch + +------------------------------------------------------------------- +Sun Oct 16 16:20:25 UTC 2016 - afaerber@suse.de + +- Updated to v2016.11-rc1 + +------------------------------------------------------------------- +Sat Oct 15 11:25:48 UTC 2016 - agraf@suse.com + +- Backport patches to allow 4.8 kernels to boot +- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2016.09 +* Patches added: + 0016-efi_loader-Update-description-of-in.patch + 0017-efi_loader-Fix-memory-map-size-chec.patch + 0018-efi_loader-Fix-crash-on-32-bit-syst.patch + 0019-efi_loader-Move-efi_allocate_pool-i.patch + 0020-efi_loader-Track-size-of-pool-alloc.patch + 0021-efi_loader-Readd-freed-pages-to-mem.patch + 0022-efi_loader-Keep-memory-mapping-sort.patch + 0023-efi_loader-Do-not-leak-memory-when-.patch + +------------------------------------------------------------------- +Thu Oct 13 13:21:36 UTC 2016 - afaerber@suse.de + +- update_git.sh: Handle SUBLEVEL for %archive_version (x.y.Z) +- Switch to branch tumbleweed-2016.09 + +------------------------------------------------------------------- +Fri Sep 30 20:01:33 UTC 2016 - guillaume@opensuse.org + +- Updated to v2016.09 +- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-staging +* Patches dropped: + 0009-Revert-armv8-Enable-CPUECTLR.SMPEN-.patch + 0010-bcm2835_gpio-Implement-GPIOF_FUNC.patch + 0011-serial-bcm283x_mu-Detect-disabled-s.patch + 0012-x86-Move-table-csum-into-separate-h.patch + 0013-x86-Move-smbios-generation-into-arc.patch + 0014-efi_loader-Expose-efi_install_confi.patch + 0015-smbios-Allow-compilation-on-64bit-s.patch + 0016-smbios-Expose-in-efi_loader-as-tabl.patch + 0017-efi_loader-Fix-efi_install_configur.patch + 0018-smbios-Provide-serial-number.patch + 0019-common-env_nand-Ensure-that-we-have.patch +* Patches added: + 0009-x86-Move-table-csum-into-separate-h.patch + 0010-x86-Move-smbios-generation-into-arc.patch + 0011-efi_loader-Expose-efi_install_confi.patch + 0012-smbios-Allow-compilation-on-64bit-s.patch + 0013-smbios-Expose-in-efi_loader-as-tabl.patch + 0014-efi_loader-Fix-efi_install_configur.patch + 0015-smbios-Provide-serial-number.patch +- Add python as BuildRequires (needed by some boards using DTOC + such as firefly-rk3288) +- Fix firefly-rk3288 by replacing u-boot-spl-dtb.bin + by u-boot-spl.bin +- Updated to v2016.09.01 + +------------------------------------------------------------------- +Wed Sep 28 15:18:17 UTC 2016 - afaerber@suse.de + +- Fix rpi332b installation path and enable %post scriplet + +------------------------------------------------------------------- +Sun Sep 11 03:44:15 UTC 2016 - afaerber@suse.de + +- Add hikey and rpi332b + +------------------------------------------------------------------- +Wed Sep 7 09:02:59 UTC 2016 - guillaume@opensuse.org + +- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed +* Patches added: + 0019-common-env_nand-Ensure-that-we-have.patch + +------------------------------------------------------------------- +Fri Sep 2 23:25:44 UTC 2016 - afaerber@suse.de + +- Add post-install script for Raspberry Pi to install to /boot/efi + where needed. (bsc#996064) + +------------------------------------------------------------------- +Fri Aug 12 14:07:49 UTC 2016 - agraf@suse.com + +- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed +- Update to v3 of the serial detect code (bsc#989511) +* Patches added: + 0010-bcm2835_gpio-Implement-GPIOF_FUNC.patch +* Patches rebased: + 0010-serial-bcm283x_mu-Detect-disabled-s.patch -> 0011-serial-bcm283x_mu-Detect-disabled-s.patch +- Add SMBIOS table on ARM (bsc#989509) +* Patches added: + 0012-x86-Move-table-csum-into-separate-h.patch + 0013-x86-Move-smbios-generation-into-arc.patch + 0014-efi_loader-Expose-efi_install_confi.patch + 0015-smbios-Allow-compilation-on-64bit-s.patch + 0016-smbios-Expose-in-efi_loader-as-tabl.patch + 0017-efi_loader-Fix-efi_install_configur.patch + 0018-smbios-Provide-serial-number.patch + +------------------------------------------------------------------- +Mon Aug 1 18:42:36 UTC 2016 - stefan.bruens@rwth-aachen.de + +- Use deterministic build date by setting DATE_SOURCE_EPOCH + +------------------------------------------------------------------- +Fri Jul 29 21:52:37 UTC 2016 - agraf@suse.com + +- Add dynamic detection of rpi3 uart (bsc#989511) +- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed +* Patches added: + 0010-serial-bcm283x_mu-Detect-disabled-s.patch + +------------------------------------------------------------------- +Sat Jul 16 18:49:35 UTC 2016 - afaerber@suse.de + +- Updated to v2016.07 +* Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed +* Patches dropped (upstreamed): + 0004-video-ipu-Fix-build-with-hard-float.patch + 0005-efi_loader-Clean-up-system-table-on.patch + 0006-efi_loader-gop-Don-t-expose-fb-addr.patch + 0009-arm-Introduce-setjmp-longjmp.patch + 0010-efi_loader-Add-exit-support.patch + 0011-efi_loader-Add-DM_VIDEO-support.patch + 0015-arm-Fix-setjmp.patch +* Patches rebased: + 0007-efi_loader-Allow-boards-to-implemen.patch -> 0004-efi_loader-Allow-boards-to-implemen.patch + 0008-ARM-bcm283x-Implement-EFI-RTS-reset.patch -> 0005-ARM-bcm283x-Implement-EFI-RTS-reset.patch + 0012-efi_loader-gop-Expose-fb-when-32bpp.patch -> 0006-efi_loader-gop-Expose-fb-when-32bpp.patch + 0013-bcm2835-video-Map-frame-buffer-as-3.patch -> 0007-bcm2835-video-Map-frame-buffer-as-3.patch + 0014-bcm2835-Reserve-the-spin-table-in-e.patch -> 0008-bcm2835-Reserve-the-spin-table-in-e.patch +- Revert an ARMv8 breakage from v2016.07 (backport from master) + 0009-Revert-armv8-Enable-CPUECTLR.SMPEN-.patch +- Add dragonboard410c, odroid-c2, pine64_plus + +------------------------------------------------------------------- +Mon Jun 27 11:00:33 UTC 2016 - nadvornik@suse.com + +- Enable SUNXI_SPL for orangepi_pc + +------------------------------------------------------------------- +Mon Jun 27 06:14:09 UTC 2016 - agraf@suse.com + +- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed +* Patches added: + 0015-arm-Fix-setjmp.patch +- Add update_git.sh to source file list + +------------------------------------------------------------------- +Mon Jun 6 22:07:59 UTC 2016 - agraf@suse.com + +- Add efifb support for RPi +- Fix spin table spill on Rpi +- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed +* Patches added: + 0011-efi_loader-Add-DM_VIDEO-support.patch + 0012-efi_loader-gop-Expose-fb-when-32bpp.patch + 0013-bcm2835-video-Map-frame-buffer-as-3.patch + 0014-bcm2835-Reserve-the-spin-table-in-e.patch + +------------------------------------------------------------------- +Mon Jun 6 06:56:34 UTC 2016 - agraf@suse.com + +- Add RTS reboot for RPi +- Add EFI exit support +- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed +* Patches added: + 0007-efi_loader-Allow-boards-to-implemen.patch + 0008-ARM-bcm283x-Implement-EFI-RTS-reset.patch + 0009-arm-Introduce-setjmp-longjmp.patch + 0010-efi_loader-Add-exit-support.patch + +------------------------------------------------------------------- +Fri Jun 3 11:18:13 UTC 2016 - agraf@suse.com + +- Disable EFI GOP fb_addr, so Linux doesn't use it +- Move to git based patch queue workflow +- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed +* Patches dropped: + 0001-video-ipu-Fix-build-with-hard-float-ARM-toolchain.-I.patch + 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch + 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch +* Patches added: + 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch + 0002-XXX-openSUSE-XXX-omap3-Move-to-dist.patch + 0003-Revert-Revert-omap3-Use-raw-SPL-by-.patch + 0004-video-ipu-Fix-build-with-hard-float.patch + 0005-efi_loader-Clean-up-system-table-on.patch + 0006-efi_loader-gop-Don-t-expose-fb-addr.patch + +------------------------------------------------------------------- +Wed May 18 13:07:24 UTC 2016 - afaerber@suse.de + +- Fix rpi3 installation location + +------------------------------------------------------------------- +Wed May 18 12:22:31 UTC 2016 - guillaume@opensuse.org + +- Add 0001-video-ipu-Fix-build-with-hard-float-ARM-toolchain.-I.patch + to fix build on iMX boards (with hard-float toolchains) + +------------------------------------------------------------------- +Tue May 17 12:53:24 UTC 2016 - guillaume@opensuse.org + +- Update to 2016.05 +- Remove upstreamed patch: + * 0003-exynos-Set-CNTFRQ.patch + +------------------------------------------------------------------- +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 + +- Update to 2016.05-rc3 + - Removed patches: + * 0004-iso-Make-little-endian-and-64bit-safe.patch + * 0005-iso-Start-with-partition-1.patch + * 0006-iso-Allow-512-byte-sector-size.patch + * 0007-efi_loader-Split-drive-add-into-function.patch + * 0008-efi_loader-Add-el-torito-support.patch + * 0009-efi_loader-Pass-file-path-to-payload.patch + * 0010-efi_loader-Increase-path-string-to-32-characters.patch + * 0011-distro-Enable-iso-partition-code.patch + * 0012-efi_loader-Use-system-fdt-as-fallback.patch + * 0013-efi_loader-Put-fdt-into-convenient-location.patch + * 0014-efi_loader-Expose-ascending-efi-memory-map.patch + * 0015-efi_loader-Always-flush-in-cache-line-size-granulari.patch + * 0016-efi_loader-Handle-memory-overflows.patch + * 0017-ARM-rpi-fix-64-bit-CONFIG_SYS_TEXT_BASE.patch + +------------------------------------------------------------------- +Fri Apr 15 21:50:37 UTC 2016 - agraf@suse.com + +- Add patch to fix RPi3 aarch64 mode with recent firmware + * 0017-ARM-rpi-fix-64-bit-CONFIG_SYS_TEXT_BASE.patch + +------------------------------------------------------------------- +Wed Apr 13 13:55:13 UTC 2016 - agraf@suse.com + +- Move patch queue to https://github.com/openSUSE/u-boot.git tumbleweed + - Removed old patches: + * 0001-iso-Make-little-endian-and-64bit-safe.patch + * 0002-iso-Start-with-partition-1.patch + * 0003-iso-Allow-512-byte-sector-size.patch + * 0004-efi_loader-Split-drive-add-into-function.patch + * 0005-efi_loader-Add-el-torito-support.patch + * 0006-efi_loader-Pass-file-path-to-payload.patch + * 0007-efi_loader-Increase-path-string-to-32-characters.patch + * 0008-distro-Enable-iso-partition-code.patch + * 0009-efi_loader-Use-system-fdt-as-fallback.patch + * 0010-efi_loader-Put-fdt-into-convenient-location.patch + * 0011-efi_loader-Expose-ascending-efi-memory-map.patch + * 0012-efi_loader-Always-flush-in-cache-line-size-granulari.patch + * u-boot-exynos.patch + * efi-default-env.patch + * omap3-Move-to-distro-bootcmd.patch + - Added new patches: + * 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch + * 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch + * 0003-exynos-Set-CNTFRQ.patch + * 0004-iso-Make-little-endian-and-64bit-safe.patch + * 0005-iso-Start-with-partition-1.patch + * 0006-iso-Allow-512-byte-sector-size.patch + * 0007-efi_loader-Split-drive-add-into-function.patch + * 0008-efi_loader-Add-el-torito-support.patch + * 0009-efi_loader-Pass-file-path-to-payload.patch + * 0010-efi_loader-Increase-path-string-to-32-characters.patch + * 0011-distro-Enable-iso-partition-code.patch + * 0012-efi_loader-Use-system-fdt-as-fallback.patch + * 0013-efi_loader-Put-fdt-into-convenient-location.patch + * 0014-efi_loader-Expose-ascending-efi-memory-map.patch + * 0015-efi_loader-Always-flush-in-cache-line-size-granulari.patch +- Add patch to fix Jetson TK1 + * 0016-efi_loader-Handle-memory-overflows.patch + +------------------------------------------------------------------- +Wed Apr 13 13:16:42 UTC 2016 - guillaume@opensuse.org + +- Use released source archive instead of manually built archive + +------------------------------------------------------------------- +Tue Apr 12 08:38:49 UTC 2016 - agraf@suse.com + +- Update to 2016.05-rc1 +- Remove upstreamed patches: + * efi.patch + * efi2.patch + * efi_loader-Call-fdt-preparation-functions.patch + * efi_loader-Pass-proper-device-path-in-on-boot.patch + * efi_loader-Provide-icache-flush-stub.patch + * efi-map-fdt-as-reserved.patch + * rpi3.patch +- Add EFI fixes and iso boot backports: + * 0001-iso-Make-little-endian-and-64bit-safe.patch + * 0002-iso-Start-with-partition-1.patch + * 0003-iso-Allow-512-byte-sector-size.patch + * 0004-efi_loader-Split-drive-add-into-function.patch + * 0005-efi_loader-Add-el-torito-support.patch + * 0006-efi_loader-Pass-file-path-to-payload.patch + * 0007-efi_loader-Increase-path-string-to-32-characters.patch + * 0008-distro-Enable-iso-partition-code.patch + * 0009-efi_loader-Use-system-fdt-as-fallback.patch + * 0010-efi_loader-Put-fdt-into-convenient-location.patch + * 0011-efi_loader-Expose-ascending-efi-memory-map.patch + * 0012-efi_loader-Always-flush-in-cache-line-size-granulari.patch + +------------------------------------------------------------------- +Sun Apr 3 04:40:53 UTC 2016 - afaerber@suse.de + +- Package .img for firefly-rk3288 +- Package firefly-rk3288 SPL images. Generate them here so that we + notice early if the size constraints are ever again not met. + +------------------------------------------------------------------- +Sat Apr 2 23:08:53 UTC 2016 - afaerber@suse.de + +- Package spl/u-boot-spl for new tegra-uboot-flasher-scripts + +------------------------------------------------------------------- +Fri Apr 1 17:07:55 UTC 2016 - afaerber@suse.de + +- Add clearfog + +------------------------------------------------------------------- +Tue Mar 15 08:47:35 UTC 2016 - guillaume@opensuse.org + +- Update to 2016.03 +- Remove upstreamed patch: + * omap3-Use-raw-SPL-by-default-for-mmc1.patch + +------------------------------------------------------------------- +Sun Mar 13 21:48:46 UTC 2016 - dmueller@suse.com + +- add support for Raspberry Pi 3 (rpi3.patch) + +------------------------------------------------------------------- +Wed Mar 9 22:50:22 UTC 2016 - agraf@suse.com + +- Fix missing 0-terminator in efi patch, breaking boot.scr boot + +------------------------------------------------------------------- +Sat Mar 5 22:02:18 UTC 2016 - afaerber@suse.de + +- Non-free licensed Marvell code has long been removed. + Drop obsolete drop-marvell.patch (bsc#773824) +- Fix indentation of Patch6 in u-boot.spec.in + +------------------------------------------------------------------- +Thu Mar 3 15:02:37 UTC 2016 - agraf@suse.com + +- EFI: Map fdt as reserved + * efi-map-fdt-as-reserved.patch + +------------------------------------------------------------------- +Thu Mar 3 12:52:17 UTC 2016 - agraf@suse.com + +- Fix OMAP3 boards to load u-boot from raw sector offset + * omap3-Use-raw-SPL-by-default-for-mmc1.patch + +------------------------------------------------------------------- +Wed Mar 2 23:46:44 UTC 2016 - agraf@suse.com + +- Allow grub2 to find its config + * efi_loader-Pass-proper-device-path-in-on-boot.patch +- Fix Raspberry Pi 1 build + * efi_loader-Provide-icache-flush-stub.patch + +------------------------------------------------------------------- +Wed Mar 2 10:03:56 UTC 2016 - guillaume@opensuse.org + +- Update to 2016.03-rc3 +- Remove upstreamed patches: + * 0001-spl-if-MMCSD_MODE_RAW-fails-try-MMCSD_MODE_FS-if-ava.patch + +------------------------------------------------------------------- +Tue Mar 1 23:06:57 UTC 2016 - agraf@suse.com + +- Move omap3 to distro bootcmd (to enable efi boot on beagle-xm) + * omap3-Move-to-distro-bootcmd.patch +- Add EFI patch to support FDT fixups (patches in RAM size) + * efi_loader-Call-fdt-preparation-functions.patch + +------------------------------------------------------------------- +Mon Feb 29 23:28:15 UTC 2016 - agraf@suse.com + +- Patch the default u-boot env to search for dtb in /boot at part 2 + * efi-default-env.patch + +------------------------------------------------------------------- +Sun Feb 28 11:02:04 UTC 2016 - agraf@suse.com + +- Use $fdtfile rather than $fdt_name everywhere: + * efi2.patch + +------------------------------------------------------------------- +Sat Feb 27 13:20:29 UTC 2016 - agraf@suse.com + +- Add EFI support about to move upstream: + * efi.patch + +------------------------------------------------------------------- +Mon Feb 22 13:32:31 UTC 2016 - guillaume@opensuse.org + +- Update to 2016.03-rc2 +- Remove upstreamed patches: + * U-Boot-am335x_evm-Don-t-undef-CONFIG_BOOTDELAY.patch + * 0001-udoo-use-load-instead-of-fatload.patch +- Refresh drop-marvell.patch +- Remove dropped doc from file list: doc/README.Modem + +------------------------------------------------------------------- +Wed Feb 17 08:16:15 UTC 2016 - guillaume@opensuse.org + +- Add a patch to fix boot on partition when raw boot mode is also + available: + * 0001-spl-if-MMCSD_MODE_RAW-fails-try-MMCSD_MODE_FS-if-ava.patch + +------------------------------------------------------------------- +Wed Feb 17 08:15:52 UTC 2016 - guillaume@opensuse.org + +- Add am335x_boneblack + +------------------------------------------------------------------- +Sat Feb 13 14:56:43 UTC 2016 - afaerber@suse.de + +- Enable Hyundai_A7HD, superseding :Contrib:sunxi package + +------------------------------------------------------------------- +Thu Feb 9 13:02:26 UTC 2016 - afaerber@suse.de + +- Adjust installation path for qemu-ppce500 to replace qemu-ppc's +* Pull in qemu (not qemu-ppc) for directory ownership + +------------------------------------------------------------------- +Tue Feb 9 00:03:18 UTC 2016 - afaerber@suse.de + +- Add Jetson TX1 board (p2371-2180) +- Fix indentation of last Patch line in .spec.in to match .spec + +------------------------------------------------------------------- +Mon Feb 1 19:35:45 UTC 2016 - agraf@suse.com + +- Add patch to fix exynos armv7 kvm support + * adds u-boot-exynos.patch + +------------------------------------------------------------------- +Tue Jan 19 14:15:58 UTC 2016 - afaerber@suse.de + +- Prepare for non-/boot installation directories +* For /boot/vc pull in raspberrypi-firmware package + +------------------------------------------------------------------- +Fri Jan 15 21:19:43 UTC 2016 - oscar@naiandei.net + +- Add udoo (dual and quad) boards + * adds 0001-udoo-use-load-instead-of-fatload.patch + +------------------------------------------------------------------- +Thu Jan 14 15:43:36 UTC 2016 - afaerber@suse.de + +- Add qemu-ppce500, to replace u-boot.e500 blob in qemu package +* Override CROSS_COMPILE variable to use native gcc + +------------------------------------------------------------------- +Wed Jan 13 14:07:32 UTC 2016 - guillaume@opensuse.org + +- Update to 2016.01 + +------------------------------------------------------------------- +Mon Jan 11 11:08:50 UTC 2016 - guillaume@opensuse.org + +- Update to 2016.01-rc4 + +------------------------------------------------------------------- +Mon Dec 28 13:50:10 UTC 2015 - guillaume@opensuse.org + +- Update to 2016.01-rc3 + +------------------------------------------------------------------- +Sun Dec 20 20:56:54 UTC 2015 - afaerber@suse.de + +- Suppress stripping debug info - it affects u-boot-jetson-tk1 +- Install rpi and rpi2 binaries to /boot/vc + +------------------------------------------------------------------- +Tue Dec 15 09:27:03 UTC 2015 - guillaume@opensuse.org + +- Backport U-Boot-am335x_evm-Don-t-undef-CONFIG_BOOTDELAY.patch + to fix bootdelay on Beaglebone board + +------------------------------------------------------------------- +Tue Dec 15 09:15:30 UTC 2015 - guillaume@opensuse.org + +- Add orangepi_pc board + +------------------------------------------------------------------- +Fri Dec 11 09:23:17 UTC 2015 - guillaume@opensuse.org + +- Add support to am57xx_evm (beagle_x15 with u-boot DT) + +------------------------------------------------------------------- +Fri Dec 11 09:08:25 UTC 2015 - guillaume@opensuse.org + +- Update to 2016.01-rc2: +- Rename 'beagle_x15' to 'am57xx_evm_nodt' to follow upstream +- Remove upstreamed patch: + * U-Boot-1-2-usb-host-xhci-omap-fix-build-break.patch + +------------------------------------------------------------------- +Wed Nov 25 09:38:56 UTC 2015 - guillaume@opensuse.org + +- Update to 2016.01-rc1 +- Remove upstreamed patches: + * 0001-configs-Use-config_distro_defaults.h-in-ti_armv7_com.patch + * 0001-mx6cuboxi-use-load-instead-of-fatload.patch (no more needed) + * U-Boot-image.c-Fix-non-Android-booting-with-ramdisk-and-or-device-tree.patch +- Update drop-marvell.patch + +------------------------------------------------------------------- +Sun Nov 15 13:11:56 UTC 2015 - matwey.kornilov@gmail.com + +- Backport 0001-configs-Use-config_distro_defaults.h-in-ti_armv7_com.patch + +------------------------------------------------------------------- +Sat Nov 14 15:03:05 UTC 2015 - tbechtold@suse.com + +- 0001-mx6cuboxi-use-load-instead-of-fatload.patch + for cubox-i use load instead of fatload + +------------------------------------------------------------------- +Tue Nov 3 08:14:57 UTC 2015 - matwey.kornilov@gmail.com + +- Fix am335x booting + * U-Boot-image.c-Fix-non-Android-booting-with-ramdisk-and-or-device-tree.patch + +------------------------------------------------------------------- +Wed Oct 21 08:16:32 UTC 2015 - guillaume@opensuse.org + +- Add Beagle x15 support +- Fix build for Beagle x15: + * U-Boot-1-2-usb-host-xhci-omap-fix-build-break.patch + +------------------------------------------------------------------- +Tue Oct 20 11:32:30 UTC 2015 - guillaume@opensuse.org + +- Update to 2015.10 +- Remove upstreamed patches: + * 0001-odroid-replace-fatload-with-load-to-be-able-to-use-E.patch + * 0002-odroid-Add-boot-script-boot.scr-support.patch + +------------------------------------------------------------------- +Tue Oct 13 06:58:38 UTC 2015 - guillaume@opensuse.org + +- Update to 2015.10-rc5 +- Remove upstreamed patch: + * arndale-apply-cortex-a15-erratas.patch + +------------------------------------------------------------------- +Thu Oct 8 09:27:15 UTC 2015 - guillaume@opensuse.org + +- Add boot script support to odroid board: + * 0001-odroid-replace-fatload-with-load-to-be-able-to-use-E.patch + * 0002-odroid-Add-boot-script-boot.scr-support.patch + +------------------------------------------------------------------- +Mon Oct 5 18:04:28 UTC 2015 - afaerber@suse.de + +- Add spring and firefly-rk3288 for armv7hl + * Break overly long armv7_boards line in pre_checkin.sh + * Clean up case'ing of defconfigs to avoid excessive wildcards +- Prepare for adding qemu-ppce500 for ppc + * Allow for more than two exclusive architectures (cleanup) + +------------------------------------------------------------------- +Mon Oct 5 11:42:08 UTC 2015 - dmueller@suse.com + +- add arndale-apply-cortex-a15-erratas.patch + +------------------------------------------------------------------- +Thu Oct 1 16:41:38 UTC 2015 - guillaume.gardet@opensuse.org + +- Update to 2015.10-rc4 +- Update drop-marvell.patch + +------------------------------------------------------------------- +Sat Sep 12 12:22:53 UTC 2015 - guillaume@opensuse.org + +- Use u-boot-2015.10-rc3.tar.bz2 package provided on FTP instead of + packaging it manually. + +------------------------------------------------------------------- +Tue Sep 8 08:52:56 UTC 2015 - guillaume@opensuse.org + +- Update to 2015.10-rc3 + +------------------------------------------------------------------- +Wed Sep 2 16:28:02 UTC 2015 - guillaume@opensuse.org + +- Add odroid and odroid-xu3 + +------------------------------------------------------------------- +Tue Aug 18 08:31:48 UTC 2015 - guillaume@opensuse.org + +- Update to 2015.10-rc2 +- Remove upstreamed patch: + * jetson-tk1-gpu-1.patch + * jetson-tk1-gpu-2.patch + +------------------------------------------------------------------- +Thu Aug 6 12:40:58 UTC 2015 - guillaume@opensuse.org + +- Update to 2015.10-rc1 +- Remove upstreamed patch: + * mx53loco-bootscr.patch +- Update patches: + * jetson-tk1-gpu-1.patch + * jetson-tk1-gpu-2.patch + +------------------------------------------------------------------- +Wed Aug 5 13:36:45 UTC 2015 - dmueller@suse.com + +- add mx6cuboxi + +------------------------------------------------------------------- +Wed Jul 22 22:38:23 UTC 2015 - afaerber@suse.de + +- jetson-tk1-gpu-1.patch, + jetson-tk1-gpu-2.patch: Enable the Tegra124 GPU device tree node + +------------------------------------------------------------------- +Mon Jul 20 10:45:39 UTC 2015 - afaerber@suse.de + +- Add u-boot-jetson-tk1 + +------------------------------------------------------------------- +Fri Jul 17 06:42:37 UTC 2015 - afaerber@suse.de + +- Add u-boot-merriia80optimus + +------------------------------------------------------------------- +Wed Jul 15 13:05:24 UTC 2015 - guillaume@opensuse.org + +- Update to 2015.07 + +------------------------------------------------------------------- +Tue Jun 30 07:34:49 UTC 2015 - guillaume@opensuse.org + +- Update to 2015.07-rc3 +- Remove upstreamed patches: + * enable_spl_ext_support_for_ti_armv7.patch + * fix_slow_mmc_on_rpi.patch + +------------------------------------------------------------------- +Thu Jun 18 12:07:10 UTC 2015 - guillaume@opensuse.org + +- Add fix_slow_mmc_on_rpi.patch to speed up MMC load on RPi +- Rework patches (to be upstreamable): + * enable_spl_ext_support_for_ti_armv7.patch + * mx53loco-bootscr.patch +- Remove fix_beagle_spl_build.patch + +------------------------------------------------------------------- +Wed Jun 10 10:07:23 UTC 2015 - guillaume@opensuse.org + +- Update to 2015.07-rc2 +- Update drop-marvell.patch + +------------------------------------------------------------------- +Wed May 27 10:07:49 UTC 2015 - guillaume@opensuse.org + +- Update to 2015.07-rc1: +- Update drop-marvell.patch +- Remove no more needed add_snow_usb_boot.patch + +------------------------------------------------------------------- +Wed Apr 29 07:51:25 UTC 2015 - dmueller@suse.com + +- adjust copyright headers + +------------------------------------------------------------------- +Thu Apr 16 08:34:11 UTC 2015 - guillaume@opensuse.org + +- update to 2015.04 +- Remove upstreamed patch: + 0001-Exynos-Clock-Fix-exynos5_get_periph_rate-for-I2C.patch +- Follow upstream board rename colibri_t20_iris => colibri_t20 + +------------------------------------------------------------------- +Sun Apr 12 19:49:41 UTC 2015 - xxxxxmichl@googlemail.com + +- Added support for A13-OLinuXino, A13-OLinuXino-MICRO, + A20-OLinuXino-MICRO and A20-OLinuXino-LIME from + www.olimex.com + +------------------------------------------------------------------- +Thu Apr 9 07:56:40 UTC 2015 - guillaume@opensuse.org + +- Remove u-boot-vexpressaemv8a (dropped upstream and we now use EFI) + +------------------------------------------------------------------- +Thu Apr 2 09:13:49 UTC 2015 - guillaume@opensuse.org + +- update to 2015.04-rc5 + +------------------------------------------------------------------- +Mon Mar 23 08:39:40 UTC 2015 - guillaume@opensuse.org + +- update to 2015.04-rc4 + +------------------------------------------------------------------- +Wed Mar 4 15:51:55 UTC 2015 - guillaume@opensuse.org + +- Add 0001-Exynos-Clock-Fix-exynos5_get_periph_rate-for-I2C.patch + to fix keyboard on Chromebook + +------------------------------------------------------------------- +Wed Mar 4 15:46:52 UTC 2015 - guillaume@opensuse.org + +- update to 2015.04-rc3 +- update patch: drop-marvell.patch + +------------------------------------------------------------------- +Thu Feb 26 16:48:35 UTC 2015 - guillaume@opensuse.org + +- Update add_snow_usb_boot.patch to boot on USB2 instead of USB3 + +------------------------------------------------------------------- +Wed Feb 25 15:47:07 UTC 2015 - guillaume@opensuse.org + +- Remove unneeded fix_snow_config.patch + +------------------------------------------------------------------- +Tue Feb 24 09:48:50 UTC 2015 - guillaume@opensuse.org + +- Add rpi2 armv7 board + +------------------------------------------------------------------- +Fri Feb 20 12:31:38 UTC 2015 - guillaume@opensuse.org + +- Update to 2015.04-rc2 + +------------------------------------------------------------------- +Fri Feb 20 10:04:14 UTC 2015 - guillaume@opensuse.org + +- Update to 2015.04-rc1 + * Remove upstreamed patch pcm051-bootscr.patch + * Remove no more used patch fix_bootpart_snow_only.patch (now u-boot + scan all known partitions, so no need to set a different boot partition) + +------------------------------------------------------------------- +Sun Jan 25 20:20:46 UTC 2015 - matwey.kornilov@gmail.com + +- Enable pcm051rev3 for Phytec Wega board + * Add pcm051-bootscr.patch: add bootscript support (upstreamed in 2015.04-rc1) + +------------------------------------------------------------------- +Tue Jan 13 14:32:17 UTC 2015 - guillaume@opensuse.org + +- Update to 2015.01: + * Drop upstreamed patches: + - 0001-spl-mmc-Fix-raw-boot-mode-related-to-commit.patch + - fix_sata.patch + * Update partially upstreamed mx53loco-bootscr.patch + +------------------------------------------------------------------- +Tue Dec 16 11:10:23 UTC 2014 - guillaume@opensuse.org + +- Backport SPL MMC raw boot mode fix: + * 0001-spl-mmc-Fix-raw-boot-mode-related-to-commit.patch + +------------------------------------------------------------------- +Sat Dec 13 12:12:41 UTC 2014 - xxxxxmichl@googlemail.com + +- Added support for A20-OLinuXIno-LIME2 and A10-OLinuXino-LIME from + www.olimex.com + +------------------------------------------------------------------- +Tue Dec 9 11:23:41 UTC 2014 - guillaume@opensuse.org + +- Rename XLOADER to OMAP_SPL in pre_checkin.sh and u-boot.spec.in + +------------------------------------------------------------------- +Tue Dec 9 09:15:27 UTC 2014 - guillaume@opensuse.org + +- Update to 2015.01-rc3 + * Drop upstreamed/unneeded patches: + - 0001-exynos-Enable-config_distro_defaults.h.patch + - 0002-exynos5-Use-config_distro_bootcmd.h.patch + - boot_mode_fallback.patch + - fix_snow_usb_support + - fix_spl_ext.patch + - fix_arm_hf_toolchain.patch + - origen-ext2.patch + * Update patch: + - fix_snow_config.patch + * Follow upstream: rpi_b config renamed to rpi + +------------------------------------------------------------------- +Tue Dec 2 12:41:55 UTC 2014 - guillaume@opensuse.org + +- Update snow (chromebook) + * Update patch: + - fix_snow_config.patch patch + * Add patches: + - add_snow_usb_boot.patch to be able to boot from USB0 + - fix_bootpart_snow_only.patch to boot on partition #2 (snow only!) + * Backport patches: + - fix_snow_usb_support.patch to fix USB on snow + - 0001-exynos-Enable-config_distro_defaults.h.patch + - 0002-exynos5-Use-config_distro_bootcmd.h.patch + * Drop unneeded/obsolete patches: + - fix_exynos5_text_base.patch + - fix_snow_extra_env_settings.patch + +------------------------------------------------------------------- +Sun Nov 30 13:17:33 UTC 2014 - guillaume@opensuse.org + +- Add Bananapi initial support + +------------------------------------------------------------------- +Tue Nov 25 08:29:14 UTC 2014 - guillaume@opensuse.org + +- Update to 2015.01-rc2 +- Update patch fix_omap_boot_mode.patch to be upstreamable and +rename it to boot_mode_fallback.patch +- Drop obsolete patch: arndale.patch +- Add patches: + * fix_arm_hf_toolchain.patch: fix build with hard float toolchain + * fix_spl_ext.patch: fix SPL EXT error checks + * fix_sata.patch: fix sata support and fix also mx53loco build + +------------------------------------------------------------------- +Wed Nov 19 21:44:17 CET 2014 - guillaume.gardet@opensuse.org + +- Fix mx53loco-bootscr.patch + +------------------------------------------------------------------- +Mon Nov 17 21:15:50 UTC 2014 - oscar@naiandei.net + +- Add u-boot-with-sunxi-spl.bin for sunxi boards + +------------------------------------------------------------------- +Mon Nov 17 15:17:56 UTC 2014 - guillaume@opensuse.org + +- Make use of RPM_OPT_FLAGS during make + +------------------------------------------------------------------- +Sat Nov 15 14:55:06 UTC 2014 - guillaume@opensuse.org + +- Fix sunxi boards (use u-boot.img instead of u-boot.bin) +- Remove duplicated default install line + +------------------------------------------------------------------- +Tue Nov 11 13:32:36 UTC 2014 - guillaume@opensuse.org + +- Update to 2015.01-rc1 +- Drop upstreamed patches: + * add_spl_extfs_support.patch + * ti_common_initrd_support.patch +- Refresh patch: + * drop-marvell.patch +- Drop CREDITS file from DOC (dropped upstream) + +------------------------------------------------------------------- +Mon Nov 3 10:19:42 UTC 2014 - guillaume@opensuse.org + +- Apply fix_omap_boot_mode.patch only for omap3/omap4 boards + +------------------------------------------------------------------- +Tue Oct 14 13:22:44 UTC 2014 - guillaume@opensuse.org + +- Update to version 2014.10 +- Drop upstreamed patch: + * fix_sabrelite_boot.scr.patch +- Refresh patches: + * arndale.patch + * fix_snow_config.patch + * fix_exynos5_text_base.patch + * exynos5-dt.h.patch (renamed fix_snow_extra_env_settings.patch) + +------------------------------------------------------------------- +Wed Oct 8 07:52:48 UTC 2014 - guillaume@opensuse.org + +- Update to version 2014.10-rc3 +- Drop upstreamed patches: + * beagle-bootscr.patch + * panda-bootscr.patch + * am335x_evm-bootscr.patch +- Refresh patches: + * fix_sabrelite_boot.scr.patch + * drop-marvell.patch + * add_spl_extfs_support.patch +- Add a new patch to fix omap3beagle spl build: + * fix_beagle_spl_build.patch + +------------------------------------------------------------------- +Mon Sep 8 13:06:52 UTC 2014 - guillaume@opensuse.org + +- Drop Hyundai_a7hd and cubox-i boards (now handle in Contrib repos +since it is not upstreamed), so drop related patches: + * v2014.04-sunxi.patch + * cubox-i-v2014.04-port.patch + * cubox-i-enable_raw_rd.patch + +------------------------------------------------------------------- +Wed Sep 3 12:02:22 UTC 2014 - guillaume@opensuse.org + +- Update to version 2014.10-rc2 +- drop upstreamed patch rpi_b-bootscr.patch +- drop fix_spl_build_for_am335x.patch (does build without it) +- Refresh patches: + * drop-marvell.patch + * fix_snow_config.patch + +------------------------------------------------------------------- +Thu Aug 21 08:50:10 UTC 2014 - guillaume@opensuse.org + +- Update SPL EXT fs support: + * For omap boards (beagle and panda), SPL now looks for u-boot.img + as upstream instead of u-boot.bin + * Remove mlo-ext2.patch to make proper patches in +order to ease upstreaming our EXT fs SPL functions + * Add panda-bootscr.patch to fix panda boot (was included in + mlo-ext2.patch) + * Add fix_omap_boot_mode.patch to fix beagle and panda boot mode + (was included in mlo-ext2.patch) + * Add add_spl_extfs_support.patch to get proper SPL EXT fs functions + * Add enable_spl_ext_support_for_ti_armv7.patch to enable SPL EXT fs + support for TI ARMv7 boards + + +------------------------------------------------------------------- +Tue Aug 19 17:35:22 UTC 2014 - matwey.kornilov@gmail.com + +- Update to version 2014.10-rc1 and update patches + +------------------------------------------------------------------- +Thu Jul 31 13:59:00 UTC 2014 - dimstar@opensuse.org + +- Rename rpmlintrc to %{name}-rpmlintrc. + Follow the packaging guidelines. + +------------------------------------------------------------------- +Sat Jun 14 11:58:43 UTC 2014 - afaerber@suse.de + +- add u-boot-cubietruck for Cubietruck (Cubieboard 3) + +------------------------------------------------------------------- +Thu Jun 12 18:52:26 UTC 2014 - josua.m@t-online.de + +- add u-boot-mx6cubox-i for Cubox-i and Hummingboard + * currently conflicts with mlo-ext2 patch for omap4 + so only for cubox-i target mlo-ext2.patch is skipped + and cubox-i patches are applied + * patch source: https://github.com/vorlonofportland/u-boot/ + cubox-i-v2014.04-port.patch + cubox-i-enable_raw_rd.patch + +------------------------------------------------------------------- +Tue Apr 29 13:41:18 UTC 2014 - guillaume@opensuse.org + +- Enhance pre_checkin.sh script to handle arch restrictions + +------------------------------------------------------------------- +Tue Apr 29 13:18:48 UTC 2014 - guillaume@opensuse.org + +- Fix builds : + * 'tools' target is now 'tools-only' + * kermit scripts moved from 'tools/scripts' to 'tools/kermit/' + * Enhanced pre_checkin.sh script to handle uppercases in config name + * Renamed config from cubieboard to Cubieboard + * Renamed config from cubieboard2 to Cubieboard2 + * Renamed config from hyundai_a7hd to Hyundai_A7HD + * Renamed config from mele_a1000 to Mele_A1000 + +------------------------------------------------------------------- +Tue Apr 29 13:06:57 UTC 2014 - guillaume@opensuse.org + +- Add vexpress_aemv8a board + +------------------------------------------------------------------- +Tue Apr 29 08:33:48 UTC 2014 - guillaume@opensuse.org + +- Update to v2014.04 + * Update mlo-ext2.patch + * Update mx53loco-bootscr.patch + * Update origen-ext2.patch + * Dropped v2014.01-sunxi.patch and created + v2014.04-sunxi.patch by diffing u-boot-2014.04 with + u-boot-sunxi.git d9fe0a1e061e2bde6c24a0f7cef4f5023f3bd579 + * Update rpi_b-bootscr.patch + * Drop gnuhash.patch (upstreamed) + +------------------------------------------------------------------- +Thu Mar 27 14:22:23 UTC 2014 - guillaume@opensuse.org + +- add u-boot-mx6qsabrelite (for iMX6 Sabre Lite board) + +------------------------------------------------------------------- +Wed Feb 5 15:07:30 UTC 2014 - guillaume@opensuse.org + +- add u-boot-snow (for Chromebook ARM) + +------------------------------------------------------------------- +Wed Feb 5 14:59:29 UTC 2014 - guillaume@opensuse.org + +- Fix boot.scr location for beagle and origen + +------------------------------------------------------------------- +Thu Jan 30 14:28:34 UTC 2014 - dmueller@suse.com + +- add u-boot-cubieboard2 + +------------------------------------------------------------------- +Thu Jan 30 06:46:45 UTC 2014 - afaerber@suse.de + +- Drop 0006-ARMV7-hardfp-build-fix.patch: + v2014.01 checks if -msoft-float compiles okay, and + U-Boot is soft-float according to Tom Rini + +------------------------------------------------------------------- +Tue Jan 28 15:29:14 UTC 2014 - guillaume@opensuse.org + +- Disable CONFIG_SPL_OS_BOOT for ti armv7 configs with +fix_spl_build_for_am335x.patch to reduce size of am335x SPL + +------------------------------------------------------------------- +Sat Jan 26 22:46:44 UTC 2014 - afaerber@suse.de + +- Update to v2014.01 +* Manually updated 0006-ARMV7-hardfp-build-fix.patch +* Dropped v2013.10-sunxi.patch and created + v2014.01-sunxi.patch by merging u-boot.git v2014.01 onto + u-boot-sunxi.git e4a0232e173577893604b94fc3af7c047570970b +* Added gnuhash.patch to fix .gnu.hash section handling in ldscripts +* Rebased mlo-ext2.patch: + omap4_common.h CONFIG_SUPPORT_RAW_INITRD hunk is now covered by + ti_common_initrd_support.patch. + am335xevm build is known breaking due to size constraints not + trivially solvable without dropping our patch. + +------------------------------------------------------------------- +Sun Jan 26 12:14:10 UTC 2014 - afaerber@suse.de + +- Fix regression in packaging u-boot-dtb-tegra.bin: + There is in fact a u-boot-spl.bin SPL being built, + but it is 0xff-padded as u-boot-spl-pad.bin and then + prepended to u-boot.bin and the .dtb. + u-boot-dtb.bin exists independently as just u-boot.bin and .dtb, + so give preference to u-boot-dtb-tegra.bin over u-boot-dtb.bin. + +------------------------------------------------------------------- +Mon Jan 20 14:05:13 UTC 2014 - agraf@suse.com + +- The "Tegra SPL" is not an SPL but a differently named u-boot.bin + file. Fix up the generation scripts. + +------------------------------------------------------------------- +Sun Jan 19 00:09:41 UTC 2014 - afaerber@suse.de + +- Include Tegra SPL for Colibri T20 + +------------------------------------------------------------------- +Wed Jan 8 17:26:10 UTC 2014 - agraf@suse.com + +- switch raspberry to ext2 + +------------------------------------------------------------------- +Wed Jan 8 13:41:32 UTC 2014 - matwey.kornilov@gmail.com + +- am335x_evm-bootscr.patch: Search for files in /boot, not in /boot/boot + +------------------------------------------------------------------- +Wed Jan 8 02:07:44 UTC 2014 - afaerber@suse.de + +- rpi_b-bootscr.patch: Change rpi_b to use boot.scr + +------------------------------------------------------------------- +Tue Jan 7 16:01:13 UTC 2014 - dmueller@suse.com + +- remove origin flavor + +------------------------------------------------------------------- +Mon Jan 6 22:57:05 UTC 2014 - afaerber@suse.de + +- Enable paz00 config (Toshiba AC100) + +------------------------------------------------------------------- +Mon Jan 6 21:34:03 UTC 2014 - afaerber@suse.de + +- Enable colibri_t20_iris config (Toradex Colibri-T20 on Iris) +- Update u-boot.spec.in copyright and fix typo in comment + +------------------------------------------------------------------- +Sat Jan 4 01:47:50 UTC 2014 - agraf@suse.com + +- prefer u-boot-dtb.bin over u-boot.bin +- simplify files section + +------------------------------------------------------------------- +Fri Jan 3 16:54:30 UTC 2014 - dmueller@suse.com + +- mlo-ext2.patch: Search for files in /boot, not in /boot/boot + +------------------------------------------------------------------- +Mon Dec 30 18:37:50 UTC 2013 - matwey.kornilov@gmail.com + +- Add am335x_evm-bootscr.patch: Add bootscr to AM335x + platform based devices + +------------------------------------------------------------------- +Tue Dec 17 14:33:52 UTC 2013 - guillaume@opensuse.org + +- Remove old unused patches: + * v2013.04-sunxi.patch + * loadaddr-defaults.patch + +------------------------------------------------------------------- +Tue Dec 17 14:10:51 UTC 2013 - guillaume@opensuse.org + +- Add ti_common_initrd_support.patch to enable initrd support for + AM335x boards + +------------------------------------------------------------------- +Tue Dec 17 14:03:50 UTC 2013 - guillaume@opensuse.org + +- Add am335x_evm support which includes: Beagle Bone, + Beagle Bone Black, TI AM335x EVM, TI AM335x EVM-SK + +------------------------------------------------------------------- +Tue Nov 26 13:46:22 UTC 2013 - guillaume@opensuse.org + +- Add Arndale support + +------------------------------------------------------------------- +Tue Nov 26 13:05:10 UTC 2013 - guillaume@opensuse.org + +- Update v2013.04-sunxi.patch to v2013.10-sunxi.patch + +------------------------------------------------------------------- +Mon Nov 25 10:05:48 UTC 2013 - guillaume@opensuse.org + +- Remove kerneladdr and ramdiskaddr definition in u-boot patches + (now done in JeOS image with u-boot hooks) +- Update patches to current version: + * 0006-ARMV7-hardfp-build-fix.patch + * beagle-bootscr.patch + * mx53loco-bootscr.patch + * mlo-ext2.patch +- Merge fix_omap4_ext2_boot.patch in mlo-ext2.patch +- Rename exynos-ext2.patch in origen-ext2.patch + +------------------------------------------------------------------- +Mon Nov 25 09:57:12 UTC 2013 - guillaume@opensuse.org + +- Update to 2013.10 + +------------------------------------------------------------------- +Fri Nov 22 16:25:36 UTC 2013 - guillaume@opensuse.org + +- Fix OMAP4 pandaboard EXT2 boot + +------------------------------------------------------------------- +Fri Sep 13 11:31:14 UTC 2013 - guillaume@opensuse.org + +- Fix u-boot.bin and boot.scr place since they are now in boot/ folder. + +------------------------------------------------------------------- +Wed May 1 20:48:30 UTC 2013 - dmueller@suse.com + +- add support for cubieboard, hyundaia7hd, melea1000 + +------------------------------------------------------------------- +Wed May 1 08:18:26 UTC 2013 - dmueller@suse.com + +- update to 2013.04 + * no upstream changelog available +- remove dead u-boot-raspberrypi* (actually called rpib now) +- add rpib variant + +------------------------------------------------------------------- +Thu Apr 11 17:05:58 UTC 2013 - guillaume.gardet@opensuse.org + +- add omap3_beagle to targets + +------------------------------------------------------------------- +Thu Apr 11 16:05:41 UTC 2013 - dmueller@suse.com + +- remove u8500href subpackage, kernel got dropped + +------------------------------------------------------------------- +Sun Apr 7 14:32:20 UTC 2013 - agraf@suse.com + +- update to 2013.04rc2 +- enable bootz support on all boards + +------------------------------------------------------------------- +Wed Mar 20 07:21:06 UTC 2013 - agraf@suse.com + +- fix mlo-ext2.patch to actually use the ext4 infrastructure + +------------------------------------------------------------------- +Sat Jan 26 10:38:07 UTC 2013 - dmueller@suse.com + +- update mlo-ext2.patch: + * use the ext4 driver now since ext2 got removed + +------------------------------------------------------------------- +Wed Oct 24 22:33:13 UTC 2012 - agraf@suse.com + +- add sdhc-1.patch, sdhc-2.patch, sdhc-3.patch: + * backport upstream sdhc fixes + +------------------------------------------------------------------- +Wed Oct 24 01:37:36 CEST 2012 - agraf@suse.de + +- update to 2012.10: + - refresh patches 0006-ARMV7-hardfp-build-fix.patch, mlo-ext2.patch, + loadaddr-defaults.patch, mx53loco-bootscr.patch + +------------------------------------------------------------------- +Mon Oct 22 12:00:22 UTC 2012 - agraf@suse.com + +- fix origen by putting the ramdisk higher + +------------------------------------------------------------------- +Mon Aug 6 09:39:54 UTC 2012 - dmueller@suse.com + +- remove Marvell sources as they are non-free licensed (bnc#773824) + +------------------------------------------------------------------- +Thu Jul 26 18:21:44 UTC 2012 - agraf@suse.com + +- fix ext2 support for origen +- add origen-spl.bin for origen + +------------------------------------------------------------------- +Thu Jul 26 09:47:31 UTC 2012 - dmueller@suse.com + +- merge u-boot-tools + +------------------------------------------------------------------- +Wed Jul 25 21:05:08 UTC 2012 - agraf@suse.com + +- add ext2 support by default in mx53loco + +------------------------------------------------------------------- +Tue Jul 24 21:28:59 UTC 2012 - agraf@suse.com + +- add support for mx53loco + +------------------------------------------------------------------- +Tue Jul 24 11:25:42 UTC 2012 - dmueller@suse.com + +- remove u-boot-omap3beagle + +------------------------------------------------------------------- +Mon Jul 23 22:34:04 UTC 2012 - agraf@suse.com + +- bump to 2012.04.01 + - fixes bug in cmdline parsing + +------------------------------------------------------------------- +Mon Jul 23 22:26:47 UTC 2012 - agraf@suse.com + +- add calxeda highbank support + +------------------------------------------------------------------- +Thu Jul 12 12:51:56 UTC 2012 - agraf@suse.com + +- autoload boot.scr on beagle, so we can boot again + +------------------------------------------------------------------- +Thu Jul 12 08:12:15 UTC 2012 - agraf@suse.com + +- update to upstream u-boot 2012.04 + -> gets rid of linaro fork, only mainline now + -> gets us omap3 MLO support, no more need for x-loader + -> potentially fixes voltage issues on omap4 + +------------------------------------------------------------------- +Thu Jun 14 09:04:53 UTC 2012 - adrian@suse.de + +- add SUSE style conflicts to avoid installation of multiple + boot loaders + +------------------------------------------------------------------- +Tue Apr 17 11:59:55 UTC 2012 - joop.boonen@opensuse.org + +- Included u-boot.spec.in and gen_spec.sh in the spec file + +------------------------------------------------------------------- +Mon Feb 6 13:25:09 UTC 2012 - agraf@suse.com + +- use ext2 on panda + +------------------------------------------------------------------- +Tue Dec 20 02:36:05 UTC 2011 - agraf@suse.com + +- use ttyO2 as default console= on OMAP boards + +------------------------------------------------------------------- +Mon Dec 19 20:21:21 UTC 2011 - agraf@suse.com + +- add u8500_href and origen configs + +------------------------------------------------------------------- +Fri Dec 16 16:03:01 UTC 2011 - agraf@suse.com + +- fix lint failures + +------------------------------------------------------------------- +Fri Dec 16 14:46:53 CET 2011 - agraf@suse.com + +- don't install map + +------------------------------------------------------------------- +Fri Dec 16 02:16:19 UTC 2011 - agraf@suse.com + +- generalize spec file to be able to build for more boards +- add beagle board spec file +- remove boot.scr + +------------------------------------------------------------------- +Fri Dec 16 01:15:47 UTC 2011 - agraf@suse.com + +- rename to u-boot-omap4panda + +------------------------------------------------------------------- +Tue Dec 13 17:24:45 UTC 2011 - dkukawka@suse.de + +- new package based on u-boot-omap4panda but use linaro u-boot git + repo (http://git.linaro.org/git/boot/u-boot-linaro-stable.git) + instead of mainline u-boot. This package also contains the MLO + (this package obsoletes the x-loader package) + +------------------------------------------------------------------- +Tue Nov 29 22:53:44 UTC 2011 - joop.boonen@opensuse.org + +- COPYING CREDITS README are now in the standard package + +------------------------------------------------------------------- +Thu Nov 24 21:08:58 UTC 2011 - joop.boonen@opensuse.org + +- Corrected the links + +------------------------------------------------------------------- +Tue Nov 22 17:47:17 UTC 2011 - joop.boonen@opensuse.org + +- Build without u-boot tools as we have a u-boot-tools packages + +------------------------------------------------------------------- +Sun Nov 20 17:00:43 UTC 2011 - joop.boonen@opensuse.org + +- Cleaned the spec file up the spec file +- The name is the same as the package name + +------------------------------------------------------------------- +Sun Nov 13 13:13:39 UTC 2011 - joop.boonen@opensuse.org + +- Build u-boot according to http://elinux.org/Panda_How_to_MLO_&_u-boot +- Using .txt config file instead of .scr it's gerated via mkimage + +------------------------------------------------------------------- +Wed Nov 09 22:55:09 UTC 2011 - joop.boonen@opensuse.org + +- Used scr file based on http://elinux.org definition +- Build u-boot 20111109 +- Used the Meego panda u-boot as a base + +------------------------------------------------------------------- +Fri Feb 18 00:00:00 UTC 2011 - raghuveer.murthy@ti.com> +- 2010.09-MeeGo +- Fix for u-boot fails to compile on armv7hl, BMC#13140 + +------------------------------------------------------------------- +Thu Nov 18 00:00:00 UTC 2010 - peter.j.zhu@intel.com> +- 2010.09-MeeGo +- Don't build against i586, BMC#10159 + +------------------------------------------------------------------- +Tue Oct 10 00:00:00 UTC 2010 - nm@ti.com> +- 2010.09.rc1-MeeGo +- Added option to enable boot.scr generation and copy + +------------------------------------------------------------------- +Mon Oct 04 00:00:00 UTC 2010 - nm@ti.com> +- 2010.09.rc1-MeeGo +- Update to 2010.09 + +------------------------------------------------------------------- +Wed Sep 14 00:00:00 UTC 2010 - nm@ti.com> +- 2010.09.rc1-MeeGo +- Update to 2010.09.rc1 +- MeeGo customization +- Enabled PandaBoard, Beagleboard build + +------------------------------------------------------------------- +Wed Mar 31 00:00:00 UTC 2010 - silvan.calarco@mambasoft.it> +- 2009.11.1-1mamba +- update to 2009.11.1 + +------------------------------------------------------------------- +Wed Mar 31 00:00:00 UTC 2010 - diff --git a/u-boot-mvebudb-88f7040.spec b/u-boot-mvebudb-88f7040.spec new file mode 100644 index 0000000..f8e30b6 --- /dev/null +++ b/u-boot-mvebudb-88f7040.spec @@ -0,0 +1,217 @@ +# +# spec file for package u-boot-mvebudb-88f7040 +# +# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon +# Copyright (c) 2007-2010 by Silvan Calarco +# +# All modifications and additions to the file contributed by third parties +# remain the property of their copyright owners, unless otherwise agreed +# upon. The license for this file, and modifications and additions to the +# file, is the same license as for the pristine package itself (unless the +# license for the pristine package is not an Open Source License, in which +# case the license is the MIT License). An "Open Source License" is a +# license that conforms to the Open Source Definition (Version 1.9) +# published by the Open Source Initiative. + +# Please submit bugfixes or comments via http://bugs.opensuse.org/ +# + + +%define mvebu_spl 0 +%define x_loader 0 +%define rockchip_spl 0 +%define sunxi_spl 0 +%define arndale_spl 0 +%define cuboxi_spl 0 +%define origen_spl 0 +%define udoo_spl 0 +%define imx6_spl 0 +%define socfpga_spl 0 + +%if "mvebudb-88f7040" == "rpi" || "mvebudb-88f7040" == "rpi2" || "mvebudb-88f7040" == "rpi332b" || "mvebudb-88f7040" == "rpi3" +%define is_rpi 1 +%endif + +# archive_version differs from version for RC version only +%define archive_version 2017.03 + +Name: u-boot-mvebudb-88f7040 +Version: 2017.03 +Release: 0 +Summary: The U-Boot firmware for the mvebudb-88f7040 platform +License: GPL-2.0 +Group: System/Boot +Url: http://www.denx.de/wiki/U-Boot +Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2 +Source2: arndale-bl1.img +Source3: update_git.sh +Source300: u-boot-rpmlintrc +Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch +Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch +Patch0003: 0003-Makefile-Fix-linking-with-modern-bi.patch +BuildRoot: %{_tmppath}/%{name}-%{version}-build +# Arndale board need DTC >= 1.4 +BuildRequires: bc +BuildRequires: dtc >= 1.4.0 +# u-boot-clearfog (tools/kwbimage.c) needs openssl to build +BuildRequires: libopenssl-devel +# u-boot-firefly-rk3288 needs python to build +BuildRequires: python +%if "%{name}" == "u-boot-qemu-ppce500" +# Owns /usr/share/qemu directory +BuildRequires: qemu +Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500 +%endif +%if 0%{?is_rpi} +# Owns /boot/vc directory +BuildRequires: raspberrypi-firmware +# For mountpoint +Requires(post): util-linux +%endif +Provides: u-boot-loader +Conflicts: otherproviders(u-boot-loader) +%if %x_loader == 1 +Obsoletes: x-loader-mvebudb-88f7040 +Provides: x-loader-mvebudb-88f7040 +%endif +ExclusiveArch: aarch64 + +%description +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 mvebudb-88f7040 platform. + +%package doc +Summary: Documentation for the U-Boot Firmware +Group: Documentation/Other + +%description doc +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. + +%prep +%setup -q -n u-boot-%{archive_version} +%patch0001 -p1 +%patch0002 -p1 +%patch0003 -p1 + +%build +export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s) +make %{?jobs:-j %jobs} CROSS_COMPILE= HOSTCFLAGS="$RPM_OPT_FLAGS" mvebu_db-88f7040_defconfig +%if 0%{?is_rpi} +# U-Boot is installed in the filesystem, so we are confident there's enough space. +echo "Attempting to enable fdt apply command (.dtbo) support." +echo "CONFIG_OF_LIBFDT_OVERLAY=y" >> .config +%endif +make %{?jobs:-j %jobs} CROSS_COMPILE= HOSTCFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes + +%if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring" +# Chromebook ARM (snow) and HP Chromebook 11 (spring) need a uImage format +export TEXT_START=$(awk '$NF == "_start" { printf "0x"$1 }' System.map) +./tools/mkimage -A arm -O linux -T kernel -C none -a $TEXT_START -e $TEXT_START -n uboot -d u-boot-dtb.bin u-boot.img +%endif + +%if %rockchip_spl == 1 +for t in ; do + ./tools/mkimage -n -d spl/u-boot-spl.bin -T $t u-boot-spl.$t +done +%endif + +%install +export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s) +export NO_BRP_STRIP_DEBUG=true +export NO_DEBUGINFO_STRIP_DEBUG=true +%define uboot_dir /boot +%if 0%{?is_rpi} +%define uboot_dir /boot/vc +%endif +%if "%{name}" == "u-boot-qemu-ppce500" +%define uboot_dir %{_datadir}/qemu +%endif +%if "%{name}" == "u-boot-jetson-tk1" +# tegra-uboot-flasher needs several intermediate files, under their original name. +for f in u-boot u-boot.dtb u-boot-dtb-tegra.bin u-boot-nodtb-tegra.bin spl/u-boot-spl; do + install -D -m 0644 $f %{buildroot}/boot/$f +done +%else +# 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. +if [ -f u-boot-dtb-tegra.bin ]; then + install -D -m 0644 u-boot-dtb-tegra.bin %{buildroot}%{uboot_dir}/u-boot.bin +elif [ -f u-boot-dtb.bin ]; then + install -D -m 0644 u-boot-dtb.bin %{buildroot}%{uboot_dir}/u-boot.bin +else + install -D -m 0644 u-boot.bin %{buildroot}%{uboot_dir}/u-boot.bin +fi +%if "%{name}" == "u-boot-qemu-ppce500" +mv %{buildroot}%{uboot_dir}/u-boot.bin %{buildroot}%{uboot_dir}/u-boot.e500 +%endif +%endif +%if %x_loader == 1 +install -D -m 0755 MLO %{buildroot}/boot/MLO +%endif +%if %origen_spl == 1 +install -D -m 0755 spl/origen-spl.bin %{buildroot}/boot/origen-spl.bin +%endif +%if %arndale_spl == 1 +install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin +install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img +%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 +install -D -m 0644 spl/u-boot-spl.bin %{buildroot}%{uboot_dir}/u-boot-spl.bin +for t in ; do + install -D -m 0644 u-boot-spl.$t %{buildroot}%{uboot_dir}/u-boot-spl.$t +done +%endif +%if %sunxi_spl == 1 +install -D -m 0755 spl/sunxi-spl.bin %{buildroot}/boot/sunxi-spl.bin +install -D -m 0755 u-boot-sunxi-with-spl.bin %{buildroot}/boot/u-boot-sunxi-with-spl.bin +%endif +%if %cuboxi_spl == 1 +install -D -m 0755 SPL %{buildroot}/boot/cuboxi-spl.bin +%endif +%if %udoo_spl == 1 +install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin +%endif +%if %imx6_spl == 1 +install -D -m 0755 SPL %{buildroot}/boot/imx6-spl.bin +%endif +%if %socfpga_spl == 1 +install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp +%endif + +%if 0%{?is_rpi} +%post +# On the Raspberry Pi we chain-load u-boot.bin from bootcode.bin via config.txt. +# It needs to be on the first FAT partition, wherever we mounted it. +# a) Unmounted, then do nothing. +# b) Mounted as /boot/vc, then they're in the right place already. +# c) Mounted as /boot/efi, with /boot/vc as symlink, then nothing to be done. +# d) Mounted as /boot/efi, with /boot/vc a directory, then copy files over. +if mountpoint -q /boot/efi; then + [[ "$(readlink -f /boot/efi)" -ef "$(readlink -f %{uboot_dir})" ]] || cp %{uboot_dir}/u-boot.bin /boot/efi/ +fi +%endif + +%files +%defattr(-,root,root) +%{uboot_dir}/* +%doc Licenses/gpl-2.0.txt README + +%files doc +%defattr(-,root,root) +# Generic documents +%doc doc/README.JFFS2 doc/README.JFFS2_NAND doc/README.commands +%doc doc/README.autoboot doc/README.commands doc/README.console doc/README.dns +%doc doc/README.hwconfig doc/README.nand doc/README.NetConsole doc/README.serial_multi +%doc doc/README.SNTP doc/README.standalone doc/README.update doc/README.usb +%doc doc/README.video doc/README.VLAN doc/README.silent doc/README.POST +# Copy some useful kermit scripts as well +%doc tools/kermit/dot.kermrc tools/kermit/flash_param tools/kermit/send_cmd tools/kermit/send_image +# Now any h/w dependent Documentation +%doc doc/README.ARM-memory-map + +%changelog diff --git a/u-boot-mvebudb-88f8040.changes b/u-boot-mvebudb-88f8040.changes new file mode 100644 index 0000000..4e8877d --- /dev/null +++ b/u-boot-mvebudb-88f8040.changes @@ -0,0 +1,1532 @@ +------------------------------------------------------------------- +Sun Apr 9 18:24:30 UTC 2017 - afaerber@suse.de + +- Add tinker-rk3288 +- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.03 +* Fix firefly-rk3288 and tinker-rk3288 build with binutils 2.28. + 0003-Makefile-Fix-linking-with-modern-bi.patch +- U-Boot has no CFLAGS, so apply $RPM_OPT_FLAGS to HOSTCFLAGS instead + +------------------------------------------------------------------- +Mon Mar 20 11:10:57 UTC 2017 - afaerber@suse.de + +- Tidy Raspberry Pi conditionals +- Enable CONFIG_OF_LIBFDT_OVERLAY for Raspberry Pi only for now + +------------------------------------------------------------------- +Mon Mar 20 09:43:14 UTC 2017 - afaerber@suse.de + +- Add mvebudb-88f{3720,7040,8040} + +------------------------------------------------------------------- +Tue Mar 14 08:47:33 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.03 + +------------------------------------------------------------------- +Wed Mar 1 09:36:39 UTC 2017 - guillaume@opensuse.org + +- Add libopenssl-devel as BuildRequires (needed by some configs) + +------------------------------------------------------------------- +Tue Feb 28 08:37:55 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.03-rc3 + +------------------------------------------------------------------- +Wed Feb 22 13:38:25 UTC 2017 - hsehic@suse.com + +- Add Lamobo_R1 + +------------------------------------------------------------------- +Wed Jan 11 09:16:16 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.01 + +------------------------------------------------------------------- +Mon Jan 9 12:06:53 UTC 2017 - afaerber@suse.de + +- Add udooneo +- Introduce IMX6_SPL, superseding per-board CUBOXI_SPL and UDOO_SPL + +------------------------------------------------------------------- +Fri Jan 6 14:29:12 UTC 2017 - afaerber@suse.de + +- Add nanopineo +- Inline CHANGE_DATE into u-boot.spec.in to keep future diffs small + +------------------------------------------------------------------- +Thu Jan 5 10:16:20 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.01-rc3 +- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.01 +* Patches dropped: + 0002-XXX-openSUSE-XXX-omap3-Move-to-dist.patch + 0003-Revert-Revert-omap3-Use-raw-SPL-by-.patch + 0004-ARM-bcm283x-Implement-EFI-RTS-reset.patch + 0005-bcm2835-video-Map-frame-buffer-as-3.patch + 0006-bcm2835-Reserve-the-spin-table-in-e.patch + 0007-efi_loader-fix-depends-on-line-of-E.patch + 0008-efi-Use-device-device-path-type-Mes.patch +* Patches added: + 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch + +------------------------------------------------------------------- +Mon Dec 19 20:50:30 UTC 2016 - xxxxxmichl@googlemail.com + +- Added support for DE0-Nanos-SoC board + +------------------------------------------------------------------- +Tue Nov 15 10:30:59 UTC 2016 - guillaume@opensuse.org + +- Updated to v2016.11 + +------------------------------------------------------------------- +Wed Nov 2 13:36:32 UTC 2016 - guillaume@opensuse.org + +- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2016.11 + to fix build of Raspberry Pi 1, 2 and 3 + +------------------------------------------------------------------- +Tue Nov 1 13:10:28 UTC 2016 - guillaume@opensuse.org + +- Updated to v2016.11-rc3 +- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2016.11 +* Patches dropped: + 0004-efi_loader-Allow-boards-to-implemen.patch + 0005-ARM-bcm283x-Implement-EFI-RTS-reset.patch + 0006-efi_loader-gop-Expose-fb-when-32bpp.patch + 0007-bcm2835-video-Map-frame-buffer-as-3.patch + 0008-bcm2835-Reserve-the-spin-table-in-e.patch + 0009-x86-Move-table-csum-into-separate-h.patch + 0010-x86-Move-smbios-generation-into-arc.patch + 0011-efi_loader-Expose-efi_install_confi.patch + 0012-smbios-Allow-compilation-on-64bit-s.patch + 0013-smbios-Expose-in-efi_loader-as-tabl.patch + 0014-efi_loader-Fix-efi_install_configur.patch + 0015-smbios-Provide-serial-number.patch + 0016-efi_loader-Update-description-of-in.patch + 0017-efi_loader-Fix-memory-map-size-chec.patch + 0018-efi_loader-Fix-crash-on-32-bit-syst.patch + 0019-efi_loader-Move-efi_allocate_pool-i.patch + 0020-efi_loader-Track-size-of-pool-alloc.patch + 0021-efi_loader-Readd-freed-pages-to-mem.patch + 0022-efi_loader-Keep-memory-mapping-sort.patch + 0023-efi_loader-Do-not-leak-memory-when-.patch +* Patches added: + 0004-ARM-bcm283x-Implement-EFI-RTS-reset.patch + 0005-bcm2835-video-Map-frame-buffer-as-3.patch + 0006-bcm2835-Reserve-the-spin-table-in-e.patch + 0007-efi_loader-fix-depends-on-line-of-E.patch + 0008-efi-Use-device-device-path-type-Mes.patch + +------------------------------------------------------------------- +Sun Oct 16 16:20:25 UTC 2016 - afaerber@suse.de + +- Updated to v2016.11-rc1 + +------------------------------------------------------------------- +Sat Oct 15 11:25:48 UTC 2016 - agraf@suse.com + +- Backport patches to allow 4.8 kernels to boot +- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2016.09 +* Patches added: + 0016-efi_loader-Update-description-of-in.patch + 0017-efi_loader-Fix-memory-map-size-chec.patch + 0018-efi_loader-Fix-crash-on-32-bit-syst.patch + 0019-efi_loader-Move-efi_allocate_pool-i.patch + 0020-efi_loader-Track-size-of-pool-alloc.patch + 0021-efi_loader-Readd-freed-pages-to-mem.patch + 0022-efi_loader-Keep-memory-mapping-sort.patch + 0023-efi_loader-Do-not-leak-memory-when-.patch + +------------------------------------------------------------------- +Thu Oct 13 13:21:36 UTC 2016 - afaerber@suse.de + +- update_git.sh: Handle SUBLEVEL for %archive_version (x.y.Z) +- Switch to branch tumbleweed-2016.09 + +------------------------------------------------------------------- +Fri Sep 30 20:01:33 UTC 2016 - guillaume@opensuse.org + +- Updated to v2016.09 +- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-staging +* Patches dropped: + 0009-Revert-armv8-Enable-CPUECTLR.SMPEN-.patch + 0010-bcm2835_gpio-Implement-GPIOF_FUNC.patch + 0011-serial-bcm283x_mu-Detect-disabled-s.patch + 0012-x86-Move-table-csum-into-separate-h.patch + 0013-x86-Move-smbios-generation-into-arc.patch + 0014-efi_loader-Expose-efi_install_confi.patch + 0015-smbios-Allow-compilation-on-64bit-s.patch + 0016-smbios-Expose-in-efi_loader-as-tabl.patch + 0017-efi_loader-Fix-efi_install_configur.patch + 0018-smbios-Provide-serial-number.patch + 0019-common-env_nand-Ensure-that-we-have.patch +* Patches added: + 0009-x86-Move-table-csum-into-separate-h.patch + 0010-x86-Move-smbios-generation-into-arc.patch + 0011-efi_loader-Expose-efi_install_confi.patch + 0012-smbios-Allow-compilation-on-64bit-s.patch + 0013-smbios-Expose-in-efi_loader-as-tabl.patch + 0014-efi_loader-Fix-efi_install_configur.patch + 0015-smbios-Provide-serial-number.patch +- Add python as BuildRequires (needed by some boards using DTOC + such as firefly-rk3288) +- Fix firefly-rk3288 by replacing u-boot-spl-dtb.bin + by u-boot-spl.bin +- Updated to v2016.09.01 + +------------------------------------------------------------------- +Wed Sep 28 15:18:17 UTC 2016 - afaerber@suse.de + +- Fix rpi332b installation path and enable %post scriplet + +------------------------------------------------------------------- +Sun Sep 11 03:44:15 UTC 2016 - afaerber@suse.de + +- Add hikey and rpi332b + +------------------------------------------------------------------- +Wed Sep 7 09:02:59 UTC 2016 - guillaume@opensuse.org + +- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed +* Patches added: + 0019-common-env_nand-Ensure-that-we-have.patch + +------------------------------------------------------------------- +Fri Sep 2 23:25:44 UTC 2016 - afaerber@suse.de + +- Add post-install script for Raspberry Pi to install to /boot/efi + where needed. (bsc#996064) + +------------------------------------------------------------------- +Fri Aug 12 14:07:49 UTC 2016 - agraf@suse.com + +- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed +- Update to v3 of the serial detect code (bsc#989511) +* Patches added: + 0010-bcm2835_gpio-Implement-GPIOF_FUNC.patch +* Patches rebased: + 0010-serial-bcm283x_mu-Detect-disabled-s.patch -> 0011-serial-bcm283x_mu-Detect-disabled-s.patch +- Add SMBIOS table on ARM (bsc#989509) +* Patches added: + 0012-x86-Move-table-csum-into-separate-h.patch + 0013-x86-Move-smbios-generation-into-arc.patch + 0014-efi_loader-Expose-efi_install_confi.patch + 0015-smbios-Allow-compilation-on-64bit-s.patch + 0016-smbios-Expose-in-efi_loader-as-tabl.patch + 0017-efi_loader-Fix-efi_install_configur.patch + 0018-smbios-Provide-serial-number.patch + +------------------------------------------------------------------- +Mon Aug 1 18:42:36 UTC 2016 - stefan.bruens@rwth-aachen.de + +- Use deterministic build date by setting DATE_SOURCE_EPOCH + +------------------------------------------------------------------- +Fri Jul 29 21:52:37 UTC 2016 - agraf@suse.com + +- Add dynamic detection of rpi3 uart (bsc#989511) +- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed +* Patches added: + 0010-serial-bcm283x_mu-Detect-disabled-s.patch + +------------------------------------------------------------------- +Sat Jul 16 18:49:35 UTC 2016 - afaerber@suse.de + +- Updated to v2016.07 +* Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed +* Patches dropped (upstreamed): + 0004-video-ipu-Fix-build-with-hard-float.patch + 0005-efi_loader-Clean-up-system-table-on.patch + 0006-efi_loader-gop-Don-t-expose-fb-addr.patch + 0009-arm-Introduce-setjmp-longjmp.patch + 0010-efi_loader-Add-exit-support.patch + 0011-efi_loader-Add-DM_VIDEO-support.patch + 0015-arm-Fix-setjmp.patch +* Patches rebased: + 0007-efi_loader-Allow-boards-to-implemen.patch -> 0004-efi_loader-Allow-boards-to-implemen.patch + 0008-ARM-bcm283x-Implement-EFI-RTS-reset.patch -> 0005-ARM-bcm283x-Implement-EFI-RTS-reset.patch + 0012-efi_loader-gop-Expose-fb-when-32bpp.patch -> 0006-efi_loader-gop-Expose-fb-when-32bpp.patch + 0013-bcm2835-video-Map-frame-buffer-as-3.patch -> 0007-bcm2835-video-Map-frame-buffer-as-3.patch + 0014-bcm2835-Reserve-the-spin-table-in-e.patch -> 0008-bcm2835-Reserve-the-spin-table-in-e.patch +- Revert an ARMv8 breakage from v2016.07 (backport from master) + 0009-Revert-armv8-Enable-CPUECTLR.SMPEN-.patch +- Add dragonboard410c, odroid-c2, pine64_plus + +------------------------------------------------------------------- +Mon Jun 27 11:00:33 UTC 2016 - nadvornik@suse.com + +- Enable SUNXI_SPL for orangepi_pc + +------------------------------------------------------------------- +Mon Jun 27 06:14:09 UTC 2016 - agraf@suse.com + +- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed +* Patches added: + 0015-arm-Fix-setjmp.patch +- Add update_git.sh to source file list + +------------------------------------------------------------------- +Mon Jun 6 22:07:59 UTC 2016 - agraf@suse.com + +- Add efifb support for RPi +- Fix spin table spill on Rpi +- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed +* Patches added: + 0011-efi_loader-Add-DM_VIDEO-support.patch + 0012-efi_loader-gop-Expose-fb-when-32bpp.patch + 0013-bcm2835-video-Map-frame-buffer-as-3.patch + 0014-bcm2835-Reserve-the-spin-table-in-e.patch + +------------------------------------------------------------------- +Mon Jun 6 06:56:34 UTC 2016 - agraf@suse.com + +- Add RTS reboot for RPi +- Add EFI exit support +- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed +* Patches added: + 0007-efi_loader-Allow-boards-to-implemen.patch + 0008-ARM-bcm283x-Implement-EFI-RTS-reset.patch + 0009-arm-Introduce-setjmp-longjmp.patch + 0010-efi_loader-Add-exit-support.patch + +------------------------------------------------------------------- +Fri Jun 3 11:18:13 UTC 2016 - agraf@suse.com + +- Disable EFI GOP fb_addr, so Linux doesn't use it +- Move to git based patch queue workflow +- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed +* Patches dropped: + 0001-video-ipu-Fix-build-with-hard-float-ARM-toolchain.-I.patch + 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch + 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch +* Patches added: + 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch + 0002-XXX-openSUSE-XXX-omap3-Move-to-dist.patch + 0003-Revert-Revert-omap3-Use-raw-SPL-by-.patch + 0004-video-ipu-Fix-build-with-hard-float.patch + 0005-efi_loader-Clean-up-system-table-on.patch + 0006-efi_loader-gop-Don-t-expose-fb-addr.patch + +------------------------------------------------------------------- +Wed May 18 13:07:24 UTC 2016 - afaerber@suse.de + +- Fix rpi3 installation location + +------------------------------------------------------------------- +Wed May 18 12:22:31 UTC 2016 - guillaume@opensuse.org + +- Add 0001-video-ipu-Fix-build-with-hard-float-ARM-toolchain.-I.patch + to fix build on iMX boards (with hard-float toolchains) + +------------------------------------------------------------------- +Tue May 17 12:53:24 UTC 2016 - guillaume@opensuse.org + +- Update to 2016.05 +- Remove upstreamed patch: + * 0003-exynos-Set-CNTFRQ.patch + +------------------------------------------------------------------- +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 + +- Update to 2016.05-rc3 + - Removed patches: + * 0004-iso-Make-little-endian-and-64bit-safe.patch + * 0005-iso-Start-with-partition-1.patch + * 0006-iso-Allow-512-byte-sector-size.patch + * 0007-efi_loader-Split-drive-add-into-function.patch + * 0008-efi_loader-Add-el-torito-support.patch + * 0009-efi_loader-Pass-file-path-to-payload.patch + * 0010-efi_loader-Increase-path-string-to-32-characters.patch + * 0011-distro-Enable-iso-partition-code.patch + * 0012-efi_loader-Use-system-fdt-as-fallback.patch + * 0013-efi_loader-Put-fdt-into-convenient-location.patch + * 0014-efi_loader-Expose-ascending-efi-memory-map.patch + * 0015-efi_loader-Always-flush-in-cache-line-size-granulari.patch + * 0016-efi_loader-Handle-memory-overflows.patch + * 0017-ARM-rpi-fix-64-bit-CONFIG_SYS_TEXT_BASE.patch + +------------------------------------------------------------------- +Fri Apr 15 21:50:37 UTC 2016 - agraf@suse.com + +- Add patch to fix RPi3 aarch64 mode with recent firmware + * 0017-ARM-rpi-fix-64-bit-CONFIG_SYS_TEXT_BASE.patch + +------------------------------------------------------------------- +Wed Apr 13 13:55:13 UTC 2016 - agraf@suse.com + +- Move patch queue to https://github.com/openSUSE/u-boot.git tumbleweed + - Removed old patches: + * 0001-iso-Make-little-endian-and-64bit-safe.patch + * 0002-iso-Start-with-partition-1.patch + * 0003-iso-Allow-512-byte-sector-size.patch + * 0004-efi_loader-Split-drive-add-into-function.patch + * 0005-efi_loader-Add-el-torito-support.patch + * 0006-efi_loader-Pass-file-path-to-payload.patch + * 0007-efi_loader-Increase-path-string-to-32-characters.patch + * 0008-distro-Enable-iso-partition-code.patch + * 0009-efi_loader-Use-system-fdt-as-fallback.patch + * 0010-efi_loader-Put-fdt-into-convenient-location.patch + * 0011-efi_loader-Expose-ascending-efi-memory-map.patch + * 0012-efi_loader-Always-flush-in-cache-line-size-granulari.patch + * u-boot-exynos.patch + * efi-default-env.patch + * omap3-Move-to-distro-bootcmd.patch + - Added new patches: + * 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch + * 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch + * 0003-exynos-Set-CNTFRQ.patch + * 0004-iso-Make-little-endian-and-64bit-safe.patch + * 0005-iso-Start-with-partition-1.patch + * 0006-iso-Allow-512-byte-sector-size.patch + * 0007-efi_loader-Split-drive-add-into-function.patch + * 0008-efi_loader-Add-el-torito-support.patch + * 0009-efi_loader-Pass-file-path-to-payload.patch + * 0010-efi_loader-Increase-path-string-to-32-characters.patch + * 0011-distro-Enable-iso-partition-code.patch + * 0012-efi_loader-Use-system-fdt-as-fallback.patch + * 0013-efi_loader-Put-fdt-into-convenient-location.patch + * 0014-efi_loader-Expose-ascending-efi-memory-map.patch + * 0015-efi_loader-Always-flush-in-cache-line-size-granulari.patch +- Add patch to fix Jetson TK1 + * 0016-efi_loader-Handle-memory-overflows.patch + +------------------------------------------------------------------- +Wed Apr 13 13:16:42 UTC 2016 - guillaume@opensuse.org + +- Use released source archive instead of manually built archive + +------------------------------------------------------------------- +Tue Apr 12 08:38:49 UTC 2016 - agraf@suse.com + +- Update to 2016.05-rc1 +- Remove upstreamed patches: + * efi.patch + * efi2.patch + * efi_loader-Call-fdt-preparation-functions.patch + * efi_loader-Pass-proper-device-path-in-on-boot.patch + * efi_loader-Provide-icache-flush-stub.patch + * efi-map-fdt-as-reserved.patch + * rpi3.patch +- Add EFI fixes and iso boot backports: + * 0001-iso-Make-little-endian-and-64bit-safe.patch + * 0002-iso-Start-with-partition-1.patch + * 0003-iso-Allow-512-byte-sector-size.patch + * 0004-efi_loader-Split-drive-add-into-function.patch + * 0005-efi_loader-Add-el-torito-support.patch + * 0006-efi_loader-Pass-file-path-to-payload.patch + * 0007-efi_loader-Increase-path-string-to-32-characters.patch + * 0008-distro-Enable-iso-partition-code.patch + * 0009-efi_loader-Use-system-fdt-as-fallback.patch + * 0010-efi_loader-Put-fdt-into-convenient-location.patch + * 0011-efi_loader-Expose-ascending-efi-memory-map.patch + * 0012-efi_loader-Always-flush-in-cache-line-size-granulari.patch + +------------------------------------------------------------------- +Sun Apr 3 04:40:53 UTC 2016 - afaerber@suse.de + +- Package .img for firefly-rk3288 +- Package firefly-rk3288 SPL images. Generate them here so that we + notice early if the size constraints are ever again not met. + +------------------------------------------------------------------- +Sat Apr 2 23:08:53 UTC 2016 - afaerber@suse.de + +- Package spl/u-boot-spl for new tegra-uboot-flasher-scripts + +------------------------------------------------------------------- +Fri Apr 1 17:07:55 UTC 2016 - afaerber@suse.de + +- Add clearfog + +------------------------------------------------------------------- +Tue Mar 15 08:47:35 UTC 2016 - guillaume@opensuse.org + +- Update to 2016.03 +- Remove upstreamed patch: + * omap3-Use-raw-SPL-by-default-for-mmc1.patch + +------------------------------------------------------------------- +Sun Mar 13 21:48:46 UTC 2016 - dmueller@suse.com + +- add support for Raspberry Pi 3 (rpi3.patch) + +------------------------------------------------------------------- +Wed Mar 9 22:50:22 UTC 2016 - agraf@suse.com + +- Fix missing 0-terminator in efi patch, breaking boot.scr boot + +------------------------------------------------------------------- +Sat Mar 5 22:02:18 UTC 2016 - afaerber@suse.de + +- Non-free licensed Marvell code has long been removed. + Drop obsolete drop-marvell.patch (bsc#773824) +- Fix indentation of Patch6 in u-boot.spec.in + +------------------------------------------------------------------- +Thu Mar 3 15:02:37 UTC 2016 - agraf@suse.com + +- EFI: Map fdt as reserved + * efi-map-fdt-as-reserved.patch + +------------------------------------------------------------------- +Thu Mar 3 12:52:17 UTC 2016 - agraf@suse.com + +- Fix OMAP3 boards to load u-boot from raw sector offset + * omap3-Use-raw-SPL-by-default-for-mmc1.patch + +------------------------------------------------------------------- +Wed Mar 2 23:46:44 UTC 2016 - agraf@suse.com + +- Allow grub2 to find its config + * efi_loader-Pass-proper-device-path-in-on-boot.patch +- Fix Raspberry Pi 1 build + * efi_loader-Provide-icache-flush-stub.patch + +------------------------------------------------------------------- +Wed Mar 2 10:03:56 UTC 2016 - guillaume@opensuse.org + +- Update to 2016.03-rc3 +- Remove upstreamed patches: + * 0001-spl-if-MMCSD_MODE_RAW-fails-try-MMCSD_MODE_FS-if-ava.patch + +------------------------------------------------------------------- +Tue Mar 1 23:06:57 UTC 2016 - agraf@suse.com + +- Move omap3 to distro bootcmd (to enable efi boot on beagle-xm) + * omap3-Move-to-distro-bootcmd.patch +- Add EFI patch to support FDT fixups (patches in RAM size) + * efi_loader-Call-fdt-preparation-functions.patch + +------------------------------------------------------------------- +Mon Feb 29 23:28:15 UTC 2016 - agraf@suse.com + +- Patch the default u-boot env to search for dtb in /boot at part 2 + * efi-default-env.patch + +------------------------------------------------------------------- +Sun Feb 28 11:02:04 UTC 2016 - agraf@suse.com + +- Use $fdtfile rather than $fdt_name everywhere: + * efi2.patch + +------------------------------------------------------------------- +Sat Feb 27 13:20:29 UTC 2016 - agraf@suse.com + +- Add EFI support about to move upstream: + * efi.patch + +------------------------------------------------------------------- +Mon Feb 22 13:32:31 UTC 2016 - guillaume@opensuse.org + +- Update to 2016.03-rc2 +- Remove upstreamed patches: + * U-Boot-am335x_evm-Don-t-undef-CONFIG_BOOTDELAY.patch + * 0001-udoo-use-load-instead-of-fatload.patch +- Refresh drop-marvell.patch +- Remove dropped doc from file list: doc/README.Modem + +------------------------------------------------------------------- +Wed Feb 17 08:16:15 UTC 2016 - guillaume@opensuse.org + +- Add a patch to fix boot on partition when raw boot mode is also + available: + * 0001-spl-if-MMCSD_MODE_RAW-fails-try-MMCSD_MODE_FS-if-ava.patch + +------------------------------------------------------------------- +Wed Feb 17 08:15:52 UTC 2016 - guillaume@opensuse.org + +- Add am335x_boneblack + +------------------------------------------------------------------- +Sat Feb 13 14:56:43 UTC 2016 - afaerber@suse.de + +- Enable Hyundai_A7HD, superseding :Contrib:sunxi package + +------------------------------------------------------------------- +Thu Feb 9 13:02:26 UTC 2016 - afaerber@suse.de + +- Adjust installation path for qemu-ppce500 to replace qemu-ppc's +* Pull in qemu (not qemu-ppc) for directory ownership + +------------------------------------------------------------------- +Tue Feb 9 00:03:18 UTC 2016 - afaerber@suse.de + +- Add Jetson TX1 board (p2371-2180) +- Fix indentation of last Patch line in .spec.in to match .spec + +------------------------------------------------------------------- +Mon Feb 1 19:35:45 UTC 2016 - agraf@suse.com + +- Add patch to fix exynos armv7 kvm support + * adds u-boot-exynos.patch + +------------------------------------------------------------------- +Tue Jan 19 14:15:58 UTC 2016 - afaerber@suse.de + +- Prepare for non-/boot installation directories +* For /boot/vc pull in raspberrypi-firmware package + +------------------------------------------------------------------- +Fri Jan 15 21:19:43 UTC 2016 - oscar@naiandei.net + +- Add udoo (dual and quad) boards + * adds 0001-udoo-use-load-instead-of-fatload.patch + +------------------------------------------------------------------- +Thu Jan 14 15:43:36 UTC 2016 - afaerber@suse.de + +- Add qemu-ppce500, to replace u-boot.e500 blob in qemu package +* Override CROSS_COMPILE variable to use native gcc + +------------------------------------------------------------------- +Wed Jan 13 14:07:32 UTC 2016 - guillaume@opensuse.org + +- Update to 2016.01 + +------------------------------------------------------------------- +Mon Jan 11 11:08:50 UTC 2016 - guillaume@opensuse.org + +- Update to 2016.01-rc4 + +------------------------------------------------------------------- +Mon Dec 28 13:50:10 UTC 2015 - guillaume@opensuse.org + +- Update to 2016.01-rc3 + +------------------------------------------------------------------- +Sun Dec 20 20:56:54 UTC 2015 - afaerber@suse.de + +- Suppress stripping debug info - it affects u-boot-jetson-tk1 +- Install rpi and rpi2 binaries to /boot/vc + +------------------------------------------------------------------- +Tue Dec 15 09:27:03 UTC 2015 - guillaume@opensuse.org + +- Backport U-Boot-am335x_evm-Don-t-undef-CONFIG_BOOTDELAY.patch + to fix bootdelay on Beaglebone board + +------------------------------------------------------------------- +Tue Dec 15 09:15:30 UTC 2015 - guillaume@opensuse.org + +- Add orangepi_pc board + +------------------------------------------------------------------- +Fri Dec 11 09:23:17 UTC 2015 - guillaume@opensuse.org + +- Add support to am57xx_evm (beagle_x15 with u-boot DT) + +------------------------------------------------------------------- +Fri Dec 11 09:08:25 UTC 2015 - guillaume@opensuse.org + +- Update to 2016.01-rc2: +- Rename 'beagle_x15' to 'am57xx_evm_nodt' to follow upstream +- Remove upstreamed patch: + * U-Boot-1-2-usb-host-xhci-omap-fix-build-break.patch + +------------------------------------------------------------------- +Wed Nov 25 09:38:56 UTC 2015 - guillaume@opensuse.org + +- Update to 2016.01-rc1 +- Remove upstreamed patches: + * 0001-configs-Use-config_distro_defaults.h-in-ti_armv7_com.patch + * 0001-mx6cuboxi-use-load-instead-of-fatload.patch (no more needed) + * U-Boot-image.c-Fix-non-Android-booting-with-ramdisk-and-or-device-tree.patch +- Update drop-marvell.patch + +------------------------------------------------------------------- +Sun Nov 15 13:11:56 UTC 2015 - matwey.kornilov@gmail.com + +- Backport 0001-configs-Use-config_distro_defaults.h-in-ti_armv7_com.patch + +------------------------------------------------------------------- +Sat Nov 14 15:03:05 UTC 2015 - tbechtold@suse.com + +- 0001-mx6cuboxi-use-load-instead-of-fatload.patch + for cubox-i use load instead of fatload + +------------------------------------------------------------------- +Tue Nov 3 08:14:57 UTC 2015 - matwey.kornilov@gmail.com + +- Fix am335x booting + * U-Boot-image.c-Fix-non-Android-booting-with-ramdisk-and-or-device-tree.patch + +------------------------------------------------------------------- +Wed Oct 21 08:16:32 UTC 2015 - guillaume@opensuse.org + +- Add Beagle x15 support +- Fix build for Beagle x15: + * U-Boot-1-2-usb-host-xhci-omap-fix-build-break.patch + +------------------------------------------------------------------- +Tue Oct 20 11:32:30 UTC 2015 - guillaume@opensuse.org + +- Update to 2015.10 +- Remove upstreamed patches: + * 0001-odroid-replace-fatload-with-load-to-be-able-to-use-E.patch + * 0002-odroid-Add-boot-script-boot.scr-support.patch + +------------------------------------------------------------------- +Tue Oct 13 06:58:38 UTC 2015 - guillaume@opensuse.org + +- Update to 2015.10-rc5 +- Remove upstreamed patch: + * arndale-apply-cortex-a15-erratas.patch + +------------------------------------------------------------------- +Thu Oct 8 09:27:15 UTC 2015 - guillaume@opensuse.org + +- Add boot script support to odroid board: + * 0001-odroid-replace-fatload-with-load-to-be-able-to-use-E.patch + * 0002-odroid-Add-boot-script-boot.scr-support.patch + +------------------------------------------------------------------- +Mon Oct 5 18:04:28 UTC 2015 - afaerber@suse.de + +- Add spring and firefly-rk3288 for armv7hl + * Break overly long armv7_boards line in pre_checkin.sh + * Clean up case'ing of defconfigs to avoid excessive wildcards +- Prepare for adding qemu-ppce500 for ppc + * Allow for more than two exclusive architectures (cleanup) + +------------------------------------------------------------------- +Mon Oct 5 11:42:08 UTC 2015 - dmueller@suse.com + +- add arndale-apply-cortex-a15-erratas.patch + +------------------------------------------------------------------- +Thu Oct 1 16:41:38 UTC 2015 - guillaume.gardet@opensuse.org + +- Update to 2015.10-rc4 +- Update drop-marvell.patch + +------------------------------------------------------------------- +Sat Sep 12 12:22:53 UTC 2015 - guillaume@opensuse.org + +- Use u-boot-2015.10-rc3.tar.bz2 package provided on FTP instead of + packaging it manually. + +------------------------------------------------------------------- +Tue Sep 8 08:52:56 UTC 2015 - guillaume@opensuse.org + +- Update to 2015.10-rc3 + +------------------------------------------------------------------- +Wed Sep 2 16:28:02 UTC 2015 - guillaume@opensuse.org + +- Add odroid and odroid-xu3 + +------------------------------------------------------------------- +Tue Aug 18 08:31:48 UTC 2015 - guillaume@opensuse.org + +- Update to 2015.10-rc2 +- Remove upstreamed patch: + * jetson-tk1-gpu-1.patch + * jetson-tk1-gpu-2.patch + +------------------------------------------------------------------- +Thu Aug 6 12:40:58 UTC 2015 - guillaume@opensuse.org + +- Update to 2015.10-rc1 +- Remove upstreamed patch: + * mx53loco-bootscr.patch +- Update patches: + * jetson-tk1-gpu-1.patch + * jetson-tk1-gpu-2.patch + +------------------------------------------------------------------- +Wed Aug 5 13:36:45 UTC 2015 - dmueller@suse.com + +- add mx6cuboxi + +------------------------------------------------------------------- +Wed Jul 22 22:38:23 UTC 2015 - afaerber@suse.de + +- jetson-tk1-gpu-1.patch, + jetson-tk1-gpu-2.patch: Enable the Tegra124 GPU device tree node + +------------------------------------------------------------------- +Mon Jul 20 10:45:39 UTC 2015 - afaerber@suse.de + +- Add u-boot-jetson-tk1 + +------------------------------------------------------------------- +Fri Jul 17 06:42:37 UTC 2015 - afaerber@suse.de + +- Add u-boot-merriia80optimus + +------------------------------------------------------------------- +Wed Jul 15 13:05:24 UTC 2015 - guillaume@opensuse.org + +- Update to 2015.07 + +------------------------------------------------------------------- +Tue Jun 30 07:34:49 UTC 2015 - guillaume@opensuse.org + +- Update to 2015.07-rc3 +- Remove upstreamed patches: + * enable_spl_ext_support_for_ti_armv7.patch + * fix_slow_mmc_on_rpi.patch + +------------------------------------------------------------------- +Thu Jun 18 12:07:10 UTC 2015 - guillaume@opensuse.org + +- Add fix_slow_mmc_on_rpi.patch to speed up MMC load on RPi +- Rework patches (to be upstreamable): + * enable_spl_ext_support_for_ti_armv7.patch + * mx53loco-bootscr.patch +- Remove fix_beagle_spl_build.patch + +------------------------------------------------------------------- +Wed Jun 10 10:07:23 UTC 2015 - guillaume@opensuse.org + +- Update to 2015.07-rc2 +- Update drop-marvell.patch + +------------------------------------------------------------------- +Wed May 27 10:07:49 UTC 2015 - guillaume@opensuse.org + +- Update to 2015.07-rc1: +- Update drop-marvell.patch +- Remove no more needed add_snow_usb_boot.patch + +------------------------------------------------------------------- +Wed Apr 29 07:51:25 UTC 2015 - dmueller@suse.com + +- adjust copyright headers + +------------------------------------------------------------------- +Thu Apr 16 08:34:11 UTC 2015 - guillaume@opensuse.org + +- update to 2015.04 +- Remove upstreamed patch: + 0001-Exynos-Clock-Fix-exynos5_get_periph_rate-for-I2C.patch +- Follow upstream board rename colibri_t20_iris => colibri_t20 + +------------------------------------------------------------------- +Sun Apr 12 19:49:41 UTC 2015 - xxxxxmichl@googlemail.com + +- Added support for A13-OLinuXino, A13-OLinuXino-MICRO, + A20-OLinuXino-MICRO and A20-OLinuXino-LIME from + www.olimex.com + +------------------------------------------------------------------- +Thu Apr 9 07:56:40 UTC 2015 - guillaume@opensuse.org + +- Remove u-boot-vexpressaemv8a (dropped upstream and we now use EFI) + +------------------------------------------------------------------- +Thu Apr 2 09:13:49 UTC 2015 - guillaume@opensuse.org + +- update to 2015.04-rc5 + +------------------------------------------------------------------- +Mon Mar 23 08:39:40 UTC 2015 - guillaume@opensuse.org + +- update to 2015.04-rc4 + +------------------------------------------------------------------- +Wed Mar 4 15:51:55 UTC 2015 - guillaume@opensuse.org + +- Add 0001-Exynos-Clock-Fix-exynos5_get_periph_rate-for-I2C.patch + to fix keyboard on Chromebook + +------------------------------------------------------------------- +Wed Mar 4 15:46:52 UTC 2015 - guillaume@opensuse.org + +- update to 2015.04-rc3 +- update patch: drop-marvell.patch + +------------------------------------------------------------------- +Thu Feb 26 16:48:35 UTC 2015 - guillaume@opensuse.org + +- Update add_snow_usb_boot.patch to boot on USB2 instead of USB3 + +------------------------------------------------------------------- +Wed Feb 25 15:47:07 UTC 2015 - guillaume@opensuse.org + +- Remove unneeded fix_snow_config.patch + +------------------------------------------------------------------- +Tue Feb 24 09:48:50 UTC 2015 - guillaume@opensuse.org + +- Add rpi2 armv7 board + +------------------------------------------------------------------- +Fri Feb 20 12:31:38 UTC 2015 - guillaume@opensuse.org + +- Update to 2015.04-rc2 + +------------------------------------------------------------------- +Fri Feb 20 10:04:14 UTC 2015 - guillaume@opensuse.org + +- Update to 2015.04-rc1 + * Remove upstreamed patch pcm051-bootscr.patch + * Remove no more used patch fix_bootpart_snow_only.patch (now u-boot + scan all known partitions, so no need to set a different boot partition) + +------------------------------------------------------------------- +Sun Jan 25 20:20:46 UTC 2015 - matwey.kornilov@gmail.com + +- Enable pcm051rev3 for Phytec Wega board + * Add pcm051-bootscr.patch: add bootscript support (upstreamed in 2015.04-rc1) + +------------------------------------------------------------------- +Tue Jan 13 14:32:17 UTC 2015 - guillaume@opensuse.org + +- Update to 2015.01: + * Drop upstreamed patches: + - 0001-spl-mmc-Fix-raw-boot-mode-related-to-commit.patch + - fix_sata.patch + * Update partially upstreamed mx53loco-bootscr.patch + +------------------------------------------------------------------- +Tue Dec 16 11:10:23 UTC 2014 - guillaume@opensuse.org + +- Backport SPL MMC raw boot mode fix: + * 0001-spl-mmc-Fix-raw-boot-mode-related-to-commit.patch + +------------------------------------------------------------------- +Sat Dec 13 12:12:41 UTC 2014 - xxxxxmichl@googlemail.com + +- Added support for A20-OLinuXIno-LIME2 and A10-OLinuXino-LIME from + www.olimex.com + +------------------------------------------------------------------- +Tue Dec 9 11:23:41 UTC 2014 - guillaume@opensuse.org + +- Rename XLOADER to OMAP_SPL in pre_checkin.sh and u-boot.spec.in + +------------------------------------------------------------------- +Tue Dec 9 09:15:27 UTC 2014 - guillaume@opensuse.org + +- Update to 2015.01-rc3 + * Drop upstreamed/unneeded patches: + - 0001-exynos-Enable-config_distro_defaults.h.patch + - 0002-exynos5-Use-config_distro_bootcmd.h.patch + - boot_mode_fallback.patch + - fix_snow_usb_support + - fix_spl_ext.patch + - fix_arm_hf_toolchain.patch + - origen-ext2.patch + * Update patch: + - fix_snow_config.patch + * Follow upstream: rpi_b config renamed to rpi + +------------------------------------------------------------------- +Tue Dec 2 12:41:55 UTC 2014 - guillaume@opensuse.org + +- Update snow (chromebook) + * Update patch: + - fix_snow_config.patch patch + * Add patches: + - add_snow_usb_boot.patch to be able to boot from USB0 + - fix_bootpart_snow_only.patch to boot on partition #2 (snow only!) + * Backport patches: + - fix_snow_usb_support.patch to fix USB on snow + - 0001-exynos-Enable-config_distro_defaults.h.patch + - 0002-exynos5-Use-config_distro_bootcmd.h.patch + * Drop unneeded/obsolete patches: + - fix_exynos5_text_base.patch + - fix_snow_extra_env_settings.patch + +------------------------------------------------------------------- +Sun Nov 30 13:17:33 UTC 2014 - guillaume@opensuse.org + +- Add Bananapi initial support + +------------------------------------------------------------------- +Tue Nov 25 08:29:14 UTC 2014 - guillaume@opensuse.org + +- Update to 2015.01-rc2 +- Update patch fix_omap_boot_mode.patch to be upstreamable and +rename it to boot_mode_fallback.patch +- Drop obsolete patch: arndale.patch +- Add patches: + * fix_arm_hf_toolchain.patch: fix build with hard float toolchain + * fix_spl_ext.patch: fix SPL EXT error checks + * fix_sata.patch: fix sata support and fix also mx53loco build + +------------------------------------------------------------------- +Wed Nov 19 21:44:17 CET 2014 - guillaume.gardet@opensuse.org + +- Fix mx53loco-bootscr.patch + +------------------------------------------------------------------- +Mon Nov 17 21:15:50 UTC 2014 - oscar@naiandei.net + +- Add u-boot-with-sunxi-spl.bin for sunxi boards + +------------------------------------------------------------------- +Mon Nov 17 15:17:56 UTC 2014 - guillaume@opensuse.org + +- Make use of RPM_OPT_FLAGS during make + +------------------------------------------------------------------- +Sat Nov 15 14:55:06 UTC 2014 - guillaume@opensuse.org + +- Fix sunxi boards (use u-boot.img instead of u-boot.bin) +- Remove duplicated default install line + +------------------------------------------------------------------- +Tue Nov 11 13:32:36 UTC 2014 - guillaume@opensuse.org + +- Update to 2015.01-rc1 +- Drop upstreamed patches: + * add_spl_extfs_support.patch + * ti_common_initrd_support.patch +- Refresh patch: + * drop-marvell.patch +- Drop CREDITS file from DOC (dropped upstream) + +------------------------------------------------------------------- +Mon Nov 3 10:19:42 UTC 2014 - guillaume@opensuse.org + +- Apply fix_omap_boot_mode.patch only for omap3/omap4 boards + +------------------------------------------------------------------- +Tue Oct 14 13:22:44 UTC 2014 - guillaume@opensuse.org + +- Update to version 2014.10 +- Drop upstreamed patch: + * fix_sabrelite_boot.scr.patch +- Refresh patches: + * arndale.patch + * fix_snow_config.patch + * fix_exynos5_text_base.patch + * exynos5-dt.h.patch (renamed fix_snow_extra_env_settings.patch) + +------------------------------------------------------------------- +Wed Oct 8 07:52:48 UTC 2014 - guillaume@opensuse.org + +- Update to version 2014.10-rc3 +- Drop upstreamed patches: + * beagle-bootscr.patch + * panda-bootscr.patch + * am335x_evm-bootscr.patch +- Refresh patches: + * fix_sabrelite_boot.scr.patch + * drop-marvell.patch + * add_spl_extfs_support.patch +- Add a new patch to fix omap3beagle spl build: + * fix_beagle_spl_build.patch + +------------------------------------------------------------------- +Mon Sep 8 13:06:52 UTC 2014 - guillaume@opensuse.org + +- Drop Hyundai_a7hd and cubox-i boards (now handle in Contrib repos +since it is not upstreamed), so drop related patches: + * v2014.04-sunxi.patch + * cubox-i-v2014.04-port.patch + * cubox-i-enable_raw_rd.patch + +------------------------------------------------------------------- +Wed Sep 3 12:02:22 UTC 2014 - guillaume@opensuse.org + +- Update to version 2014.10-rc2 +- drop upstreamed patch rpi_b-bootscr.patch +- drop fix_spl_build_for_am335x.patch (does build without it) +- Refresh patches: + * drop-marvell.patch + * fix_snow_config.patch + +------------------------------------------------------------------- +Thu Aug 21 08:50:10 UTC 2014 - guillaume@opensuse.org + +- Update SPL EXT fs support: + * For omap boards (beagle and panda), SPL now looks for u-boot.img + as upstream instead of u-boot.bin + * Remove mlo-ext2.patch to make proper patches in +order to ease upstreaming our EXT fs SPL functions + * Add panda-bootscr.patch to fix panda boot (was included in + mlo-ext2.patch) + * Add fix_omap_boot_mode.patch to fix beagle and panda boot mode + (was included in mlo-ext2.patch) + * Add add_spl_extfs_support.patch to get proper SPL EXT fs functions + * Add enable_spl_ext_support_for_ti_armv7.patch to enable SPL EXT fs + support for TI ARMv7 boards + + +------------------------------------------------------------------- +Tue Aug 19 17:35:22 UTC 2014 - matwey.kornilov@gmail.com + +- Update to version 2014.10-rc1 and update patches + +------------------------------------------------------------------- +Thu Jul 31 13:59:00 UTC 2014 - dimstar@opensuse.org + +- Rename rpmlintrc to %{name}-rpmlintrc. + Follow the packaging guidelines. + +------------------------------------------------------------------- +Sat Jun 14 11:58:43 UTC 2014 - afaerber@suse.de + +- add u-boot-cubietruck for Cubietruck (Cubieboard 3) + +------------------------------------------------------------------- +Thu Jun 12 18:52:26 UTC 2014 - josua.m@t-online.de + +- add u-boot-mx6cubox-i for Cubox-i and Hummingboard + * currently conflicts with mlo-ext2 patch for omap4 + so only for cubox-i target mlo-ext2.patch is skipped + and cubox-i patches are applied + * patch source: https://github.com/vorlonofportland/u-boot/ + cubox-i-v2014.04-port.patch + cubox-i-enable_raw_rd.patch + +------------------------------------------------------------------- +Tue Apr 29 13:41:18 UTC 2014 - guillaume@opensuse.org + +- Enhance pre_checkin.sh script to handle arch restrictions + +------------------------------------------------------------------- +Tue Apr 29 13:18:48 UTC 2014 - guillaume@opensuse.org + +- Fix builds : + * 'tools' target is now 'tools-only' + * kermit scripts moved from 'tools/scripts' to 'tools/kermit/' + * Enhanced pre_checkin.sh script to handle uppercases in config name + * Renamed config from cubieboard to Cubieboard + * Renamed config from cubieboard2 to Cubieboard2 + * Renamed config from hyundai_a7hd to Hyundai_A7HD + * Renamed config from mele_a1000 to Mele_A1000 + +------------------------------------------------------------------- +Tue Apr 29 13:06:57 UTC 2014 - guillaume@opensuse.org + +- Add vexpress_aemv8a board + +------------------------------------------------------------------- +Tue Apr 29 08:33:48 UTC 2014 - guillaume@opensuse.org + +- Update to v2014.04 + * Update mlo-ext2.patch + * Update mx53loco-bootscr.patch + * Update origen-ext2.patch + * Dropped v2014.01-sunxi.patch and created + v2014.04-sunxi.patch by diffing u-boot-2014.04 with + u-boot-sunxi.git d9fe0a1e061e2bde6c24a0f7cef4f5023f3bd579 + * Update rpi_b-bootscr.patch + * Drop gnuhash.patch (upstreamed) + +------------------------------------------------------------------- +Thu Mar 27 14:22:23 UTC 2014 - guillaume@opensuse.org + +- add u-boot-mx6qsabrelite (for iMX6 Sabre Lite board) + +------------------------------------------------------------------- +Wed Feb 5 15:07:30 UTC 2014 - guillaume@opensuse.org + +- add u-boot-snow (for Chromebook ARM) + +------------------------------------------------------------------- +Wed Feb 5 14:59:29 UTC 2014 - guillaume@opensuse.org + +- Fix boot.scr location for beagle and origen + +------------------------------------------------------------------- +Thu Jan 30 14:28:34 UTC 2014 - dmueller@suse.com + +- add u-boot-cubieboard2 + +------------------------------------------------------------------- +Thu Jan 30 06:46:45 UTC 2014 - afaerber@suse.de + +- Drop 0006-ARMV7-hardfp-build-fix.patch: + v2014.01 checks if -msoft-float compiles okay, and + U-Boot is soft-float according to Tom Rini + +------------------------------------------------------------------- +Tue Jan 28 15:29:14 UTC 2014 - guillaume@opensuse.org + +- Disable CONFIG_SPL_OS_BOOT for ti armv7 configs with +fix_spl_build_for_am335x.patch to reduce size of am335x SPL + +------------------------------------------------------------------- +Sat Jan 26 22:46:44 UTC 2014 - afaerber@suse.de + +- Update to v2014.01 +* Manually updated 0006-ARMV7-hardfp-build-fix.patch +* Dropped v2013.10-sunxi.patch and created + v2014.01-sunxi.patch by merging u-boot.git v2014.01 onto + u-boot-sunxi.git e4a0232e173577893604b94fc3af7c047570970b +* Added gnuhash.patch to fix .gnu.hash section handling in ldscripts +* Rebased mlo-ext2.patch: + omap4_common.h CONFIG_SUPPORT_RAW_INITRD hunk is now covered by + ti_common_initrd_support.patch. + am335xevm build is known breaking due to size constraints not + trivially solvable without dropping our patch. + +------------------------------------------------------------------- +Sun Jan 26 12:14:10 UTC 2014 - afaerber@suse.de + +- Fix regression in packaging u-boot-dtb-tegra.bin: + There is in fact a u-boot-spl.bin SPL being built, + but it is 0xff-padded as u-boot-spl-pad.bin and then + prepended to u-boot.bin and the .dtb. + u-boot-dtb.bin exists independently as just u-boot.bin and .dtb, + so give preference to u-boot-dtb-tegra.bin over u-boot-dtb.bin. + +------------------------------------------------------------------- +Mon Jan 20 14:05:13 UTC 2014 - agraf@suse.com + +- The "Tegra SPL" is not an SPL but a differently named u-boot.bin + file. Fix up the generation scripts. + +------------------------------------------------------------------- +Sun Jan 19 00:09:41 UTC 2014 - afaerber@suse.de + +- Include Tegra SPL for Colibri T20 + +------------------------------------------------------------------- +Wed Jan 8 17:26:10 UTC 2014 - agraf@suse.com + +- switch raspberry to ext2 + +------------------------------------------------------------------- +Wed Jan 8 13:41:32 UTC 2014 - matwey.kornilov@gmail.com + +- am335x_evm-bootscr.patch: Search for files in /boot, not in /boot/boot + +------------------------------------------------------------------- +Wed Jan 8 02:07:44 UTC 2014 - afaerber@suse.de + +- rpi_b-bootscr.patch: Change rpi_b to use boot.scr + +------------------------------------------------------------------- +Tue Jan 7 16:01:13 UTC 2014 - dmueller@suse.com + +- remove origin flavor + +------------------------------------------------------------------- +Mon Jan 6 22:57:05 UTC 2014 - afaerber@suse.de + +- Enable paz00 config (Toshiba AC100) + +------------------------------------------------------------------- +Mon Jan 6 21:34:03 UTC 2014 - afaerber@suse.de + +- Enable colibri_t20_iris config (Toradex Colibri-T20 on Iris) +- Update u-boot.spec.in copyright and fix typo in comment + +------------------------------------------------------------------- +Sat Jan 4 01:47:50 UTC 2014 - agraf@suse.com + +- prefer u-boot-dtb.bin over u-boot.bin +- simplify files section + +------------------------------------------------------------------- +Fri Jan 3 16:54:30 UTC 2014 - dmueller@suse.com + +- mlo-ext2.patch: Search for files in /boot, not in /boot/boot + +------------------------------------------------------------------- +Mon Dec 30 18:37:50 UTC 2013 - matwey.kornilov@gmail.com + +- Add am335x_evm-bootscr.patch: Add bootscr to AM335x + platform based devices + +------------------------------------------------------------------- +Tue Dec 17 14:33:52 UTC 2013 - guillaume@opensuse.org + +- Remove old unused patches: + * v2013.04-sunxi.patch + * loadaddr-defaults.patch + +------------------------------------------------------------------- +Tue Dec 17 14:10:51 UTC 2013 - guillaume@opensuse.org + +- Add ti_common_initrd_support.patch to enable initrd support for + AM335x boards + +------------------------------------------------------------------- +Tue Dec 17 14:03:50 UTC 2013 - guillaume@opensuse.org + +- Add am335x_evm support which includes: Beagle Bone, + Beagle Bone Black, TI AM335x EVM, TI AM335x EVM-SK + +------------------------------------------------------------------- +Tue Nov 26 13:46:22 UTC 2013 - guillaume@opensuse.org + +- Add Arndale support + +------------------------------------------------------------------- +Tue Nov 26 13:05:10 UTC 2013 - guillaume@opensuse.org + +- Update v2013.04-sunxi.patch to v2013.10-sunxi.patch + +------------------------------------------------------------------- +Mon Nov 25 10:05:48 UTC 2013 - guillaume@opensuse.org + +- Remove kerneladdr and ramdiskaddr definition in u-boot patches + (now done in JeOS image with u-boot hooks) +- Update patches to current version: + * 0006-ARMV7-hardfp-build-fix.patch + * beagle-bootscr.patch + * mx53loco-bootscr.patch + * mlo-ext2.patch +- Merge fix_omap4_ext2_boot.patch in mlo-ext2.patch +- Rename exynos-ext2.patch in origen-ext2.patch + +------------------------------------------------------------------- +Mon Nov 25 09:57:12 UTC 2013 - guillaume@opensuse.org + +- Update to 2013.10 + +------------------------------------------------------------------- +Fri Nov 22 16:25:36 UTC 2013 - guillaume@opensuse.org + +- Fix OMAP4 pandaboard EXT2 boot + +------------------------------------------------------------------- +Fri Sep 13 11:31:14 UTC 2013 - guillaume@opensuse.org + +- Fix u-boot.bin and boot.scr place since they are now in boot/ folder. + +------------------------------------------------------------------- +Wed May 1 20:48:30 UTC 2013 - dmueller@suse.com + +- add support for cubieboard, hyundaia7hd, melea1000 + +------------------------------------------------------------------- +Wed May 1 08:18:26 UTC 2013 - dmueller@suse.com + +- update to 2013.04 + * no upstream changelog available +- remove dead u-boot-raspberrypi* (actually called rpib now) +- add rpib variant + +------------------------------------------------------------------- +Thu Apr 11 17:05:58 UTC 2013 - guillaume.gardet@opensuse.org + +- add omap3_beagle to targets + +------------------------------------------------------------------- +Thu Apr 11 16:05:41 UTC 2013 - dmueller@suse.com + +- remove u8500href subpackage, kernel got dropped + +------------------------------------------------------------------- +Sun Apr 7 14:32:20 UTC 2013 - agraf@suse.com + +- update to 2013.04rc2 +- enable bootz support on all boards + +------------------------------------------------------------------- +Wed Mar 20 07:21:06 UTC 2013 - agraf@suse.com + +- fix mlo-ext2.patch to actually use the ext4 infrastructure + +------------------------------------------------------------------- +Sat Jan 26 10:38:07 UTC 2013 - dmueller@suse.com + +- update mlo-ext2.patch: + * use the ext4 driver now since ext2 got removed + +------------------------------------------------------------------- +Wed Oct 24 22:33:13 UTC 2012 - agraf@suse.com + +- add sdhc-1.patch, sdhc-2.patch, sdhc-3.patch: + * backport upstream sdhc fixes + +------------------------------------------------------------------- +Wed Oct 24 01:37:36 CEST 2012 - agraf@suse.de + +- update to 2012.10: + - refresh patches 0006-ARMV7-hardfp-build-fix.patch, mlo-ext2.patch, + loadaddr-defaults.patch, mx53loco-bootscr.patch + +------------------------------------------------------------------- +Mon Oct 22 12:00:22 UTC 2012 - agraf@suse.com + +- fix origen by putting the ramdisk higher + +------------------------------------------------------------------- +Mon Aug 6 09:39:54 UTC 2012 - dmueller@suse.com + +- remove Marvell sources as they are non-free licensed (bnc#773824) + +------------------------------------------------------------------- +Thu Jul 26 18:21:44 UTC 2012 - agraf@suse.com + +- fix ext2 support for origen +- add origen-spl.bin for origen + +------------------------------------------------------------------- +Thu Jul 26 09:47:31 UTC 2012 - dmueller@suse.com + +- merge u-boot-tools + +------------------------------------------------------------------- +Wed Jul 25 21:05:08 UTC 2012 - agraf@suse.com + +- add ext2 support by default in mx53loco + +------------------------------------------------------------------- +Tue Jul 24 21:28:59 UTC 2012 - agraf@suse.com + +- add support for mx53loco + +------------------------------------------------------------------- +Tue Jul 24 11:25:42 UTC 2012 - dmueller@suse.com + +- remove u-boot-omap3beagle + +------------------------------------------------------------------- +Mon Jul 23 22:34:04 UTC 2012 - agraf@suse.com + +- bump to 2012.04.01 + - fixes bug in cmdline parsing + +------------------------------------------------------------------- +Mon Jul 23 22:26:47 UTC 2012 - agraf@suse.com + +- add calxeda highbank support + +------------------------------------------------------------------- +Thu Jul 12 12:51:56 UTC 2012 - agraf@suse.com + +- autoload boot.scr on beagle, so we can boot again + +------------------------------------------------------------------- +Thu Jul 12 08:12:15 UTC 2012 - agraf@suse.com + +- update to upstream u-boot 2012.04 + -> gets rid of linaro fork, only mainline now + -> gets us omap3 MLO support, no more need for x-loader + -> potentially fixes voltage issues on omap4 + +------------------------------------------------------------------- +Thu Jun 14 09:04:53 UTC 2012 - adrian@suse.de + +- add SUSE style conflicts to avoid installation of multiple + boot loaders + +------------------------------------------------------------------- +Tue Apr 17 11:59:55 UTC 2012 - joop.boonen@opensuse.org + +- Included u-boot.spec.in and gen_spec.sh in the spec file + +------------------------------------------------------------------- +Mon Feb 6 13:25:09 UTC 2012 - agraf@suse.com + +- use ext2 on panda + +------------------------------------------------------------------- +Tue Dec 20 02:36:05 UTC 2011 - agraf@suse.com + +- use ttyO2 as default console= on OMAP boards + +------------------------------------------------------------------- +Mon Dec 19 20:21:21 UTC 2011 - agraf@suse.com + +- add u8500_href and origen configs + +------------------------------------------------------------------- +Fri Dec 16 16:03:01 UTC 2011 - agraf@suse.com + +- fix lint failures + +------------------------------------------------------------------- +Fri Dec 16 14:46:53 CET 2011 - agraf@suse.com + +- don't install map + +------------------------------------------------------------------- +Fri Dec 16 02:16:19 UTC 2011 - agraf@suse.com + +- generalize spec file to be able to build for more boards +- add beagle board spec file +- remove boot.scr + +------------------------------------------------------------------- +Fri Dec 16 01:15:47 UTC 2011 - agraf@suse.com + +- rename to u-boot-omap4panda + +------------------------------------------------------------------- +Tue Dec 13 17:24:45 UTC 2011 - dkukawka@suse.de + +- new package based on u-boot-omap4panda but use linaro u-boot git + repo (http://git.linaro.org/git/boot/u-boot-linaro-stable.git) + instead of mainline u-boot. This package also contains the MLO + (this package obsoletes the x-loader package) + +------------------------------------------------------------------- +Tue Nov 29 22:53:44 UTC 2011 - joop.boonen@opensuse.org + +- COPYING CREDITS README are now in the standard package + +------------------------------------------------------------------- +Thu Nov 24 21:08:58 UTC 2011 - joop.boonen@opensuse.org + +- Corrected the links + +------------------------------------------------------------------- +Tue Nov 22 17:47:17 UTC 2011 - joop.boonen@opensuse.org + +- Build without u-boot tools as we have a u-boot-tools packages + +------------------------------------------------------------------- +Sun Nov 20 17:00:43 UTC 2011 - joop.boonen@opensuse.org + +- Cleaned the spec file up the spec file +- The name is the same as the package name + +------------------------------------------------------------------- +Sun Nov 13 13:13:39 UTC 2011 - joop.boonen@opensuse.org + +- Build u-boot according to http://elinux.org/Panda_How_to_MLO_&_u-boot +- Using .txt config file instead of .scr it's gerated via mkimage + +------------------------------------------------------------------- +Wed Nov 09 22:55:09 UTC 2011 - joop.boonen@opensuse.org + +- Used scr file based on http://elinux.org definition +- Build u-boot 20111109 +- Used the Meego panda u-boot as a base + +------------------------------------------------------------------- +Fri Feb 18 00:00:00 UTC 2011 - raghuveer.murthy@ti.com> +- 2010.09-MeeGo +- Fix for u-boot fails to compile on armv7hl, BMC#13140 + +------------------------------------------------------------------- +Thu Nov 18 00:00:00 UTC 2010 - peter.j.zhu@intel.com> +- 2010.09-MeeGo +- Don't build against i586, BMC#10159 + +------------------------------------------------------------------- +Tue Oct 10 00:00:00 UTC 2010 - nm@ti.com> +- 2010.09.rc1-MeeGo +- Added option to enable boot.scr generation and copy + +------------------------------------------------------------------- +Mon Oct 04 00:00:00 UTC 2010 - nm@ti.com> +- 2010.09.rc1-MeeGo +- Update to 2010.09 + +------------------------------------------------------------------- +Wed Sep 14 00:00:00 UTC 2010 - nm@ti.com> +- 2010.09.rc1-MeeGo +- Update to 2010.09.rc1 +- MeeGo customization +- Enabled PandaBoard, Beagleboard build + +------------------------------------------------------------------- +Wed Mar 31 00:00:00 UTC 2010 - silvan.calarco@mambasoft.it> +- 2009.11.1-1mamba +- update to 2009.11.1 + +------------------------------------------------------------------- +Wed Mar 31 00:00:00 UTC 2010 - diff --git a/u-boot-mvebudb-88f8040.spec b/u-boot-mvebudb-88f8040.spec new file mode 100644 index 0000000..8f433f0 --- /dev/null +++ b/u-boot-mvebudb-88f8040.spec @@ -0,0 +1,217 @@ +# +# spec file for package u-boot-mvebudb-88f8040 +# +# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon +# Copyright (c) 2007-2010 by Silvan Calarco +# +# All modifications and additions to the file contributed by third parties +# remain the property of their copyright owners, unless otherwise agreed +# upon. The license for this file, and modifications and additions to the +# file, is the same license as for the pristine package itself (unless the +# license for the pristine package is not an Open Source License, in which +# case the license is the MIT License). An "Open Source License" is a +# license that conforms to the Open Source Definition (Version 1.9) +# published by the Open Source Initiative. + +# Please submit bugfixes or comments via http://bugs.opensuse.org/ +# + + +%define mvebu_spl 0 +%define x_loader 0 +%define rockchip_spl 0 +%define sunxi_spl 0 +%define arndale_spl 0 +%define cuboxi_spl 0 +%define origen_spl 0 +%define udoo_spl 0 +%define imx6_spl 0 +%define socfpga_spl 0 + +%if "mvebudb-88f8040" == "rpi" || "mvebudb-88f8040" == "rpi2" || "mvebudb-88f8040" == "rpi332b" || "mvebudb-88f8040" == "rpi3" +%define is_rpi 1 +%endif + +# archive_version differs from version for RC version only +%define archive_version 2017.03 + +Name: u-boot-mvebudb-88f8040 +Version: 2017.03 +Release: 0 +Summary: The U-Boot firmware for the mvebudb-88f8040 platform +License: GPL-2.0 +Group: System/Boot +Url: http://www.denx.de/wiki/U-Boot +Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2 +Source2: arndale-bl1.img +Source3: update_git.sh +Source300: u-boot-rpmlintrc +Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch +Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch +Patch0003: 0003-Makefile-Fix-linking-with-modern-bi.patch +BuildRoot: %{_tmppath}/%{name}-%{version}-build +# Arndale board need DTC >= 1.4 +BuildRequires: bc +BuildRequires: dtc >= 1.4.0 +# u-boot-clearfog (tools/kwbimage.c) needs openssl to build +BuildRequires: libopenssl-devel +# u-boot-firefly-rk3288 needs python to build +BuildRequires: python +%if "%{name}" == "u-boot-qemu-ppce500" +# Owns /usr/share/qemu directory +BuildRequires: qemu +Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500 +%endif +%if 0%{?is_rpi} +# Owns /boot/vc directory +BuildRequires: raspberrypi-firmware +# For mountpoint +Requires(post): util-linux +%endif +Provides: u-boot-loader +Conflicts: otherproviders(u-boot-loader) +%if %x_loader == 1 +Obsoletes: x-loader-mvebudb-88f8040 +Provides: x-loader-mvebudb-88f8040 +%endif +ExclusiveArch: aarch64 + +%description +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 mvebudb-88f8040 platform. + +%package doc +Summary: Documentation for the U-Boot Firmware +Group: Documentation/Other + +%description doc +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. + +%prep +%setup -q -n u-boot-%{archive_version} +%patch0001 -p1 +%patch0002 -p1 +%patch0003 -p1 + +%build +export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s) +make %{?jobs:-j %jobs} CROSS_COMPILE= HOSTCFLAGS="$RPM_OPT_FLAGS" mvebu_db-88f8040_defconfig +%if 0%{?is_rpi} +# U-Boot is installed in the filesystem, so we are confident there's enough space. +echo "Attempting to enable fdt apply command (.dtbo) support." +echo "CONFIG_OF_LIBFDT_OVERLAY=y" >> .config +%endif +make %{?jobs:-j %jobs} CROSS_COMPILE= HOSTCFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes + +%if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring" +# Chromebook ARM (snow) and HP Chromebook 11 (spring) need a uImage format +export TEXT_START=$(awk '$NF == "_start" { printf "0x"$1 }' System.map) +./tools/mkimage -A arm -O linux -T kernel -C none -a $TEXT_START -e $TEXT_START -n uboot -d u-boot-dtb.bin u-boot.img +%endif + +%if %rockchip_spl == 1 +for t in ; do + ./tools/mkimage -n -d spl/u-boot-spl.bin -T $t u-boot-spl.$t +done +%endif + +%install +export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s) +export NO_BRP_STRIP_DEBUG=true +export NO_DEBUGINFO_STRIP_DEBUG=true +%define uboot_dir /boot +%if 0%{?is_rpi} +%define uboot_dir /boot/vc +%endif +%if "%{name}" == "u-boot-qemu-ppce500" +%define uboot_dir %{_datadir}/qemu +%endif +%if "%{name}" == "u-boot-jetson-tk1" +# tegra-uboot-flasher needs several intermediate files, under their original name. +for f in u-boot u-boot.dtb u-boot-dtb-tegra.bin u-boot-nodtb-tegra.bin spl/u-boot-spl; do + install -D -m 0644 $f %{buildroot}/boot/$f +done +%else +# 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. +if [ -f u-boot-dtb-tegra.bin ]; then + install -D -m 0644 u-boot-dtb-tegra.bin %{buildroot}%{uboot_dir}/u-boot.bin +elif [ -f u-boot-dtb.bin ]; then + install -D -m 0644 u-boot-dtb.bin %{buildroot}%{uboot_dir}/u-boot.bin +else + install -D -m 0644 u-boot.bin %{buildroot}%{uboot_dir}/u-boot.bin +fi +%if "%{name}" == "u-boot-qemu-ppce500" +mv %{buildroot}%{uboot_dir}/u-boot.bin %{buildroot}%{uboot_dir}/u-boot.e500 +%endif +%endif +%if %x_loader == 1 +install -D -m 0755 MLO %{buildroot}/boot/MLO +%endif +%if %origen_spl == 1 +install -D -m 0755 spl/origen-spl.bin %{buildroot}/boot/origen-spl.bin +%endif +%if %arndale_spl == 1 +install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin +install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img +%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 +install -D -m 0644 spl/u-boot-spl.bin %{buildroot}%{uboot_dir}/u-boot-spl.bin +for t in ; do + install -D -m 0644 u-boot-spl.$t %{buildroot}%{uboot_dir}/u-boot-spl.$t +done +%endif +%if %sunxi_spl == 1 +install -D -m 0755 spl/sunxi-spl.bin %{buildroot}/boot/sunxi-spl.bin +install -D -m 0755 u-boot-sunxi-with-spl.bin %{buildroot}/boot/u-boot-sunxi-with-spl.bin +%endif +%if %cuboxi_spl == 1 +install -D -m 0755 SPL %{buildroot}/boot/cuboxi-spl.bin +%endif +%if %udoo_spl == 1 +install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin +%endif +%if %imx6_spl == 1 +install -D -m 0755 SPL %{buildroot}/boot/imx6-spl.bin +%endif +%if %socfpga_spl == 1 +install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp +%endif + +%if 0%{?is_rpi} +%post +# On the Raspberry Pi we chain-load u-boot.bin from bootcode.bin via config.txt. +# It needs to be on the first FAT partition, wherever we mounted it. +# a) Unmounted, then do nothing. +# b) Mounted as /boot/vc, then they're in the right place already. +# c) Mounted as /boot/efi, with /boot/vc as symlink, then nothing to be done. +# d) Mounted as /boot/efi, with /boot/vc a directory, then copy files over. +if mountpoint -q /boot/efi; then + [[ "$(readlink -f /boot/efi)" -ef "$(readlink -f %{uboot_dir})" ]] || cp %{uboot_dir}/u-boot.bin /boot/efi/ +fi +%endif + +%files +%defattr(-,root,root) +%{uboot_dir}/* +%doc Licenses/gpl-2.0.txt README + +%files doc +%defattr(-,root,root) +# Generic documents +%doc doc/README.JFFS2 doc/README.JFFS2_NAND doc/README.commands +%doc doc/README.autoboot doc/README.commands doc/README.console doc/README.dns +%doc doc/README.hwconfig doc/README.nand doc/README.NetConsole doc/README.serial_multi +%doc doc/README.SNTP doc/README.standalone doc/README.update doc/README.usb +%doc doc/README.video doc/README.VLAN doc/README.silent doc/README.POST +# Copy some useful kermit scripts as well +%doc tools/kermit/dot.kermrc tools/kermit/flash_param tools/kermit/send_cmd tools/kermit/send_image +# Now any h/w dependent Documentation +%doc doc/README.ARM-memory-map + +%changelog diff --git a/u-boot-mx53loco.changes b/u-boot-mx53loco.changes index 9364ee2..4e8877d 100644 --- a/u-boot-mx53loco.changes +++ b/u-boot-mx53loco.changes @@ -1,3 +1,38 @@ +------------------------------------------------------------------- +Sun Apr 9 18:24:30 UTC 2017 - afaerber@suse.de + +- Add tinker-rk3288 +- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.03 +* Fix firefly-rk3288 and tinker-rk3288 build with binutils 2.28. + 0003-Makefile-Fix-linking-with-modern-bi.patch +- U-Boot has no CFLAGS, so apply $RPM_OPT_FLAGS to HOSTCFLAGS instead + +------------------------------------------------------------------- +Mon Mar 20 11:10:57 UTC 2017 - afaerber@suse.de + +- Tidy Raspberry Pi conditionals +- Enable CONFIG_OF_LIBFDT_OVERLAY for Raspberry Pi only for now + +------------------------------------------------------------------- +Mon Mar 20 09:43:14 UTC 2017 - afaerber@suse.de + +- Add mvebudb-88f{3720,7040,8040} + +------------------------------------------------------------------- +Tue Mar 14 08:47:33 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.03 + +------------------------------------------------------------------- +Wed Mar 1 09:36:39 UTC 2017 - guillaume@opensuse.org + +- Add libopenssl-devel as BuildRequires (needed by some configs) + +------------------------------------------------------------------- +Tue Feb 28 08:37:55 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.03-rc3 + ------------------------------------------------------------------- Wed Feb 22 13:38:25 UTC 2017 - hsehic@suse.com diff --git a/u-boot-mx53loco.spec b/u-boot-mx53loco.spec index 0a0b45b..59b95ea 100644 --- a/u-boot-mx53loco.spec +++ b/u-boot-mx53loco.spec @@ -29,11 +29,15 @@ %define imx6_spl 0 %define socfpga_spl 0 +%if "mx53loco" == "rpi" || "mx53loco" == "rpi2" || "mx53loco" == "rpi332b" || "mx53loco" == "rpi3" +%define is_rpi 1 +%endif + # archive_version differs from version for RC version only -%define archive_version 2017.01 +%define archive_version 2017.03 Name: u-boot-mx53loco -Version: 2017.01 +Version: 2017.03 Release: 0 Summary: The U-Boot firmware for the mx53loco platform License: GPL-2.0 @@ -45,10 +49,13 @@ Source3: update_git.sh Source300: u-boot-rpmlintrc Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch +Patch0003: 0003-Makefile-Fix-linking-with-modern-bi.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build # Arndale board need DTC >= 1.4 BuildRequires: bc BuildRequires: dtc >= 1.4.0 +# u-boot-clearfog (tools/kwbimage.c) needs openssl to build +BuildRequires: libopenssl-devel # u-boot-firefly-rk3288 needs python to build BuildRequires: python %if "%{name}" == "u-boot-qemu-ppce500" @@ -56,7 +63,7 @@ BuildRequires: python BuildRequires: qemu Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500 %endif -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} # Owns /boot/vc directory BuildRequires: raspberrypi-firmware # For mountpoint @@ -86,16 +93,24 @@ This package contains documentation for U-Boot firmware. %setup -q -n u-boot-%{archive_version} %patch0001 -p1 %patch0002 -p1 +%patch0003 -p1 %build export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s) -make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" mx53loco_defconfig -make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes +make %{?jobs:-j %jobs} CROSS_COMPILE= HOSTCFLAGS="$RPM_OPT_FLAGS" mx53loco_defconfig +%if 0%{?is_rpi} +# U-Boot is installed in the filesystem, so we are confident there's enough space. +echo "Attempting to enable fdt apply command (.dtbo) support." +echo "CONFIG_OF_LIBFDT_OVERLAY=y" >> .config +%endif +make %{?jobs:-j %jobs} CROSS_COMPILE= HOSTCFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes + %if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring" # Chromebook ARM (snow) and HP Chromebook 11 (spring) need a uImage format export TEXT_START=$(awk '$NF == "_start" { printf "0x"$1 }' System.map) ./tools/mkimage -A arm -O linux -T kernel -C none -a $TEXT_START -e $TEXT_START -n uboot -d u-boot-dtb.bin u-boot.img %endif + %if %rockchip_spl == 1 for t in ; do ./tools/mkimage -n -d spl/u-boot-spl.bin -T $t u-boot-spl.$t @@ -107,7 +122,7 @@ export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | export NO_BRP_STRIP_DEBUG=true export NO_DEBUGINFO_STRIP_DEBUG=true %define uboot_dir /boot -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} %define uboot_dir /boot/vc %endif %if "%{name}" == "u-boot-qemu-ppce500" @@ -168,7 +183,7 @@ install -D -m 0755 SPL %{buildroot}/boot/imx6-spl.bin install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp %endif -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} %post # On the Raspberry Pi we chain-load u-boot.bin from bootcode.bin via config.txt. # It needs to be on the first FAT partition, wherever we mounted it. diff --git a/u-boot-mx6cuboxi.changes b/u-boot-mx6cuboxi.changes index 9364ee2..4e8877d 100644 --- a/u-boot-mx6cuboxi.changes +++ b/u-boot-mx6cuboxi.changes @@ -1,3 +1,38 @@ +------------------------------------------------------------------- +Sun Apr 9 18:24:30 UTC 2017 - afaerber@suse.de + +- Add tinker-rk3288 +- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.03 +* Fix firefly-rk3288 and tinker-rk3288 build with binutils 2.28. + 0003-Makefile-Fix-linking-with-modern-bi.patch +- U-Boot has no CFLAGS, so apply $RPM_OPT_FLAGS to HOSTCFLAGS instead + +------------------------------------------------------------------- +Mon Mar 20 11:10:57 UTC 2017 - afaerber@suse.de + +- Tidy Raspberry Pi conditionals +- Enable CONFIG_OF_LIBFDT_OVERLAY for Raspberry Pi only for now + +------------------------------------------------------------------- +Mon Mar 20 09:43:14 UTC 2017 - afaerber@suse.de + +- Add mvebudb-88f{3720,7040,8040} + +------------------------------------------------------------------- +Tue Mar 14 08:47:33 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.03 + +------------------------------------------------------------------- +Wed Mar 1 09:36:39 UTC 2017 - guillaume@opensuse.org + +- Add libopenssl-devel as BuildRequires (needed by some configs) + +------------------------------------------------------------------- +Tue Feb 28 08:37:55 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.03-rc3 + ------------------------------------------------------------------- Wed Feb 22 13:38:25 UTC 2017 - hsehic@suse.com diff --git a/u-boot-mx6cuboxi.spec b/u-boot-mx6cuboxi.spec index d5fed5d..69238f9 100644 --- a/u-boot-mx6cuboxi.spec +++ b/u-boot-mx6cuboxi.spec @@ -29,11 +29,15 @@ %define imx6_spl 1 %define socfpga_spl 0 +%if "mx6cuboxi" == "rpi" || "mx6cuboxi" == "rpi2" || "mx6cuboxi" == "rpi332b" || "mx6cuboxi" == "rpi3" +%define is_rpi 1 +%endif + # archive_version differs from version for RC version only -%define archive_version 2017.01 +%define archive_version 2017.03 Name: u-boot-mx6cuboxi -Version: 2017.01 +Version: 2017.03 Release: 0 Summary: The U-Boot firmware for the mx6cuboxi platform License: GPL-2.0 @@ -45,10 +49,13 @@ Source3: update_git.sh Source300: u-boot-rpmlintrc Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch +Patch0003: 0003-Makefile-Fix-linking-with-modern-bi.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build # Arndale board need DTC >= 1.4 BuildRequires: bc BuildRequires: dtc >= 1.4.0 +# u-boot-clearfog (tools/kwbimage.c) needs openssl to build +BuildRequires: libopenssl-devel # u-boot-firefly-rk3288 needs python to build BuildRequires: python %if "%{name}" == "u-boot-qemu-ppce500" @@ -56,7 +63,7 @@ BuildRequires: python BuildRequires: qemu Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500 %endif -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} # Owns /boot/vc directory BuildRequires: raspberrypi-firmware # For mountpoint @@ -86,16 +93,24 @@ This package contains documentation for U-Boot firmware. %setup -q -n u-boot-%{archive_version} %patch0001 -p1 %patch0002 -p1 +%patch0003 -p1 %build export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s) -make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" mx6cuboxi_defconfig -make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes +make %{?jobs:-j %jobs} CROSS_COMPILE= HOSTCFLAGS="$RPM_OPT_FLAGS" mx6cuboxi_defconfig +%if 0%{?is_rpi} +# U-Boot is installed in the filesystem, so we are confident there's enough space. +echo "Attempting to enable fdt apply command (.dtbo) support." +echo "CONFIG_OF_LIBFDT_OVERLAY=y" >> .config +%endif +make %{?jobs:-j %jobs} CROSS_COMPILE= HOSTCFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes + %if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring" # Chromebook ARM (snow) and HP Chromebook 11 (spring) need a uImage format export TEXT_START=$(awk '$NF == "_start" { printf "0x"$1 }' System.map) ./tools/mkimage -A arm -O linux -T kernel -C none -a $TEXT_START -e $TEXT_START -n uboot -d u-boot-dtb.bin u-boot.img %endif + %if %rockchip_spl == 1 for t in ; do ./tools/mkimage -n -d spl/u-boot-spl.bin -T $t u-boot-spl.$t @@ -107,7 +122,7 @@ export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | export NO_BRP_STRIP_DEBUG=true export NO_DEBUGINFO_STRIP_DEBUG=true %define uboot_dir /boot -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} %define uboot_dir /boot/vc %endif %if "%{name}" == "u-boot-qemu-ppce500" @@ -168,7 +183,7 @@ install -D -m 0755 SPL %{buildroot}/boot/imx6-spl.bin install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp %endif -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} %post # On the Raspberry Pi we chain-load u-boot.bin from bootcode.bin via config.txt. # It needs to be on the first FAT partition, wherever we mounted it. diff --git a/u-boot-mx6qsabrelite.changes b/u-boot-mx6qsabrelite.changes index 9364ee2..4e8877d 100644 --- a/u-boot-mx6qsabrelite.changes +++ b/u-boot-mx6qsabrelite.changes @@ -1,3 +1,38 @@ +------------------------------------------------------------------- +Sun Apr 9 18:24:30 UTC 2017 - afaerber@suse.de + +- Add tinker-rk3288 +- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.03 +* Fix firefly-rk3288 and tinker-rk3288 build with binutils 2.28. + 0003-Makefile-Fix-linking-with-modern-bi.patch +- U-Boot has no CFLAGS, so apply $RPM_OPT_FLAGS to HOSTCFLAGS instead + +------------------------------------------------------------------- +Mon Mar 20 11:10:57 UTC 2017 - afaerber@suse.de + +- Tidy Raspberry Pi conditionals +- Enable CONFIG_OF_LIBFDT_OVERLAY for Raspberry Pi only for now + +------------------------------------------------------------------- +Mon Mar 20 09:43:14 UTC 2017 - afaerber@suse.de + +- Add mvebudb-88f{3720,7040,8040} + +------------------------------------------------------------------- +Tue Mar 14 08:47:33 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.03 + +------------------------------------------------------------------- +Wed Mar 1 09:36:39 UTC 2017 - guillaume@opensuse.org + +- Add libopenssl-devel as BuildRequires (needed by some configs) + +------------------------------------------------------------------- +Tue Feb 28 08:37:55 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.03-rc3 + ------------------------------------------------------------------- Wed Feb 22 13:38:25 UTC 2017 - hsehic@suse.com diff --git a/u-boot-mx6qsabrelite.spec b/u-boot-mx6qsabrelite.spec index 075f8ff..485fe4e 100644 --- a/u-boot-mx6qsabrelite.spec +++ b/u-boot-mx6qsabrelite.spec @@ -29,11 +29,15 @@ %define imx6_spl 0 %define socfpga_spl 0 +%if "mx6qsabrelite" == "rpi" || "mx6qsabrelite" == "rpi2" || "mx6qsabrelite" == "rpi332b" || "mx6qsabrelite" == "rpi3" +%define is_rpi 1 +%endif + # archive_version differs from version for RC version only -%define archive_version 2017.01 +%define archive_version 2017.03 Name: u-boot-mx6qsabrelite -Version: 2017.01 +Version: 2017.03 Release: 0 Summary: The U-Boot firmware for the mx6qsabrelite platform License: GPL-2.0 @@ -45,10 +49,13 @@ Source3: update_git.sh Source300: u-boot-rpmlintrc Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch +Patch0003: 0003-Makefile-Fix-linking-with-modern-bi.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build # Arndale board need DTC >= 1.4 BuildRequires: bc BuildRequires: dtc >= 1.4.0 +# u-boot-clearfog (tools/kwbimage.c) needs openssl to build +BuildRequires: libopenssl-devel # u-boot-firefly-rk3288 needs python to build BuildRequires: python %if "%{name}" == "u-boot-qemu-ppce500" @@ -56,7 +63,7 @@ BuildRequires: python BuildRequires: qemu Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500 %endif -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} # Owns /boot/vc directory BuildRequires: raspberrypi-firmware # For mountpoint @@ -86,16 +93,24 @@ This package contains documentation for U-Boot firmware. %setup -q -n u-boot-%{archive_version} %patch0001 -p1 %patch0002 -p1 +%patch0003 -p1 %build export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s) -make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" mx6qsabrelite_defconfig -make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes +make %{?jobs:-j %jobs} CROSS_COMPILE= HOSTCFLAGS="$RPM_OPT_FLAGS" mx6qsabrelite_defconfig +%if 0%{?is_rpi} +# U-Boot is installed in the filesystem, so we are confident there's enough space. +echo "Attempting to enable fdt apply command (.dtbo) support." +echo "CONFIG_OF_LIBFDT_OVERLAY=y" >> .config +%endif +make %{?jobs:-j %jobs} CROSS_COMPILE= HOSTCFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes + %if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring" # Chromebook ARM (snow) and HP Chromebook 11 (spring) need a uImage format export TEXT_START=$(awk '$NF == "_start" { printf "0x"$1 }' System.map) ./tools/mkimage -A arm -O linux -T kernel -C none -a $TEXT_START -e $TEXT_START -n uboot -d u-boot-dtb.bin u-boot.img %endif + %if %rockchip_spl == 1 for t in ; do ./tools/mkimage -n -d spl/u-boot-spl.bin -T $t u-boot-spl.$t @@ -107,7 +122,7 @@ export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | export NO_BRP_STRIP_DEBUG=true export NO_DEBUGINFO_STRIP_DEBUG=true %define uboot_dir /boot -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} %define uboot_dir /boot/vc %endif %if "%{name}" == "u-boot-qemu-ppce500" @@ -168,7 +183,7 @@ install -D -m 0755 SPL %{buildroot}/boot/imx6-spl.bin install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp %endif -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} %post # On the Raspberry Pi we chain-load u-boot.bin from bootcode.bin via config.txt. # It needs to be on the first FAT partition, wherever we mounted it. diff --git a/u-boot-nanopineo.changes b/u-boot-nanopineo.changes index 9364ee2..4e8877d 100644 --- a/u-boot-nanopineo.changes +++ b/u-boot-nanopineo.changes @@ -1,3 +1,38 @@ +------------------------------------------------------------------- +Sun Apr 9 18:24:30 UTC 2017 - afaerber@suse.de + +- Add tinker-rk3288 +- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.03 +* Fix firefly-rk3288 and tinker-rk3288 build with binutils 2.28. + 0003-Makefile-Fix-linking-with-modern-bi.patch +- U-Boot has no CFLAGS, so apply $RPM_OPT_FLAGS to HOSTCFLAGS instead + +------------------------------------------------------------------- +Mon Mar 20 11:10:57 UTC 2017 - afaerber@suse.de + +- Tidy Raspberry Pi conditionals +- Enable CONFIG_OF_LIBFDT_OVERLAY for Raspberry Pi only for now + +------------------------------------------------------------------- +Mon Mar 20 09:43:14 UTC 2017 - afaerber@suse.de + +- Add mvebudb-88f{3720,7040,8040} + +------------------------------------------------------------------- +Tue Mar 14 08:47:33 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.03 + +------------------------------------------------------------------- +Wed Mar 1 09:36:39 UTC 2017 - guillaume@opensuse.org + +- Add libopenssl-devel as BuildRequires (needed by some configs) + +------------------------------------------------------------------- +Tue Feb 28 08:37:55 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.03-rc3 + ------------------------------------------------------------------- Wed Feb 22 13:38:25 UTC 2017 - hsehic@suse.com diff --git a/u-boot-nanopineo.spec b/u-boot-nanopineo.spec index 5a8da3d..e299f69 100644 --- a/u-boot-nanopineo.spec +++ b/u-boot-nanopineo.spec @@ -29,11 +29,15 @@ %define imx6_spl 0 %define socfpga_spl 0 +%if "nanopineo" == "rpi" || "nanopineo" == "rpi2" || "nanopineo" == "rpi332b" || "nanopineo" == "rpi3" +%define is_rpi 1 +%endif + # archive_version differs from version for RC version only -%define archive_version 2017.01 +%define archive_version 2017.03 Name: u-boot-nanopineo -Version: 2017.01 +Version: 2017.03 Release: 0 Summary: The U-Boot firmware for the nanopineo platform License: GPL-2.0 @@ -45,10 +49,13 @@ Source3: update_git.sh Source300: u-boot-rpmlintrc Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch +Patch0003: 0003-Makefile-Fix-linking-with-modern-bi.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build # Arndale board need DTC >= 1.4 BuildRequires: bc BuildRequires: dtc >= 1.4.0 +# u-boot-clearfog (tools/kwbimage.c) needs openssl to build +BuildRequires: libopenssl-devel # u-boot-firefly-rk3288 needs python to build BuildRequires: python %if "%{name}" == "u-boot-qemu-ppce500" @@ -56,7 +63,7 @@ BuildRequires: python BuildRequires: qemu Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500 %endif -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} # Owns /boot/vc directory BuildRequires: raspberrypi-firmware # For mountpoint @@ -86,16 +93,24 @@ This package contains documentation for U-Boot firmware. %setup -q -n u-boot-%{archive_version} %patch0001 -p1 %patch0002 -p1 +%patch0003 -p1 %build export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s) -make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" nanopi_neo_defconfig -make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes +make %{?jobs:-j %jobs} CROSS_COMPILE= HOSTCFLAGS="$RPM_OPT_FLAGS" nanopi_neo_defconfig +%if 0%{?is_rpi} +# U-Boot is installed in the filesystem, so we are confident there's enough space. +echo "Attempting to enable fdt apply command (.dtbo) support." +echo "CONFIG_OF_LIBFDT_OVERLAY=y" >> .config +%endif +make %{?jobs:-j %jobs} CROSS_COMPILE= HOSTCFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes + %if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring" # Chromebook ARM (snow) and HP Chromebook 11 (spring) need a uImage format export TEXT_START=$(awk '$NF == "_start" { printf "0x"$1 }' System.map) ./tools/mkimage -A arm -O linux -T kernel -C none -a $TEXT_START -e $TEXT_START -n uboot -d u-boot-dtb.bin u-boot.img %endif + %if %rockchip_spl == 1 for t in ; do ./tools/mkimage -n -d spl/u-boot-spl.bin -T $t u-boot-spl.$t @@ -107,7 +122,7 @@ export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | export NO_BRP_STRIP_DEBUG=true export NO_DEBUGINFO_STRIP_DEBUG=true %define uboot_dir /boot -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} %define uboot_dir /boot/vc %endif %if "%{name}" == "u-boot-qemu-ppce500" @@ -168,7 +183,7 @@ install -D -m 0755 SPL %{buildroot}/boot/imx6-spl.bin install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp %endif -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} %post # On the Raspberry Pi we chain-load u-boot.bin from bootcode.bin via config.txt. # It needs to be on the first FAT partition, wherever we mounted it. diff --git a/u-boot-odroid-c2.changes b/u-boot-odroid-c2.changes index 9364ee2..4e8877d 100644 --- a/u-boot-odroid-c2.changes +++ b/u-boot-odroid-c2.changes @@ -1,3 +1,38 @@ +------------------------------------------------------------------- +Sun Apr 9 18:24:30 UTC 2017 - afaerber@suse.de + +- Add tinker-rk3288 +- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.03 +* Fix firefly-rk3288 and tinker-rk3288 build with binutils 2.28. + 0003-Makefile-Fix-linking-with-modern-bi.patch +- U-Boot has no CFLAGS, so apply $RPM_OPT_FLAGS to HOSTCFLAGS instead + +------------------------------------------------------------------- +Mon Mar 20 11:10:57 UTC 2017 - afaerber@suse.de + +- Tidy Raspberry Pi conditionals +- Enable CONFIG_OF_LIBFDT_OVERLAY for Raspberry Pi only for now + +------------------------------------------------------------------- +Mon Mar 20 09:43:14 UTC 2017 - afaerber@suse.de + +- Add mvebudb-88f{3720,7040,8040} + +------------------------------------------------------------------- +Tue Mar 14 08:47:33 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.03 + +------------------------------------------------------------------- +Wed Mar 1 09:36:39 UTC 2017 - guillaume@opensuse.org + +- Add libopenssl-devel as BuildRequires (needed by some configs) + +------------------------------------------------------------------- +Tue Feb 28 08:37:55 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.03-rc3 + ------------------------------------------------------------------- Wed Feb 22 13:38:25 UTC 2017 - hsehic@suse.com diff --git a/u-boot-odroid-c2.spec b/u-boot-odroid-c2.spec index 514359e..1c30439 100644 --- a/u-boot-odroid-c2.spec +++ b/u-boot-odroid-c2.spec @@ -29,11 +29,15 @@ %define imx6_spl 0 %define socfpga_spl 0 +%if "odroid-c2" == "rpi" || "odroid-c2" == "rpi2" || "odroid-c2" == "rpi332b" || "odroid-c2" == "rpi3" +%define is_rpi 1 +%endif + # archive_version differs from version for RC version only -%define archive_version 2017.01 +%define archive_version 2017.03 Name: u-boot-odroid-c2 -Version: 2017.01 +Version: 2017.03 Release: 0 Summary: The U-Boot firmware for the odroid-c2 platform License: GPL-2.0 @@ -45,10 +49,13 @@ Source3: update_git.sh Source300: u-boot-rpmlintrc Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch +Patch0003: 0003-Makefile-Fix-linking-with-modern-bi.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build # Arndale board need DTC >= 1.4 BuildRequires: bc BuildRequires: dtc >= 1.4.0 +# u-boot-clearfog (tools/kwbimage.c) needs openssl to build +BuildRequires: libopenssl-devel # u-boot-firefly-rk3288 needs python to build BuildRequires: python %if "%{name}" == "u-boot-qemu-ppce500" @@ -56,7 +63,7 @@ BuildRequires: python BuildRequires: qemu Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500 %endif -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} # Owns /boot/vc directory BuildRequires: raspberrypi-firmware # For mountpoint @@ -86,16 +93,24 @@ This package contains documentation for U-Boot firmware. %setup -q -n u-boot-%{archive_version} %patch0001 -p1 %patch0002 -p1 +%patch0003 -p1 %build export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s) -make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" odroid-c2_defconfig -make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes +make %{?jobs:-j %jobs} CROSS_COMPILE= HOSTCFLAGS="$RPM_OPT_FLAGS" odroid-c2_defconfig +%if 0%{?is_rpi} +# U-Boot is installed in the filesystem, so we are confident there's enough space. +echo "Attempting to enable fdt apply command (.dtbo) support." +echo "CONFIG_OF_LIBFDT_OVERLAY=y" >> .config +%endif +make %{?jobs:-j %jobs} CROSS_COMPILE= HOSTCFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes + %if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring" # Chromebook ARM (snow) and HP Chromebook 11 (spring) need a uImage format export TEXT_START=$(awk '$NF == "_start" { printf "0x"$1 }' System.map) ./tools/mkimage -A arm -O linux -T kernel -C none -a $TEXT_START -e $TEXT_START -n uboot -d u-boot-dtb.bin u-boot.img %endif + %if %rockchip_spl == 1 for t in ; do ./tools/mkimage -n -d spl/u-boot-spl.bin -T $t u-boot-spl.$t @@ -107,7 +122,7 @@ export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | export NO_BRP_STRIP_DEBUG=true export NO_DEBUGINFO_STRIP_DEBUG=true %define uboot_dir /boot -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} %define uboot_dir /boot/vc %endif %if "%{name}" == "u-boot-qemu-ppce500" @@ -168,7 +183,7 @@ install -D -m 0755 SPL %{buildroot}/boot/imx6-spl.bin install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp %endif -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} %post # On the Raspberry Pi we chain-load u-boot.bin from bootcode.bin via config.txt. # It needs to be on the first FAT partition, wherever we mounted it. diff --git a/u-boot-odroid-xu3.changes b/u-boot-odroid-xu3.changes index 9364ee2..4e8877d 100644 --- a/u-boot-odroid-xu3.changes +++ b/u-boot-odroid-xu3.changes @@ -1,3 +1,38 @@ +------------------------------------------------------------------- +Sun Apr 9 18:24:30 UTC 2017 - afaerber@suse.de + +- Add tinker-rk3288 +- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.03 +* Fix firefly-rk3288 and tinker-rk3288 build with binutils 2.28. + 0003-Makefile-Fix-linking-with-modern-bi.patch +- U-Boot has no CFLAGS, so apply $RPM_OPT_FLAGS to HOSTCFLAGS instead + +------------------------------------------------------------------- +Mon Mar 20 11:10:57 UTC 2017 - afaerber@suse.de + +- Tidy Raspberry Pi conditionals +- Enable CONFIG_OF_LIBFDT_OVERLAY for Raspberry Pi only for now + +------------------------------------------------------------------- +Mon Mar 20 09:43:14 UTC 2017 - afaerber@suse.de + +- Add mvebudb-88f{3720,7040,8040} + +------------------------------------------------------------------- +Tue Mar 14 08:47:33 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.03 + +------------------------------------------------------------------- +Wed Mar 1 09:36:39 UTC 2017 - guillaume@opensuse.org + +- Add libopenssl-devel as BuildRequires (needed by some configs) + +------------------------------------------------------------------- +Tue Feb 28 08:37:55 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.03-rc3 + ------------------------------------------------------------------- Wed Feb 22 13:38:25 UTC 2017 - hsehic@suse.com diff --git a/u-boot-odroid-xu3.spec b/u-boot-odroid-xu3.spec index 01c2a8e..139b16a 100644 --- a/u-boot-odroid-xu3.spec +++ b/u-boot-odroid-xu3.spec @@ -29,11 +29,15 @@ %define imx6_spl 0 %define socfpga_spl 0 +%if "odroid-xu3" == "rpi" || "odroid-xu3" == "rpi2" || "odroid-xu3" == "rpi332b" || "odroid-xu3" == "rpi3" +%define is_rpi 1 +%endif + # archive_version differs from version for RC version only -%define archive_version 2017.01 +%define archive_version 2017.03 Name: u-boot-odroid-xu3 -Version: 2017.01 +Version: 2017.03 Release: 0 Summary: The U-Boot firmware for the odroid-xu3 platform License: GPL-2.0 @@ -45,10 +49,13 @@ Source3: update_git.sh Source300: u-boot-rpmlintrc Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch +Patch0003: 0003-Makefile-Fix-linking-with-modern-bi.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build # Arndale board need DTC >= 1.4 BuildRequires: bc BuildRequires: dtc >= 1.4.0 +# u-boot-clearfog (tools/kwbimage.c) needs openssl to build +BuildRequires: libopenssl-devel # u-boot-firefly-rk3288 needs python to build BuildRequires: python %if "%{name}" == "u-boot-qemu-ppce500" @@ -56,7 +63,7 @@ BuildRequires: python BuildRequires: qemu Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500 %endif -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} # Owns /boot/vc directory BuildRequires: raspberrypi-firmware # For mountpoint @@ -86,16 +93,24 @@ This package contains documentation for U-Boot firmware. %setup -q -n u-boot-%{archive_version} %patch0001 -p1 %patch0002 -p1 +%patch0003 -p1 %build export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s) -make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" odroid-xu3_defconfig -make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes +make %{?jobs:-j %jobs} CROSS_COMPILE= HOSTCFLAGS="$RPM_OPT_FLAGS" odroid-xu3_defconfig +%if 0%{?is_rpi} +# U-Boot is installed in the filesystem, so we are confident there's enough space. +echo "Attempting to enable fdt apply command (.dtbo) support." +echo "CONFIG_OF_LIBFDT_OVERLAY=y" >> .config +%endif +make %{?jobs:-j %jobs} CROSS_COMPILE= HOSTCFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes + %if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring" # Chromebook ARM (snow) and HP Chromebook 11 (spring) need a uImage format export TEXT_START=$(awk '$NF == "_start" { printf "0x"$1 }' System.map) ./tools/mkimage -A arm -O linux -T kernel -C none -a $TEXT_START -e $TEXT_START -n uboot -d u-boot-dtb.bin u-boot.img %endif + %if %rockchip_spl == 1 for t in ; do ./tools/mkimage -n -d spl/u-boot-spl.bin -T $t u-boot-spl.$t @@ -107,7 +122,7 @@ export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | export NO_BRP_STRIP_DEBUG=true export NO_DEBUGINFO_STRIP_DEBUG=true %define uboot_dir /boot -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} %define uboot_dir /boot/vc %endif %if "%{name}" == "u-boot-qemu-ppce500" @@ -168,7 +183,7 @@ install -D -m 0755 SPL %{buildroot}/boot/imx6-spl.bin install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp %endif -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} %post # On the Raspberry Pi we chain-load u-boot.bin from bootcode.bin via config.txt. # It needs to be on the first FAT partition, wherever we mounted it. diff --git a/u-boot-odroid.changes b/u-boot-odroid.changes index 9364ee2..4e8877d 100644 --- a/u-boot-odroid.changes +++ b/u-boot-odroid.changes @@ -1,3 +1,38 @@ +------------------------------------------------------------------- +Sun Apr 9 18:24:30 UTC 2017 - afaerber@suse.de + +- Add tinker-rk3288 +- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.03 +* Fix firefly-rk3288 and tinker-rk3288 build with binutils 2.28. + 0003-Makefile-Fix-linking-with-modern-bi.patch +- U-Boot has no CFLAGS, so apply $RPM_OPT_FLAGS to HOSTCFLAGS instead + +------------------------------------------------------------------- +Mon Mar 20 11:10:57 UTC 2017 - afaerber@suse.de + +- Tidy Raspberry Pi conditionals +- Enable CONFIG_OF_LIBFDT_OVERLAY for Raspberry Pi only for now + +------------------------------------------------------------------- +Mon Mar 20 09:43:14 UTC 2017 - afaerber@suse.de + +- Add mvebudb-88f{3720,7040,8040} + +------------------------------------------------------------------- +Tue Mar 14 08:47:33 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.03 + +------------------------------------------------------------------- +Wed Mar 1 09:36:39 UTC 2017 - guillaume@opensuse.org + +- Add libopenssl-devel as BuildRequires (needed by some configs) + +------------------------------------------------------------------- +Tue Feb 28 08:37:55 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.03-rc3 + ------------------------------------------------------------------- Wed Feb 22 13:38:25 UTC 2017 - hsehic@suse.com diff --git a/u-boot-odroid.spec b/u-boot-odroid.spec index 7e385e0..7f9e652 100644 --- a/u-boot-odroid.spec +++ b/u-boot-odroid.spec @@ -29,11 +29,15 @@ %define imx6_spl 0 %define socfpga_spl 0 +%if "odroid" == "rpi" || "odroid" == "rpi2" || "odroid" == "rpi332b" || "odroid" == "rpi3" +%define is_rpi 1 +%endif + # archive_version differs from version for RC version only -%define archive_version 2017.01 +%define archive_version 2017.03 Name: u-boot-odroid -Version: 2017.01 +Version: 2017.03 Release: 0 Summary: The U-Boot firmware for the odroid platform License: GPL-2.0 @@ -45,10 +49,13 @@ Source3: update_git.sh Source300: u-boot-rpmlintrc Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch +Patch0003: 0003-Makefile-Fix-linking-with-modern-bi.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build # Arndale board need DTC >= 1.4 BuildRequires: bc BuildRequires: dtc >= 1.4.0 +# u-boot-clearfog (tools/kwbimage.c) needs openssl to build +BuildRequires: libopenssl-devel # u-boot-firefly-rk3288 needs python to build BuildRequires: python %if "%{name}" == "u-boot-qemu-ppce500" @@ -56,7 +63,7 @@ BuildRequires: python BuildRequires: qemu Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500 %endif -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} # Owns /boot/vc directory BuildRequires: raspberrypi-firmware # For mountpoint @@ -86,16 +93,24 @@ This package contains documentation for U-Boot firmware. %setup -q -n u-boot-%{archive_version} %patch0001 -p1 %patch0002 -p1 +%patch0003 -p1 %build export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s) -make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" odroid_defconfig -make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes +make %{?jobs:-j %jobs} CROSS_COMPILE= HOSTCFLAGS="$RPM_OPT_FLAGS" odroid_defconfig +%if 0%{?is_rpi} +# U-Boot is installed in the filesystem, so we are confident there's enough space. +echo "Attempting to enable fdt apply command (.dtbo) support." +echo "CONFIG_OF_LIBFDT_OVERLAY=y" >> .config +%endif +make %{?jobs:-j %jobs} CROSS_COMPILE= HOSTCFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes + %if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring" # Chromebook ARM (snow) and HP Chromebook 11 (spring) need a uImage format export TEXT_START=$(awk '$NF == "_start" { printf "0x"$1 }' System.map) ./tools/mkimage -A arm -O linux -T kernel -C none -a $TEXT_START -e $TEXT_START -n uboot -d u-boot-dtb.bin u-boot.img %endif + %if %rockchip_spl == 1 for t in ; do ./tools/mkimage -n -d spl/u-boot-spl.bin -T $t u-boot-spl.$t @@ -107,7 +122,7 @@ export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | export NO_BRP_STRIP_DEBUG=true export NO_DEBUGINFO_STRIP_DEBUG=true %define uboot_dir /boot -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} %define uboot_dir /boot/vc %endif %if "%{name}" == "u-boot-qemu-ppce500" @@ -168,7 +183,7 @@ install -D -m 0755 SPL %{buildroot}/boot/imx6-spl.bin install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp %endif -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} %post # On the Raspberry Pi we chain-load u-boot.bin from bootcode.bin via config.txt. # It needs to be on the first FAT partition, wherever we mounted it. diff --git a/u-boot-omap3beagle.changes b/u-boot-omap3beagle.changes index 9364ee2..4e8877d 100644 --- a/u-boot-omap3beagle.changes +++ b/u-boot-omap3beagle.changes @@ -1,3 +1,38 @@ +------------------------------------------------------------------- +Sun Apr 9 18:24:30 UTC 2017 - afaerber@suse.de + +- Add tinker-rk3288 +- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.03 +* Fix firefly-rk3288 and tinker-rk3288 build with binutils 2.28. + 0003-Makefile-Fix-linking-with-modern-bi.patch +- U-Boot has no CFLAGS, so apply $RPM_OPT_FLAGS to HOSTCFLAGS instead + +------------------------------------------------------------------- +Mon Mar 20 11:10:57 UTC 2017 - afaerber@suse.de + +- Tidy Raspberry Pi conditionals +- Enable CONFIG_OF_LIBFDT_OVERLAY for Raspberry Pi only for now + +------------------------------------------------------------------- +Mon Mar 20 09:43:14 UTC 2017 - afaerber@suse.de + +- Add mvebudb-88f{3720,7040,8040} + +------------------------------------------------------------------- +Tue Mar 14 08:47:33 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.03 + +------------------------------------------------------------------- +Wed Mar 1 09:36:39 UTC 2017 - guillaume@opensuse.org + +- Add libopenssl-devel as BuildRequires (needed by some configs) + +------------------------------------------------------------------- +Tue Feb 28 08:37:55 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.03-rc3 + ------------------------------------------------------------------- Wed Feb 22 13:38:25 UTC 2017 - hsehic@suse.com diff --git a/u-boot-omap3beagle.spec b/u-boot-omap3beagle.spec index a978416..e41b4da 100644 --- a/u-boot-omap3beagle.spec +++ b/u-boot-omap3beagle.spec @@ -29,11 +29,15 @@ %define imx6_spl 0 %define socfpga_spl 0 +%if "omap3beagle" == "rpi" || "omap3beagle" == "rpi2" || "omap3beagle" == "rpi332b" || "omap3beagle" == "rpi3" +%define is_rpi 1 +%endif + # archive_version differs from version for RC version only -%define archive_version 2017.01 +%define archive_version 2017.03 Name: u-boot-omap3beagle -Version: 2017.01 +Version: 2017.03 Release: 0 Summary: The U-Boot firmware for the omap3beagle platform License: GPL-2.0 @@ -45,10 +49,13 @@ Source3: update_git.sh Source300: u-boot-rpmlintrc Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch +Patch0003: 0003-Makefile-Fix-linking-with-modern-bi.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build # Arndale board need DTC >= 1.4 BuildRequires: bc BuildRequires: dtc >= 1.4.0 +# u-boot-clearfog (tools/kwbimage.c) needs openssl to build +BuildRequires: libopenssl-devel # u-boot-firefly-rk3288 needs python to build BuildRequires: python %if "%{name}" == "u-boot-qemu-ppce500" @@ -56,7 +63,7 @@ BuildRequires: python BuildRequires: qemu Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500 %endif -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} # Owns /boot/vc directory BuildRequires: raspberrypi-firmware # For mountpoint @@ -86,16 +93,24 @@ This package contains documentation for U-Boot firmware. %setup -q -n u-boot-%{archive_version} %patch0001 -p1 %patch0002 -p1 +%patch0003 -p1 %build export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s) -make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" omap3_beagle_defconfig -make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes +make %{?jobs:-j %jobs} CROSS_COMPILE= HOSTCFLAGS="$RPM_OPT_FLAGS" omap3_beagle_defconfig +%if 0%{?is_rpi} +# U-Boot is installed in the filesystem, so we are confident there's enough space. +echo "Attempting to enable fdt apply command (.dtbo) support." +echo "CONFIG_OF_LIBFDT_OVERLAY=y" >> .config +%endif +make %{?jobs:-j %jobs} CROSS_COMPILE= HOSTCFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes + %if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring" # Chromebook ARM (snow) and HP Chromebook 11 (spring) need a uImage format export TEXT_START=$(awk '$NF == "_start" { printf "0x"$1 }' System.map) ./tools/mkimage -A arm -O linux -T kernel -C none -a $TEXT_START -e $TEXT_START -n uboot -d u-boot-dtb.bin u-boot.img %endif + %if %rockchip_spl == 1 for t in ; do ./tools/mkimage -n -d spl/u-boot-spl.bin -T $t u-boot-spl.$t @@ -107,7 +122,7 @@ export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | export NO_BRP_STRIP_DEBUG=true export NO_DEBUGINFO_STRIP_DEBUG=true %define uboot_dir /boot -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} %define uboot_dir /boot/vc %endif %if "%{name}" == "u-boot-qemu-ppce500" @@ -168,7 +183,7 @@ install -D -m 0755 SPL %{buildroot}/boot/imx6-spl.bin install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp %endif -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} %post # On the Raspberry Pi we chain-load u-boot.bin from bootcode.bin via config.txt. # It needs to be on the first FAT partition, wherever we mounted it. diff --git a/u-boot-omap4panda.changes b/u-boot-omap4panda.changes index 9364ee2..4e8877d 100644 --- a/u-boot-omap4panda.changes +++ b/u-boot-omap4panda.changes @@ -1,3 +1,38 @@ +------------------------------------------------------------------- +Sun Apr 9 18:24:30 UTC 2017 - afaerber@suse.de + +- Add tinker-rk3288 +- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.03 +* Fix firefly-rk3288 and tinker-rk3288 build with binutils 2.28. + 0003-Makefile-Fix-linking-with-modern-bi.patch +- U-Boot has no CFLAGS, so apply $RPM_OPT_FLAGS to HOSTCFLAGS instead + +------------------------------------------------------------------- +Mon Mar 20 11:10:57 UTC 2017 - afaerber@suse.de + +- Tidy Raspberry Pi conditionals +- Enable CONFIG_OF_LIBFDT_OVERLAY for Raspberry Pi only for now + +------------------------------------------------------------------- +Mon Mar 20 09:43:14 UTC 2017 - afaerber@suse.de + +- Add mvebudb-88f{3720,7040,8040} + +------------------------------------------------------------------- +Tue Mar 14 08:47:33 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.03 + +------------------------------------------------------------------- +Wed Mar 1 09:36:39 UTC 2017 - guillaume@opensuse.org + +- Add libopenssl-devel as BuildRequires (needed by some configs) + +------------------------------------------------------------------- +Tue Feb 28 08:37:55 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.03-rc3 + ------------------------------------------------------------------- Wed Feb 22 13:38:25 UTC 2017 - hsehic@suse.com diff --git a/u-boot-omap4panda.spec b/u-boot-omap4panda.spec index 1d13626..6229831 100644 --- a/u-boot-omap4panda.spec +++ b/u-boot-omap4panda.spec @@ -29,11 +29,15 @@ %define imx6_spl 0 %define socfpga_spl 0 +%if "omap4panda" == "rpi" || "omap4panda" == "rpi2" || "omap4panda" == "rpi332b" || "omap4panda" == "rpi3" +%define is_rpi 1 +%endif + # archive_version differs from version for RC version only -%define archive_version 2017.01 +%define archive_version 2017.03 Name: u-boot-omap4panda -Version: 2017.01 +Version: 2017.03 Release: 0 Summary: The U-Boot firmware for the omap4panda platform License: GPL-2.0 @@ -45,10 +49,13 @@ Source3: update_git.sh Source300: u-boot-rpmlintrc Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch +Patch0003: 0003-Makefile-Fix-linking-with-modern-bi.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build # Arndale board need DTC >= 1.4 BuildRequires: bc BuildRequires: dtc >= 1.4.0 +# u-boot-clearfog (tools/kwbimage.c) needs openssl to build +BuildRequires: libopenssl-devel # u-boot-firefly-rk3288 needs python to build BuildRequires: python %if "%{name}" == "u-boot-qemu-ppce500" @@ -56,7 +63,7 @@ BuildRequires: python BuildRequires: qemu Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500 %endif -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} # Owns /boot/vc directory BuildRequires: raspberrypi-firmware # For mountpoint @@ -86,16 +93,24 @@ This package contains documentation for U-Boot firmware. %setup -q -n u-boot-%{archive_version} %patch0001 -p1 %patch0002 -p1 +%patch0003 -p1 %build export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s) -make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" omap4_panda_defconfig -make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes +make %{?jobs:-j %jobs} CROSS_COMPILE= HOSTCFLAGS="$RPM_OPT_FLAGS" omap4_panda_defconfig +%if 0%{?is_rpi} +# U-Boot is installed in the filesystem, so we are confident there's enough space. +echo "Attempting to enable fdt apply command (.dtbo) support." +echo "CONFIG_OF_LIBFDT_OVERLAY=y" >> .config +%endif +make %{?jobs:-j %jobs} CROSS_COMPILE= HOSTCFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes + %if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring" # Chromebook ARM (snow) and HP Chromebook 11 (spring) need a uImage format export TEXT_START=$(awk '$NF == "_start" { printf "0x"$1 }' System.map) ./tools/mkimage -A arm -O linux -T kernel -C none -a $TEXT_START -e $TEXT_START -n uboot -d u-boot-dtb.bin u-boot.img %endif + %if %rockchip_spl == 1 for t in ; do ./tools/mkimage -n -d spl/u-boot-spl.bin -T $t u-boot-spl.$t @@ -107,7 +122,7 @@ export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | export NO_BRP_STRIP_DEBUG=true export NO_DEBUGINFO_STRIP_DEBUG=true %define uboot_dir /boot -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} %define uboot_dir /boot/vc %endif %if "%{name}" == "u-boot-qemu-ppce500" @@ -168,7 +183,7 @@ install -D -m 0755 SPL %{buildroot}/boot/imx6-spl.bin install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp %endif -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} %post # On the Raspberry Pi we chain-load u-boot.bin from bootcode.bin via config.txt. # It needs to be on the first FAT partition, wherever we mounted it. diff --git a/u-boot-orangepipc.changes b/u-boot-orangepipc.changes index 9364ee2..4e8877d 100644 --- a/u-boot-orangepipc.changes +++ b/u-boot-orangepipc.changes @@ -1,3 +1,38 @@ +------------------------------------------------------------------- +Sun Apr 9 18:24:30 UTC 2017 - afaerber@suse.de + +- Add tinker-rk3288 +- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.03 +* Fix firefly-rk3288 and tinker-rk3288 build with binutils 2.28. + 0003-Makefile-Fix-linking-with-modern-bi.patch +- U-Boot has no CFLAGS, so apply $RPM_OPT_FLAGS to HOSTCFLAGS instead + +------------------------------------------------------------------- +Mon Mar 20 11:10:57 UTC 2017 - afaerber@suse.de + +- Tidy Raspberry Pi conditionals +- Enable CONFIG_OF_LIBFDT_OVERLAY for Raspberry Pi only for now + +------------------------------------------------------------------- +Mon Mar 20 09:43:14 UTC 2017 - afaerber@suse.de + +- Add mvebudb-88f{3720,7040,8040} + +------------------------------------------------------------------- +Tue Mar 14 08:47:33 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.03 + +------------------------------------------------------------------- +Wed Mar 1 09:36:39 UTC 2017 - guillaume@opensuse.org + +- Add libopenssl-devel as BuildRequires (needed by some configs) + +------------------------------------------------------------------- +Tue Feb 28 08:37:55 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.03-rc3 + ------------------------------------------------------------------- Wed Feb 22 13:38:25 UTC 2017 - hsehic@suse.com diff --git a/u-boot-orangepipc.spec b/u-boot-orangepipc.spec index e3f200e..ae19659 100644 --- a/u-boot-orangepipc.spec +++ b/u-boot-orangepipc.spec @@ -29,11 +29,15 @@ %define imx6_spl 0 %define socfpga_spl 0 +%if "orangepipc" == "rpi" || "orangepipc" == "rpi2" || "orangepipc" == "rpi332b" || "orangepipc" == "rpi3" +%define is_rpi 1 +%endif + # archive_version differs from version for RC version only -%define archive_version 2017.01 +%define archive_version 2017.03 Name: u-boot-orangepipc -Version: 2017.01 +Version: 2017.03 Release: 0 Summary: The U-Boot firmware for the orangepipc platform License: GPL-2.0 @@ -45,10 +49,13 @@ Source3: update_git.sh Source300: u-boot-rpmlintrc Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch +Patch0003: 0003-Makefile-Fix-linking-with-modern-bi.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build # Arndale board need DTC >= 1.4 BuildRequires: bc BuildRequires: dtc >= 1.4.0 +# u-boot-clearfog (tools/kwbimage.c) needs openssl to build +BuildRequires: libopenssl-devel # u-boot-firefly-rk3288 needs python to build BuildRequires: python %if "%{name}" == "u-boot-qemu-ppce500" @@ -56,7 +63,7 @@ BuildRequires: python BuildRequires: qemu Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500 %endif -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} # Owns /boot/vc directory BuildRequires: raspberrypi-firmware # For mountpoint @@ -86,16 +93,24 @@ This package contains documentation for U-Boot firmware. %setup -q -n u-boot-%{archive_version} %patch0001 -p1 %patch0002 -p1 +%patch0003 -p1 %build export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s) -make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" orangepi_pc_defconfig -make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes +make %{?jobs:-j %jobs} CROSS_COMPILE= HOSTCFLAGS="$RPM_OPT_FLAGS" orangepi_pc_defconfig +%if 0%{?is_rpi} +# U-Boot is installed in the filesystem, so we are confident there's enough space. +echo "Attempting to enable fdt apply command (.dtbo) support." +echo "CONFIG_OF_LIBFDT_OVERLAY=y" >> .config +%endif +make %{?jobs:-j %jobs} CROSS_COMPILE= HOSTCFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes + %if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring" # Chromebook ARM (snow) and HP Chromebook 11 (spring) need a uImage format export TEXT_START=$(awk '$NF == "_start" { printf "0x"$1 }' System.map) ./tools/mkimage -A arm -O linux -T kernel -C none -a $TEXT_START -e $TEXT_START -n uboot -d u-boot-dtb.bin u-boot.img %endif + %if %rockchip_spl == 1 for t in ; do ./tools/mkimage -n -d spl/u-boot-spl.bin -T $t u-boot-spl.$t @@ -107,7 +122,7 @@ export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | export NO_BRP_STRIP_DEBUG=true export NO_DEBUGINFO_STRIP_DEBUG=true %define uboot_dir /boot -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} %define uboot_dir /boot/vc %endif %if "%{name}" == "u-boot-qemu-ppce500" @@ -168,7 +183,7 @@ install -D -m 0755 SPL %{buildroot}/boot/imx6-spl.bin install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp %endif -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} %post # On the Raspberry Pi we chain-load u-boot.bin from bootcode.bin via config.txt. # It needs to be on the first FAT partition, wherever we mounted it. diff --git a/u-boot-p2371-2180.changes b/u-boot-p2371-2180.changes index 9364ee2..4e8877d 100644 --- a/u-boot-p2371-2180.changes +++ b/u-boot-p2371-2180.changes @@ -1,3 +1,38 @@ +------------------------------------------------------------------- +Sun Apr 9 18:24:30 UTC 2017 - afaerber@suse.de + +- Add tinker-rk3288 +- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.03 +* Fix firefly-rk3288 and tinker-rk3288 build with binutils 2.28. + 0003-Makefile-Fix-linking-with-modern-bi.patch +- U-Boot has no CFLAGS, so apply $RPM_OPT_FLAGS to HOSTCFLAGS instead + +------------------------------------------------------------------- +Mon Mar 20 11:10:57 UTC 2017 - afaerber@suse.de + +- Tidy Raspberry Pi conditionals +- Enable CONFIG_OF_LIBFDT_OVERLAY for Raspberry Pi only for now + +------------------------------------------------------------------- +Mon Mar 20 09:43:14 UTC 2017 - afaerber@suse.de + +- Add mvebudb-88f{3720,7040,8040} + +------------------------------------------------------------------- +Tue Mar 14 08:47:33 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.03 + +------------------------------------------------------------------- +Wed Mar 1 09:36:39 UTC 2017 - guillaume@opensuse.org + +- Add libopenssl-devel as BuildRequires (needed by some configs) + +------------------------------------------------------------------- +Tue Feb 28 08:37:55 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.03-rc3 + ------------------------------------------------------------------- Wed Feb 22 13:38:25 UTC 2017 - hsehic@suse.com diff --git a/u-boot-p2371-2180.spec b/u-boot-p2371-2180.spec index 2c142d5..e7fbe5c 100644 --- a/u-boot-p2371-2180.spec +++ b/u-boot-p2371-2180.spec @@ -29,11 +29,15 @@ %define imx6_spl 0 %define socfpga_spl 0 +%if "p2371-2180" == "rpi" || "p2371-2180" == "rpi2" || "p2371-2180" == "rpi332b" || "p2371-2180" == "rpi3" +%define is_rpi 1 +%endif + # archive_version differs from version for RC version only -%define archive_version 2017.01 +%define archive_version 2017.03 Name: u-boot-p2371-2180 -Version: 2017.01 +Version: 2017.03 Release: 0 Summary: The U-Boot firmware for the p2371-2180 platform License: GPL-2.0 @@ -45,10 +49,13 @@ Source3: update_git.sh Source300: u-boot-rpmlintrc Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch +Patch0003: 0003-Makefile-Fix-linking-with-modern-bi.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build # Arndale board need DTC >= 1.4 BuildRequires: bc BuildRequires: dtc >= 1.4.0 +# u-boot-clearfog (tools/kwbimage.c) needs openssl to build +BuildRequires: libopenssl-devel # u-boot-firefly-rk3288 needs python to build BuildRequires: python %if "%{name}" == "u-boot-qemu-ppce500" @@ -56,7 +63,7 @@ BuildRequires: python BuildRequires: qemu Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500 %endif -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} # Owns /boot/vc directory BuildRequires: raspberrypi-firmware # For mountpoint @@ -86,16 +93,24 @@ This package contains documentation for U-Boot firmware. %setup -q -n u-boot-%{archive_version} %patch0001 -p1 %patch0002 -p1 +%patch0003 -p1 %build export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s) -make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" p2371-2180_defconfig -make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes +make %{?jobs:-j %jobs} CROSS_COMPILE= HOSTCFLAGS="$RPM_OPT_FLAGS" p2371-2180_defconfig +%if 0%{?is_rpi} +# U-Boot is installed in the filesystem, so we are confident there's enough space. +echo "Attempting to enable fdt apply command (.dtbo) support." +echo "CONFIG_OF_LIBFDT_OVERLAY=y" >> .config +%endif +make %{?jobs:-j %jobs} CROSS_COMPILE= HOSTCFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes + %if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring" # Chromebook ARM (snow) and HP Chromebook 11 (spring) need a uImage format export TEXT_START=$(awk '$NF == "_start" { printf "0x"$1 }' System.map) ./tools/mkimage -A arm -O linux -T kernel -C none -a $TEXT_START -e $TEXT_START -n uboot -d u-boot-dtb.bin u-boot.img %endif + %if %rockchip_spl == 1 for t in ; do ./tools/mkimage -n -d spl/u-boot-spl.bin -T $t u-boot-spl.$t @@ -107,7 +122,7 @@ export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | export NO_BRP_STRIP_DEBUG=true export NO_DEBUGINFO_STRIP_DEBUG=true %define uboot_dir /boot -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} %define uboot_dir /boot/vc %endif %if "%{name}" == "u-boot-qemu-ppce500" @@ -168,7 +183,7 @@ install -D -m 0755 SPL %{buildroot}/boot/imx6-spl.bin install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp %endif -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} %post # On the Raspberry Pi we chain-load u-boot.bin from bootcode.bin via config.txt. # It needs to be on the first FAT partition, wherever we mounted it. diff --git a/u-boot-paz00.changes b/u-boot-paz00.changes index 9364ee2..4e8877d 100644 --- a/u-boot-paz00.changes +++ b/u-boot-paz00.changes @@ -1,3 +1,38 @@ +------------------------------------------------------------------- +Sun Apr 9 18:24:30 UTC 2017 - afaerber@suse.de + +- Add tinker-rk3288 +- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.03 +* Fix firefly-rk3288 and tinker-rk3288 build with binutils 2.28. + 0003-Makefile-Fix-linking-with-modern-bi.patch +- U-Boot has no CFLAGS, so apply $RPM_OPT_FLAGS to HOSTCFLAGS instead + +------------------------------------------------------------------- +Mon Mar 20 11:10:57 UTC 2017 - afaerber@suse.de + +- Tidy Raspberry Pi conditionals +- Enable CONFIG_OF_LIBFDT_OVERLAY for Raspberry Pi only for now + +------------------------------------------------------------------- +Mon Mar 20 09:43:14 UTC 2017 - afaerber@suse.de + +- Add mvebudb-88f{3720,7040,8040} + +------------------------------------------------------------------- +Tue Mar 14 08:47:33 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.03 + +------------------------------------------------------------------- +Wed Mar 1 09:36:39 UTC 2017 - guillaume@opensuse.org + +- Add libopenssl-devel as BuildRequires (needed by some configs) + +------------------------------------------------------------------- +Tue Feb 28 08:37:55 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.03-rc3 + ------------------------------------------------------------------- Wed Feb 22 13:38:25 UTC 2017 - hsehic@suse.com diff --git a/u-boot-paz00.spec b/u-boot-paz00.spec index 53eebb5..1448a25 100644 --- a/u-boot-paz00.spec +++ b/u-boot-paz00.spec @@ -29,11 +29,15 @@ %define imx6_spl 0 %define socfpga_spl 0 +%if "paz00" == "rpi" || "paz00" == "rpi2" || "paz00" == "rpi332b" || "paz00" == "rpi3" +%define is_rpi 1 +%endif + # archive_version differs from version for RC version only -%define archive_version 2017.01 +%define archive_version 2017.03 Name: u-boot-paz00 -Version: 2017.01 +Version: 2017.03 Release: 0 Summary: The U-Boot firmware for the paz00 platform License: GPL-2.0 @@ -45,10 +49,13 @@ Source3: update_git.sh Source300: u-boot-rpmlintrc Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch +Patch0003: 0003-Makefile-Fix-linking-with-modern-bi.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build # Arndale board need DTC >= 1.4 BuildRequires: bc BuildRequires: dtc >= 1.4.0 +# u-boot-clearfog (tools/kwbimage.c) needs openssl to build +BuildRequires: libopenssl-devel # u-boot-firefly-rk3288 needs python to build BuildRequires: python %if "%{name}" == "u-boot-qemu-ppce500" @@ -56,7 +63,7 @@ BuildRequires: python BuildRequires: qemu Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500 %endif -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} # Owns /boot/vc directory BuildRequires: raspberrypi-firmware # For mountpoint @@ -86,16 +93,24 @@ This package contains documentation for U-Boot firmware. %setup -q -n u-boot-%{archive_version} %patch0001 -p1 %patch0002 -p1 +%patch0003 -p1 %build export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s) -make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" paz00_defconfig -make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes +make %{?jobs:-j %jobs} CROSS_COMPILE= HOSTCFLAGS="$RPM_OPT_FLAGS" paz00_defconfig +%if 0%{?is_rpi} +# U-Boot is installed in the filesystem, so we are confident there's enough space. +echo "Attempting to enable fdt apply command (.dtbo) support." +echo "CONFIG_OF_LIBFDT_OVERLAY=y" >> .config +%endif +make %{?jobs:-j %jobs} CROSS_COMPILE= HOSTCFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes + %if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring" # Chromebook ARM (snow) and HP Chromebook 11 (spring) need a uImage format export TEXT_START=$(awk '$NF == "_start" { printf "0x"$1 }' System.map) ./tools/mkimage -A arm -O linux -T kernel -C none -a $TEXT_START -e $TEXT_START -n uboot -d u-boot-dtb.bin u-boot.img %endif + %if %rockchip_spl == 1 for t in ; do ./tools/mkimage -n -d spl/u-boot-spl.bin -T $t u-boot-spl.$t @@ -107,7 +122,7 @@ export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | export NO_BRP_STRIP_DEBUG=true export NO_DEBUGINFO_STRIP_DEBUG=true %define uboot_dir /boot -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} %define uboot_dir /boot/vc %endif %if "%{name}" == "u-boot-qemu-ppce500" @@ -168,7 +183,7 @@ install -D -m 0755 SPL %{buildroot}/boot/imx6-spl.bin install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp %endif -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} %post # On the Raspberry Pi we chain-load u-boot.bin from bootcode.bin via config.txt. # It needs to be on the first FAT partition, wherever we mounted it. diff --git a/u-boot-pcm051rev3.changes b/u-boot-pcm051rev3.changes index 9364ee2..4e8877d 100644 --- a/u-boot-pcm051rev3.changes +++ b/u-boot-pcm051rev3.changes @@ -1,3 +1,38 @@ +------------------------------------------------------------------- +Sun Apr 9 18:24:30 UTC 2017 - afaerber@suse.de + +- Add tinker-rk3288 +- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.03 +* Fix firefly-rk3288 and tinker-rk3288 build with binutils 2.28. + 0003-Makefile-Fix-linking-with-modern-bi.patch +- U-Boot has no CFLAGS, so apply $RPM_OPT_FLAGS to HOSTCFLAGS instead + +------------------------------------------------------------------- +Mon Mar 20 11:10:57 UTC 2017 - afaerber@suse.de + +- Tidy Raspberry Pi conditionals +- Enable CONFIG_OF_LIBFDT_OVERLAY for Raspberry Pi only for now + +------------------------------------------------------------------- +Mon Mar 20 09:43:14 UTC 2017 - afaerber@suse.de + +- Add mvebudb-88f{3720,7040,8040} + +------------------------------------------------------------------- +Tue Mar 14 08:47:33 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.03 + +------------------------------------------------------------------- +Wed Mar 1 09:36:39 UTC 2017 - guillaume@opensuse.org + +- Add libopenssl-devel as BuildRequires (needed by some configs) + +------------------------------------------------------------------- +Tue Feb 28 08:37:55 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.03-rc3 + ------------------------------------------------------------------- Wed Feb 22 13:38:25 UTC 2017 - hsehic@suse.com diff --git a/u-boot-pcm051rev3.spec b/u-boot-pcm051rev3.spec index 01187d1..14d1d63 100644 --- a/u-boot-pcm051rev3.spec +++ b/u-boot-pcm051rev3.spec @@ -29,11 +29,15 @@ %define imx6_spl 0 %define socfpga_spl 0 +%if "pcm051rev3" == "rpi" || "pcm051rev3" == "rpi2" || "pcm051rev3" == "rpi332b" || "pcm051rev3" == "rpi3" +%define is_rpi 1 +%endif + # archive_version differs from version for RC version only -%define archive_version 2017.01 +%define archive_version 2017.03 Name: u-boot-pcm051rev3 -Version: 2017.01 +Version: 2017.03 Release: 0 Summary: The U-Boot firmware for the pcm051rev3 platform License: GPL-2.0 @@ -45,10 +49,13 @@ Source3: update_git.sh Source300: u-boot-rpmlintrc Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch +Patch0003: 0003-Makefile-Fix-linking-with-modern-bi.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build # Arndale board need DTC >= 1.4 BuildRequires: bc BuildRequires: dtc >= 1.4.0 +# u-boot-clearfog (tools/kwbimage.c) needs openssl to build +BuildRequires: libopenssl-devel # u-boot-firefly-rk3288 needs python to build BuildRequires: python %if "%{name}" == "u-boot-qemu-ppce500" @@ -56,7 +63,7 @@ BuildRequires: python BuildRequires: qemu Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500 %endif -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} # Owns /boot/vc directory BuildRequires: raspberrypi-firmware # For mountpoint @@ -86,16 +93,24 @@ This package contains documentation for U-Boot firmware. %setup -q -n u-boot-%{archive_version} %patch0001 -p1 %patch0002 -p1 +%patch0003 -p1 %build export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s) -make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" pcm051_rev3_defconfig -make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes +make %{?jobs:-j %jobs} CROSS_COMPILE= HOSTCFLAGS="$RPM_OPT_FLAGS" pcm051_rev3_defconfig +%if 0%{?is_rpi} +# U-Boot is installed in the filesystem, so we are confident there's enough space. +echo "Attempting to enable fdt apply command (.dtbo) support." +echo "CONFIG_OF_LIBFDT_OVERLAY=y" >> .config +%endif +make %{?jobs:-j %jobs} CROSS_COMPILE= HOSTCFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes + %if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring" # Chromebook ARM (snow) and HP Chromebook 11 (spring) need a uImage format export TEXT_START=$(awk '$NF == "_start" { printf "0x"$1 }' System.map) ./tools/mkimage -A arm -O linux -T kernel -C none -a $TEXT_START -e $TEXT_START -n uboot -d u-boot-dtb.bin u-boot.img %endif + %if %rockchip_spl == 1 for t in ; do ./tools/mkimage -n -d spl/u-boot-spl.bin -T $t u-boot-spl.$t @@ -107,7 +122,7 @@ export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | export NO_BRP_STRIP_DEBUG=true export NO_DEBUGINFO_STRIP_DEBUG=true %define uboot_dir /boot -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} %define uboot_dir /boot/vc %endif %if "%{name}" == "u-boot-qemu-ppce500" @@ -168,7 +183,7 @@ install -D -m 0755 SPL %{buildroot}/boot/imx6-spl.bin install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp %endif -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} %post # On the Raspberry Pi we chain-load u-boot.bin from bootcode.bin via config.txt. # It needs to be on the first FAT partition, wherever we mounted it. diff --git a/u-boot-pine64plus.changes b/u-boot-pine64plus.changes index 9364ee2..4e8877d 100644 --- a/u-boot-pine64plus.changes +++ b/u-boot-pine64plus.changes @@ -1,3 +1,38 @@ +------------------------------------------------------------------- +Sun Apr 9 18:24:30 UTC 2017 - afaerber@suse.de + +- Add tinker-rk3288 +- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.03 +* Fix firefly-rk3288 and tinker-rk3288 build with binutils 2.28. + 0003-Makefile-Fix-linking-with-modern-bi.patch +- U-Boot has no CFLAGS, so apply $RPM_OPT_FLAGS to HOSTCFLAGS instead + +------------------------------------------------------------------- +Mon Mar 20 11:10:57 UTC 2017 - afaerber@suse.de + +- Tidy Raspberry Pi conditionals +- Enable CONFIG_OF_LIBFDT_OVERLAY for Raspberry Pi only for now + +------------------------------------------------------------------- +Mon Mar 20 09:43:14 UTC 2017 - afaerber@suse.de + +- Add mvebudb-88f{3720,7040,8040} + +------------------------------------------------------------------- +Tue Mar 14 08:47:33 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.03 + +------------------------------------------------------------------- +Wed Mar 1 09:36:39 UTC 2017 - guillaume@opensuse.org + +- Add libopenssl-devel as BuildRequires (needed by some configs) + +------------------------------------------------------------------- +Tue Feb 28 08:37:55 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.03-rc3 + ------------------------------------------------------------------- Wed Feb 22 13:38:25 UTC 2017 - hsehic@suse.com diff --git a/u-boot-pine64plus.spec b/u-boot-pine64plus.spec index 6a22b3b..425645a 100644 --- a/u-boot-pine64plus.spec +++ b/u-boot-pine64plus.spec @@ -29,11 +29,15 @@ %define imx6_spl 0 %define socfpga_spl 0 +%if "pine64plus" == "rpi" || "pine64plus" == "rpi2" || "pine64plus" == "rpi332b" || "pine64plus" == "rpi3" +%define is_rpi 1 +%endif + # archive_version differs from version for RC version only -%define archive_version 2017.01 +%define archive_version 2017.03 Name: u-boot-pine64plus -Version: 2017.01 +Version: 2017.03 Release: 0 Summary: The U-Boot firmware for the pine64plus platform License: GPL-2.0 @@ -45,10 +49,13 @@ Source3: update_git.sh Source300: u-boot-rpmlintrc Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch +Patch0003: 0003-Makefile-Fix-linking-with-modern-bi.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build # Arndale board need DTC >= 1.4 BuildRequires: bc BuildRequires: dtc >= 1.4.0 +# u-boot-clearfog (tools/kwbimage.c) needs openssl to build +BuildRequires: libopenssl-devel # u-boot-firefly-rk3288 needs python to build BuildRequires: python %if "%{name}" == "u-boot-qemu-ppce500" @@ -56,7 +63,7 @@ BuildRequires: python BuildRequires: qemu Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500 %endif -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} # Owns /boot/vc directory BuildRequires: raspberrypi-firmware # For mountpoint @@ -86,16 +93,24 @@ This package contains documentation for U-Boot firmware. %setup -q -n u-boot-%{archive_version} %patch0001 -p1 %patch0002 -p1 +%patch0003 -p1 %build export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s) -make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" pine64_plus_defconfig -make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes +make %{?jobs:-j %jobs} CROSS_COMPILE= HOSTCFLAGS="$RPM_OPT_FLAGS" pine64_plus_defconfig +%if 0%{?is_rpi} +# U-Boot is installed in the filesystem, so we are confident there's enough space. +echo "Attempting to enable fdt apply command (.dtbo) support." +echo "CONFIG_OF_LIBFDT_OVERLAY=y" >> .config +%endif +make %{?jobs:-j %jobs} CROSS_COMPILE= HOSTCFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes + %if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring" # Chromebook ARM (snow) and HP Chromebook 11 (spring) need a uImage format export TEXT_START=$(awk '$NF == "_start" { printf "0x"$1 }' System.map) ./tools/mkimage -A arm -O linux -T kernel -C none -a $TEXT_START -e $TEXT_START -n uboot -d u-boot-dtb.bin u-boot.img %endif + %if %rockchip_spl == 1 for t in ; do ./tools/mkimage -n -d spl/u-boot-spl.bin -T $t u-boot-spl.$t @@ -107,7 +122,7 @@ export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | export NO_BRP_STRIP_DEBUG=true export NO_DEBUGINFO_STRIP_DEBUG=true %define uboot_dir /boot -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} %define uboot_dir /boot/vc %endif %if "%{name}" == "u-boot-qemu-ppce500" @@ -168,7 +183,7 @@ install -D -m 0755 SPL %{buildroot}/boot/imx6-spl.bin install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp %endif -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} %post # On the Raspberry Pi we chain-load u-boot.bin from bootcode.bin via config.txt. # It needs to be on the first FAT partition, wherever we mounted it. diff --git a/u-boot-qemu-ppce500.changes b/u-boot-qemu-ppce500.changes index 9364ee2..4e8877d 100644 --- a/u-boot-qemu-ppce500.changes +++ b/u-boot-qemu-ppce500.changes @@ -1,3 +1,38 @@ +------------------------------------------------------------------- +Sun Apr 9 18:24:30 UTC 2017 - afaerber@suse.de + +- Add tinker-rk3288 +- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.03 +* Fix firefly-rk3288 and tinker-rk3288 build with binutils 2.28. + 0003-Makefile-Fix-linking-with-modern-bi.patch +- U-Boot has no CFLAGS, so apply $RPM_OPT_FLAGS to HOSTCFLAGS instead + +------------------------------------------------------------------- +Mon Mar 20 11:10:57 UTC 2017 - afaerber@suse.de + +- Tidy Raspberry Pi conditionals +- Enable CONFIG_OF_LIBFDT_OVERLAY for Raspberry Pi only for now + +------------------------------------------------------------------- +Mon Mar 20 09:43:14 UTC 2017 - afaerber@suse.de + +- Add mvebudb-88f{3720,7040,8040} + +------------------------------------------------------------------- +Tue Mar 14 08:47:33 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.03 + +------------------------------------------------------------------- +Wed Mar 1 09:36:39 UTC 2017 - guillaume@opensuse.org + +- Add libopenssl-devel as BuildRequires (needed by some configs) + +------------------------------------------------------------------- +Tue Feb 28 08:37:55 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.03-rc3 + ------------------------------------------------------------------- Wed Feb 22 13:38:25 UTC 2017 - hsehic@suse.com diff --git a/u-boot-qemu-ppce500.spec b/u-boot-qemu-ppce500.spec index c371172..30bd19c 100644 --- a/u-boot-qemu-ppce500.spec +++ b/u-boot-qemu-ppce500.spec @@ -29,11 +29,15 @@ %define imx6_spl 0 %define socfpga_spl 0 +%if "qemu-ppce500" == "rpi" || "qemu-ppce500" == "rpi2" || "qemu-ppce500" == "rpi332b" || "qemu-ppce500" == "rpi3" +%define is_rpi 1 +%endif + # archive_version differs from version for RC version only -%define archive_version 2017.01 +%define archive_version 2017.03 Name: u-boot-qemu-ppce500 -Version: 2017.01 +Version: 2017.03 Release: 0 Summary: The U-Boot firmware for the qemu-ppce500 platform License: GPL-2.0 @@ -45,10 +49,13 @@ Source3: update_git.sh Source300: u-boot-rpmlintrc Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch +Patch0003: 0003-Makefile-Fix-linking-with-modern-bi.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build # Arndale board need DTC >= 1.4 BuildRequires: bc BuildRequires: dtc >= 1.4.0 +# u-boot-clearfog (tools/kwbimage.c) needs openssl to build +BuildRequires: libopenssl-devel # u-boot-firefly-rk3288 needs python to build BuildRequires: python %if "%{name}" == "u-boot-qemu-ppce500" @@ -56,7 +63,7 @@ BuildRequires: python BuildRequires: qemu Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500 %endif -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} # Owns /boot/vc directory BuildRequires: raspberrypi-firmware # For mountpoint @@ -86,16 +93,24 @@ This package contains documentation for U-Boot firmware. %setup -q -n u-boot-%{archive_version} %patch0001 -p1 %patch0002 -p1 +%patch0003 -p1 %build export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s) -make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" qemu-ppce500_defconfig -make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes +make %{?jobs:-j %jobs} CROSS_COMPILE= HOSTCFLAGS="$RPM_OPT_FLAGS" qemu-ppce500_defconfig +%if 0%{?is_rpi} +# U-Boot is installed in the filesystem, so we are confident there's enough space. +echo "Attempting to enable fdt apply command (.dtbo) support." +echo "CONFIG_OF_LIBFDT_OVERLAY=y" >> .config +%endif +make %{?jobs:-j %jobs} CROSS_COMPILE= HOSTCFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes + %if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring" # Chromebook ARM (snow) and HP Chromebook 11 (spring) need a uImage format export TEXT_START=$(awk '$NF == "_start" { printf "0x"$1 }' System.map) ./tools/mkimage -A arm -O linux -T kernel -C none -a $TEXT_START -e $TEXT_START -n uboot -d u-boot-dtb.bin u-boot.img %endif + %if %rockchip_spl == 1 for t in ; do ./tools/mkimage -n -d spl/u-boot-spl.bin -T $t u-boot-spl.$t @@ -107,7 +122,7 @@ export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | export NO_BRP_STRIP_DEBUG=true export NO_DEBUGINFO_STRIP_DEBUG=true %define uboot_dir /boot -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} %define uboot_dir /boot/vc %endif %if "%{name}" == "u-boot-qemu-ppce500" @@ -168,7 +183,7 @@ install -D -m 0755 SPL %{buildroot}/boot/imx6-spl.bin install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp %endif -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} %post # On the Raspberry Pi we chain-load u-boot.bin from bootcode.bin via config.txt. # It needs to be on the first FAT partition, wherever we mounted it. diff --git a/u-boot-rpi.changes b/u-boot-rpi.changes index 9364ee2..4e8877d 100644 --- a/u-boot-rpi.changes +++ b/u-boot-rpi.changes @@ -1,3 +1,38 @@ +------------------------------------------------------------------- +Sun Apr 9 18:24:30 UTC 2017 - afaerber@suse.de + +- Add tinker-rk3288 +- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.03 +* Fix firefly-rk3288 and tinker-rk3288 build with binutils 2.28. + 0003-Makefile-Fix-linking-with-modern-bi.patch +- U-Boot has no CFLAGS, so apply $RPM_OPT_FLAGS to HOSTCFLAGS instead + +------------------------------------------------------------------- +Mon Mar 20 11:10:57 UTC 2017 - afaerber@suse.de + +- Tidy Raspberry Pi conditionals +- Enable CONFIG_OF_LIBFDT_OVERLAY for Raspberry Pi only for now + +------------------------------------------------------------------- +Mon Mar 20 09:43:14 UTC 2017 - afaerber@suse.de + +- Add mvebudb-88f{3720,7040,8040} + +------------------------------------------------------------------- +Tue Mar 14 08:47:33 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.03 + +------------------------------------------------------------------- +Wed Mar 1 09:36:39 UTC 2017 - guillaume@opensuse.org + +- Add libopenssl-devel as BuildRequires (needed by some configs) + +------------------------------------------------------------------- +Tue Feb 28 08:37:55 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.03-rc3 + ------------------------------------------------------------------- Wed Feb 22 13:38:25 UTC 2017 - hsehic@suse.com diff --git a/u-boot-rpi.spec b/u-boot-rpi.spec index 6954763..01731e9 100644 --- a/u-boot-rpi.spec +++ b/u-boot-rpi.spec @@ -29,11 +29,15 @@ %define imx6_spl 0 %define socfpga_spl 0 +%if "rpi" == "rpi" || "rpi" == "rpi2" || "rpi" == "rpi332b" || "rpi" == "rpi3" +%define is_rpi 1 +%endif + # archive_version differs from version for RC version only -%define archive_version 2017.01 +%define archive_version 2017.03 Name: u-boot-rpi -Version: 2017.01 +Version: 2017.03 Release: 0 Summary: The U-Boot firmware for the rpi platform License: GPL-2.0 @@ -45,10 +49,13 @@ Source3: update_git.sh Source300: u-boot-rpmlintrc Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch +Patch0003: 0003-Makefile-Fix-linking-with-modern-bi.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build # Arndale board need DTC >= 1.4 BuildRequires: bc BuildRequires: dtc >= 1.4.0 +# u-boot-clearfog (tools/kwbimage.c) needs openssl to build +BuildRequires: libopenssl-devel # u-boot-firefly-rk3288 needs python to build BuildRequires: python %if "%{name}" == "u-boot-qemu-ppce500" @@ -56,7 +63,7 @@ BuildRequires: python BuildRequires: qemu Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500 %endif -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} # Owns /boot/vc directory BuildRequires: raspberrypi-firmware # For mountpoint @@ -86,16 +93,24 @@ This package contains documentation for U-Boot firmware. %setup -q -n u-boot-%{archive_version} %patch0001 -p1 %patch0002 -p1 +%patch0003 -p1 %build export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s) -make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" rpi_defconfig -make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes +make %{?jobs:-j %jobs} CROSS_COMPILE= HOSTCFLAGS="$RPM_OPT_FLAGS" rpi_defconfig +%if 0%{?is_rpi} +# U-Boot is installed in the filesystem, so we are confident there's enough space. +echo "Attempting to enable fdt apply command (.dtbo) support." +echo "CONFIG_OF_LIBFDT_OVERLAY=y" >> .config +%endif +make %{?jobs:-j %jobs} CROSS_COMPILE= HOSTCFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes + %if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring" # Chromebook ARM (snow) and HP Chromebook 11 (spring) need a uImage format export TEXT_START=$(awk '$NF == "_start" { printf "0x"$1 }' System.map) ./tools/mkimage -A arm -O linux -T kernel -C none -a $TEXT_START -e $TEXT_START -n uboot -d u-boot-dtb.bin u-boot.img %endif + %if %rockchip_spl == 1 for t in ; do ./tools/mkimage -n -d spl/u-boot-spl.bin -T $t u-boot-spl.$t @@ -107,7 +122,7 @@ export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | export NO_BRP_STRIP_DEBUG=true export NO_DEBUGINFO_STRIP_DEBUG=true %define uboot_dir /boot -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} %define uboot_dir /boot/vc %endif %if "%{name}" == "u-boot-qemu-ppce500" @@ -168,7 +183,7 @@ install -D -m 0755 SPL %{buildroot}/boot/imx6-spl.bin install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp %endif -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} %post # On the Raspberry Pi we chain-load u-boot.bin from bootcode.bin via config.txt. # It needs to be on the first FAT partition, wherever we mounted it. diff --git a/u-boot-rpi2.changes b/u-boot-rpi2.changes index 9364ee2..4e8877d 100644 --- a/u-boot-rpi2.changes +++ b/u-boot-rpi2.changes @@ -1,3 +1,38 @@ +------------------------------------------------------------------- +Sun Apr 9 18:24:30 UTC 2017 - afaerber@suse.de + +- Add tinker-rk3288 +- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.03 +* Fix firefly-rk3288 and tinker-rk3288 build with binutils 2.28. + 0003-Makefile-Fix-linking-with-modern-bi.patch +- U-Boot has no CFLAGS, so apply $RPM_OPT_FLAGS to HOSTCFLAGS instead + +------------------------------------------------------------------- +Mon Mar 20 11:10:57 UTC 2017 - afaerber@suse.de + +- Tidy Raspberry Pi conditionals +- Enable CONFIG_OF_LIBFDT_OVERLAY for Raspberry Pi only for now + +------------------------------------------------------------------- +Mon Mar 20 09:43:14 UTC 2017 - afaerber@suse.de + +- Add mvebudb-88f{3720,7040,8040} + +------------------------------------------------------------------- +Tue Mar 14 08:47:33 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.03 + +------------------------------------------------------------------- +Wed Mar 1 09:36:39 UTC 2017 - guillaume@opensuse.org + +- Add libopenssl-devel as BuildRequires (needed by some configs) + +------------------------------------------------------------------- +Tue Feb 28 08:37:55 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.03-rc3 + ------------------------------------------------------------------- Wed Feb 22 13:38:25 UTC 2017 - hsehic@suse.com diff --git a/u-boot-rpi2.spec b/u-boot-rpi2.spec index d64e1f4..daafb86 100644 --- a/u-boot-rpi2.spec +++ b/u-boot-rpi2.spec @@ -29,11 +29,15 @@ %define imx6_spl 0 %define socfpga_spl 0 +%if "rpi2" == "rpi" || "rpi2" == "rpi2" || "rpi2" == "rpi332b" || "rpi2" == "rpi3" +%define is_rpi 1 +%endif + # archive_version differs from version for RC version only -%define archive_version 2017.01 +%define archive_version 2017.03 Name: u-boot-rpi2 -Version: 2017.01 +Version: 2017.03 Release: 0 Summary: The U-Boot firmware for the rpi2 platform License: GPL-2.0 @@ -45,10 +49,13 @@ Source3: update_git.sh Source300: u-boot-rpmlintrc Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch +Patch0003: 0003-Makefile-Fix-linking-with-modern-bi.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build # Arndale board need DTC >= 1.4 BuildRequires: bc BuildRequires: dtc >= 1.4.0 +# u-boot-clearfog (tools/kwbimage.c) needs openssl to build +BuildRequires: libopenssl-devel # u-boot-firefly-rk3288 needs python to build BuildRequires: python %if "%{name}" == "u-boot-qemu-ppce500" @@ -56,7 +63,7 @@ BuildRequires: python BuildRequires: qemu Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500 %endif -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} # Owns /boot/vc directory BuildRequires: raspberrypi-firmware # For mountpoint @@ -86,16 +93,24 @@ This package contains documentation for U-Boot firmware. %setup -q -n u-boot-%{archive_version} %patch0001 -p1 %patch0002 -p1 +%patch0003 -p1 %build export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s) -make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" rpi_2_defconfig -make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes +make %{?jobs:-j %jobs} CROSS_COMPILE= HOSTCFLAGS="$RPM_OPT_FLAGS" rpi_2_defconfig +%if 0%{?is_rpi} +# U-Boot is installed in the filesystem, so we are confident there's enough space. +echo "Attempting to enable fdt apply command (.dtbo) support." +echo "CONFIG_OF_LIBFDT_OVERLAY=y" >> .config +%endif +make %{?jobs:-j %jobs} CROSS_COMPILE= HOSTCFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes + %if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring" # Chromebook ARM (snow) and HP Chromebook 11 (spring) need a uImage format export TEXT_START=$(awk '$NF == "_start" { printf "0x"$1 }' System.map) ./tools/mkimage -A arm -O linux -T kernel -C none -a $TEXT_START -e $TEXT_START -n uboot -d u-boot-dtb.bin u-boot.img %endif + %if %rockchip_spl == 1 for t in ; do ./tools/mkimage -n -d spl/u-boot-spl.bin -T $t u-boot-spl.$t @@ -107,7 +122,7 @@ export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | export NO_BRP_STRIP_DEBUG=true export NO_DEBUGINFO_STRIP_DEBUG=true %define uboot_dir /boot -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} %define uboot_dir /boot/vc %endif %if "%{name}" == "u-boot-qemu-ppce500" @@ -168,7 +183,7 @@ install -D -m 0755 SPL %{buildroot}/boot/imx6-spl.bin install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp %endif -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} %post # On the Raspberry Pi we chain-load u-boot.bin from bootcode.bin via config.txt. # It needs to be on the first FAT partition, wherever we mounted it. diff --git a/u-boot-rpi3.changes b/u-boot-rpi3.changes index 9364ee2..4e8877d 100644 --- a/u-boot-rpi3.changes +++ b/u-boot-rpi3.changes @@ -1,3 +1,38 @@ +------------------------------------------------------------------- +Sun Apr 9 18:24:30 UTC 2017 - afaerber@suse.de + +- Add tinker-rk3288 +- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.03 +* Fix firefly-rk3288 and tinker-rk3288 build with binutils 2.28. + 0003-Makefile-Fix-linking-with-modern-bi.patch +- U-Boot has no CFLAGS, so apply $RPM_OPT_FLAGS to HOSTCFLAGS instead + +------------------------------------------------------------------- +Mon Mar 20 11:10:57 UTC 2017 - afaerber@suse.de + +- Tidy Raspberry Pi conditionals +- Enable CONFIG_OF_LIBFDT_OVERLAY for Raspberry Pi only for now + +------------------------------------------------------------------- +Mon Mar 20 09:43:14 UTC 2017 - afaerber@suse.de + +- Add mvebudb-88f{3720,7040,8040} + +------------------------------------------------------------------- +Tue Mar 14 08:47:33 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.03 + +------------------------------------------------------------------- +Wed Mar 1 09:36:39 UTC 2017 - guillaume@opensuse.org + +- Add libopenssl-devel as BuildRequires (needed by some configs) + +------------------------------------------------------------------- +Tue Feb 28 08:37:55 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.03-rc3 + ------------------------------------------------------------------- Wed Feb 22 13:38:25 UTC 2017 - hsehic@suse.com diff --git a/u-boot-rpi3.spec b/u-boot-rpi3.spec index ae2c347..34484d9 100644 --- a/u-boot-rpi3.spec +++ b/u-boot-rpi3.spec @@ -29,11 +29,15 @@ %define imx6_spl 0 %define socfpga_spl 0 +%if "rpi3" == "rpi" || "rpi3" == "rpi2" || "rpi3" == "rpi332b" || "rpi3" == "rpi3" +%define is_rpi 1 +%endif + # archive_version differs from version for RC version only -%define archive_version 2017.01 +%define archive_version 2017.03 Name: u-boot-rpi3 -Version: 2017.01 +Version: 2017.03 Release: 0 Summary: The U-Boot firmware for the rpi3 platform License: GPL-2.0 @@ -45,10 +49,13 @@ Source3: update_git.sh Source300: u-boot-rpmlintrc Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch +Patch0003: 0003-Makefile-Fix-linking-with-modern-bi.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build # Arndale board need DTC >= 1.4 BuildRequires: bc BuildRequires: dtc >= 1.4.0 +# u-boot-clearfog (tools/kwbimage.c) needs openssl to build +BuildRequires: libopenssl-devel # u-boot-firefly-rk3288 needs python to build BuildRequires: python %if "%{name}" == "u-boot-qemu-ppce500" @@ -56,7 +63,7 @@ BuildRequires: python BuildRequires: qemu Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500 %endif -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} # Owns /boot/vc directory BuildRequires: raspberrypi-firmware # For mountpoint @@ -86,16 +93,24 @@ This package contains documentation for U-Boot firmware. %setup -q -n u-boot-%{archive_version} %patch0001 -p1 %patch0002 -p1 +%patch0003 -p1 %build export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s) -make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" rpi_3_defconfig -make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes +make %{?jobs:-j %jobs} CROSS_COMPILE= HOSTCFLAGS="$RPM_OPT_FLAGS" rpi_3_defconfig +%if 0%{?is_rpi} +# U-Boot is installed in the filesystem, so we are confident there's enough space. +echo "Attempting to enable fdt apply command (.dtbo) support." +echo "CONFIG_OF_LIBFDT_OVERLAY=y" >> .config +%endif +make %{?jobs:-j %jobs} CROSS_COMPILE= HOSTCFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes + %if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring" # Chromebook ARM (snow) and HP Chromebook 11 (spring) need a uImage format export TEXT_START=$(awk '$NF == "_start" { printf "0x"$1 }' System.map) ./tools/mkimage -A arm -O linux -T kernel -C none -a $TEXT_START -e $TEXT_START -n uboot -d u-boot-dtb.bin u-boot.img %endif + %if %rockchip_spl == 1 for t in ; do ./tools/mkimage -n -d spl/u-boot-spl.bin -T $t u-boot-spl.$t @@ -107,7 +122,7 @@ export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | export NO_BRP_STRIP_DEBUG=true export NO_DEBUGINFO_STRIP_DEBUG=true %define uboot_dir /boot -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} %define uboot_dir /boot/vc %endif %if "%{name}" == "u-boot-qemu-ppce500" @@ -168,7 +183,7 @@ install -D -m 0755 SPL %{buildroot}/boot/imx6-spl.bin install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp %endif -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} %post # On the Raspberry Pi we chain-load u-boot.bin from bootcode.bin via config.txt. # It needs to be on the first FAT partition, wherever we mounted it. diff --git a/u-boot-rpi332b.changes b/u-boot-rpi332b.changes index 9364ee2..4e8877d 100644 --- a/u-boot-rpi332b.changes +++ b/u-boot-rpi332b.changes @@ -1,3 +1,38 @@ +------------------------------------------------------------------- +Sun Apr 9 18:24:30 UTC 2017 - afaerber@suse.de + +- Add tinker-rk3288 +- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.03 +* Fix firefly-rk3288 and tinker-rk3288 build with binutils 2.28. + 0003-Makefile-Fix-linking-with-modern-bi.patch +- U-Boot has no CFLAGS, so apply $RPM_OPT_FLAGS to HOSTCFLAGS instead + +------------------------------------------------------------------- +Mon Mar 20 11:10:57 UTC 2017 - afaerber@suse.de + +- Tidy Raspberry Pi conditionals +- Enable CONFIG_OF_LIBFDT_OVERLAY for Raspberry Pi only for now + +------------------------------------------------------------------- +Mon Mar 20 09:43:14 UTC 2017 - afaerber@suse.de + +- Add mvebudb-88f{3720,7040,8040} + +------------------------------------------------------------------- +Tue Mar 14 08:47:33 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.03 + +------------------------------------------------------------------- +Wed Mar 1 09:36:39 UTC 2017 - guillaume@opensuse.org + +- Add libopenssl-devel as BuildRequires (needed by some configs) + +------------------------------------------------------------------- +Tue Feb 28 08:37:55 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.03-rc3 + ------------------------------------------------------------------- Wed Feb 22 13:38:25 UTC 2017 - hsehic@suse.com diff --git a/u-boot-rpi332b.spec b/u-boot-rpi332b.spec index 999d2f9..9fa94dd 100644 --- a/u-boot-rpi332b.spec +++ b/u-boot-rpi332b.spec @@ -29,11 +29,15 @@ %define imx6_spl 0 %define socfpga_spl 0 +%if "rpi332b" == "rpi" || "rpi332b" == "rpi2" || "rpi332b" == "rpi332b" || "rpi332b" == "rpi3" +%define is_rpi 1 +%endif + # archive_version differs from version for RC version only -%define archive_version 2017.01 +%define archive_version 2017.03 Name: u-boot-rpi332b -Version: 2017.01 +Version: 2017.03 Release: 0 Summary: The U-Boot firmware for the rpi332b platform License: GPL-2.0 @@ -45,10 +49,13 @@ Source3: update_git.sh Source300: u-boot-rpmlintrc Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch +Patch0003: 0003-Makefile-Fix-linking-with-modern-bi.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build # Arndale board need DTC >= 1.4 BuildRequires: bc BuildRequires: dtc >= 1.4.0 +# u-boot-clearfog (tools/kwbimage.c) needs openssl to build +BuildRequires: libopenssl-devel # u-boot-firefly-rk3288 needs python to build BuildRequires: python %if "%{name}" == "u-boot-qemu-ppce500" @@ -56,7 +63,7 @@ BuildRequires: python BuildRequires: qemu Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500 %endif -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} # Owns /boot/vc directory BuildRequires: raspberrypi-firmware # For mountpoint @@ -86,16 +93,24 @@ This package contains documentation for U-Boot firmware. %setup -q -n u-boot-%{archive_version} %patch0001 -p1 %patch0002 -p1 +%patch0003 -p1 %build export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s) -make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" rpi_3_32b_defconfig -make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes +make %{?jobs:-j %jobs} CROSS_COMPILE= HOSTCFLAGS="$RPM_OPT_FLAGS" rpi_3_32b_defconfig +%if 0%{?is_rpi} +# U-Boot is installed in the filesystem, so we are confident there's enough space. +echo "Attempting to enable fdt apply command (.dtbo) support." +echo "CONFIG_OF_LIBFDT_OVERLAY=y" >> .config +%endif +make %{?jobs:-j %jobs} CROSS_COMPILE= HOSTCFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes + %if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring" # Chromebook ARM (snow) and HP Chromebook 11 (spring) need a uImage format export TEXT_START=$(awk '$NF == "_start" { printf "0x"$1 }' System.map) ./tools/mkimage -A arm -O linux -T kernel -C none -a $TEXT_START -e $TEXT_START -n uboot -d u-boot-dtb.bin u-boot.img %endif + %if %rockchip_spl == 1 for t in ; do ./tools/mkimage -n -d spl/u-boot-spl.bin -T $t u-boot-spl.$t @@ -107,7 +122,7 @@ export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | export NO_BRP_STRIP_DEBUG=true export NO_DEBUGINFO_STRIP_DEBUG=true %define uboot_dir /boot -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} %define uboot_dir /boot/vc %endif %if "%{name}" == "u-boot-qemu-ppce500" @@ -168,7 +183,7 @@ install -D -m 0755 SPL %{buildroot}/boot/imx6-spl.bin install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp %endif -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} %post # On the Raspberry Pi we chain-load u-boot.bin from bootcode.bin via config.txt. # It needs to be on the first FAT partition, wherever we mounted it. diff --git a/u-boot-snow.changes b/u-boot-snow.changes index 9364ee2..4e8877d 100644 --- a/u-boot-snow.changes +++ b/u-boot-snow.changes @@ -1,3 +1,38 @@ +------------------------------------------------------------------- +Sun Apr 9 18:24:30 UTC 2017 - afaerber@suse.de + +- Add tinker-rk3288 +- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.03 +* Fix firefly-rk3288 and tinker-rk3288 build with binutils 2.28. + 0003-Makefile-Fix-linking-with-modern-bi.patch +- U-Boot has no CFLAGS, so apply $RPM_OPT_FLAGS to HOSTCFLAGS instead + +------------------------------------------------------------------- +Mon Mar 20 11:10:57 UTC 2017 - afaerber@suse.de + +- Tidy Raspberry Pi conditionals +- Enable CONFIG_OF_LIBFDT_OVERLAY for Raspberry Pi only for now + +------------------------------------------------------------------- +Mon Mar 20 09:43:14 UTC 2017 - afaerber@suse.de + +- Add mvebudb-88f{3720,7040,8040} + +------------------------------------------------------------------- +Tue Mar 14 08:47:33 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.03 + +------------------------------------------------------------------- +Wed Mar 1 09:36:39 UTC 2017 - guillaume@opensuse.org + +- Add libopenssl-devel as BuildRequires (needed by some configs) + +------------------------------------------------------------------- +Tue Feb 28 08:37:55 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.03-rc3 + ------------------------------------------------------------------- Wed Feb 22 13:38:25 UTC 2017 - hsehic@suse.com diff --git a/u-boot-snow.spec b/u-boot-snow.spec index f8d7678..0a13710 100644 --- a/u-boot-snow.spec +++ b/u-boot-snow.spec @@ -29,11 +29,15 @@ %define imx6_spl 0 %define socfpga_spl 0 +%if "snow" == "rpi" || "snow" == "rpi2" || "snow" == "rpi332b" || "snow" == "rpi3" +%define is_rpi 1 +%endif + # archive_version differs from version for RC version only -%define archive_version 2017.01 +%define archive_version 2017.03 Name: u-boot-snow -Version: 2017.01 +Version: 2017.03 Release: 0 Summary: The U-Boot firmware for the snow platform License: GPL-2.0 @@ -45,10 +49,13 @@ Source3: update_git.sh Source300: u-boot-rpmlintrc Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch +Patch0003: 0003-Makefile-Fix-linking-with-modern-bi.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build # Arndale board need DTC >= 1.4 BuildRequires: bc BuildRequires: dtc >= 1.4.0 +# u-boot-clearfog (tools/kwbimage.c) needs openssl to build +BuildRequires: libopenssl-devel # u-boot-firefly-rk3288 needs python to build BuildRequires: python %if "%{name}" == "u-boot-qemu-ppce500" @@ -56,7 +63,7 @@ BuildRequires: python BuildRequires: qemu Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500 %endif -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} # Owns /boot/vc directory BuildRequires: raspberrypi-firmware # For mountpoint @@ -86,16 +93,24 @@ This package contains documentation for U-Boot firmware. %setup -q -n u-boot-%{archive_version} %patch0001 -p1 %patch0002 -p1 +%patch0003 -p1 %build export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s) -make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" snow_defconfig -make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes +make %{?jobs:-j %jobs} CROSS_COMPILE= HOSTCFLAGS="$RPM_OPT_FLAGS" snow_defconfig +%if 0%{?is_rpi} +# U-Boot is installed in the filesystem, so we are confident there's enough space. +echo "Attempting to enable fdt apply command (.dtbo) support." +echo "CONFIG_OF_LIBFDT_OVERLAY=y" >> .config +%endif +make %{?jobs:-j %jobs} CROSS_COMPILE= HOSTCFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes + %if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring" # Chromebook ARM (snow) and HP Chromebook 11 (spring) need a uImage format export TEXT_START=$(awk '$NF == "_start" { printf "0x"$1 }' System.map) ./tools/mkimage -A arm -O linux -T kernel -C none -a $TEXT_START -e $TEXT_START -n uboot -d u-boot-dtb.bin u-boot.img %endif + %if %rockchip_spl == 1 for t in ; do ./tools/mkimage -n -d spl/u-boot-spl.bin -T $t u-boot-spl.$t @@ -107,7 +122,7 @@ export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | export NO_BRP_STRIP_DEBUG=true export NO_DEBUGINFO_STRIP_DEBUG=true %define uboot_dir /boot -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} %define uboot_dir /boot/vc %endif %if "%{name}" == "u-boot-qemu-ppce500" @@ -168,7 +183,7 @@ install -D -m 0755 SPL %{buildroot}/boot/imx6-spl.bin install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp %endif -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} %post # On the Raspberry Pi we chain-load u-boot.bin from bootcode.bin via config.txt. # It needs to be on the first FAT partition, wherever we mounted it. diff --git a/u-boot-socfpgade0nanosoc.changes b/u-boot-socfpgade0nanosoc.changes index 9364ee2..4e8877d 100644 --- a/u-boot-socfpgade0nanosoc.changes +++ b/u-boot-socfpgade0nanosoc.changes @@ -1,3 +1,38 @@ +------------------------------------------------------------------- +Sun Apr 9 18:24:30 UTC 2017 - afaerber@suse.de + +- Add tinker-rk3288 +- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.03 +* Fix firefly-rk3288 and tinker-rk3288 build with binutils 2.28. + 0003-Makefile-Fix-linking-with-modern-bi.patch +- U-Boot has no CFLAGS, so apply $RPM_OPT_FLAGS to HOSTCFLAGS instead + +------------------------------------------------------------------- +Mon Mar 20 11:10:57 UTC 2017 - afaerber@suse.de + +- Tidy Raspberry Pi conditionals +- Enable CONFIG_OF_LIBFDT_OVERLAY for Raspberry Pi only for now + +------------------------------------------------------------------- +Mon Mar 20 09:43:14 UTC 2017 - afaerber@suse.de + +- Add mvebudb-88f{3720,7040,8040} + +------------------------------------------------------------------- +Tue Mar 14 08:47:33 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.03 + +------------------------------------------------------------------- +Wed Mar 1 09:36:39 UTC 2017 - guillaume@opensuse.org + +- Add libopenssl-devel as BuildRequires (needed by some configs) + +------------------------------------------------------------------- +Tue Feb 28 08:37:55 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.03-rc3 + ------------------------------------------------------------------- Wed Feb 22 13:38:25 UTC 2017 - hsehic@suse.com diff --git a/u-boot-socfpgade0nanosoc.spec b/u-boot-socfpgade0nanosoc.spec index f46e96e..f2ea3b3 100644 --- a/u-boot-socfpgade0nanosoc.spec +++ b/u-boot-socfpgade0nanosoc.spec @@ -29,11 +29,15 @@ %define imx6_spl 0 %define socfpga_spl 1 +%if "socfpgade0nanosoc" == "rpi" || "socfpgade0nanosoc" == "rpi2" || "socfpgade0nanosoc" == "rpi332b" || "socfpgade0nanosoc" == "rpi3" +%define is_rpi 1 +%endif + # archive_version differs from version for RC version only -%define archive_version 2017.01 +%define archive_version 2017.03 Name: u-boot-socfpgade0nanosoc -Version: 2017.01 +Version: 2017.03 Release: 0 Summary: The U-Boot firmware for the socfpgade0nanosoc platform License: GPL-2.0 @@ -45,10 +49,13 @@ Source3: update_git.sh Source300: u-boot-rpmlintrc Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch +Patch0003: 0003-Makefile-Fix-linking-with-modern-bi.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build # Arndale board need DTC >= 1.4 BuildRequires: bc BuildRequires: dtc >= 1.4.0 +# u-boot-clearfog (tools/kwbimage.c) needs openssl to build +BuildRequires: libopenssl-devel # u-boot-firefly-rk3288 needs python to build BuildRequires: python %if "%{name}" == "u-boot-qemu-ppce500" @@ -56,7 +63,7 @@ BuildRequires: python BuildRequires: qemu Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500 %endif -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} # Owns /boot/vc directory BuildRequires: raspberrypi-firmware # For mountpoint @@ -86,16 +93,24 @@ This package contains documentation for U-Boot firmware. %setup -q -n u-boot-%{archive_version} %patch0001 -p1 %patch0002 -p1 +%patch0003 -p1 %build export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s) -make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" socfpga_de0_nano_soc_defconfig -make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes +make %{?jobs:-j %jobs} CROSS_COMPILE= HOSTCFLAGS="$RPM_OPT_FLAGS" socfpga_de0_nano_soc_defconfig +%if 0%{?is_rpi} +# U-Boot is installed in the filesystem, so we are confident there's enough space. +echo "Attempting to enable fdt apply command (.dtbo) support." +echo "CONFIG_OF_LIBFDT_OVERLAY=y" >> .config +%endif +make %{?jobs:-j %jobs} CROSS_COMPILE= HOSTCFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes + %if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring" # Chromebook ARM (snow) and HP Chromebook 11 (spring) need a uImage format export TEXT_START=$(awk '$NF == "_start" { printf "0x"$1 }' System.map) ./tools/mkimage -A arm -O linux -T kernel -C none -a $TEXT_START -e $TEXT_START -n uboot -d u-boot-dtb.bin u-boot.img %endif + %if %rockchip_spl == 1 for t in ; do ./tools/mkimage -n -d spl/u-boot-spl.bin -T $t u-boot-spl.$t @@ -107,7 +122,7 @@ export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | export NO_BRP_STRIP_DEBUG=true export NO_DEBUGINFO_STRIP_DEBUG=true %define uboot_dir /boot -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} %define uboot_dir /boot/vc %endif %if "%{name}" == "u-boot-qemu-ppce500" @@ -168,7 +183,7 @@ install -D -m 0755 SPL %{buildroot}/boot/imx6-spl.bin install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp %endif -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} %post # On the Raspberry Pi we chain-load u-boot.bin from bootcode.bin via config.txt. # It needs to be on the first FAT partition, wherever we mounted it. diff --git a/u-boot-spring.changes b/u-boot-spring.changes index 9364ee2..4e8877d 100644 --- a/u-boot-spring.changes +++ b/u-boot-spring.changes @@ -1,3 +1,38 @@ +------------------------------------------------------------------- +Sun Apr 9 18:24:30 UTC 2017 - afaerber@suse.de + +- Add tinker-rk3288 +- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.03 +* Fix firefly-rk3288 and tinker-rk3288 build with binutils 2.28. + 0003-Makefile-Fix-linking-with-modern-bi.patch +- U-Boot has no CFLAGS, so apply $RPM_OPT_FLAGS to HOSTCFLAGS instead + +------------------------------------------------------------------- +Mon Mar 20 11:10:57 UTC 2017 - afaerber@suse.de + +- Tidy Raspberry Pi conditionals +- Enable CONFIG_OF_LIBFDT_OVERLAY for Raspberry Pi only for now + +------------------------------------------------------------------- +Mon Mar 20 09:43:14 UTC 2017 - afaerber@suse.de + +- Add mvebudb-88f{3720,7040,8040} + +------------------------------------------------------------------- +Tue Mar 14 08:47:33 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.03 + +------------------------------------------------------------------- +Wed Mar 1 09:36:39 UTC 2017 - guillaume@opensuse.org + +- Add libopenssl-devel as BuildRequires (needed by some configs) + +------------------------------------------------------------------- +Tue Feb 28 08:37:55 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.03-rc3 + ------------------------------------------------------------------- Wed Feb 22 13:38:25 UTC 2017 - hsehic@suse.com diff --git a/u-boot-spring.spec b/u-boot-spring.spec index 259237c..a30d344 100644 --- a/u-boot-spring.spec +++ b/u-boot-spring.spec @@ -29,11 +29,15 @@ %define imx6_spl 0 %define socfpga_spl 0 +%if "spring" == "rpi" || "spring" == "rpi2" || "spring" == "rpi332b" || "spring" == "rpi3" +%define is_rpi 1 +%endif + # archive_version differs from version for RC version only -%define archive_version 2017.01 +%define archive_version 2017.03 Name: u-boot-spring -Version: 2017.01 +Version: 2017.03 Release: 0 Summary: The U-Boot firmware for the spring platform License: GPL-2.0 @@ -45,10 +49,13 @@ Source3: update_git.sh Source300: u-boot-rpmlintrc Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch +Patch0003: 0003-Makefile-Fix-linking-with-modern-bi.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build # Arndale board need DTC >= 1.4 BuildRequires: bc BuildRequires: dtc >= 1.4.0 +# u-boot-clearfog (tools/kwbimage.c) needs openssl to build +BuildRequires: libopenssl-devel # u-boot-firefly-rk3288 needs python to build BuildRequires: python %if "%{name}" == "u-boot-qemu-ppce500" @@ -56,7 +63,7 @@ BuildRequires: python BuildRequires: qemu Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500 %endif -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} # Owns /boot/vc directory BuildRequires: raspberrypi-firmware # For mountpoint @@ -86,16 +93,24 @@ This package contains documentation for U-Boot firmware. %setup -q -n u-boot-%{archive_version} %patch0001 -p1 %patch0002 -p1 +%patch0003 -p1 %build export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s) -make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" spring_defconfig -make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes +make %{?jobs:-j %jobs} CROSS_COMPILE= HOSTCFLAGS="$RPM_OPT_FLAGS" spring_defconfig +%if 0%{?is_rpi} +# U-Boot is installed in the filesystem, so we are confident there's enough space. +echo "Attempting to enable fdt apply command (.dtbo) support." +echo "CONFIG_OF_LIBFDT_OVERLAY=y" >> .config +%endif +make %{?jobs:-j %jobs} CROSS_COMPILE= HOSTCFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes + %if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring" # Chromebook ARM (snow) and HP Chromebook 11 (spring) need a uImage format export TEXT_START=$(awk '$NF == "_start" { printf "0x"$1 }' System.map) ./tools/mkimage -A arm -O linux -T kernel -C none -a $TEXT_START -e $TEXT_START -n uboot -d u-boot-dtb.bin u-boot.img %endif + %if %rockchip_spl == 1 for t in ; do ./tools/mkimage -n -d spl/u-boot-spl.bin -T $t u-boot-spl.$t @@ -107,7 +122,7 @@ export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | export NO_BRP_STRIP_DEBUG=true export NO_DEBUGINFO_STRIP_DEBUG=true %define uboot_dir /boot -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} %define uboot_dir /boot/vc %endif %if "%{name}" == "u-boot-qemu-ppce500" @@ -168,7 +183,7 @@ install -D -m 0755 SPL %{buildroot}/boot/imx6-spl.bin install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp %endif -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} %post # On the Raspberry Pi we chain-load u-boot.bin from bootcode.bin via config.txt. # It needs to be on the first FAT partition, wherever we mounted it. diff --git a/u-boot-tinker-rk3288.changes b/u-boot-tinker-rk3288.changes new file mode 100644 index 0000000..4e8877d --- /dev/null +++ b/u-boot-tinker-rk3288.changes @@ -0,0 +1,1532 @@ +------------------------------------------------------------------- +Sun Apr 9 18:24:30 UTC 2017 - afaerber@suse.de + +- Add tinker-rk3288 +- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.03 +* Fix firefly-rk3288 and tinker-rk3288 build with binutils 2.28. + 0003-Makefile-Fix-linking-with-modern-bi.patch +- U-Boot has no CFLAGS, so apply $RPM_OPT_FLAGS to HOSTCFLAGS instead + +------------------------------------------------------------------- +Mon Mar 20 11:10:57 UTC 2017 - afaerber@suse.de + +- Tidy Raspberry Pi conditionals +- Enable CONFIG_OF_LIBFDT_OVERLAY for Raspberry Pi only for now + +------------------------------------------------------------------- +Mon Mar 20 09:43:14 UTC 2017 - afaerber@suse.de + +- Add mvebudb-88f{3720,7040,8040} + +------------------------------------------------------------------- +Tue Mar 14 08:47:33 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.03 + +------------------------------------------------------------------- +Wed Mar 1 09:36:39 UTC 2017 - guillaume@opensuse.org + +- Add libopenssl-devel as BuildRequires (needed by some configs) + +------------------------------------------------------------------- +Tue Feb 28 08:37:55 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.03-rc3 + +------------------------------------------------------------------- +Wed Feb 22 13:38:25 UTC 2017 - hsehic@suse.com + +- Add Lamobo_R1 + +------------------------------------------------------------------- +Wed Jan 11 09:16:16 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.01 + +------------------------------------------------------------------- +Mon Jan 9 12:06:53 UTC 2017 - afaerber@suse.de + +- Add udooneo +- Introduce IMX6_SPL, superseding per-board CUBOXI_SPL and UDOO_SPL + +------------------------------------------------------------------- +Fri Jan 6 14:29:12 UTC 2017 - afaerber@suse.de + +- Add nanopineo +- Inline CHANGE_DATE into u-boot.spec.in to keep future diffs small + +------------------------------------------------------------------- +Thu Jan 5 10:16:20 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.01-rc3 +- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.01 +* Patches dropped: + 0002-XXX-openSUSE-XXX-omap3-Move-to-dist.patch + 0003-Revert-Revert-omap3-Use-raw-SPL-by-.patch + 0004-ARM-bcm283x-Implement-EFI-RTS-reset.patch + 0005-bcm2835-video-Map-frame-buffer-as-3.patch + 0006-bcm2835-Reserve-the-spin-table-in-e.patch + 0007-efi_loader-fix-depends-on-line-of-E.patch + 0008-efi-Use-device-device-path-type-Mes.patch +* Patches added: + 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch + +------------------------------------------------------------------- +Mon Dec 19 20:50:30 UTC 2016 - xxxxxmichl@googlemail.com + +- Added support for DE0-Nanos-SoC board + +------------------------------------------------------------------- +Tue Nov 15 10:30:59 UTC 2016 - guillaume@opensuse.org + +- Updated to v2016.11 + +------------------------------------------------------------------- +Wed Nov 2 13:36:32 UTC 2016 - guillaume@opensuse.org + +- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2016.11 + to fix build of Raspberry Pi 1, 2 and 3 + +------------------------------------------------------------------- +Tue Nov 1 13:10:28 UTC 2016 - guillaume@opensuse.org + +- Updated to v2016.11-rc3 +- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2016.11 +* Patches dropped: + 0004-efi_loader-Allow-boards-to-implemen.patch + 0005-ARM-bcm283x-Implement-EFI-RTS-reset.patch + 0006-efi_loader-gop-Expose-fb-when-32bpp.patch + 0007-bcm2835-video-Map-frame-buffer-as-3.patch + 0008-bcm2835-Reserve-the-spin-table-in-e.patch + 0009-x86-Move-table-csum-into-separate-h.patch + 0010-x86-Move-smbios-generation-into-arc.patch + 0011-efi_loader-Expose-efi_install_confi.patch + 0012-smbios-Allow-compilation-on-64bit-s.patch + 0013-smbios-Expose-in-efi_loader-as-tabl.patch + 0014-efi_loader-Fix-efi_install_configur.patch + 0015-smbios-Provide-serial-number.patch + 0016-efi_loader-Update-description-of-in.patch + 0017-efi_loader-Fix-memory-map-size-chec.patch + 0018-efi_loader-Fix-crash-on-32-bit-syst.patch + 0019-efi_loader-Move-efi_allocate_pool-i.patch + 0020-efi_loader-Track-size-of-pool-alloc.patch + 0021-efi_loader-Readd-freed-pages-to-mem.patch + 0022-efi_loader-Keep-memory-mapping-sort.patch + 0023-efi_loader-Do-not-leak-memory-when-.patch +* Patches added: + 0004-ARM-bcm283x-Implement-EFI-RTS-reset.patch + 0005-bcm2835-video-Map-frame-buffer-as-3.patch + 0006-bcm2835-Reserve-the-spin-table-in-e.patch + 0007-efi_loader-fix-depends-on-line-of-E.patch + 0008-efi-Use-device-device-path-type-Mes.patch + +------------------------------------------------------------------- +Sun Oct 16 16:20:25 UTC 2016 - afaerber@suse.de + +- Updated to v2016.11-rc1 + +------------------------------------------------------------------- +Sat Oct 15 11:25:48 UTC 2016 - agraf@suse.com + +- Backport patches to allow 4.8 kernels to boot +- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2016.09 +* Patches added: + 0016-efi_loader-Update-description-of-in.patch + 0017-efi_loader-Fix-memory-map-size-chec.patch + 0018-efi_loader-Fix-crash-on-32-bit-syst.patch + 0019-efi_loader-Move-efi_allocate_pool-i.patch + 0020-efi_loader-Track-size-of-pool-alloc.patch + 0021-efi_loader-Readd-freed-pages-to-mem.patch + 0022-efi_loader-Keep-memory-mapping-sort.patch + 0023-efi_loader-Do-not-leak-memory-when-.patch + +------------------------------------------------------------------- +Thu Oct 13 13:21:36 UTC 2016 - afaerber@suse.de + +- update_git.sh: Handle SUBLEVEL for %archive_version (x.y.Z) +- Switch to branch tumbleweed-2016.09 + +------------------------------------------------------------------- +Fri Sep 30 20:01:33 UTC 2016 - guillaume@opensuse.org + +- Updated to v2016.09 +- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-staging +* Patches dropped: + 0009-Revert-armv8-Enable-CPUECTLR.SMPEN-.patch + 0010-bcm2835_gpio-Implement-GPIOF_FUNC.patch + 0011-serial-bcm283x_mu-Detect-disabled-s.patch + 0012-x86-Move-table-csum-into-separate-h.patch + 0013-x86-Move-smbios-generation-into-arc.patch + 0014-efi_loader-Expose-efi_install_confi.patch + 0015-smbios-Allow-compilation-on-64bit-s.patch + 0016-smbios-Expose-in-efi_loader-as-tabl.patch + 0017-efi_loader-Fix-efi_install_configur.patch + 0018-smbios-Provide-serial-number.patch + 0019-common-env_nand-Ensure-that-we-have.patch +* Patches added: + 0009-x86-Move-table-csum-into-separate-h.patch + 0010-x86-Move-smbios-generation-into-arc.patch + 0011-efi_loader-Expose-efi_install_confi.patch + 0012-smbios-Allow-compilation-on-64bit-s.patch + 0013-smbios-Expose-in-efi_loader-as-tabl.patch + 0014-efi_loader-Fix-efi_install_configur.patch + 0015-smbios-Provide-serial-number.patch +- Add python as BuildRequires (needed by some boards using DTOC + such as firefly-rk3288) +- Fix firefly-rk3288 by replacing u-boot-spl-dtb.bin + by u-boot-spl.bin +- Updated to v2016.09.01 + +------------------------------------------------------------------- +Wed Sep 28 15:18:17 UTC 2016 - afaerber@suse.de + +- Fix rpi332b installation path and enable %post scriplet + +------------------------------------------------------------------- +Sun Sep 11 03:44:15 UTC 2016 - afaerber@suse.de + +- Add hikey and rpi332b + +------------------------------------------------------------------- +Wed Sep 7 09:02:59 UTC 2016 - guillaume@opensuse.org + +- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed +* Patches added: + 0019-common-env_nand-Ensure-that-we-have.patch + +------------------------------------------------------------------- +Fri Sep 2 23:25:44 UTC 2016 - afaerber@suse.de + +- Add post-install script for Raspberry Pi to install to /boot/efi + where needed. (bsc#996064) + +------------------------------------------------------------------- +Fri Aug 12 14:07:49 UTC 2016 - agraf@suse.com + +- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed +- Update to v3 of the serial detect code (bsc#989511) +* Patches added: + 0010-bcm2835_gpio-Implement-GPIOF_FUNC.patch +* Patches rebased: + 0010-serial-bcm283x_mu-Detect-disabled-s.patch -> 0011-serial-bcm283x_mu-Detect-disabled-s.patch +- Add SMBIOS table on ARM (bsc#989509) +* Patches added: + 0012-x86-Move-table-csum-into-separate-h.patch + 0013-x86-Move-smbios-generation-into-arc.patch + 0014-efi_loader-Expose-efi_install_confi.patch + 0015-smbios-Allow-compilation-on-64bit-s.patch + 0016-smbios-Expose-in-efi_loader-as-tabl.patch + 0017-efi_loader-Fix-efi_install_configur.patch + 0018-smbios-Provide-serial-number.patch + +------------------------------------------------------------------- +Mon Aug 1 18:42:36 UTC 2016 - stefan.bruens@rwth-aachen.de + +- Use deterministic build date by setting DATE_SOURCE_EPOCH + +------------------------------------------------------------------- +Fri Jul 29 21:52:37 UTC 2016 - agraf@suse.com + +- Add dynamic detection of rpi3 uart (bsc#989511) +- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed +* Patches added: + 0010-serial-bcm283x_mu-Detect-disabled-s.patch + +------------------------------------------------------------------- +Sat Jul 16 18:49:35 UTC 2016 - afaerber@suse.de + +- Updated to v2016.07 +* Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed +* Patches dropped (upstreamed): + 0004-video-ipu-Fix-build-with-hard-float.patch + 0005-efi_loader-Clean-up-system-table-on.patch + 0006-efi_loader-gop-Don-t-expose-fb-addr.patch + 0009-arm-Introduce-setjmp-longjmp.patch + 0010-efi_loader-Add-exit-support.patch + 0011-efi_loader-Add-DM_VIDEO-support.patch + 0015-arm-Fix-setjmp.patch +* Patches rebased: + 0007-efi_loader-Allow-boards-to-implemen.patch -> 0004-efi_loader-Allow-boards-to-implemen.patch + 0008-ARM-bcm283x-Implement-EFI-RTS-reset.patch -> 0005-ARM-bcm283x-Implement-EFI-RTS-reset.patch + 0012-efi_loader-gop-Expose-fb-when-32bpp.patch -> 0006-efi_loader-gop-Expose-fb-when-32bpp.patch + 0013-bcm2835-video-Map-frame-buffer-as-3.patch -> 0007-bcm2835-video-Map-frame-buffer-as-3.patch + 0014-bcm2835-Reserve-the-spin-table-in-e.patch -> 0008-bcm2835-Reserve-the-spin-table-in-e.patch +- Revert an ARMv8 breakage from v2016.07 (backport from master) + 0009-Revert-armv8-Enable-CPUECTLR.SMPEN-.patch +- Add dragonboard410c, odroid-c2, pine64_plus + +------------------------------------------------------------------- +Mon Jun 27 11:00:33 UTC 2016 - nadvornik@suse.com + +- Enable SUNXI_SPL for orangepi_pc + +------------------------------------------------------------------- +Mon Jun 27 06:14:09 UTC 2016 - agraf@suse.com + +- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed +* Patches added: + 0015-arm-Fix-setjmp.patch +- Add update_git.sh to source file list + +------------------------------------------------------------------- +Mon Jun 6 22:07:59 UTC 2016 - agraf@suse.com + +- Add efifb support for RPi +- Fix spin table spill on Rpi +- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed +* Patches added: + 0011-efi_loader-Add-DM_VIDEO-support.patch + 0012-efi_loader-gop-Expose-fb-when-32bpp.patch + 0013-bcm2835-video-Map-frame-buffer-as-3.patch + 0014-bcm2835-Reserve-the-spin-table-in-e.patch + +------------------------------------------------------------------- +Mon Jun 6 06:56:34 UTC 2016 - agraf@suse.com + +- Add RTS reboot for RPi +- Add EFI exit support +- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed +* Patches added: + 0007-efi_loader-Allow-boards-to-implemen.patch + 0008-ARM-bcm283x-Implement-EFI-RTS-reset.patch + 0009-arm-Introduce-setjmp-longjmp.patch + 0010-efi_loader-Add-exit-support.patch + +------------------------------------------------------------------- +Fri Jun 3 11:18:13 UTC 2016 - agraf@suse.com + +- Disable EFI GOP fb_addr, so Linux doesn't use it +- Move to git based patch queue workflow +- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed +* Patches dropped: + 0001-video-ipu-Fix-build-with-hard-float-ARM-toolchain.-I.patch + 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch + 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch +* Patches added: + 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch + 0002-XXX-openSUSE-XXX-omap3-Move-to-dist.patch + 0003-Revert-Revert-omap3-Use-raw-SPL-by-.patch + 0004-video-ipu-Fix-build-with-hard-float.patch + 0005-efi_loader-Clean-up-system-table-on.patch + 0006-efi_loader-gop-Don-t-expose-fb-addr.patch + +------------------------------------------------------------------- +Wed May 18 13:07:24 UTC 2016 - afaerber@suse.de + +- Fix rpi3 installation location + +------------------------------------------------------------------- +Wed May 18 12:22:31 UTC 2016 - guillaume@opensuse.org + +- Add 0001-video-ipu-Fix-build-with-hard-float-ARM-toolchain.-I.patch + to fix build on iMX boards (with hard-float toolchains) + +------------------------------------------------------------------- +Tue May 17 12:53:24 UTC 2016 - guillaume@opensuse.org + +- Update to 2016.05 +- Remove upstreamed patch: + * 0003-exynos-Set-CNTFRQ.patch + +------------------------------------------------------------------- +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 + +- Update to 2016.05-rc3 + - Removed patches: + * 0004-iso-Make-little-endian-and-64bit-safe.patch + * 0005-iso-Start-with-partition-1.patch + * 0006-iso-Allow-512-byte-sector-size.patch + * 0007-efi_loader-Split-drive-add-into-function.patch + * 0008-efi_loader-Add-el-torito-support.patch + * 0009-efi_loader-Pass-file-path-to-payload.patch + * 0010-efi_loader-Increase-path-string-to-32-characters.patch + * 0011-distro-Enable-iso-partition-code.patch + * 0012-efi_loader-Use-system-fdt-as-fallback.patch + * 0013-efi_loader-Put-fdt-into-convenient-location.patch + * 0014-efi_loader-Expose-ascending-efi-memory-map.patch + * 0015-efi_loader-Always-flush-in-cache-line-size-granulari.patch + * 0016-efi_loader-Handle-memory-overflows.patch + * 0017-ARM-rpi-fix-64-bit-CONFIG_SYS_TEXT_BASE.patch + +------------------------------------------------------------------- +Fri Apr 15 21:50:37 UTC 2016 - agraf@suse.com + +- Add patch to fix RPi3 aarch64 mode with recent firmware + * 0017-ARM-rpi-fix-64-bit-CONFIG_SYS_TEXT_BASE.patch + +------------------------------------------------------------------- +Wed Apr 13 13:55:13 UTC 2016 - agraf@suse.com + +- Move patch queue to https://github.com/openSUSE/u-boot.git tumbleweed + - Removed old patches: + * 0001-iso-Make-little-endian-and-64bit-safe.patch + * 0002-iso-Start-with-partition-1.patch + * 0003-iso-Allow-512-byte-sector-size.patch + * 0004-efi_loader-Split-drive-add-into-function.patch + * 0005-efi_loader-Add-el-torito-support.patch + * 0006-efi_loader-Pass-file-path-to-payload.patch + * 0007-efi_loader-Increase-path-string-to-32-characters.patch + * 0008-distro-Enable-iso-partition-code.patch + * 0009-efi_loader-Use-system-fdt-as-fallback.patch + * 0010-efi_loader-Put-fdt-into-convenient-location.patch + * 0011-efi_loader-Expose-ascending-efi-memory-map.patch + * 0012-efi_loader-Always-flush-in-cache-line-size-granulari.patch + * u-boot-exynos.patch + * efi-default-env.patch + * omap3-Move-to-distro-bootcmd.patch + - Added new patches: + * 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch + * 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch + * 0003-exynos-Set-CNTFRQ.patch + * 0004-iso-Make-little-endian-and-64bit-safe.patch + * 0005-iso-Start-with-partition-1.patch + * 0006-iso-Allow-512-byte-sector-size.patch + * 0007-efi_loader-Split-drive-add-into-function.patch + * 0008-efi_loader-Add-el-torito-support.patch + * 0009-efi_loader-Pass-file-path-to-payload.patch + * 0010-efi_loader-Increase-path-string-to-32-characters.patch + * 0011-distro-Enable-iso-partition-code.patch + * 0012-efi_loader-Use-system-fdt-as-fallback.patch + * 0013-efi_loader-Put-fdt-into-convenient-location.patch + * 0014-efi_loader-Expose-ascending-efi-memory-map.patch + * 0015-efi_loader-Always-flush-in-cache-line-size-granulari.patch +- Add patch to fix Jetson TK1 + * 0016-efi_loader-Handle-memory-overflows.patch + +------------------------------------------------------------------- +Wed Apr 13 13:16:42 UTC 2016 - guillaume@opensuse.org + +- Use released source archive instead of manually built archive + +------------------------------------------------------------------- +Tue Apr 12 08:38:49 UTC 2016 - agraf@suse.com + +- Update to 2016.05-rc1 +- Remove upstreamed patches: + * efi.patch + * efi2.patch + * efi_loader-Call-fdt-preparation-functions.patch + * efi_loader-Pass-proper-device-path-in-on-boot.patch + * efi_loader-Provide-icache-flush-stub.patch + * efi-map-fdt-as-reserved.patch + * rpi3.patch +- Add EFI fixes and iso boot backports: + * 0001-iso-Make-little-endian-and-64bit-safe.patch + * 0002-iso-Start-with-partition-1.patch + * 0003-iso-Allow-512-byte-sector-size.patch + * 0004-efi_loader-Split-drive-add-into-function.patch + * 0005-efi_loader-Add-el-torito-support.patch + * 0006-efi_loader-Pass-file-path-to-payload.patch + * 0007-efi_loader-Increase-path-string-to-32-characters.patch + * 0008-distro-Enable-iso-partition-code.patch + * 0009-efi_loader-Use-system-fdt-as-fallback.patch + * 0010-efi_loader-Put-fdt-into-convenient-location.patch + * 0011-efi_loader-Expose-ascending-efi-memory-map.patch + * 0012-efi_loader-Always-flush-in-cache-line-size-granulari.patch + +------------------------------------------------------------------- +Sun Apr 3 04:40:53 UTC 2016 - afaerber@suse.de + +- Package .img for firefly-rk3288 +- Package firefly-rk3288 SPL images. Generate them here so that we + notice early if the size constraints are ever again not met. + +------------------------------------------------------------------- +Sat Apr 2 23:08:53 UTC 2016 - afaerber@suse.de + +- Package spl/u-boot-spl for new tegra-uboot-flasher-scripts + +------------------------------------------------------------------- +Fri Apr 1 17:07:55 UTC 2016 - afaerber@suse.de + +- Add clearfog + +------------------------------------------------------------------- +Tue Mar 15 08:47:35 UTC 2016 - guillaume@opensuse.org + +- Update to 2016.03 +- Remove upstreamed patch: + * omap3-Use-raw-SPL-by-default-for-mmc1.patch + +------------------------------------------------------------------- +Sun Mar 13 21:48:46 UTC 2016 - dmueller@suse.com + +- add support for Raspberry Pi 3 (rpi3.patch) + +------------------------------------------------------------------- +Wed Mar 9 22:50:22 UTC 2016 - agraf@suse.com + +- Fix missing 0-terminator in efi patch, breaking boot.scr boot + +------------------------------------------------------------------- +Sat Mar 5 22:02:18 UTC 2016 - afaerber@suse.de + +- Non-free licensed Marvell code has long been removed. + Drop obsolete drop-marvell.patch (bsc#773824) +- Fix indentation of Patch6 in u-boot.spec.in + +------------------------------------------------------------------- +Thu Mar 3 15:02:37 UTC 2016 - agraf@suse.com + +- EFI: Map fdt as reserved + * efi-map-fdt-as-reserved.patch + +------------------------------------------------------------------- +Thu Mar 3 12:52:17 UTC 2016 - agraf@suse.com + +- Fix OMAP3 boards to load u-boot from raw sector offset + * omap3-Use-raw-SPL-by-default-for-mmc1.patch + +------------------------------------------------------------------- +Wed Mar 2 23:46:44 UTC 2016 - agraf@suse.com + +- Allow grub2 to find its config + * efi_loader-Pass-proper-device-path-in-on-boot.patch +- Fix Raspberry Pi 1 build + * efi_loader-Provide-icache-flush-stub.patch + +------------------------------------------------------------------- +Wed Mar 2 10:03:56 UTC 2016 - guillaume@opensuse.org + +- Update to 2016.03-rc3 +- Remove upstreamed patches: + * 0001-spl-if-MMCSD_MODE_RAW-fails-try-MMCSD_MODE_FS-if-ava.patch + +------------------------------------------------------------------- +Tue Mar 1 23:06:57 UTC 2016 - agraf@suse.com + +- Move omap3 to distro bootcmd (to enable efi boot on beagle-xm) + * omap3-Move-to-distro-bootcmd.patch +- Add EFI patch to support FDT fixups (patches in RAM size) + * efi_loader-Call-fdt-preparation-functions.patch + +------------------------------------------------------------------- +Mon Feb 29 23:28:15 UTC 2016 - agraf@suse.com + +- Patch the default u-boot env to search for dtb in /boot at part 2 + * efi-default-env.patch + +------------------------------------------------------------------- +Sun Feb 28 11:02:04 UTC 2016 - agraf@suse.com + +- Use $fdtfile rather than $fdt_name everywhere: + * efi2.patch + +------------------------------------------------------------------- +Sat Feb 27 13:20:29 UTC 2016 - agraf@suse.com + +- Add EFI support about to move upstream: + * efi.patch + +------------------------------------------------------------------- +Mon Feb 22 13:32:31 UTC 2016 - guillaume@opensuse.org + +- Update to 2016.03-rc2 +- Remove upstreamed patches: + * U-Boot-am335x_evm-Don-t-undef-CONFIG_BOOTDELAY.patch + * 0001-udoo-use-load-instead-of-fatload.patch +- Refresh drop-marvell.patch +- Remove dropped doc from file list: doc/README.Modem + +------------------------------------------------------------------- +Wed Feb 17 08:16:15 UTC 2016 - guillaume@opensuse.org + +- Add a patch to fix boot on partition when raw boot mode is also + available: + * 0001-spl-if-MMCSD_MODE_RAW-fails-try-MMCSD_MODE_FS-if-ava.patch + +------------------------------------------------------------------- +Wed Feb 17 08:15:52 UTC 2016 - guillaume@opensuse.org + +- Add am335x_boneblack + +------------------------------------------------------------------- +Sat Feb 13 14:56:43 UTC 2016 - afaerber@suse.de + +- Enable Hyundai_A7HD, superseding :Contrib:sunxi package + +------------------------------------------------------------------- +Thu Feb 9 13:02:26 UTC 2016 - afaerber@suse.de + +- Adjust installation path for qemu-ppce500 to replace qemu-ppc's +* Pull in qemu (not qemu-ppc) for directory ownership + +------------------------------------------------------------------- +Tue Feb 9 00:03:18 UTC 2016 - afaerber@suse.de + +- Add Jetson TX1 board (p2371-2180) +- Fix indentation of last Patch line in .spec.in to match .spec + +------------------------------------------------------------------- +Mon Feb 1 19:35:45 UTC 2016 - agraf@suse.com + +- Add patch to fix exynos armv7 kvm support + * adds u-boot-exynos.patch + +------------------------------------------------------------------- +Tue Jan 19 14:15:58 UTC 2016 - afaerber@suse.de + +- Prepare for non-/boot installation directories +* For /boot/vc pull in raspberrypi-firmware package + +------------------------------------------------------------------- +Fri Jan 15 21:19:43 UTC 2016 - oscar@naiandei.net + +- Add udoo (dual and quad) boards + * adds 0001-udoo-use-load-instead-of-fatload.patch + +------------------------------------------------------------------- +Thu Jan 14 15:43:36 UTC 2016 - afaerber@suse.de + +- Add qemu-ppce500, to replace u-boot.e500 blob in qemu package +* Override CROSS_COMPILE variable to use native gcc + +------------------------------------------------------------------- +Wed Jan 13 14:07:32 UTC 2016 - guillaume@opensuse.org + +- Update to 2016.01 + +------------------------------------------------------------------- +Mon Jan 11 11:08:50 UTC 2016 - guillaume@opensuse.org + +- Update to 2016.01-rc4 + +------------------------------------------------------------------- +Mon Dec 28 13:50:10 UTC 2015 - guillaume@opensuse.org + +- Update to 2016.01-rc3 + +------------------------------------------------------------------- +Sun Dec 20 20:56:54 UTC 2015 - afaerber@suse.de + +- Suppress stripping debug info - it affects u-boot-jetson-tk1 +- Install rpi and rpi2 binaries to /boot/vc + +------------------------------------------------------------------- +Tue Dec 15 09:27:03 UTC 2015 - guillaume@opensuse.org + +- Backport U-Boot-am335x_evm-Don-t-undef-CONFIG_BOOTDELAY.patch + to fix bootdelay on Beaglebone board + +------------------------------------------------------------------- +Tue Dec 15 09:15:30 UTC 2015 - guillaume@opensuse.org + +- Add orangepi_pc board + +------------------------------------------------------------------- +Fri Dec 11 09:23:17 UTC 2015 - guillaume@opensuse.org + +- Add support to am57xx_evm (beagle_x15 with u-boot DT) + +------------------------------------------------------------------- +Fri Dec 11 09:08:25 UTC 2015 - guillaume@opensuse.org + +- Update to 2016.01-rc2: +- Rename 'beagle_x15' to 'am57xx_evm_nodt' to follow upstream +- Remove upstreamed patch: + * U-Boot-1-2-usb-host-xhci-omap-fix-build-break.patch + +------------------------------------------------------------------- +Wed Nov 25 09:38:56 UTC 2015 - guillaume@opensuse.org + +- Update to 2016.01-rc1 +- Remove upstreamed patches: + * 0001-configs-Use-config_distro_defaults.h-in-ti_armv7_com.patch + * 0001-mx6cuboxi-use-load-instead-of-fatload.patch (no more needed) + * U-Boot-image.c-Fix-non-Android-booting-with-ramdisk-and-or-device-tree.patch +- Update drop-marvell.patch + +------------------------------------------------------------------- +Sun Nov 15 13:11:56 UTC 2015 - matwey.kornilov@gmail.com + +- Backport 0001-configs-Use-config_distro_defaults.h-in-ti_armv7_com.patch + +------------------------------------------------------------------- +Sat Nov 14 15:03:05 UTC 2015 - tbechtold@suse.com + +- 0001-mx6cuboxi-use-load-instead-of-fatload.patch + for cubox-i use load instead of fatload + +------------------------------------------------------------------- +Tue Nov 3 08:14:57 UTC 2015 - matwey.kornilov@gmail.com + +- Fix am335x booting + * U-Boot-image.c-Fix-non-Android-booting-with-ramdisk-and-or-device-tree.patch + +------------------------------------------------------------------- +Wed Oct 21 08:16:32 UTC 2015 - guillaume@opensuse.org + +- Add Beagle x15 support +- Fix build for Beagle x15: + * U-Boot-1-2-usb-host-xhci-omap-fix-build-break.patch + +------------------------------------------------------------------- +Tue Oct 20 11:32:30 UTC 2015 - guillaume@opensuse.org + +- Update to 2015.10 +- Remove upstreamed patches: + * 0001-odroid-replace-fatload-with-load-to-be-able-to-use-E.patch + * 0002-odroid-Add-boot-script-boot.scr-support.patch + +------------------------------------------------------------------- +Tue Oct 13 06:58:38 UTC 2015 - guillaume@opensuse.org + +- Update to 2015.10-rc5 +- Remove upstreamed patch: + * arndale-apply-cortex-a15-erratas.patch + +------------------------------------------------------------------- +Thu Oct 8 09:27:15 UTC 2015 - guillaume@opensuse.org + +- Add boot script support to odroid board: + * 0001-odroid-replace-fatload-with-load-to-be-able-to-use-E.patch + * 0002-odroid-Add-boot-script-boot.scr-support.patch + +------------------------------------------------------------------- +Mon Oct 5 18:04:28 UTC 2015 - afaerber@suse.de + +- Add spring and firefly-rk3288 for armv7hl + * Break overly long armv7_boards line in pre_checkin.sh + * Clean up case'ing of defconfigs to avoid excessive wildcards +- Prepare for adding qemu-ppce500 for ppc + * Allow for more than two exclusive architectures (cleanup) + +------------------------------------------------------------------- +Mon Oct 5 11:42:08 UTC 2015 - dmueller@suse.com + +- add arndale-apply-cortex-a15-erratas.patch + +------------------------------------------------------------------- +Thu Oct 1 16:41:38 UTC 2015 - guillaume.gardet@opensuse.org + +- Update to 2015.10-rc4 +- Update drop-marvell.patch + +------------------------------------------------------------------- +Sat Sep 12 12:22:53 UTC 2015 - guillaume@opensuse.org + +- Use u-boot-2015.10-rc3.tar.bz2 package provided on FTP instead of + packaging it manually. + +------------------------------------------------------------------- +Tue Sep 8 08:52:56 UTC 2015 - guillaume@opensuse.org + +- Update to 2015.10-rc3 + +------------------------------------------------------------------- +Wed Sep 2 16:28:02 UTC 2015 - guillaume@opensuse.org + +- Add odroid and odroid-xu3 + +------------------------------------------------------------------- +Tue Aug 18 08:31:48 UTC 2015 - guillaume@opensuse.org + +- Update to 2015.10-rc2 +- Remove upstreamed patch: + * jetson-tk1-gpu-1.patch + * jetson-tk1-gpu-2.patch + +------------------------------------------------------------------- +Thu Aug 6 12:40:58 UTC 2015 - guillaume@opensuse.org + +- Update to 2015.10-rc1 +- Remove upstreamed patch: + * mx53loco-bootscr.patch +- Update patches: + * jetson-tk1-gpu-1.patch + * jetson-tk1-gpu-2.patch + +------------------------------------------------------------------- +Wed Aug 5 13:36:45 UTC 2015 - dmueller@suse.com + +- add mx6cuboxi + +------------------------------------------------------------------- +Wed Jul 22 22:38:23 UTC 2015 - afaerber@suse.de + +- jetson-tk1-gpu-1.patch, + jetson-tk1-gpu-2.patch: Enable the Tegra124 GPU device tree node + +------------------------------------------------------------------- +Mon Jul 20 10:45:39 UTC 2015 - afaerber@suse.de + +- Add u-boot-jetson-tk1 + +------------------------------------------------------------------- +Fri Jul 17 06:42:37 UTC 2015 - afaerber@suse.de + +- Add u-boot-merriia80optimus + +------------------------------------------------------------------- +Wed Jul 15 13:05:24 UTC 2015 - guillaume@opensuse.org + +- Update to 2015.07 + +------------------------------------------------------------------- +Tue Jun 30 07:34:49 UTC 2015 - guillaume@opensuse.org + +- Update to 2015.07-rc3 +- Remove upstreamed patches: + * enable_spl_ext_support_for_ti_armv7.patch + * fix_slow_mmc_on_rpi.patch + +------------------------------------------------------------------- +Thu Jun 18 12:07:10 UTC 2015 - guillaume@opensuse.org + +- Add fix_slow_mmc_on_rpi.patch to speed up MMC load on RPi +- Rework patches (to be upstreamable): + * enable_spl_ext_support_for_ti_armv7.patch + * mx53loco-bootscr.patch +- Remove fix_beagle_spl_build.patch + +------------------------------------------------------------------- +Wed Jun 10 10:07:23 UTC 2015 - guillaume@opensuse.org + +- Update to 2015.07-rc2 +- Update drop-marvell.patch + +------------------------------------------------------------------- +Wed May 27 10:07:49 UTC 2015 - guillaume@opensuse.org + +- Update to 2015.07-rc1: +- Update drop-marvell.patch +- Remove no more needed add_snow_usb_boot.patch + +------------------------------------------------------------------- +Wed Apr 29 07:51:25 UTC 2015 - dmueller@suse.com + +- adjust copyright headers + +------------------------------------------------------------------- +Thu Apr 16 08:34:11 UTC 2015 - guillaume@opensuse.org + +- update to 2015.04 +- Remove upstreamed patch: + 0001-Exynos-Clock-Fix-exynos5_get_periph_rate-for-I2C.patch +- Follow upstream board rename colibri_t20_iris => colibri_t20 + +------------------------------------------------------------------- +Sun Apr 12 19:49:41 UTC 2015 - xxxxxmichl@googlemail.com + +- Added support for A13-OLinuXino, A13-OLinuXino-MICRO, + A20-OLinuXino-MICRO and A20-OLinuXino-LIME from + www.olimex.com + +------------------------------------------------------------------- +Thu Apr 9 07:56:40 UTC 2015 - guillaume@opensuse.org + +- Remove u-boot-vexpressaemv8a (dropped upstream and we now use EFI) + +------------------------------------------------------------------- +Thu Apr 2 09:13:49 UTC 2015 - guillaume@opensuse.org + +- update to 2015.04-rc5 + +------------------------------------------------------------------- +Mon Mar 23 08:39:40 UTC 2015 - guillaume@opensuse.org + +- update to 2015.04-rc4 + +------------------------------------------------------------------- +Wed Mar 4 15:51:55 UTC 2015 - guillaume@opensuse.org + +- Add 0001-Exynos-Clock-Fix-exynos5_get_periph_rate-for-I2C.patch + to fix keyboard on Chromebook + +------------------------------------------------------------------- +Wed Mar 4 15:46:52 UTC 2015 - guillaume@opensuse.org + +- update to 2015.04-rc3 +- update patch: drop-marvell.patch + +------------------------------------------------------------------- +Thu Feb 26 16:48:35 UTC 2015 - guillaume@opensuse.org + +- Update add_snow_usb_boot.patch to boot on USB2 instead of USB3 + +------------------------------------------------------------------- +Wed Feb 25 15:47:07 UTC 2015 - guillaume@opensuse.org + +- Remove unneeded fix_snow_config.patch + +------------------------------------------------------------------- +Tue Feb 24 09:48:50 UTC 2015 - guillaume@opensuse.org + +- Add rpi2 armv7 board + +------------------------------------------------------------------- +Fri Feb 20 12:31:38 UTC 2015 - guillaume@opensuse.org + +- Update to 2015.04-rc2 + +------------------------------------------------------------------- +Fri Feb 20 10:04:14 UTC 2015 - guillaume@opensuse.org + +- Update to 2015.04-rc1 + * Remove upstreamed patch pcm051-bootscr.patch + * Remove no more used patch fix_bootpart_snow_only.patch (now u-boot + scan all known partitions, so no need to set a different boot partition) + +------------------------------------------------------------------- +Sun Jan 25 20:20:46 UTC 2015 - matwey.kornilov@gmail.com + +- Enable pcm051rev3 for Phytec Wega board + * Add pcm051-bootscr.patch: add bootscript support (upstreamed in 2015.04-rc1) + +------------------------------------------------------------------- +Tue Jan 13 14:32:17 UTC 2015 - guillaume@opensuse.org + +- Update to 2015.01: + * Drop upstreamed patches: + - 0001-spl-mmc-Fix-raw-boot-mode-related-to-commit.patch + - fix_sata.patch + * Update partially upstreamed mx53loco-bootscr.patch + +------------------------------------------------------------------- +Tue Dec 16 11:10:23 UTC 2014 - guillaume@opensuse.org + +- Backport SPL MMC raw boot mode fix: + * 0001-spl-mmc-Fix-raw-boot-mode-related-to-commit.patch + +------------------------------------------------------------------- +Sat Dec 13 12:12:41 UTC 2014 - xxxxxmichl@googlemail.com + +- Added support for A20-OLinuXIno-LIME2 and A10-OLinuXino-LIME from + www.olimex.com + +------------------------------------------------------------------- +Tue Dec 9 11:23:41 UTC 2014 - guillaume@opensuse.org + +- Rename XLOADER to OMAP_SPL in pre_checkin.sh and u-boot.spec.in + +------------------------------------------------------------------- +Tue Dec 9 09:15:27 UTC 2014 - guillaume@opensuse.org + +- Update to 2015.01-rc3 + * Drop upstreamed/unneeded patches: + - 0001-exynos-Enable-config_distro_defaults.h.patch + - 0002-exynos5-Use-config_distro_bootcmd.h.patch + - boot_mode_fallback.patch + - fix_snow_usb_support + - fix_spl_ext.patch + - fix_arm_hf_toolchain.patch + - origen-ext2.patch + * Update patch: + - fix_snow_config.patch + * Follow upstream: rpi_b config renamed to rpi + +------------------------------------------------------------------- +Tue Dec 2 12:41:55 UTC 2014 - guillaume@opensuse.org + +- Update snow (chromebook) + * Update patch: + - fix_snow_config.patch patch + * Add patches: + - add_snow_usb_boot.patch to be able to boot from USB0 + - fix_bootpart_snow_only.patch to boot on partition #2 (snow only!) + * Backport patches: + - fix_snow_usb_support.patch to fix USB on snow + - 0001-exynos-Enable-config_distro_defaults.h.patch + - 0002-exynos5-Use-config_distro_bootcmd.h.patch + * Drop unneeded/obsolete patches: + - fix_exynos5_text_base.patch + - fix_snow_extra_env_settings.patch + +------------------------------------------------------------------- +Sun Nov 30 13:17:33 UTC 2014 - guillaume@opensuse.org + +- Add Bananapi initial support + +------------------------------------------------------------------- +Tue Nov 25 08:29:14 UTC 2014 - guillaume@opensuse.org + +- Update to 2015.01-rc2 +- Update patch fix_omap_boot_mode.patch to be upstreamable and +rename it to boot_mode_fallback.patch +- Drop obsolete patch: arndale.patch +- Add patches: + * fix_arm_hf_toolchain.patch: fix build with hard float toolchain + * fix_spl_ext.patch: fix SPL EXT error checks + * fix_sata.patch: fix sata support and fix also mx53loco build + +------------------------------------------------------------------- +Wed Nov 19 21:44:17 CET 2014 - guillaume.gardet@opensuse.org + +- Fix mx53loco-bootscr.patch + +------------------------------------------------------------------- +Mon Nov 17 21:15:50 UTC 2014 - oscar@naiandei.net + +- Add u-boot-with-sunxi-spl.bin for sunxi boards + +------------------------------------------------------------------- +Mon Nov 17 15:17:56 UTC 2014 - guillaume@opensuse.org + +- Make use of RPM_OPT_FLAGS during make + +------------------------------------------------------------------- +Sat Nov 15 14:55:06 UTC 2014 - guillaume@opensuse.org + +- Fix sunxi boards (use u-boot.img instead of u-boot.bin) +- Remove duplicated default install line + +------------------------------------------------------------------- +Tue Nov 11 13:32:36 UTC 2014 - guillaume@opensuse.org + +- Update to 2015.01-rc1 +- Drop upstreamed patches: + * add_spl_extfs_support.patch + * ti_common_initrd_support.patch +- Refresh patch: + * drop-marvell.patch +- Drop CREDITS file from DOC (dropped upstream) + +------------------------------------------------------------------- +Mon Nov 3 10:19:42 UTC 2014 - guillaume@opensuse.org + +- Apply fix_omap_boot_mode.patch only for omap3/omap4 boards + +------------------------------------------------------------------- +Tue Oct 14 13:22:44 UTC 2014 - guillaume@opensuse.org + +- Update to version 2014.10 +- Drop upstreamed patch: + * fix_sabrelite_boot.scr.patch +- Refresh patches: + * arndale.patch + * fix_snow_config.patch + * fix_exynos5_text_base.patch + * exynos5-dt.h.patch (renamed fix_snow_extra_env_settings.patch) + +------------------------------------------------------------------- +Wed Oct 8 07:52:48 UTC 2014 - guillaume@opensuse.org + +- Update to version 2014.10-rc3 +- Drop upstreamed patches: + * beagle-bootscr.patch + * panda-bootscr.patch + * am335x_evm-bootscr.patch +- Refresh patches: + * fix_sabrelite_boot.scr.patch + * drop-marvell.patch + * add_spl_extfs_support.patch +- Add a new patch to fix omap3beagle spl build: + * fix_beagle_spl_build.patch + +------------------------------------------------------------------- +Mon Sep 8 13:06:52 UTC 2014 - guillaume@opensuse.org + +- Drop Hyundai_a7hd and cubox-i boards (now handle in Contrib repos +since it is not upstreamed), so drop related patches: + * v2014.04-sunxi.patch + * cubox-i-v2014.04-port.patch + * cubox-i-enable_raw_rd.patch + +------------------------------------------------------------------- +Wed Sep 3 12:02:22 UTC 2014 - guillaume@opensuse.org + +- Update to version 2014.10-rc2 +- drop upstreamed patch rpi_b-bootscr.patch +- drop fix_spl_build_for_am335x.patch (does build without it) +- Refresh patches: + * drop-marvell.patch + * fix_snow_config.patch + +------------------------------------------------------------------- +Thu Aug 21 08:50:10 UTC 2014 - guillaume@opensuse.org + +- Update SPL EXT fs support: + * For omap boards (beagle and panda), SPL now looks for u-boot.img + as upstream instead of u-boot.bin + * Remove mlo-ext2.patch to make proper patches in +order to ease upstreaming our EXT fs SPL functions + * Add panda-bootscr.patch to fix panda boot (was included in + mlo-ext2.patch) + * Add fix_omap_boot_mode.patch to fix beagle and panda boot mode + (was included in mlo-ext2.patch) + * Add add_spl_extfs_support.patch to get proper SPL EXT fs functions + * Add enable_spl_ext_support_for_ti_armv7.patch to enable SPL EXT fs + support for TI ARMv7 boards + + +------------------------------------------------------------------- +Tue Aug 19 17:35:22 UTC 2014 - matwey.kornilov@gmail.com + +- Update to version 2014.10-rc1 and update patches + +------------------------------------------------------------------- +Thu Jul 31 13:59:00 UTC 2014 - dimstar@opensuse.org + +- Rename rpmlintrc to %{name}-rpmlintrc. + Follow the packaging guidelines. + +------------------------------------------------------------------- +Sat Jun 14 11:58:43 UTC 2014 - afaerber@suse.de + +- add u-boot-cubietruck for Cubietruck (Cubieboard 3) + +------------------------------------------------------------------- +Thu Jun 12 18:52:26 UTC 2014 - josua.m@t-online.de + +- add u-boot-mx6cubox-i for Cubox-i and Hummingboard + * currently conflicts with mlo-ext2 patch for omap4 + so only for cubox-i target mlo-ext2.patch is skipped + and cubox-i patches are applied + * patch source: https://github.com/vorlonofportland/u-boot/ + cubox-i-v2014.04-port.patch + cubox-i-enable_raw_rd.patch + +------------------------------------------------------------------- +Tue Apr 29 13:41:18 UTC 2014 - guillaume@opensuse.org + +- Enhance pre_checkin.sh script to handle arch restrictions + +------------------------------------------------------------------- +Tue Apr 29 13:18:48 UTC 2014 - guillaume@opensuse.org + +- Fix builds : + * 'tools' target is now 'tools-only' + * kermit scripts moved from 'tools/scripts' to 'tools/kermit/' + * Enhanced pre_checkin.sh script to handle uppercases in config name + * Renamed config from cubieboard to Cubieboard + * Renamed config from cubieboard2 to Cubieboard2 + * Renamed config from hyundai_a7hd to Hyundai_A7HD + * Renamed config from mele_a1000 to Mele_A1000 + +------------------------------------------------------------------- +Tue Apr 29 13:06:57 UTC 2014 - guillaume@opensuse.org + +- Add vexpress_aemv8a board + +------------------------------------------------------------------- +Tue Apr 29 08:33:48 UTC 2014 - guillaume@opensuse.org + +- Update to v2014.04 + * Update mlo-ext2.patch + * Update mx53loco-bootscr.patch + * Update origen-ext2.patch + * Dropped v2014.01-sunxi.patch and created + v2014.04-sunxi.patch by diffing u-boot-2014.04 with + u-boot-sunxi.git d9fe0a1e061e2bde6c24a0f7cef4f5023f3bd579 + * Update rpi_b-bootscr.patch + * Drop gnuhash.patch (upstreamed) + +------------------------------------------------------------------- +Thu Mar 27 14:22:23 UTC 2014 - guillaume@opensuse.org + +- add u-boot-mx6qsabrelite (for iMX6 Sabre Lite board) + +------------------------------------------------------------------- +Wed Feb 5 15:07:30 UTC 2014 - guillaume@opensuse.org + +- add u-boot-snow (for Chromebook ARM) + +------------------------------------------------------------------- +Wed Feb 5 14:59:29 UTC 2014 - guillaume@opensuse.org + +- Fix boot.scr location for beagle and origen + +------------------------------------------------------------------- +Thu Jan 30 14:28:34 UTC 2014 - dmueller@suse.com + +- add u-boot-cubieboard2 + +------------------------------------------------------------------- +Thu Jan 30 06:46:45 UTC 2014 - afaerber@suse.de + +- Drop 0006-ARMV7-hardfp-build-fix.patch: + v2014.01 checks if -msoft-float compiles okay, and + U-Boot is soft-float according to Tom Rini + +------------------------------------------------------------------- +Tue Jan 28 15:29:14 UTC 2014 - guillaume@opensuse.org + +- Disable CONFIG_SPL_OS_BOOT for ti armv7 configs with +fix_spl_build_for_am335x.patch to reduce size of am335x SPL + +------------------------------------------------------------------- +Sat Jan 26 22:46:44 UTC 2014 - afaerber@suse.de + +- Update to v2014.01 +* Manually updated 0006-ARMV7-hardfp-build-fix.patch +* Dropped v2013.10-sunxi.patch and created + v2014.01-sunxi.patch by merging u-boot.git v2014.01 onto + u-boot-sunxi.git e4a0232e173577893604b94fc3af7c047570970b +* Added gnuhash.patch to fix .gnu.hash section handling in ldscripts +* Rebased mlo-ext2.patch: + omap4_common.h CONFIG_SUPPORT_RAW_INITRD hunk is now covered by + ti_common_initrd_support.patch. + am335xevm build is known breaking due to size constraints not + trivially solvable without dropping our patch. + +------------------------------------------------------------------- +Sun Jan 26 12:14:10 UTC 2014 - afaerber@suse.de + +- Fix regression in packaging u-boot-dtb-tegra.bin: + There is in fact a u-boot-spl.bin SPL being built, + but it is 0xff-padded as u-boot-spl-pad.bin and then + prepended to u-boot.bin and the .dtb. + u-boot-dtb.bin exists independently as just u-boot.bin and .dtb, + so give preference to u-boot-dtb-tegra.bin over u-boot-dtb.bin. + +------------------------------------------------------------------- +Mon Jan 20 14:05:13 UTC 2014 - agraf@suse.com + +- The "Tegra SPL" is not an SPL but a differently named u-boot.bin + file. Fix up the generation scripts. + +------------------------------------------------------------------- +Sun Jan 19 00:09:41 UTC 2014 - afaerber@suse.de + +- Include Tegra SPL for Colibri T20 + +------------------------------------------------------------------- +Wed Jan 8 17:26:10 UTC 2014 - agraf@suse.com + +- switch raspberry to ext2 + +------------------------------------------------------------------- +Wed Jan 8 13:41:32 UTC 2014 - matwey.kornilov@gmail.com + +- am335x_evm-bootscr.patch: Search for files in /boot, not in /boot/boot + +------------------------------------------------------------------- +Wed Jan 8 02:07:44 UTC 2014 - afaerber@suse.de + +- rpi_b-bootscr.patch: Change rpi_b to use boot.scr + +------------------------------------------------------------------- +Tue Jan 7 16:01:13 UTC 2014 - dmueller@suse.com + +- remove origin flavor + +------------------------------------------------------------------- +Mon Jan 6 22:57:05 UTC 2014 - afaerber@suse.de + +- Enable paz00 config (Toshiba AC100) + +------------------------------------------------------------------- +Mon Jan 6 21:34:03 UTC 2014 - afaerber@suse.de + +- Enable colibri_t20_iris config (Toradex Colibri-T20 on Iris) +- Update u-boot.spec.in copyright and fix typo in comment + +------------------------------------------------------------------- +Sat Jan 4 01:47:50 UTC 2014 - agraf@suse.com + +- prefer u-boot-dtb.bin over u-boot.bin +- simplify files section + +------------------------------------------------------------------- +Fri Jan 3 16:54:30 UTC 2014 - dmueller@suse.com + +- mlo-ext2.patch: Search for files in /boot, not in /boot/boot + +------------------------------------------------------------------- +Mon Dec 30 18:37:50 UTC 2013 - matwey.kornilov@gmail.com + +- Add am335x_evm-bootscr.patch: Add bootscr to AM335x + platform based devices + +------------------------------------------------------------------- +Tue Dec 17 14:33:52 UTC 2013 - guillaume@opensuse.org + +- Remove old unused patches: + * v2013.04-sunxi.patch + * loadaddr-defaults.patch + +------------------------------------------------------------------- +Tue Dec 17 14:10:51 UTC 2013 - guillaume@opensuse.org + +- Add ti_common_initrd_support.patch to enable initrd support for + AM335x boards + +------------------------------------------------------------------- +Tue Dec 17 14:03:50 UTC 2013 - guillaume@opensuse.org + +- Add am335x_evm support which includes: Beagle Bone, + Beagle Bone Black, TI AM335x EVM, TI AM335x EVM-SK + +------------------------------------------------------------------- +Tue Nov 26 13:46:22 UTC 2013 - guillaume@opensuse.org + +- Add Arndale support + +------------------------------------------------------------------- +Tue Nov 26 13:05:10 UTC 2013 - guillaume@opensuse.org + +- Update v2013.04-sunxi.patch to v2013.10-sunxi.patch + +------------------------------------------------------------------- +Mon Nov 25 10:05:48 UTC 2013 - guillaume@opensuse.org + +- Remove kerneladdr and ramdiskaddr definition in u-boot patches + (now done in JeOS image with u-boot hooks) +- Update patches to current version: + * 0006-ARMV7-hardfp-build-fix.patch + * beagle-bootscr.patch + * mx53loco-bootscr.patch + * mlo-ext2.patch +- Merge fix_omap4_ext2_boot.patch in mlo-ext2.patch +- Rename exynos-ext2.patch in origen-ext2.patch + +------------------------------------------------------------------- +Mon Nov 25 09:57:12 UTC 2013 - guillaume@opensuse.org + +- Update to 2013.10 + +------------------------------------------------------------------- +Fri Nov 22 16:25:36 UTC 2013 - guillaume@opensuse.org + +- Fix OMAP4 pandaboard EXT2 boot + +------------------------------------------------------------------- +Fri Sep 13 11:31:14 UTC 2013 - guillaume@opensuse.org + +- Fix u-boot.bin and boot.scr place since they are now in boot/ folder. + +------------------------------------------------------------------- +Wed May 1 20:48:30 UTC 2013 - dmueller@suse.com + +- add support for cubieboard, hyundaia7hd, melea1000 + +------------------------------------------------------------------- +Wed May 1 08:18:26 UTC 2013 - dmueller@suse.com + +- update to 2013.04 + * no upstream changelog available +- remove dead u-boot-raspberrypi* (actually called rpib now) +- add rpib variant + +------------------------------------------------------------------- +Thu Apr 11 17:05:58 UTC 2013 - guillaume.gardet@opensuse.org + +- add omap3_beagle to targets + +------------------------------------------------------------------- +Thu Apr 11 16:05:41 UTC 2013 - dmueller@suse.com + +- remove u8500href subpackage, kernel got dropped + +------------------------------------------------------------------- +Sun Apr 7 14:32:20 UTC 2013 - agraf@suse.com + +- update to 2013.04rc2 +- enable bootz support on all boards + +------------------------------------------------------------------- +Wed Mar 20 07:21:06 UTC 2013 - agraf@suse.com + +- fix mlo-ext2.patch to actually use the ext4 infrastructure + +------------------------------------------------------------------- +Sat Jan 26 10:38:07 UTC 2013 - dmueller@suse.com + +- update mlo-ext2.patch: + * use the ext4 driver now since ext2 got removed + +------------------------------------------------------------------- +Wed Oct 24 22:33:13 UTC 2012 - agraf@suse.com + +- add sdhc-1.patch, sdhc-2.patch, sdhc-3.patch: + * backport upstream sdhc fixes + +------------------------------------------------------------------- +Wed Oct 24 01:37:36 CEST 2012 - agraf@suse.de + +- update to 2012.10: + - refresh patches 0006-ARMV7-hardfp-build-fix.patch, mlo-ext2.patch, + loadaddr-defaults.patch, mx53loco-bootscr.patch + +------------------------------------------------------------------- +Mon Oct 22 12:00:22 UTC 2012 - agraf@suse.com + +- fix origen by putting the ramdisk higher + +------------------------------------------------------------------- +Mon Aug 6 09:39:54 UTC 2012 - dmueller@suse.com + +- remove Marvell sources as they are non-free licensed (bnc#773824) + +------------------------------------------------------------------- +Thu Jul 26 18:21:44 UTC 2012 - agraf@suse.com + +- fix ext2 support for origen +- add origen-spl.bin for origen + +------------------------------------------------------------------- +Thu Jul 26 09:47:31 UTC 2012 - dmueller@suse.com + +- merge u-boot-tools + +------------------------------------------------------------------- +Wed Jul 25 21:05:08 UTC 2012 - agraf@suse.com + +- add ext2 support by default in mx53loco + +------------------------------------------------------------------- +Tue Jul 24 21:28:59 UTC 2012 - agraf@suse.com + +- add support for mx53loco + +------------------------------------------------------------------- +Tue Jul 24 11:25:42 UTC 2012 - dmueller@suse.com + +- remove u-boot-omap3beagle + +------------------------------------------------------------------- +Mon Jul 23 22:34:04 UTC 2012 - agraf@suse.com + +- bump to 2012.04.01 + - fixes bug in cmdline parsing + +------------------------------------------------------------------- +Mon Jul 23 22:26:47 UTC 2012 - agraf@suse.com + +- add calxeda highbank support + +------------------------------------------------------------------- +Thu Jul 12 12:51:56 UTC 2012 - agraf@suse.com + +- autoload boot.scr on beagle, so we can boot again + +------------------------------------------------------------------- +Thu Jul 12 08:12:15 UTC 2012 - agraf@suse.com + +- update to upstream u-boot 2012.04 + -> gets rid of linaro fork, only mainline now + -> gets us omap3 MLO support, no more need for x-loader + -> potentially fixes voltage issues on omap4 + +------------------------------------------------------------------- +Thu Jun 14 09:04:53 UTC 2012 - adrian@suse.de + +- add SUSE style conflicts to avoid installation of multiple + boot loaders + +------------------------------------------------------------------- +Tue Apr 17 11:59:55 UTC 2012 - joop.boonen@opensuse.org + +- Included u-boot.spec.in and gen_spec.sh in the spec file + +------------------------------------------------------------------- +Mon Feb 6 13:25:09 UTC 2012 - agraf@suse.com + +- use ext2 on panda + +------------------------------------------------------------------- +Tue Dec 20 02:36:05 UTC 2011 - agraf@suse.com + +- use ttyO2 as default console= on OMAP boards + +------------------------------------------------------------------- +Mon Dec 19 20:21:21 UTC 2011 - agraf@suse.com + +- add u8500_href and origen configs + +------------------------------------------------------------------- +Fri Dec 16 16:03:01 UTC 2011 - agraf@suse.com + +- fix lint failures + +------------------------------------------------------------------- +Fri Dec 16 14:46:53 CET 2011 - agraf@suse.com + +- don't install map + +------------------------------------------------------------------- +Fri Dec 16 02:16:19 UTC 2011 - agraf@suse.com + +- generalize spec file to be able to build for more boards +- add beagle board spec file +- remove boot.scr + +------------------------------------------------------------------- +Fri Dec 16 01:15:47 UTC 2011 - agraf@suse.com + +- rename to u-boot-omap4panda + +------------------------------------------------------------------- +Tue Dec 13 17:24:45 UTC 2011 - dkukawka@suse.de + +- new package based on u-boot-omap4panda but use linaro u-boot git + repo (http://git.linaro.org/git/boot/u-boot-linaro-stable.git) + instead of mainline u-boot. This package also contains the MLO + (this package obsoletes the x-loader package) + +------------------------------------------------------------------- +Tue Nov 29 22:53:44 UTC 2011 - joop.boonen@opensuse.org + +- COPYING CREDITS README are now in the standard package + +------------------------------------------------------------------- +Thu Nov 24 21:08:58 UTC 2011 - joop.boonen@opensuse.org + +- Corrected the links + +------------------------------------------------------------------- +Tue Nov 22 17:47:17 UTC 2011 - joop.boonen@opensuse.org + +- Build without u-boot tools as we have a u-boot-tools packages + +------------------------------------------------------------------- +Sun Nov 20 17:00:43 UTC 2011 - joop.boonen@opensuse.org + +- Cleaned the spec file up the spec file +- The name is the same as the package name + +------------------------------------------------------------------- +Sun Nov 13 13:13:39 UTC 2011 - joop.boonen@opensuse.org + +- Build u-boot according to http://elinux.org/Panda_How_to_MLO_&_u-boot +- Using .txt config file instead of .scr it's gerated via mkimage + +------------------------------------------------------------------- +Wed Nov 09 22:55:09 UTC 2011 - joop.boonen@opensuse.org + +- Used scr file based on http://elinux.org definition +- Build u-boot 20111109 +- Used the Meego panda u-boot as a base + +------------------------------------------------------------------- +Fri Feb 18 00:00:00 UTC 2011 - raghuveer.murthy@ti.com> +- 2010.09-MeeGo +- Fix for u-boot fails to compile on armv7hl, BMC#13140 + +------------------------------------------------------------------- +Thu Nov 18 00:00:00 UTC 2010 - peter.j.zhu@intel.com> +- 2010.09-MeeGo +- Don't build against i586, BMC#10159 + +------------------------------------------------------------------- +Tue Oct 10 00:00:00 UTC 2010 - nm@ti.com> +- 2010.09.rc1-MeeGo +- Added option to enable boot.scr generation and copy + +------------------------------------------------------------------- +Mon Oct 04 00:00:00 UTC 2010 - nm@ti.com> +- 2010.09.rc1-MeeGo +- Update to 2010.09 + +------------------------------------------------------------------- +Wed Sep 14 00:00:00 UTC 2010 - nm@ti.com> +- 2010.09.rc1-MeeGo +- Update to 2010.09.rc1 +- MeeGo customization +- Enabled PandaBoard, Beagleboard build + +------------------------------------------------------------------- +Wed Mar 31 00:00:00 UTC 2010 - silvan.calarco@mambasoft.it> +- 2009.11.1-1mamba +- update to 2009.11.1 + +------------------------------------------------------------------- +Wed Mar 31 00:00:00 UTC 2010 - diff --git a/u-boot-tinker-rk3288.spec b/u-boot-tinker-rk3288.spec new file mode 100644 index 0000000..6b8179a --- /dev/null +++ b/u-boot-tinker-rk3288.spec @@ -0,0 +1,217 @@ +# +# spec file for package u-boot-tinker-rk3288 +# +# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon +# Copyright (c) 2007-2010 by Silvan Calarco +# +# All modifications and additions to the file contributed by third parties +# remain the property of their copyright owners, unless otherwise agreed +# upon. The license for this file, and modifications and additions to the +# file, is the same license as for the pristine package itself (unless the +# license for the pristine package is not an Open Source License, in which +# case the license is the MIT License). An "Open Source License" is a +# license that conforms to the Open Source Definition (Version 1.9) +# published by the Open Source Initiative. + +# Please submit bugfixes or comments via http://bugs.opensuse.org/ +# + + +%define mvebu_spl 0 +%define x_loader 0 +%define rockchip_spl 1 +%define sunxi_spl 0 +%define arndale_spl 0 +%define cuboxi_spl 0 +%define origen_spl 0 +%define udoo_spl 0 +%define imx6_spl 0 +%define socfpga_spl 0 + +%if "tinker-rk3288" == "rpi" || "tinker-rk3288" == "rpi2" || "tinker-rk3288" == "rpi332b" || "tinker-rk3288" == "rpi3" +%define is_rpi 1 +%endif + +# archive_version differs from version for RC version only +%define archive_version 2017.03 + +Name: u-boot-tinker-rk3288 +Version: 2017.03 +Release: 0 +Summary: The U-Boot firmware for the tinker-rk3288 platform +License: GPL-2.0 +Group: System/Boot +Url: http://www.denx.de/wiki/U-Boot +Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2 +Source2: arndale-bl1.img +Source3: update_git.sh +Source300: u-boot-rpmlintrc +Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch +Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch +Patch0003: 0003-Makefile-Fix-linking-with-modern-bi.patch +BuildRoot: %{_tmppath}/%{name}-%{version}-build +# Arndale board need DTC >= 1.4 +BuildRequires: bc +BuildRequires: dtc >= 1.4.0 +# u-boot-clearfog (tools/kwbimage.c) needs openssl to build +BuildRequires: libopenssl-devel +# u-boot-firefly-rk3288 needs python to build +BuildRequires: python +%if "%{name}" == "u-boot-qemu-ppce500" +# Owns /usr/share/qemu directory +BuildRequires: qemu +Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500 +%endif +%if 0%{?is_rpi} +# Owns /boot/vc directory +BuildRequires: raspberrypi-firmware +# For mountpoint +Requires(post): util-linux +%endif +Provides: u-boot-loader +Conflicts: otherproviders(u-boot-loader) +%if %x_loader == 1 +Obsoletes: x-loader-tinker-rk3288 +Provides: x-loader-tinker-rk3288 +%endif +ExclusiveArch: armv7l armv7hl + +%description +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 tinker-rk3288 platform. + +%package doc +Summary: Documentation for the U-Boot Firmware +Group: Documentation/Other + +%description doc +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. + +%prep +%setup -q -n u-boot-%{archive_version} +%patch0001 -p1 +%patch0002 -p1 +%patch0003 -p1 + +%build +export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s) +make %{?jobs:-j %jobs} CROSS_COMPILE= HOSTCFLAGS="$RPM_OPT_FLAGS" tinker-rk3288_defconfig +%if 0%{?is_rpi} +# U-Boot is installed in the filesystem, so we are confident there's enough space. +echo "Attempting to enable fdt apply command (.dtbo) support." +echo "CONFIG_OF_LIBFDT_OVERLAY=y" >> .config +%endif +make %{?jobs:-j %jobs} CROSS_COMPILE= HOSTCFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes + +%if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring" +# Chromebook ARM (snow) and HP Chromebook 11 (spring) need a uImage format +export TEXT_START=$(awk '$NF == "_start" { printf "0x"$1 }' System.map) +./tools/mkimage -A arm -O linux -T kernel -C none -a $TEXT_START -e $TEXT_START -n uboot -d u-boot-dtb.bin u-boot.img +%endif + +%if %rockchip_spl == 1 +for t in rksd rkimage; do + ./tools/mkimage -n rk3288 -d spl/u-boot-spl.bin -T $t u-boot-spl.$t +done +%endif + +%install +export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s) +export NO_BRP_STRIP_DEBUG=true +export NO_DEBUGINFO_STRIP_DEBUG=true +%define uboot_dir /boot +%if 0%{?is_rpi} +%define uboot_dir /boot/vc +%endif +%if "%{name}" == "u-boot-qemu-ppce500" +%define uboot_dir %{_datadir}/qemu +%endif +%if "%{name}" == "u-boot-jetson-tk1" +# tegra-uboot-flasher needs several intermediate files, under their original name. +for f in u-boot u-boot.dtb u-boot-dtb-tegra.bin u-boot-nodtb-tegra.bin spl/u-boot-spl; do + install -D -m 0644 $f %{buildroot}/boot/$f +done +%else +# 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. +if [ -f u-boot-dtb-tegra.bin ]; then + install -D -m 0644 u-boot-dtb-tegra.img %{buildroot}%{uboot_dir}/u-boot.img +elif [ -f u-boot-dtb.img ]; then + install -D -m 0644 u-boot-dtb.img %{buildroot}%{uboot_dir}/u-boot.img +else + install -D -m 0644 u-boot.img %{buildroot}%{uboot_dir}/u-boot.img +fi +%if "%{name}" == "u-boot-qemu-ppce500" +mv %{buildroot}%{uboot_dir}/u-boot.img %{buildroot}%{uboot_dir}/u-boot.e500 +%endif +%endif +%if %x_loader == 1 +install -D -m 0755 MLO %{buildroot}/boot/MLO +%endif +%if %origen_spl == 1 +install -D -m 0755 spl/origen-spl.bin %{buildroot}/boot/origen-spl.bin +%endif +%if %arndale_spl == 1 +install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin +install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img +%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 +install -D -m 0644 spl/u-boot-spl.bin %{buildroot}%{uboot_dir}/u-boot-spl.bin +for t in rksd rkimage; do + install -D -m 0644 u-boot-spl.$t %{buildroot}%{uboot_dir}/u-boot-spl.$t +done +%endif +%if %sunxi_spl == 1 +install -D -m 0755 spl/sunxi-spl.bin %{buildroot}/boot/sunxi-spl.bin +install -D -m 0755 u-boot-sunxi-with-spl.bin %{buildroot}/boot/u-boot-sunxi-with-spl.bin +%endif +%if %cuboxi_spl == 1 +install -D -m 0755 SPL %{buildroot}/boot/cuboxi-spl.bin +%endif +%if %udoo_spl == 1 +install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin +%endif +%if %imx6_spl == 1 +install -D -m 0755 SPL %{buildroot}/boot/imx6-spl.bin +%endif +%if %socfpga_spl == 1 +install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp +%endif + +%if 0%{?is_rpi} +%post +# On the Raspberry Pi we chain-load u-boot.bin from bootcode.bin via config.txt. +# It needs to be on the first FAT partition, wherever we mounted it. +# a) Unmounted, then do nothing. +# b) Mounted as /boot/vc, then they're in the right place already. +# c) Mounted as /boot/efi, with /boot/vc as symlink, then nothing to be done. +# d) Mounted as /boot/efi, with /boot/vc a directory, then copy files over. +if mountpoint -q /boot/efi; then + [[ "$(readlink -f /boot/efi)" -ef "$(readlink -f %{uboot_dir})" ]] || cp %{uboot_dir}/u-boot.img /boot/efi/ +fi +%endif + +%files +%defattr(-,root,root) +%{uboot_dir}/* +%doc Licenses/gpl-2.0.txt README + +%files doc +%defattr(-,root,root) +# Generic documents +%doc doc/README.JFFS2 doc/README.JFFS2_NAND doc/README.commands +%doc doc/README.autoboot doc/README.commands doc/README.console doc/README.dns +%doc doc/README.hwconfig doc/README.nand doc/README.NetConsole doc/README.serial_multi +%doc doc/README.SNTP doc/README.standalone doc/README.update doc/README.usb +%doc doc/README.video doc/README.VLAN doc/README.silent doc/README.POST +# Copy some useful kermit scripts as well +%doc tools/kermit/dot.kermrc tools/kermit/flash_param tools/kermit/send_cmd tools/kermit/send_image +# Now any h/w dependent Documentation +%doc doc/README.ARM-memory-map + +%changelog diff --git a/u-boot-udoo.changes b/u-boot-udoo.changes index 9364ee2..4e8877d 100644 --- a/u-boot-udoo.changes +++ b/u-boot-udoo.changes @@ -1,3 +1,38 @@ +------------------------------------------------------------------- +Sun Apr 9 18:24:30 UTC 2017 - afaerber@suse.de + +- Add tinker-rk3288 +- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.03 +* Fix firefly-rk3288 and tinker-rk3288 build with binutils 2.28. + 0003-Makefile-Fix-linking-with-modern-bi.patch +- U-Boot has no CFLAGS, so apply $RPM_OPT_FLAGS to HOSTCFLAGS instead + +------------------------------------------------------------------- +Mon Mar 20 11:10:57 UTC 2017 - afaerber@suse.de + +- Tidy Raspberry Pi conditionals +- Enable CONFIG_OF_LIBFDT_OVERLAY for Raspberry Pi only for now + +------------------------------------------------------------------- +Mon Mar 20 09:43:14 UTC 2017 - afaerber@suse.de + +- Add mvebudb-88f{3720,7040,8040} + +------------------------------------------------------------------- +Tue Mar 14 08:47:33 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.03 + +------------------------------------------------------------------- +Wed Mar 1 09:36:39 UTC 2017 - guillaume@opensuse.org + +- Add libopenssl-devel as BuildRequires (needed by some configs) + +------------------------------------------------------------------- +Tue Feb 28 08:37:55 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.03-rc3 + ------------------------------------------------------------------- Wed Feb 22 13:38:25 UTC 2017 - hsehic@suse.com diff --git a/u-boot-udoo.spec b/u-boot-udoo.spec index 465203e..28b79d9 100644 --- a/u-boot-udoo.spec +++ b/u-boot-udoo.spec @@ -29,11 +29,15 @@ %define imx6_spl 1 %define socfpga_spl 0 +%if "udoo" == "rpi" || "udoo" == "rpi2" || "udoo" == "rpi332b" || "udoo" == "rpi3" +%define is_rpi 1 +%endif + # archive_version differs from version for RC version only -%define archive_version 2017.01 +%define archive_version 2017.03 Name: u-boot-udoo -Version: 2017.01 +Version: 2017.03 Release: 0 Summary: The U-Boot firmware for the udoo platform License: GPL-2.0 @@ -45,10 +49,13 @@ Source3: update_git.sh Source300: u-boot-rpmlintrc Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch +Patch0003: 0003-Makefile-Fix-linking-with-modern-bi.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build # Arndale board need DTC >= 1.4 BuildRequires: bc BuildRequires: dtc >= 1.4.0 +# u-boot-clearfog (tools/kwbimage.c) needs openssl to build +BuildRequires: libopenssl-devel # u-boot-firefly-rk3288 needs python to build BuildRequires: python %if "%{name}" == "u-boot-qemu-ppce500" @@ -56,7 +63,7 @@ BuildRequires: python BuildRequires: qemu Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500 %endif -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} # Owns /boot/vc directory BuildRequires: raspberrypi-firmware # For mountpoint @@ -86,16 +93,24 @@ This package contains documentation for U-Boot firmware. %setup -q -n u-boot-%{archive_version} %patch0001 -p1 %patch0002 -p1 +%patch0003 -p1 %build export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s) -make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" udoo_defconfig -make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes +make %{?jobs:-j %jobs} CROSS_COMPILE= HOSTCFLAGS="$RPM_OPT_FLAGS" udoo_defconfig +%if 0%{?is_rpi} +# U-Boot is installed in the filesystem, so we are confident there's enough space. +echo "Attempting to enable fdt apply command (.dtbo) support." +echo "CONFIG_OF_LIBFDT_OVERLAY=y" >> .config +%endif +make %{?jobs:-j %jobs} CROSS_COMPILE= HOSTCFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes + %if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring" # Chromebook ARM (snow) and HP Chromebook 11 (spring) need a uImage format export TEXT_START=$(awk '$NF == "_start" { printf "0x"$1 }' System.map) ./tools/mkimage -A arm -O linux -T kernel -C none -a $TEXT_START -e $TEXT_START -n uboot -d u-boot-dtb.bin u-boot.img %endif + %if %rockchip_spl == 1 for t in ; do ./tools/mkimage -n -d spl/u-boot-spl.bin -T $t u-boot-spl.$t @@ -107,7 +122,7 @@ export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | export NO_BRP_STRIP_DEBUG=true export NO_DEBUGINFO_STRIP_DEBUG=true %define uboot_dir /boot -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} %define uboot_dir /boot/vc %endif %if "%{name}" == "u-boot-qemu-ppce500" @@ -168,7 +183,7 @@ install -D -m 0755 SPL %{buildroot}/boot/imx6-spl.bin install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp %endif -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} %post # On the Raspberry Pi we chain-load u-boot.bin from bootcode.bin via config.txt. # It needs to be on the first FAT partition, wherever we mounted it. diff --git a/u-boot-udooneo.changes b/u-boot-udooneo.changes index 9364ee2..4e8877d 100644 --- a/u-boot-udooneo.changes +++ b/u-boot-udooneo.changes @@ -1,3 +1,38 @@ +------------------------------------------------------------------- +Sun Apr 9 18:24:30 UTC 2017 - afaerber@suse.de + +- Add tinker-rk3288 +- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.03 +* Fix firefly-rk3288 and tinker-rk3288 build with binutils 2.28. + 0003-Makefile-Fix-linking-with-modern-bi.patch +- U-Boot has no CFLAGS, so apply $RPM_OPT_FLAGS to HOSTCFLAGS instead + +------------------------------------------------------------------- +Mon Mar 20 11:10:57 UTC 2017 - afaerber@suse.de + +- Tidy Raspberry Pi conditionals +- Enable CONFIG_OF_LIBFDT_OVERLAY for Raspberry Pi only for now + +------------------------------------------------------------------- +Mon Mar 20 09:43:14 UTC 2017 - afaerber@suse.de + +- Add mvebudb-88f{3720,7040,8040} + +------------------------------------------------------------------- +Tue Mar 14 08:47:33 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.03 + +------------------------------------------------------------------- +Wed Mar 1 09:36:39 UTC 2017 - guillaume@opensuse.org + +- Add libopenssl-devel as BuildRequires (needed by some configs) + +------------------------------------------------------------------- +Tue Feb 28 08:37:55 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.03-rc3 + ------------------------------------------------------------------- Wed Feb 22 13:38:25 UTC 2017 - hsehic@suse.com diff --git a/u-boot-udooneo.spec b/u-boot-udooneo.spec index d91f3a9..16807e4 100644 --- a/u-boot-udooneo.spec +++ b/u-boot-udooneo.spec @@ -29,11 +29,15 @@ %define imx6_spl 1 %define socfpga_spl 0 +%if "udooneo" == "rpi" || "udooneo" == "rpi2" || "udooneo" == "rpi332b" || "udooneo" == "rpi3" +%define is_rpi 1 +%endif + # archive_version differs from version for RC version only -%define archive_version 2017.01 +%define archive_version 2017.03 Name: u-boot-udooneo -Version: 2017.01 +Version: 2017.03 Release: 0 Summary: The U-Boot firmware for the udooneo platform License: GPL-2.0 @@ -45,10 +49,13 @@ Source3: update_git.sh Source300: u-boot-rpmlintrc Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch +Patch0003: 0003-Makefile-Fix-linking-with-modern-bi.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build # Arndale board need DTC >= 1.4 BuildRequires: bc BuildRequires: dtc >= 1.4.0 +# u-boot-clearfog (tools/kwbimage.c) needs openssl to build +BuildRequires: libopenssl-devel # u-boot-firefly-rk3288 needs python to build BuildRequires: python %if "%{name}" == "u-boot-qemu-ppce500" @@ -56,7 +63,7 @@ BuildRequires: python BuildRequires: qemu Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500 %endif -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} # Owns /boot/vc directory BuildRequires: raspberrypi-firmware # For mountpoint @@ -86,16 +93,24 @@ This package contains documentation for U-Boot firmware. %setup -q -n u-boot-%{archive_version} %patch0001 -p1 %patch0002 -p1 +%patch0003 -p1 %build export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s) -make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" udoo_neo_defconfig -make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes +make %{?jobs:-j %jobs} CROSS_COMPILE= HOSTCFLAGS="$RPM_OPT_FLAGS" udoo_neo_defconfig +%if 0%{?is_rpi} +# U-Boot is installed in the filesystem, so we are confident there's enough space. +echo "Attempting to enable fdt apply command (.dtbo) support." +echo "CONFIG_OF_LIBFDT_OVERLAY=y" >> .config +%endif +make %{?jobs:-j %jobs} CROSS_COMPILE= HOSTCFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes + %if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring" # Chromebook ARM (snow) and HP Chromebook 11 (spring) need a uImage format export TEXT_START=$(awk '$NF == "_start" { printf "0x"$1 }' System.map) ./tools/mkimage -A arm -O linux -T kernel -C none -a $TEXT_START -e $TEXT_START -n uboot -d u-boot-dtb.bin u-boot.img %endif + %if %rockchip_spl == 1 for t in ; do ./tools/mkimage -n -d spl/u-boot-spl.bin -T $t u-boot-spl.$t @@ -107,7 +122,7 @@ export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | export NO_BRP_STRIP_DEBUG=true export NO_DEBUGINFO_STRIP_DEBUG=true %define uboot_dir /boot -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} %define uboot_dir /boot/vc %endif %if "%{name}" == "u-boot-qemu-ppce500" @@ -168,7 +183,7 @@ install -D -m 0755 SPL %{buildroot}/boot/imx6-spl.bin install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp %endif -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} %post # On the Raspberry Pi we chain-load u-boot.bin from bootcode.bin via config.txt. # It needs to be on the first FAT partition, wherever we mounted it. diff --git a/u-boot.changes b/u-boot.changes index 9364ee2..4e8877d 100644 --- a/u-boot.changes +++ b/u-boot.changes @@ -1,3 +1,38 @@ +------------------------------------------------------------------- +Sun Apr 9 18:24:30 UTC 2017 - afaerber@suse.de + +- Add tinker-rk3288 +- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.03 +* Fix firefly-rk3288 and tinker-rk3288 build with binutils 2.28. + 0003-Makefile-Fix-linking-with-modern-bi.patch +- U-Boot has no CFLAGS, so apply $RPM_OPT_FLAGS to HOSTCFLAGS instead + +------------------------------------------------------------------- +Mon Mar 20 11:10:57 UTC 2017 - afaerber@suse.de + +- Tidy Raspberry Pi conditionals +- Enable CONFIG_OF_LIBFDT_OVERLAY for Raspberry Pi only for now + +------------------------------------------------------------------- +Mon Mar 20 09:43:14 UTC 2017 - afaerber@suse.de + +- Add mvebudb-88f{3720,7040,8040} + +------------------------------------------------------------------- +Tue Mar 14 08:47:33 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.03 + +------------------------------------------------------------------- +Wed Mar 1 09:36:39 UTC 2017 - guillaume@opensuse.org + +- Add libopenssl-devel as BuildRequires (needed by some configs) + +------------------------------------------------------------------- +Tue Feb 28 08:37:55 UTC 2017 - guillaume@opensuse.org + +- Updated to v2017.03-rc3 + ------------------------------------------------------------------- Wed Feb 22 13:38:25 UTC 2017 - hsehic@suse.com diff --git a/u-boot.spec b/u-boot.spec index e46c932..24b9fe7 100644 --- a/u-boot.spec +++ b/u-boot.spec @@ -19,10 +19,10 @@ # 'archive_version' differs from 'version' for RC version only -%define archive_version 2017.01 +%define archive_version 2017.03 Name: u-boot -Version: 2017.01 +Version: 2017.03 Release: 0 Summary: Tools for the U-Boot Firmware License: GPL-2.0 diff --git a/u-boot.spec.in b/u-boot.spec.in index 918d501..4c51f45 100644 --- a/u-boot.spec.in +++ b/u-boot.spec.in @@ -29,6 +29,10 @@ %define imx6_spl IMX6_SPL %define socfpga_spl SOCFPGA_SPL +%if "BOARDNAME" == "rpi" || "BOARDNAME" == "rpi2" || "BOARDNAME" == "rpi332b" || "BOARDNAME" == "rpi3" +%define is_rpi 1 +%endif + # archive_version differs from version for RC version only ARCHIVE_VERSION @@ -48,6 +52,8 @@ BuildRoot: %{_tmppath}/%{name}-%{version}-build # Arndale board need DTC >= 1.4 BuildRequires: bc BuildRequires: dtc >= 1.4.0 +# u-boot-clearfog (tools/kwbimage.c) needs openssl to build +BuildRequires: libopenssl-devel # u-boot-firefly-rk3288 needs python to build BuildRequires: python %if "%{name}" == "u-boot-qemu-ppce500" @@ -55,7 +61,7 @@ BuildRequires: python BuildRequires: qemu Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500 %endif -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} # Owns /boot/vc directory BuildRequires: raspberrypi-firmware # For mountpoint @@ -87,13 +93,20 @@ PATCH_EXEC %build export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s) -make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" BOARDCONFIG -make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes +make %{?jobs:-j %jobs} CROSS_COMPILE= HOSTCFLAGS="$RPM_OPT_FLAGS" BOARDCONFIG +%if 0%{?is_rpi} +# U-Boot is installed in the filesystem, so we are confident there's enough space. +echo "Attempting to enable fdt apply command (.dtbo) support." +echo "CONFIG_OF_LIBFDT_OVERLAY=y" >> .config +%endif +make %{?jobs:-j %jobs} CROSS_COMPILE= HOSTCFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes + %if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring" # Chromebook ARM (snow) and HP Chromebook 11 (spring) need a uImage format export TEXT_START=$(awk '$NF == "_start" { printf "0x"$1 }' System.map) ./tools/mkimage -A arm -O linux -T kernel -C none -a $TEXT_START -e $TEXT_START -n uboot -d u-boot-dtb.bin u-boot.img %endif + %if %rockchip_spl == 1 for t in ROCKCHIP_SPL_IMAGE_TYPES; do ./tools/mkimage -n ROCKCHIP_SPL_SOC -d spl/u-boot-spl.bin -T $t u-boot-spl.$t @@ -105,7 +118,7 @@ export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | export NO_BRP_STRIP_DEBUG=true export NO_DEBUGINFO_STRIP_DEBUG=true %define uboot_dir /boot -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} %define uboot_dir /boot/vc %endif %if "%{name}" == "u-boot-qemu-ppce500" @@ -166,7 +179,7 @@ install -D -m 0755 SPL %{buildroot}/boot/imx6-spl.bin install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp %endif -%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3" +%if 0%{?is_rpi} %post # On the Raspberry Pi we chain-load u-boot.bin from bootcode.bin via config.txt. # It needs to be on the first FAT partition, wherever we mounted it. diff --git a/update_git.sh b/update_git.sh index 8392307..9a226f5 100644 --- a/update_git.sh +++ b/update_git.sh @@ -13,8 +13,8 @@ set -e GIT_TREE=git://github.com/openSUSE/u-boot.git GIT_LOCAL_TREE=~/git/u-boot-opensuse -GIT_BRANCH=tumbleweed-2017.01 -GIT_UPSTREAM_TAG=v2017.01 +GIT_BRANCH=tumbleweed-2017.03 +GIT_UPSTREAM_TAG=v2017.03 GIT_DIR=/dev/shm/u-boot-factory-git-dir CMP_DIR=/dev/shm/u-boot-factory-cmp-dir