Accepting request 519109 from Base:System

1

OBS-URL: https://build.opensuse.org/request/show/519109
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/u-boot?expand=0&rev=88
This commit is contained in:
Dominique Leuenberger 2017-08-30 14:21:38 +00:00 committed by Git OBS Bridge
parent f5df43047d
commit e81469174d
131 changed files with 2148 additions and 315 deletions

View File

@ -1,4 +1,4 @@
From cb5dae2d8a8f3fac2dc145dbbe9eefed2f4b3145 Mon Sep 17 00:00:00 2001 From ce76252777c62c56be675af75e7d395b72c9010a Mon Sep 17 00:00:00 2001
From: Alexander Graf <agraf@suse.de> From: Alexander Graf <agraf@suse.de>
Date: Wed, 13 Apr 2016 13:44:29 +0200 Date: Wed, 13 Apr 2016 13:44:29 +0200
Subject: [PATCH] XXX openSUSE XXX: Load dtb from partition 2 Subject: [PATCH] XXX openSUSE XXX: Load dtb from partition 2
@ -16,7 +16,7 @@ Signed-off-by: Alexander Graf <agraf@suse.de>
1 file changed, 3 insertions(+), 3 deletions(-) 1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/include/config_distro_bootcmd.h b/include/config_distro_bootcmd.h diff --git a/include/config_distro_bootcmd.h b/include/config_distro_bootcmd.h
index 0e01e8240d..efca44b0b9 100644 index 4b2c493ae3..62e062a41e 100644
--- a/include/config_distro_bootcmd.h --- a/include/config_distro_bootcmd.h
+++ b/include/config_distro_bootcmd.h +++ b/include/config_distro_bootcmd.h
@@ -121,16 +121,16 @@ @@ -121,16 +121,16 @@

View File

@ -1,4 +1,4 @@
From 74a3500de6b79aa823f4df25dd6a7edb03037da7 Mon Sep 17 00:00:00 2001 From 58515794014ff2c1097cb0d6aa8621042ec23418 Mon Sep 17 00:00:00 2001
From: Alexander Graf <agraf@suse.de> From: Alexander Graf <agraf@suse.de>
Date: Mon, 2 May 2016 23:25:07 +0200 Date: Mon, 2 May 2016 23:25:07 +0200
Subject: [PATCH] Revert "Revert "omap3: Use raw SPL by default for mmc1"" Subject: [PATCH] Revert "Revert "omap3: Use raw SPL by default for mmc1""
@ -9,10 +9,10 @@ This reverts commit 7fa75d0ac5502db813d109c1df7bd0da34688685.
1 file changed, 2 deletions(-) 1 file changed, 2 deletions(-)
diff --git a/arch/arm/mach-omap2/boot-common.c b/arch/arm/mach-omap2/boot-common.c diff --git a/arch/arm/mach-omap2/boot-common.c b/arch/arm/mach-omap2/boot-common.c
index 29c8f23191..4910b28d84 100644 index b77506df83..ba1907c5f5 100644
--- a/arch/arm/mach-omap2/boot-common.c --- a/arch/arm/mach-omap2/boot-common.c
+++ b/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) @@ -133,8 +133,6 @@ void save_omap_boot_params(void)
(boot_device <= MMC_BOOT_DEVICES_END)) { (boot_device <= MMC_BOOT_DEVICES_END)) {
switch (boot_device) { switch (boot_device) {
case BOOT_DEVICE_MMC1: case BOOT_DEVICE_MMC1:

View File

@ -0,0 +1,66 @@
From 3c2b083aff4fb7993ac60b6c2884bac5e9c59b2b Mon Sep 17 00:00:00 2001
From: Guillaume GARDET <guillaume.gardet@free.fr>
Date: Thu, 22 Jun 2017 10:04:06 +0200
Subject: [PATCH] Revert 'rockchip: mkimage: remove placeholder functions from
rkimage'
Revert commit 253c60a557d6740f15169a1f15772d7e64928d9b as it breaks the
return value of 'mkimage -T rkimage' and print the following error:
'./tools/mkimage: Can't print header for Rockchip Boot Image support: Success'
Signed-off-by: Guillaume GARDET <guillaume.gardet@free.fr>
Cc: Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
Cc: Simon Glass <sjg@chromium.org>
Cc: Tom Rini <trini@konsulko.com>
---
tools/rkimage.c | 21 ++++++++++++++++++---
1 file changed, 18 insertions(+), 3 deletions(-)
diff --git a/tools/rkimage.c b/tools/rkimage.c
index 9880b1569f..44d098c775 100644
--- a/tools/rkimage.c
+++ b/tools/rkimage.c
@@ -13,6 +13,16 @@
static uint32_t header;
+static int rkimage_verify_header(unsigned char *buf, int size,
+ struct image_tool_params *params)
+{
+ return 0;
+}
+
+static void rkimage_print_header(const void *buf)
+{
+}
+
static void rkimage_set_header(void *buf, struct stat *sbuf, int ifd,
struct image_tool_params *params)
{
@@ -23,6 +33,11 @@ static void rkimage_set_header(void *buf, struct stat *sbuf, int ifd,
rkcommon_rc4_encode_spl(buf, 4, params->file_size);
}
+static int rkimage_extract_subimage(void *buf, struct image_tool_params *params)
+{
+ return 0;
+}
+
static int rkimage_check_image_type(uint8_t type)
{
if (type == IH_TYPE_RKIMAGE)
@@ -40,10 +55,10 @@ U_BOOT_IMAGE_TYPE(
4,
&header,
rkcommon_check_params,
- NULL,
- NULL,
+ rkimage_verify_header,
+ rkimage_print_header,
rkimage_set_header,
- NULL,
+ rkimage_extract_subimage,
rkimage_check_image_type,
NULL,
NULL

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c8373949d7f0de1059e507b83a655d4cea539f75dc66ccdbb27adbd38d83095e
size 11938152

Binary file not shown.

3
u-boot-2017.07.tar.bz2 Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:5374bfdc8acb9a38c025371b1ff20f45e7533668e84e685d0df5d9e7c0e4feff
size 11282262

BIN
u-boot-2017.07.tar.bz2.sig Normal file

Binary file not shown.

View File

@ -1,3 +1,30 @@
-------------------------------------------------------------------
Mon Aug 21 14:46:36 UTC 2017 - guillaume@opensuse.org
- Updated to v2017.07
-------------------------------------------------------------------
Mon Jul 10 12:54:03 UTC 2017 - guillaume@opensuse.org
- Updated to v2017.07-rc3
-------------------------------------------------------------------
Thu Jun 22 08:19:18 UTC 2017 - guillaume@opensuse.org
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.07
* Patches added:
0003-Revert-rockchip-mkimage-remove-plac.patch
-------------------------------------------------------------------
Wed Jun 21 14:18:06 UTC 2017 - guillaume.gardet@opensuse.org
- Updated to v2017.07-rc2
-------------------------------------------------------------------
Fri Jun 9 14:21:41 UTC 2017 - afaerber@suse.de
- Updated to v2017.07-rc1
------------------------------------------------------------------- -------------------------------------------------------------------
Mon May 8 15:27:50 UTC 2017 - afaerber@suse.de Mon May 8 15:27:50 UTC 2017 - afaerber@suse.de

View File

@ -34,10 +34,10 @@
%endif %endif
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
%define archive_version 2017.05 %define archive_version 2017.07
Name: u-boot-a10-olinuxino-lime Name: u-boot-a10-olinuxino-lime
Version: 2017.05 Version: 2017.07
Release: 0 Release: 0
Summary: The U-Boot firmware for the a10-olinuxino-lime platform Summary: The U-Boot firmware for the a10-olinuxino-lime platform
License: GPL-2.0 License: GPL-2.0
@ -50,14 +50,15 @@ Source3: update_git.sh
Source300: u-boot-rpmlintrc Source300: u-boot-rpmlintrc
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
Patch0003: 0003-Revert-rockchip-mkimage-remove-plac.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
# Arndale board need DTC >= 1.4
BuildRequires: bc BuildRequires: bc
# Arndale board needs DTC >= 1.4
BuildRequires: dtc >= 1.4.0 BuildRequires: dtc >= 1.4.0
# u-boot-clearfog (tools/kwbimage.c) needs openssl to build # u-boot-clearfog (tools/kwbimage.c) needs openssl to build
BuildRequires: libopenssl-devel BuildRequires: libopenssl-devel
# u-boot-firefly-rk3288 needs python to build BuildRequires: python-devel
BuildRequires: python BuildRequires: swig
%if "%{name}" == "u-boot-qemu-ppce500" %if "%{name}" == "u-boot-qemu-ppce500"
# Owns /usr/share/qemu directory # Owns /usr/share/qemu directory
BuildRequires: qemu BuildRequires: qemu
@ -93,6 +94,7 @@ This package contains documentation for U-Boot firmware.
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
%patch0001 -p1 %patch0001 -p1
%patch0002 -p1 %patch0002 -p1
%patch0003 -p1
%build %build
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s) export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)

View File

@ -1,3 +1,30 @@
-------------------------------------------------------------------
Mon Aug 21 14:46:36 UTC 2017 - guillaume@opensuse.org
- Updated to v2017.07
-------------------------------------------------------------------
Mon Jul 10 12:54:03 UTC 2017 - guillaume@opensuse.org
- Updated to v2017.07-rc3
-------------------------------------------------------------------
Thu Jun 22 08:19:18 UTC 2017 - guillaume@opensuse.org
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.07
* Patches added:
0003-Revert-rockchip-mkimage-remove-plac.patch
-------------------------------------------------------------------
Wed Jun 21 14:18:06 UTC 2017 - guillaume.gardet@opensuse.org
- Updated to v2017.07-rc2
-------------------------------------------------------------------
Fri Jun 9 14:21:41 UTC 2017 - afaerber@suse.de
- Updated to v2017.07-rc1
------------------------------------------------------------------- -------------------------------------------------------------------
Mon May 8 15:27:50 UTC 2017 - afaerber@suse.de Mon May 8 15:27:50 UTC 2017 - afaerber@suse.de

View File

@ -34,10 +34,10 @@
%endif %endif
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
%define archive_version 2017.05 %define archive_version 2017.07
Name: u-boot-a13-olinuxino Name: u-boot-a13-olinuxino
Version: 2017.05 Version: 2017.07
Release: 0 Release: 0
Summary: The U-Boot firmware for the a13-olinuxino platform Summary: The U-Boot firmware for the a13-olinuxino platform
License: GPL-2.0 License: GPL-2.0
@ -50,14 +50,15 @@ Source3: update_git.sh
Source300: u-boot-rpmlintrc Source300: u-boot-rpmlintrc
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
Patch0003: 0003-Revert-rockchip-mkimage-remove-plac.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
# Arndale board need DTC >= 1.4
BuildRequires: bc BuildRequires: bc
# Arndale board needs DTC >= 1.4
BuildRequires: dtc >= 1.4.0 BuildRequires: dtc >= 1.4.0
# u-boot-clearfog (tools/kwbimage.c) needs openssl to build # u-boot-clearfog (tools/kwbimage.c) needs openssl to build
BuildRequires: libopenssl-devel BuildRequires: libopenssl-devel
# u-boot-firefly-rk3288 needs python to build BuildRequires: python-devel
BuildRequires: python BuildRequires: swig
%if "%{name}" == "u-boot-qemu-ppce500" %if "%{name}" == "u-boot-qemu-ppce500"
# Owns /usr/share/qemu directory # Owns /usr/share/qemu directory
BuildRequires: qemu BuildRequires: qemu
@ -93,6 +94,7 @@ This package contains documentation for U-Boot firmware.
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
%patch0001 -p1 %patch0001 -p1
%patch0002 -p1 %patch0002 -p1
%patch0003 -p1
%build %build
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s) export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)

View File

@ -1,3 +1,30 @@
-------------------------------------------------------------------
Mon Aug 21 14:46:36 UTC 2017 - guillaume@opensuse.org
- Updated to v2017.07
-------------------------------------------------------------------
Mon Jul 10 12:54:03 UTC 2017 - guillaume@opensuse.org
- Updated to v2017.07-rc3
-------------------------------------------------------------------
Thu Jun 22 08:19:18 UTC 2017 - guillaume@opensuse.org
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.07
* Patches added:
0003-Revert-rockchip-mkimage-remove-plac.patch
-------------------------------------------------------------------
Wed Jun 21 14:18:06 UTC 2017 - guillaume.gardet@opensuse.org
- Updated to v2017.07-rc2
-------------------------------------------------------------------
Fri Jun 9 14:21:41 UTC 2017 - afaerber@suse.de
- Updated to v2017.07-rc1
------------------------------------------------------------------- -------------------------------------------------------------------
Mon May 8 15:27:50 UTC 2017 - afaerber@suse.de Mon May 8 15:27:50 UTC 2017 - afaerber@suse.de

View File

@ -34,10 +34,10 @@
%endif %endif
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
%define archive_version 2017.05 %define archive_version 2017.07
Name: u-boot-a13-olinuxinom Name: u-boot-a13-olinuxinom
Version: 2017.05 Version: 2017.07
Release: 0 Release: 0
Summary: The U-Boot firmware for the a13-olinuxinom platform Summary: The U-Boot firmware for the a13-olinuxinom platform
License: GPL-2.0 License: GPL-2.0
@ -50,14 +50,15 @@ Source3: update_git.sh
Source300: u-boot-rpmlintrc Source300: u-boot-rpmlintrc
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
Patch0003: 0003-Revert-rockchip-mkimage-remove-plac.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
# Arndale board need DTC >= 1.4
BuildRequires: bc BuildRequires: bc
# Arndale board needs DTC >= 1.4
BuildRequires: dtc >= 1.4.0 BuildRequires: dtc >= 1.4.0
# u-boot-clearfog (tools/kwbimage.c) needs openssl to build # u-boot-clearfog (tools/kwbimage.c) needs openssl to build
BuildRequires: libopenssl-devel BuildRequires: libopenssl-devel
# u-boot-firefly-rk3288 needs python to build BuildRequires: python-devel
BuildRequires: python BuildRequires: swig
%if "%{name}" == "u-boot-qemu-ppce500" %if "%{name}" == "u-boot-qemu-ppce500"
# Owns /usr/share/qemu directory # Owns /usr/share/qemu directory
BuildRequires: qemu BuildRequires: qemu
@ -93,6 +94,7 @@ This package contains documentation for U-Boot firmware.
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
%patch0001 -p1 %patch0001 -p1
%patch0002 -p1 %patch0002 -p1
%patch0003 -p1
%build %build
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s) export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)

View File

@ -1,3 +1,30 @@
-------------------------------------------------------------------
Mon Aug 21 14:46:36 UTC 2017 - guillaume@opensuse.org
- Updated to v2017.07
-------------------------------------------------------------------
Mon Jul 10 12:54:03 UTC 2017 - guillaume@opensuse.org
- Updated to v2017.07-rc3
-------------------------------------------------------------------
Thu Jun 22 08:19:18 UTC 2017 - guillaume@opensuse.org
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.07
* Patches added:
0003-Revert-rockchip-mkimage-remove-plac.patch
-------------------------------------------------------------------
Wed Jun 21 14:18:06 UTC 2017 - guillaume.gardet@opensuse.org
- Updated to v2017.07-rc2
-------------------------------------------------------------------
Fri Jun 9 14:21:41 UTC 2017 - afaerber@suse.de
- Updated to v2017.07-rc1
------------------------------------------------------------------- -------------------------------------------------------------------
Mon May 8 15:27:50 UTC 2017 - afaerber@suse.de Mon May 8 15:27:50 UTC 2017 - afaerber@suse.de

View File

@ -34,10 +34,10 @@
%endif %endif
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
%define archive_version 2017.05 %define archive_version 2017.07
Name: u-boot-a20-olinuxino-lime Name: u-boot-a20-olinuxino-lime
Version: 2017.05 Version: 2017.07
Release: 0 Release: 0
Summary: The U-Boot firmware for the a20-olinuxino-lime platform Summary: The U-Boot firmware for the a20-olinuxino-lime platform
License: GPL-2.0 License: GPL-2.0
@ -50,14 +50,15 @@ Source3: update_git.sh
Source300: u-boot-rpmlintrc Source300: u-boot-rpmlintrc
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
Patch0003: 0003-Revert-rockchip-mkimage-remove-plac.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
# Arndale board need DTC >= 1.4
BuildRequires: bc BuildRequires: bc
# Arndale board needs DTC >= 1.4
BuildRequires: dtc >= 1.4.0 BuildRequires: dtc >= 1.4.0
# u-boot-clearfog (tools/kwbimage.c) needs openssl to build # u-boot-clearfog (tools/kwbimage.c) needs openssl to build
BuildRequires: libopenssl-devel BuildRequires: libopenssl-devel
# u-boot-firefly-rk3288 needs python to build BuildRequires: python-devel
BuildRequires: python BuildRequires: swig
%if "%{name}" == "u-boot-qemu-ppce500" %if "%{name}" == "u-boot-qemu-ppce500"
# Owns /usr/share/qemu directory # Owns /usr/share/qemu directory
BuildRequires: qemu BuildRequires: qemu
@ -93,6 +94,7 @@ This package contains documentation for U-Boot firmware.
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
%patch0001 -p1 %patch0001 -p1
%patch0002 -p1 %patch0002 -p1
%patch0003 -p1
%build %build
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s) export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)

View File

@ -1,3 +1,30 @@
-------------------------------------------------------------------
Mon Aug 21 14:46:36 UTC 2017 - guillaume@opensuse.org
- Updated to v2017.07
-------------------------------------------------------------------
Mon Jul 10 12:54:03 UTC 2017 - guillaume@opensuse.org
- Updated to v2017.07-rc3
-------------------------------------------------------------------
Thu Jun 22 08:19:18 UTC 2017 - guillaume@opensuse.org
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.07
* Patches added:
0003-Revert-rockchip-mkimage-remove-plac.patch
-------------------------------------------------------------------
Wed Jun 21 14:18:06 UTC 2017 - guillaume.gardet@opensuse.org
- Updated to v2017.07-rc2
-------------------------------------------------------------------
Fri Jun 9 14:21:41 UTC 2017 - afaerber@suse.de
- Updated to v2017.07-rc1
------------------------------------------------------------------- -------------------------------------------------------------------
Mon May 8 15:27:50 UTC 2017 - afaerber@suse.de Mon May 8 15:27:50 UTC 2017 - afaerber@suse.de

View File

@ -34,10 +34,10 @@
%endif %endif
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
%define archive_version 2017.05 %define archive_version 2017.07
Name: u-boot-a20-olinuxino-lime2 Name: u-boot-a20-olinuxino-lime2
Version: 2017.05 Version: 2017.07
Release: 0 Release: 0
Summary: The U-Boot firmware for the a20-olinuxino-lime2 platform Summary: The U-Boot firmware for the a20-olinuxino-lime2 platform
License: GPL-2.0 License: GPL-2.0
@ -50,14 +50,15 @@ Source3: update_git.sh
Source300: u-boot-rpmlintrc Source300: u-boot-rpmlintrc
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
Patch0003: 0003-Revert-rockchip-mkimage-remove-plac.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
# Arndale board need DTC >= 1.4
BuildRequires: bc BuildRequires: bc
# Arndale board needs DTC >= 1.4
BuildRequires: dtc >= 1.4.0 BuildRequires: dtc >= 1.4.0
# u-boot-clearfog (tools/kwbimage.c) needs openssl to build # u-boot-clearfog (tools/kwbimage.c) needs openssl to build
BuildRequires: libopenssl-devel BuildRequires: libopenssl-devel
# u-boot-firefly-rk3288 needs python to build BuildRequires: python-devel
BuildRequires: python BuildRequires: swig
%if "%{name}" == "u-boot-qemu-ppce500" %if "%{name}" == "u-boot-qemu-ppce500"
# Owns /usr/share/qemu directory # Owns /usr/share/qemu directory
BuildRequires: qemu BuildRequires: qemu
@ -93,6 +94,7 @@ This package contains documentation for U-Boot firmware.
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
%patch0001 -p1 %patch0001 -p1
%patch0002 -p1 %patch0002 -p1
%patch0003 -p1
%build %build
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s) export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)

View File

@ -1,3 +1,30 @@
-------------------------------------------------------------------
Mon Aug 21 14:46:36 UTC 2017 - guillaume@opensuse.org
- Updated to v2017.07
-------------------------------------------------------------------
Mon Jul 10 12:54:03 UTC 2017 - guillaume@opensuse.org
- Updated to v2017.07-rc3
-------------------------------------------------------------------
Thu Jun 22 08:19:18 UTC 2017 - guillaume@opensuse.org
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.07
* Patches added:
0003-Revert-rockchip-mkimage-remove-plac.patch
-------------------------------------------------------------------
Wed Jun 21 14:18:06 UTC 2017 - guillaume.gardet@opensuse.org
- Updated to v2017.07-rc2
-------------------------------------------------------------------
Fri Jun 9 14:21:41 UTC 2017 - afaerber@suse.de
- Updated to v2017.07-rc1
------------------------------------------------------------------- -------------------------------------------------------------------
Mon May 8 15:27:50 UTC 2017 - afaerber@suse.de Mon May 8 15:27:50 UTC 2017 - afaerber@suse.de

View File

@ -34,10 +34,10 @@
%endif %endif
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
%define archive_version 2017.05 %define archive_version 2017.07
Name: u-boot-a20-olinuxinomicro Name: u-boot-a20-olinuxinomicro
Version: 2017.05 Version: 2017.07
Release: 0 Release: 0
Summary: The U-Boot firmware for the a20-olinuxinomicro platform Summary: The U-Boot firmware for the a20-olinuxinomicro platform
License: GPL-2.0 License: GPL-2.0
@ -50,14 +50,15 @@ Source3: update_git.sh
Source300: u-boot-rpmlintrc Source300: u-boot-rpmlintrc
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
Patch0003: 0003-Revert-rockchip-mkimage-remove-plac.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
# Arndale board need DTC >= 1.4
BuildRequires: bc BuildRequires: bc
# Arndale board needs DTC >= 1.4
BuildRequires: dtc >= 1.4.0 BuildRequires: dtc >= 1.4.0
# u-boot-clearfog (tools/kwbimage.c) needs openssl to build # u-boot-clearfog (tools/kwbimage.c) needs openssl to build
BuildRequires: libopenssl-devel BuildRequires: libopenssl-devel
# u-boot-firefly-rk3288 needs python to build BuildRequires: python-devel
BuildRequires: python BuildRequires: swig
%if "%{name}" == "u-boot-qemu-ppce500" %if "%{name}" == "u-boot-qemu-ppce500"
# Owns /usr/share/qemu directory # Owns /usr/share/qemu directory
BuildRequires: qemu BuildRequires: qemu
@ -93,6 +94,7 @@ This package contains documentation for U-Boot firmware.
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
%patch0001 -p1 %patch0001 -p1
%patch0002 -p1 %patch0002 -p1
%patch0003 -p1
%build %build
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s) export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)

View File

@ -1,3 +1,30 @@
-------------------------------------------------------------------
Mon Aug 21 14:46:36 UTC 2017 - guillaume@opensuse.org
- Updated to v2017.07
-------------------------------------------------------------------
Mon Jul 10 12:54:03 UTC 2017 - guillaume@opensuse.org
- Updated to v2017.07-rc3
-------------------------------------------------------------------
Thu Jun 22 08:19:18 UTC 2017 - guillaume@opensuse.org
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.07
* Patches added:
0003-Revert-rockchip-mkimage-remove-plac.patch
-------------------------------------------------------------------
Wed Jun 21 14:18:06 UTC 2017 - guillaume.gardet@opensuse.org
- Updated to v2017.07-rc2
-------------------------------------------------------------------
Fri Jun 9 14:21:41 UTC 2017 - afaerber@suse.de
- Updated to v2017.07-rc1
------------------------------------------------------------------- -------------------------------------------------------------------
Mon May 8 15:27:50 UTC 2017 - afaerber@suse.de Mon May 8 15:27:50 UTC 2017 - afaerber@suse.de

View File

@ -34,10 +34,10 @@
%endif %endif
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
%define archive_version 2017.05 %define archive_version 2017.07
Name: u-boot-am335xboneblack Name: u-boot-am335xboneblack
Version: 2017.05 Version: 2017.07
Release: 0 Release: 0
Summary: The U-Boot firmware for the am335xboneblack platform Summary: The U-Boot firmware for the am335xboneblack platform
License: GPL-2.0 License: GPL-2.0
@ -50,14 +50,15 @@ Source3: update_git.sh
Source300: u-boot-rpmlintrc Source300: u-boot-rpmlintrc
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
Patch0003: 0003-Revert-rockchip-mkimage-remove-plac.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
# Arndale board need DTC >= 1.4
BuildRequires: bc BuildRequires: bc
# Arndale board needs DTC >= 1.4
BuildRequires: dtc >= 1.4.0 BuildRequires: dtc >= 1.4.0
# u-boot-clearfog (tools/kwbimage.c) needs openssl to build # u-boot-clearfog (tools/kwbimage.c) needs openssl to build
BuildRequires: libopenssl-devel BuildRequires: libopenssl-devel
# u-boot-firefly-rk3288 needs python to build BuildRequires: python-devel
BuildRequires: python BuildRequires: swig
%if "%{name}" == "u-boot-qemu-ppce500" %if "%{name}" == "u-boot-qemu-ppce500"
# Owns /usr/share/qemu directory # Owns /usr/share/qemu directory
BuildRequires: qemu BuildRequires: qemu
@ -93,6 +94,7 @@ This package contains documentation for U-Boot firmware.
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
%patch0001 -p1 %patch0001 -p1
%patch0002 -p1 %patch0002 -p1
%patch0003 -p1
%build %build
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s) export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)

View File

@ -1,3 +1,30 @@
-------------------------------------------------------------------
Mon Aug 21 14:46:36 UTC 2017 - guillaume@opensuse.org
- Updated to v2017.07
-------------------------------------------------------------------
Mon Jul 10 12:54:03 UTC 2017 - guillaume@opensuse.org
- Updated to v2017.07-rc3
-------------------------------------------------------------------
Thu Jun 22 08:19:18 UTC 2017 - guillaume@opensuse.org
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.07
* Patches added:
0003-Revert-rockchip-mkimage-remove-plac.patch
-------------------------------------------------------------------
Wed Jun 21 14:18:06 UTC 2017 - guillaume.gardet@opensuse.org
- Updated to v2017.07-rc2
-------------------------------------------------------------------
Fri Jun 9 14:21:41 UTC 2017 - afaerber@suse.de
- Updated to v2017.07-rc1
------------------------------------------------------------------- -------------------------------------------------------------------
Mon May 8 15:27:50 UTC 2017 - afaerber@suse.de Mon May 8 15:27:50 UTC 2017 - afaerber@suse.de

View File

@ -34,10 +34,10 @@
%endif %endif
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
%define archive_version 2017.05 %define archive_version 2017.07
Name: u-boot-am335xevm Name: u-boot-am335xevm
Version: 2017.05 Version: 2017.07
Release: 0 Release: 0
Summary: The U-Boot firmware for the am335xevm platform Summary: The U-Boot firmware for the am335xevm platform
License: GPL-2.0 License: GPL-2.0
@ -50,14 +50,15 @@ Source3: update_git.sh
Source300: u-boot-rpmlintrc Source300: u-boot-rpmlintrc
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
Patch0003: 0003-Revert-rockchip-mkimage-remove-plac.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
# Arndale board need DTC >= 1.4
BuildRequires: bc BuildRequires: bc
# Arndale board needs DTC >= 1.4
BuildRequires: dtc >= 1.4.0 BuildRequires: dtc >= 1.4.0
# u-boot-clearfog (tools/kwbimage.c) needs openssl to build # u-boot-clearfog (tools/kwbimage.c) needs openssl to build
BuildRequires: libopenssl-devel BuildRequires: libopenssl-devel
# u-boot-firefly-rk3288 needs python to build BuildRequires: python-devel
BuildRequires: python BuildRequires: swig
%if "%{name}" == "u-boot-qemu-ppce500" %if "%{name}" == "u-boot-qemu-ppce500"
# Owns /usr/share/qemu directory # Owns /usr/share/qemu directory
BuildRequires: qemu BuildRequires: qemu
@ -93,6 +94,7 @@ This package contains documentation for U-Boot firmware.
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
%patch0001 -p1 %patch0001 -p1
%patch0002 -p1 %patch0002 -p1
%patch0003 -p1
%build %build
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s) export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)

View File

@ -1,3 +1,30 @@
-------------------------------------------------------------------
Mon Aug 21 14:46:36 UTC 2017 - guillaume@opensuse.org
- Updated to v2017.07
-------------------------------------------------------------------
Mon Jul 10 12:54:03 UTC 2017 - guillaume@opensuse.org
- Updated to v2017.07-rc3
-------------------------------------------------------------------
Thu Jun 22 08:19:18 UTC 2017 - guillaume@opensuse.org
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.07
* Patches added:
0003-Revert-rockchip-mkimage-remove-plac.patch
-------------------------------------------------------------------
Wed Jun 21 14:18:06 UTC 2017 - guillaume.gardet@opensuse.org
- Updated to v2017.07-rc2
-------------------------------------------------------------------
Fri Jun 9 14:21:41 UTC 2017 - afaerber@suse.de
- Updated to v2017.07-rc1
------------------------------------------------------------------- -------------------------------------------------------------------
Mon May 8 15:27:50 UTC 2017 - afaerber@suse.de Mon May 8 15:27:50 UTC 2017 - afaerber@suse.de

View File

@ -34,10 +34,10 @@
%endif %endif
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
%define archive_version 2017.05 %define archive_version 2017.07
Name: u-boot-am57xxevm Name: u-boot-am57xxevm
Version: 2017.05 Version: 2017.07
Release: 0 Release: 0
Summary: The U-Boot firmware for the am57xxevm platform Summary: The U-Boot firmware for the am57xxevm platform
License: GPL-2.0 License: GPL-2.0
@ -50,14 +50,15 @@ Source3: update_git.sh
Source300: u-boot-rpmlintrc Source300: u-boot-rpmlintrc
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
Patch0003: 0003-Revert-rockchip-mkimage-remove-plac.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
# Arndale board need DTC >= 1.4
BuildRequires: bc BuildRequires: bc
# Arndale board needs DTC >= 1.4
BuildRequires: dtc >= 1.4.0 BuildRequires: dtc >= 1.4.0
# u-boot-clearfog (tools/kwbimage.c) needs openssl to build # u-boot-clearfog (tools/kwbimage.c) needs openssl to build
BuildRequires: libopenssl-devel BuildRequires: libopenssl-devel
# u-boot-firefly-rk3288 needs python to build BuildRequires: python-devel
BuildRequires: python BuildRequires: swig
%if "%{name}" == "u-boot-qemu-ppce500" %if "%{name}" == "u-boot-qemu-ppce500"
# Owns /usr/share/qemu directory # Owns /usr/share/qemu directory
BuildRequires: qemu BuildRequires: qemu
@ -93,6 +94,7 @@ This package contains documentation for U-Boot firmware.
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
%patch0001 -p1 %patch0001 -p1
%patch0002 -p1 %patch0002 -p1
%patch0003 -p1
%build %build
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s) export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)

View File

@ -1,3 +1,30 @@
-------------------------------------------------------------------
Mon Aug 21 14:46:36 UTC 2017 - guillaume@opensuse.org
- Updated to v2017.07
-------------------------------------------------------------------
Mon Jul 10 12:54:03 UTC 2017 - guillaume@opensuse.org
- Updated to v2017.07-rc3
-------------------------------------------------------------------
Thu Jun 22 08:19:18 UTC 2017 - guillaume@opensuse.org
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.07
* Patches added:
0003-Revert-rockchip-mkimage-remove-plac.patch
-------------------------------------------------------------------
Wed Jun 21 14:18:06 UTC 2017 - guillaume.gardet@opensuse.org
- Updated to v2017.07-rc2
-------------------------------------------------------------------
Fri Jun 9 14:21:41 UTC 2017 - afaerber@suse.de
- Updated to v2017.07-rc1
------------------------------------------------------------------- -------------------------------------------------------------------
Mon May 8 15:27:50 UTC 2017 - afaerber@suse.de Mon May 8 15:27:50 UTC 2017 - afaerber@suse.de

View File

@ -34,10 +34,10 @@
%endif %endif
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
%define archive_version 2017.05 %define archive_version 2017.07
Name: u-boot-am57xxevmnodt Name: u-boot-am57xxevmnodt
Version: 2017.05 Version: 2017.07
Release: 0 Release: 0
Summary: The U-Boot firmware for the am57xxevmnodt platform Summary: The U-Boot firmware for the am57xxevmnodt platform
License: GPL-2.0 License: GPL-2.0
@ -50,14 +50,15 @@ Source3: update_git.sh
Source300: u-boot-rpmlintrc Source300: u-boot-rpmlintrc
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
Patch0003: 0003-Revert-rockchip-mkimage-remove-plac.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
# Arndale board need DTC >= 1.4
BuildRequires: bc BuildRequires: bc
# Arndale board needs DTC >= 1.4
BuildRequires: dtc >= 1.4.0 BuildRequires: dtc >= 1.4.0
# u-boot-clearfog (tools/kwbimage.c) needs openssl to build # u-boot-clearfog (tools/kwbimage.c) needs openssl to build
BuildRequires: libopenssl-devel BuildRequires: libopenssl-devel
# u-boot-firefly-rk3288 needs python to build BuildRequires: python-devel
BuildRequires: python BuildRequires: swig
%if "%{name}" == "u-boot-qemu-ppce500" %if "%{name}" == "u-boot-qemu-ppce500"
# Owns /usr/share/qemu directory # Owns /usr/share/qemu directory
BuildRequires: qemu BuildRequires: qemu
@ -93,6 +94,7 @@ This package contains documentation for U-Boot firmware.
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
%patch0001 -p1 %patch0001 -p1
%patch0002 -p1 %patch0002 -p1
%patch0003 -p1
%build %build
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s) export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)

View File

@ -1,3 +1,30 @@
-------------------------------------------------------------------
Mon Aug 21 14:46:36 UTC 2017 - guillaume@opensuse.org
- Updated to v2017.07
-------------------------------------------------------------------
Mon Jul 10 12:54:03 UTC 2017 - guillaume@opensuse.org
- Updated to v2017.07-rc3
-------------------------------------------------------------------
Thu Jun 22 08:19:18 UTC 2017 - guillaume@opensuse.org
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.07
* Patches added:
0003-Revert-rockchip-mkimage-remove-plac.patch
-------------------------------------------------------------------
Wed Jun 21 14:18:06 UTC 2017 - guillaume.gardet@opensuse.org
- Updated to v2017.07-rc2
-------------------------------------------------------------------
Fri Jun 9 14:21:41 UTC 2017 - afaerber@suse.de
- Updated to v2017.07-rc1
------------------------------------------------------------------- -------------------------------------------------------------------
Mon May 8 15:27:50 UTC 2017 - afaerber@suse.de Mon May 8 15:27:50 UTC 2017 - afaerber@suse.de

View File

@ -34,10 +34,10 @@
%endif %endif
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
%define archive_version 2017.05 %define archive_version 2017.07
Name: u-boot-arndale Name: u-boot-arndale
Version: 2017.05 Version: 2017.07
Release: 0 Release: 0
Summary: The U-Boot firmware for the arndale platform Summary: The U-Boot firmware for the arndale platform
License: GPL-2.0 License: GPL-2.0
@ -50,14 +50,15 @@ Source3: update_git.sh
Source300: u-boot-rpmlintrc Source300: u-boot-rpmlintrc
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
Patch0003: 0003-Revert-rockchip-mkimage-remove-plac.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
# Arndale board need DTC >= 1.4
BuildRequires: bc BuildRequires: bc
# Arndale board needs DTC >= 1.4
BuildRequires: dtc >= 1.4.0 BuildRequires: dtc >= 1.4.0
# u-boot-clearfog (tools/kwbimage.c) needs openssl to build # u-boot-clearfog (tools/kwbimage.c) needs openssl to build
BuildRequires: libopenssl-devel BuildRequires: libopenssl-devel
# u-boot-firefly-rk3288 needs python to build BuildRequires: python-devel
BuildRequires: python BuildRequires: swig
%if "%{name}" == "u-boot-qemu-ppce500" %if "%{name}" == "u-boot-qemu-ppce500"
# Owns /usr/share/qemu directory # Owns /usr/share/qemu directory
BuildRequires: qemu BuildRequires: qemu
@ -93,6 +94,7 @@ This package contains documentation for U-Boot firmware.
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
%patch0001 -p1 %patch0001 -p1
%patch0002 -p1 %patch0002 -p1
%patch0003 -p1
%build %build
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s) export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)

View File

@ -1,3 +1,30 @@
-------------------------------------------------------------------
Mon Aug 21 14:46:36 UTC 2017 - guillaume@opensuse.org
- Updated to v2017.07
-------------------------------------------------------------------
Mon Jul 10 12:54:03 UTC 2017 - guillaume@opensuse.org
- Updated to v2017.07-rc3
-------------------------------------------------------------------
Thu Jun 22 08:19:18 UTC 2017 - guillaume@opensuse.org
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.07
* Patches added:
0003-Revert-rockchip-mkimage-remove-plac.patch
-------------------------------------------------------------------
Wed Jun 21 14:18:06 UTC 2017 - guillaume.gardet@opensuse.org
- Updated to v2017.07-rc2
-------------------------------------------------------------------
Fri Jun 9 14:21:41 UTC 2017 - afaerber@suse.de
- Updated to v2017.07-rc1
------------------------------------------------------------------- -------------------------------------------------------------------
Mon May 8 15:27:50 UTC 2017 - afaerber@suse.de Mon May 8 15:27:50 UTC 2017 - afaerber@suse.de

View File

@ -34,10 +34,10 @@
%endif %endif
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
%define archive_version 2017.05 %define archive_version 2017.07
Name: u-boot-bananapi Name: u-boot-bananapi
Version: 2017.05 Version: 2017.07
Release: 0 Release: 0
Summary: The U-Boot firmware for the bananapi platform Summary: The U-Boot firmware for the bananapi platform
License: GPL-2.0 License: GPL-2.0
@ -50,14 +50,15 @@ Source3: update_git.sh
Source300: u-boot-rpmlintrc Source300: u-boot-rpmlintrc
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
Patch0003: 0003-Revert-rockchip-mkimage-remove-plac.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
# Arndale board need DTC >= 1.4
BuildRequires: bc BuildRequires: bc
# Arndale board needs DTC >= 1.4
BuildRequires: dtc >= 1.4.0 BuildRequires: dtc >= 1.4.0
# u-boot-clearfog (tools/kwbimage.c) needs openssl to build # u-boot-clearfog (tools/kwbimage.c) needs openssl to build
BuildRequires: libopenssl-devel BuildRequires: libopenssl-devel
# u-boot-firefly-rk3288 needs python to build BuildRequires: python-devel
BuildRequires: python BuildRequires: swig
%if "%{name}" == "u-boot-qemu-ppce500" %if "%{name}" == "u-boot-qemu-ppce500"
# Owns /usr/share/qemu directory # Owns /usr/share/qemu directory
BuildRequires: qemu BuildRequires: qemu
@ -93,6 +94,7 @@ This package contains documentation for U-Boot firmware.
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
%patch0001 -p1 %patch0001 -p1
%patch0002 -p1 %patch0002 -p1
%patch0003 -p1
%build %build
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s) export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)

View File

@ -1,3 +1,30 @@
-------------------------------------------------------------------
Mon Aug 21 14:46:36 UTC 2017 - guillaume@opensuse.org
- Updated to v2017.07
-------------------------------------------------------------------
Mon Jul 10 12:54:03 UTC 2017 - guillaume@opensuse.org
- Updated to v2017.07-rc3
-------------------------------------------------------------------
Thu Jun 22 08:19:18 UTC 2017 - guillaume@opensuse.org
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.07
* Patches added:
0003-Revert-rockchip-mkimage-remove-plac.patch
-------------------------------------------------------------------
Wed Jun 21 14:18:06 UTC 2017 - guillaume.gardet@opensuse.org
- Updated to v2017.07-rc2
-------------------------------------------------------------------
Fri Jun 9 14:21:41 UTC 2017 - afaerber@suse.de
- Updated to v2017.07-rc1
------------------------------------------------------------------- -------------------------------------------------------------------
Mon May 8 15:27:50 UTC 2017 - afaerber@suse.de Mon May 8 15:27:50 UTC 2017 - afaerber@suse.de

View File

@ -34,10 +34,10 @@
%endif %endif
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
%define archive_version 2017.05 %define archive_version 2017.07
Name: u-boot-clearfog Name: u-boot-clearfog
Version: 2017.05 Version: 2017.07
Release: 0 Release: 0
Summary: The U-Boot firmware for the clearfog platform Summary: The U-Boot firmware for the clearfog platform
License: GPL-2.0 License: GPL-2.0
@ -50,14 +50,15 @@ Source3: update_git.sh
Source300: u-boot-rpmlintrc Source300: u-boot-rpmlintrc
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
Patch0003: 0003-Revert-rockchip-mkimage-remove-plac.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
# Arndale board need DTC >= 1.4
BuildRequires: bc BuildRequires: bc
# Arndale board needs DTC >= 1.4
BuildRequires: dtc >= 1.4.0 BuildRequires: dtc >= 1.4.0
# u-boot-clearfog (tools/kwbimage.c) needs openssl to build # u-boot-clearfog (tools/kwbimage.c) needs openssl to build
BuildRequires: libopenssl-devel BuildRequires: libopenssl-devel
# u-boot-firefly-rk3288 needs python to build BuildRequires: python-devel
BuildRequires: python BuildRequires: swig
%if "%{name}" == "u-boot-qemu-ppce500" %if "%{name}" == "u-boot-qemu-ppce500"
# Owns /usr/share/qemu directory # Owns /usr/share/qemu directory
BuildRequires: qemu BuildRequires: qemu
@ -93,6 +94,7 @@ This package contains documentation for U-Boot firmware.
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
%patch0001 -p1 %patch0001 -p1
%patch0002 -p1 %patch0002 -p1
%patch0003 -p1
%build %build
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s) export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)

View File

@ -1,3 +1,30 @@
-------------------------------------------------------------------
Mon Aug 21 14:46:36 UTC 2017 - guillaume@opensuse.org
- Updated to v2017.07
-------------------------------------------------------------------
Mon Jul 10 12:54:03 UTC 2017 - guillaume@opensuse.org
- Updated to v2017.07-rc3
-------------------------------------------------------------------
Thu Jun 22 08:19:18 UTC 2017 - guillaume@opensuse.org
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.07
* Patches added:
0003-Revert-rockchip-mkimage-remove-plac.patch
-------------------------------------------------------------------
Wed Jun 21 14:18:06 UTC 2017 - guillaume.gardet@opensuse.org
- Updated to v2017.07-rc2
-------------------------------------------------------------------
Fri Jun 9 14:21:41 UTC 2017 - afaerber@suse.de
- Updated to v2017.07-rc1
------------------------------------------------------------------- -------------------------------------------------------------------
Mon May 8 15:27:50 UTC 2017 - afaerber@suse.de Mon May 8 15:27:50 UTC 2017 - afaerber@suse.de

View File

@ -34,10 +34,10 @@
%endif %endif
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
%define archive_version 2017.05 %define archive_version 2017.07
Name: u-boot-colibrit20 Name: u-boot-colibrit20
Version: 2017.05 Version: 2017.07
Release: 0 Release: 0
Summary: The U-Boot firmware for the colibrit20 platform Summary: The U-Boot firmware for the colibrit20 platform
License: GPL-2.0 License: GPL-2.0
@ -50,14 +50,15 @@ Source3: update_git.sh
Source300: u-boot-rpmlintrc Source300: u-boot-rpmlintrc
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
Patch0003: 0003-Revert-rockchip-mkimage-remove-plac.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
# Arndale board need DTC >= 1.4
BuildRequires: bc BuildRequires: bc
# Arndale board needs DTC >= 1.4
BuildRequires: dtc >= 1.4.0 BuildRequires: dtc >= 1.4.0
# u-boot-clearfog (tools/kwbimage.c) needs openssl to build # u-boot-clearfog (tools/kwbimage.c) needs openssl to build
BuildRequires: libopenssl-devel BuildRequires: libopenssl-devel
# u-boot-firefly-rk3288 needs python to build BuildRequires: python-devel
BuildRequires: python BuildRequires: swig
%if "%{name}" == "u-boot-qemu-ppce500" %if "%{name}" == "u-boot-qemu-ppce500"
# Owns /usr/share/qemu directory # Owns /usr/share/qemu directory
BuildRequires: qemu BuildRequires: qemu
@ -93,6 +94,7 @@ This package contains documentation for U-Boot firmware.
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
%patch0001 -p1 %patch0001 -p1
%patch0002 -p1 %patch0002 -p1
%patch0003 -p1
%build %build
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s) export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)

View File

@ -1,3 +1,30 @@
-------------------------------------------------------------------
Mon Aug 21 14:46:36 UTC 2017 - guillaume@opensuse.org
- Updated to v2017.07
-------------------------------------------------------------------
Mon Jul 10 12:54:03 UTC 2017 - guillaume@opensuse.org
- Updated to v2017.07-rc3
-------------------------------------------------------------------
Thu Jun 22 08:19:18 UTC 2017 - guillaume@opensuse.org
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.07
* Patches added:
0003-Revert-rockchip-mkimage-remove-plac.patch
-------------------------------------------------------------------
Wed Jun 21 14:18:06 UTC 2017 - guillaume.gardet@opensuse.org
- Updated to v2017.07-rc2
-------------------------------------------------------------------
Fri Jun 9 14:21:41 UTC 2017 - afaerber@suse.de
- Updated to v2017.07-rc1
------------------------------------------------------------------- -------------------------------------------------------------------
Mon May 8 15:27:50 UTC 2017 - afaerber@suse.de Mon May 8 15:27:50 UTC 2017 - afaerber@suse.de

View File

@ -34,10 +34,10 @@
%endif %endif
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
%define archive_version 2017.05 %define archive_version 2017.07
Name: u-boot-cubieboard Name: u-boot-cubieboard
Version: 2017.05 Version: 2017.07
Release: 0 Release: 0
Summary: The U-Boot firmware for the cubieboard platform Summary: The U-Boot firmware for the cubieboard platform
License: GPL-2.0 License: GPL-2.0
@ -50,14 +50,15 @@ Source3: update_git.sh
Source300: u-boot-rpmlintrc Source300: u-boot-rpmlintrc
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
Patch0003: 0003-Revert-rockchip-mkimage-remove-plac.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
# Arndale board need DTC >= 1.4
BuildRequires: bc BuildRequires: bc
# Arndale board needs DTC >= 1.4
BuildRequires: dtc >= 1.4.0 BuildRequires: dtc >= 1.4.0
# u-boot-clearfog (tools/kwbimage.c) needs openssl to build # u-boot-clearfog (tools/kwbimage.c) needs openssl to build
BuildRequires: libopenssl-devel BuildRequires: libopenssl-devel
# u-boot-firefly-rk3288 needs python to build BuildRequires: python-devel
BuildRequires: python BuildRequires: swig
%if "%{name}" == "u-boot-qemu-ppce500" %if "%{name}" == "u-boot-qemu-ppce500"
# Owns /usr/share/qemu directory # Owns /usr/share/qemu directory
BuildRequires: qemu BuildRequires: qemu
@ -93,6 +94,7 @@ This package contains documentation for U-Boot firmware.
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
%patch0001 -p1 %patch0001 -p1
%patch0002 -p1 %patch0002 -p1
%patch0003 -p1
%build %build
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s) export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)

View File

@ -1,3 +1,30 @@
-------------------------------------------------------------------
Mon Aug 21 14:46:36 UTC 2017 - guillaume@opensuse.org
- Updated to v2017.07
-------------------------------------------------------------------
Mon Jul 10 12:54:03 UTC 2017 - guillaume@opensuse.org
- Updated to v2017.07-rc3
-------------------------------------------------------------------
Thu Jun 22 08:19:18 UTC 2017 - guillaume@opensuse.org
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.07
* Patches added:
0003-Revert-rockchip-mkimage-remove-plac.patch
-------------------------------------------------------------------
Wed Jun 21 14:18:06 UTC 2017 - guillaume.gardet@opensuse.org
- Updated to v2017.07-rc2
-------------------------------------------------------------------
Fri Jun 9 14:21:41 UTC 2017 - afaerber@suse.de
- Updated to v2017.07-rc1
------------------------------------------------------------------- -------------------------------------------------------------------
Mon May 8 15:27:50 UTC 2017 - afaerber@suse.de Mon May 8 15:27:50 UTC 2017 - afaerber@suse.de

View File

@ -34,10 +34,10 @@
%endif %endif
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
%define archive_version 2017.05 %define archive_version 2017.07
Name: u-boot-cubieboard2 Name: u-boot-cubieboard2
Version: 2017.05 Version: 2017.07
Release: 0 Release: 0
Summary: The U-Boot firmware for the cubieboard2 platform Summary: The U-Boot firmware for the cubieboard2 platform
License: GPL-2.0 License: GPL-2.0
@ -50,14 +50,15 @@ Source3: update_git.sh
Source300: u-boot-rpmlintrc Source300: u-boot-rpmlintrc
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
Patch0003: 0003-Revert-rockchip-mkimage-remove-plac.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
# Arndale board need DTC >= 1.4
BuildRequires: bc BuildRequires: bc
# Arndale board needs DTC >= 1.4
BuildRequires: dtc >= 1.4.0 BuildRequires: dtc >= 1.4.0
# u-boot-clearfog (tools/kwbimage.c) needs openssl to build # u-boot-clearfog (tools/kwbimage.c) needs openssl to build
BuildRequires: libopenssl-devel BuildRequires: libopenssl-devel
# u-boot-firefly-rk3288 needs python to build BuildRequires: python-devel
BuildRequires: python BuildRequires: swig
%if "%{name}" == "u-boot-qemu-ppce500" %if "%{name}" == "u-boot-qemu-ppce500"
# Owns /usr/share/qemu directory # Owns /usr/share/qemu directory
BuildRequires: qemu BuildRequires: qemu
@ -93,6 +94,7 @@ This package contains documentation for U-Boot firmware.
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
%patch0001 -p1 %patch0001 -p1
%patch0002 -p1 %patch0002 -p1
%patch0003 -p1
%build %build
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s) export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)

View File

@ -1,3 +1,30 @@
-------------------------------------------------------------------
Mon Aug 21 14:46:36 UTC 2017 - guillaume@opensuse.org
- Updated to v2017.07
-------------------------------------------------------------------
Mon Jul 10 12:54:03 UTC 2017 - guillaume@opensuse.org
- Updated to v2017.07-rc3
-------------------------------------------------------------------
Thu Jun 22 08:19:18 UTC 2017 - guillaume@opensuse.org
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.07
* Patches added:
0003-Revert-rockchip-mkimage-remove-plac.patch
-------------------------------------------------------------------
Wed Jun 21 14:18:06 UTC 2017 - guillaume.gardet@opensuse.org
- Updated to v2017.07-rc2
-------------------------------------------------------------------
Fri Jun 9 14:21:41 UTC 2017 - afaerber@suse.de
- Updated to v2017.07-rc1
------------------------------------------------------------------- -------------------------------------------------------------------
Mon May 8 15:27:50 UTC 2017 - afaerber@suse.de Mon May 8 15:27:50 UTC 2017 - afaerber@suse.de

View File

@ -34,10 +34,10 @@
%endif %endif
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
%define archive_version 2017.05 %define archive_version 2017.07
Name: u-boot-cubietruck Name: u-boot-cubietruck
Version: 2017.05 Version: 2017.07
Release: 0 Release: 0
Summary: The U-Boot firmware for the cubietruck platform Summary: The U-Boot firmware for the cubietruck platform
License: GPL-2.0 License: GPL-2.0
@ -50,14 +50,15 @@ Source3: update_git.sh
Source300: u-boot-rpmlintrc Source300: u-boot-rpmlintrc
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
Patch0003: 0003-Revert-rockchip-mkimage-remove-plac.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
# Arndale board need DTC >= 1.4
BuildRequires: bc BuildRequires: bc
# Arndale board needs DTC >= 1.4
BuildRequires: dtc >= 1.4.0 BuildRequires: dtc >= 1.4.0
# u-boot-clearfog (tools/kwbimage.c) needs openssl to build # u-boot-clearfog (tools/kwbimage.c) needs openssl to build
BuildRequires: libopenssl-devel BuildRequires: libopenssl-devel
# u-boot-firefly-rk3288 needs python to build BuildRequires: python-devel
BuildRequires: python BuildRequires: swig
%if "%{name}" == "u-boot-qemu-ppce500" %if "%{name}" == "u-boot-qemu-ppce500"
# Owns /usr/share/qemu directory # Owns /usr/share/qemu directory
BuildRequires: qemu BuildRequires: qemu
@ -93,6 +94,7 @@ This package contains documentation for U-Boot firmware.
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
%patch0001 -p1 %patch0001 -p1
%patch0002 -p1 %patch0002 -p1
%patch0003 -p1
%build %build
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s) export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)

View File

@ -1,3 +1,30 @@
-------------------------------------------------------------------
Mon Aug 21 14:46:36 UTC 2017 - guillaume@opensuse.org
- Updated to v2017.07
-------------------------------------------------------------------
Mon Jul 10 12:54:03 UTC 2017 - guillaume@opensuse.org
- Updated to v2017.07-rc3
-------------------------------------------------------------------
Thu Jun 22 08:19:18 UTC 2017 - guillaume@opensuse.org
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.07
* Patches added:
0003-Revert-rockchip-mkimage-remove-plac.patch
-------------------------------------------------------------------
Wed Jun 21 14:18:06 UTC 2017 - guillaume.gardet@opensuse.org
- Updated to v2017.07-rc2
-------------------------------------------------------------------
Fri Jun 9 14:21:41 UTC 2017 - afaerber@suse.de
- Updated to v2017.07-rc1
------------------------------------------------------------------- -------------------------------------------------------------------
Mon May 8 15:27:50 UTC 2017 - afaerber@suse.de Mon May 8 15:27:50 UTC 2017 - afaerber@suse.de

View File

@ -34,10 +34,10 @@
%endif %endif
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
%define archive_version 2017.05 %define archive_version 2017.07
Name: u-boot-dragonboard410c Name: u-boot-dragonboard410c
Version: 2017.05 Version: 2017.07
Release: 0 Release: 0
Summary: The U-Boot firmware for the dragonboard410c platform Summary: The U-Boot firmware for the dragonboard410c platform
License: GPL-2.0 License: GPL-2.0
@ -50,14 +50,15 @@ Source3: update_git.sh
Source300: u-boot-rpmlintrc Source300: u-boot-rpmlintrc
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
Patch0003: 0003-Revert-rockchip-mkimage-remove-plac.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
# Arndale board need DTC >= 1.4
BuildRequires: bc BuildRequires: bc
# Arndale board needs DTC >= 1.4
BuildRequires: dtc >= 1.4.0 BuildRequires: dtc >= 1.4.0
# u-boot-clearfog (tools/kwbimage.c) needs openssl to build # u-boot-clearfog (tools/kwbimage.c) needs openssl to build
BuildRequires: libopenssl-devel BuildRequires: libopenssl-devel
# u-boot-firefly-rk3288 needs python to build BuildRequires: python-devel
BuildRequires: python BuildRequires: swig
%if "%{name}" == "u-boot-qemu-ppce500" %if "%{name}" == "u-boot-qemu-ppce500"
# Owns /usr/share/qemu directory # Owns /usr/share/qemu directory
BuildRequires: qemu BuildRequires: qemu
@ -93,6 +94,7 @@ This package contains documentation for U-Boot firmware.
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
%patch0001 -p1 %patch0001 -p1
%patch0002 -p1 %patch0002 -p1
%patch0003 -p1
%build %build
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s) export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)

View File

@ -1,3 +1,30 @@
-------------------------------------------------------------------
Mon Aug 21 14:46:36 UTC 2017 - guillaume@opensuse.org
- Updated to v2017.07
-------------------------------------------------------------------
Mon Jul 10 12:54:03 UTC 2017 - guillaume@opensuse.org
- Updated to v2017.07-rc3
-------------------------------------------------------------------
Thu Jun 22 08:19:18 UTC 2017 - guillaume@opensuse.org
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.07
* Patches added:
0003-Revert-rockchip-mkimage-remove-plac.patch
-------------------------------------------------------------------
Wed Jun 21 14:18:06 UTC 2017 - guillaume.gardet@opensuse.org
- Updated to v2017.07-rc2
-------------------------------------------------------------------
Fri Jun 9 14:21:41 UTC 2017 - afaerber@suse.de
- Updated to v2017.07-rc1
------------------------------------------------------------------- -------------------------------------------------------------------
Mon May 8 15:27:50 UTC 2017 - afaerber@suse.de Mon May 8 15:27:50 UTC 2017 - afaerber@suse.de

View File

@ -34,10 +34,10 @@
%endif %endif
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
%define archive_version 2017.05 %define archive_version 2017.07
Name: u-boot-evb-rk3399 Name: u-boot-evb-rk3399
Version: 2017.05 Version: 2017.07
Release: 0 Release: 0
Summary: The U-Boot firmware for the evb-rk3399 platform Summary: The U-Boot firmware for the evb-rk3399 platform
License: GPL-2.0 License: GPL-2.0
@ -50,14 +50,15 @@ Source3: update_git.sh
Source300: u-boot-rpmlintrc Source300: u-boot-rpmlintrc
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
Patch0003: 0003-Revert-rockchip-mkimage-remove-plac.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
# Arndale board need DTC >= 1.4
BuildRequires: bc BuildRequires: bc
# Arndale board needs DTC >= 1.4
BuildRequires: dtc >= 1.4.0 BuildRequires: dtc >= 1.4.0
# u-boot-clearfog (tools/kwbimage.c) needs openssl to build # u-boot-clearfog (tools/kwbimage.c) needs openssl to build
BuildRequires: libopenssl-devel BuildRequires: libopenssl-devel
# u-boot-firefly-rk3288 needs python to build BuildRequires: python-devel
BuildRequires: python BuildRequires: swig
%if "%{name}" == "u-boot-qemu-ppce500" %if "%{name}" == "u-boot-qemu-ppce500"
# Owns /usr/share/qemu directory # Owns /usr/share/qemu directory
BuildRequires: qemu BuildRequires: qemu
@ -93,6 +94,7 @@ This package contains documentation for U-Boot firmware.
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
%patch0001 -p1 %patch0001 -p1
%patch0002 -p1 %patch0002 -p1
%patch0003 -p1
%build %build
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s) export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)

View File

@ -1,3 +1,30 @@
-------------------------------------------------------------------
Mon Aug 21 14:46:36 UTC 2017 - guillaume@opensuse.org
- Updated to v2017.07
-------------------------------------------------------------------
Mon Jul 10 12:54:03 UTC 2017 - guillaume@opensuse.org
- Updated to v2017.07-rc3
-------------------------------------------------------------------
Thu Jun 22 08:19:18 UTC 2017 - guillaume@opensuse.org
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.07
* Patches added:
0003-Revert-rockchip-mkimage-remove-plac.patch
-------------------------------------------------------------------
Wed Jun 21 14:18:06 UTC 2017 - guillaume.gardet@opensuse.org
- Updated to v2017.07-rc2
-------------------------------------------------------------------
Fri Jun 9 14:21:41 UTC 2017 - afaerber@suse.de
- Updated to v2017.07-rc1
------------------------------------------------------------------- -------------------------------------------------------------------
Mon May 8 15:27:50 UTC 2017 - afaerber@suse.de Mon May 8 15:27:50 UTC 2017 - afaerber@suse.de

View File

@ -34,10 +34,10 @@
%endif %endif
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
%define archive_version 2017.05 %define archive_version 2017.07
Name: u-boot-firefly-rk3288 Name: u-boot-firefly-rk3288
Version: 2017.05 Version: 2017.07
Release: 0 Release: 0
Summary: The U-Boot firmware for the firefly-rk3288 platform Summary: The U-Boot firmware for the firefly-rk3288 platform
License: GPL-2.0 License: GPL-2.0
@ -50,14 +50,15 @@ Source3: update_git.sh
Source300: u-boot-rpmlintrc Source300: u-boot-rpmlintrc
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
Patch0003: 0003-Revert-rockchip-mkimage-remove-plac.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
# Arndale board need DTC >= 1.4
BuildRequires: bc BuildRequires: bc
# Arndale board needs DTC >= 1.4
BuildRequires: dtc >= 1.4.0 BuildRequires: dtc >= 1.4.0
# u-boot-clearfog (tools/kwbimage.c) needs openssl to build # u-boot-clearfog (tools/kwbimage.c) needs openssl to build
BuildRequires: libopenssl-devel BuildRequires: libopenssl-devel
# u-boot-firefly-rk3288 needs python to build BuildRequires: python-devel
BuildRequires: python BuildRequires: swig
%if "%{name}" == "u-boot-qemu-ppce500" %if "%{name}" == "u-boot-qemu-ppce500"
# Owns /usr/share/qemu directory # Owns /usr/share/qemu directory
BuildRequires: qemu BuildRequires: qemu
@ -93,6 +94,7 @@ This package contains documentation for U-Boot firmware.
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
%patch0001 -p1 %patch0001 -p1
%patch0002 -p1 %patch0002 -p1
%patch0003 -p1
%build %build
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s) export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)

View File

@ -1,3 +1,30 @@
-------------------------------------------------------------------
Mon Aug 21 14:46:36 UTC 2017 - guillaume@opensuse.org
- Updated to v2017.07
-------------------------------------------------------------------
Mon Jul 10 12:54:03 UTC 2017 - guillaume@opensuse.org
- Updated to v2017.07-rc3
-------------------------------------------------------------------
Thu Jun 22 08:19:18 UTC 2017 - guillaume@opensuse.org
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.07
* Patches added:
0003-Revert-rockchip-mkimage-remove-plac.patch
-------------------------------------------------------------------
Wed Jun 21 14:18:06 UTC 2017 - guillaume.gardet@opensuse.org
- Updated to v2017.07-rc2
-------------------------------------------------------------------
Fri Jun 9 14:21:41 UTC 2017 - afaerber@suse.de
- Updated to v2017.07-rc1
------------------------------------------------------------------- -------------------------------------------------------------------
Mon May 8 15:27:50 UTC 2017 - afaerber@suse.de Mon May 8 15:27:50 UTC 2017 - afaerber@suse.de

View File

@ -34,10 +34,10 @@
%endif %endif
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
%define archive_version 2017.05 %define archive_version 2017.07
Name: u-boot-highbank Name: u-boot-highbank
Version: 2017.05 Version: 2017.07
Release: 0 Release: 0
Summary: The U-Boot firmware for the highbank platform Summary: The U-Boot firmware for the highbank platform
License: GPL-2.0 License: GPL-2.0
@ -50,14 +50,15 @@ Source3: update_git.sh
Source300: u-boot-rpmlintrc Source300: u-boot-rpmlintrc
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
Patch0003: 0003-Revert-rockchip-mkimage-remove-plac.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
# Arndale board need DTC >= 1.4
BuildRequires: bc BuildRequires: bc
# Arndale board needs DTC >= 1.4
BuildRequires: dtc >= 1.4.0 BuildRequires: dtc >= 1.4.0
# u-boot-clearfog (tools/kwbimage.c) needs openssl to build # u-boot-clearfog (tools/kwbimage.c) needs openssl to build
BuildRequires: libopenssl-devel BuildRequires: libopenssl-devel
# u-boot-firefly-rk3288 needs python to build BuildRequires: python-devel
BuildRequires: python BuildRequires: swig
%if "%{name}" == "u-boot-qemu-ppce500" %if "%{name}" == "u-boot-qemu-ppce500"
# Owns /usr/share/qemu directory # Owns /usr/share/qemu directory
BuildRequires: qemu BuildRequires: qemu
@ -93,6 +94,7 @@ This package contains documentation for U-Boot firmware.
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
%patch0001 -p1 %patch0001 -p1
%patch0002 -p1 %patch0002 -p1
%patch0003 -p1
%build %build
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s) export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)

View File

@ -1,3 +1,30 @@
-------------------------------------------------------------------
Mon Aug 21 14:46:36 UTC 2017 - guillaume@opensuse.org
- Updated to v2017.07
-------------------------------------------------------------------
Mon Jul 10 12:54:03 UTC 2017 - guillaume@opensuse.org
- Updated to v2017.07-rc3
-------------------------------------------------------------------
Thu Jun 22 08:19:18 UTC 2017 - guillaume@opensuse.org
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.07
* Patches added:
0003-Revert-rockchip-mkimage-remove-plac.patch
-------------------------------------------------------------------
Wed Jun 21 14:18:06 UTC 2017 - guillaume.gardet@opensuse.org
- Updated to v2017.07-rc2
-------------------------------------------------------------------
Fri Jun 9 14:21:41 UTC 2017 - afaerber@suse.de
- Updated to v2017.07-rc1
------------------------------------------------------------------- -------------------------------------------------------------------
Mon May 8 15:27:50 UTC 2017 - afaerber@suse.de Mon May 8 15:27:50 UTC 2017 - afaerber@suse.de

View File

@ -34,10 +34,10 @@
%endif %endif
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
%define archive_version 2017.05 %define archive_version 2017.07
Name: u-boot-hikey Name: u-boot-hikey
Version: 2017.05 Version: 2017.07
Release: 0 Release: 0
Summary: The U-Boot firmware for the hikey platform Summary: The U-Boot firmware for the hikey platform
License: GPL-2.0 License: GPL-2.0
@ -50,14 +50,15 @@ Source3: update_git.sh
Source300: u-boot-rpmlintrc Source300: u-boot-rpmlintrc
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
Patch0003: 0003-Revert-rockchip-mkimage-remove-plac.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
# Arndale board need DTC >= 1.4
BuildRequires: bc BuildRequires: bc
# Arndale board needs DTC >= 1.4
BuildRequires: dtc >= 1.4.0 BuildRequires: dtc >= 1.4.0
# u-boot-clearfog (tools/kwbimage.c) needs openssl to build # u-boot-clearfog (tools/kwbimage.c) needs openssl to build
BuildRequires: libopenssl-devel BuildRequires: libopenssl-devel
# u-boot-firefly-rk3288 needs python to build BuildRequires: python-devel
BuildRequires: python BuildRequires: swig
%if "%{name}" == "u-boot-qemu-ppce500" %if "%{name}" == "u-boot-qemu-ppce500"
# Owns /usr/share/qemu directory # Owns /usr/share/qemu directory
BuildRequires: qemu BuildRequires: qemu
@ -93,6 +94,7 @@ This package contains documentation for U-Boot firmware.
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
%patch0001 -p1 %patch0001 -p1
%patch0002 -p1 %patch0002 -p1
%patch0003 -p1
%build %build
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s) export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)

View File

@ -1,3 +1,30 @@
-------------------------------------------------------------------
Mon Aug 21 14:46:36 UTC 2017 - guillaume@opensuse.org
- Updated to v2017.07
-------------------------------------------------------------------
Mon Jul 10 12:54:03 UTC 2017 - guillaume@opensuse.org
- Updated to v2017.07-rc3
-------------------------------------------------------------------
Thu Jun 22 08:19:18 UTC 2017 - guillaume@opensuse.org
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.07
* Patches added:
0003-Revert-rockchip-mkimage-remove-plac.patch
-------------------------------------------------------------------
Wed Jun 21 14:18:06 UTC 2017 - guillaume.gardet@opensuse.org
- Updated to v2017.07-rc2
-------------------------------------------------------------------
Fri Jun 9 14:21:41 UTC 2017 - afaerber@suse.de
- Updated to v2017.07-rc1
------------------------------------------------------------------- -------------------------------------------------------------------
Mon May 8 15:27:50 UTC 2017 - afaerber@suse.de Mon May 8 15:27:50 UTC 2017 - afaerber@suse.de

View File

@ -34,10 +34,10 @@
%endif %endif
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
%define archive_version 2017.05 %define archive_version 2017.07
Name: u-boot-hyundaia7hd Name: u-boot-hyundaia7hd
Version: 2017.05 Version: 2017.07
Release: 0 Release: 0
Summary: The U-Boot firmware for the hyundaia7hd platform Summary: The U-Boot firmware for the hyundaia7hd platform
License: GPL-2.0 License: GPL-2.0
@ -50,14 +50,15 @@ Source3: update_git.sh
Source300: u-boot-rpmlintrc Source300: u-boot-rpmlintrc
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
Patch0003: 0003-Revert-rockchip-mkimage-remove-plac.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
# Arndale board need DTC >= 1.4
BuildRequires: bc BuildRequires: bc
# Arndale board needs DTC >= 1.4
BuildRequires: dtc >= 1.4.0 BuildRequires: dtc >= 1.4.0
# u-boot-clearfog (tools/kwbimage.c) needs openssl to build # u-boot-clearfog (tools/kwbimage.c) needs openssl to build
BuildRequires: libopenssl-devel BuildRequires: libopenssl-devel
# u-boot-firefly-rk3288 needs python to build BuildRequires: python-devel
BuildRequires: python BuildRequires: swig
%if "%{name}" == "u-boot-qemu-ppce500" %if "%{name}" == "u-boot-qemu-ppce500"
# Owns /usr/share/qemu directory # Owns /usr/share/qemu directory
BuildRequires: qemu BuildRequires: qemu
@ -93,6 +94,7 @@ This package contains documentation for U-Boot firmware.
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
%patch0001 -p1 %patch0001 -p1
%patch0002 -p1 %patch0002 -p1
%patch0003 -p1
%build %build
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s) export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)

View File

@ -1,3 +1,30 @@
-------------------------------------------------------------------
Mon Aug 21 14:46:36 UTC 2017 - guillaume@opensuse.org
- Updated to v2017.07
-------------------------------------------------------------------
Mon Jul 10 12:54:03 UTC 2017 - guillaume@opensuse.org
- Updated to v2017.07-rc3
-------------------------------------------------------------------
Thu Jun 22 08:19:18 UTC 2017 - guillaume@opensuse.org
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.07
* Patches added:
0003-Revert-rockchip-mkimage-remove-plac.patch
-------------------------------------------------------------------
Wed Jun 21 14:18:06 UTC 2017 - guillaume.gardet@opensuse.org
- Updated to v2017.07-rc2
-------------------------------------------------------------------
Fri Jun 9 14:21:41 UTC 2017 - afaerber@suse.de
- Updated to v2017.07-rc1
------------------------------------------------------------------- -------------------------------------------------------------------
Mon May 8 15:27:50 UTC 2017 - afaerber@suse.de Mon May 8 15:27:50 UTC 2017 - afaerber@suse.de

View File

@ -34,10 +34,10 @@
%endif %endif
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
%define archive_version 2017.05 %define archive_version 2017.07
Name: u-boot-jetson-tk1 Name: u-boot-jetson-tk1
Version: 2017.05 Version: 2017.07
Release: 0 Release: 0
Summary: The U-Boot firmware for the jetson-tk1 platform Summary: The U-Boot firmware for the jetson-tk1 platform
License: GPL-2.0 License: GPL-2.0
@ -50,14 +50,15 @@ Source3: update_git.sh
Source300: u-boot-rpmlintrc Source300: u-boot-rpmlintrc
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
Patch0003: 0003-Revert-rockchip-mkimage-remove-plac.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
# Arndale board need DTC >= 1.4
BuildRequires: bc BuildRequires: bc
# Arndale board needs DTC >= 1.4
BuildRequires: dtc >= 1.4.0 BuildRequires: dtc >= 1.4.0
# u-boot-clearfog (tools/kwbimage.c) needs openssl to build # u-boot-clearfog (tools/kwbimage.c) needs openssl to build
BuildRequires: libopenssl-devel BuildRequires: libopenssl-devel
# u-boot-firefly-rk3288 needs python to build BuildRequires: python-devel
BuildRequires: python BuildRequires: swig
%if "%{name}" == "u-boot-qemu-ppce500" %if "%{name}" == "u-boot-qemu-ppce500"
# Owns /usr/share/qemu directory # Owns /usr/share/qemu directory
BuildRequires: qemu BuildRequires: qemu
@ -93,6 +94,7 @@ This package contains documentation for U-Boot firmware.
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
%patch0001 -p1 %patch0001 -p1
%patch0002 -p1 %patch0002 -p1
%patch0003 -p1
%build %build
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s) export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)

View File

@ -1,3 +1,30 @@
-------------------------------------------------------------------
Mon Aug 21 14:46:36 UTC 2017 - guillaume@opensuse.org
- Updated to v2017.07
-------------------------------------------------------------------
Mon Jul 10 12:54:03 UTC 2017 - guillaume@opensuse.org
- Updated to v2017.07-rc3
-------------------------------------------------------------------
Thu Jun 22 08:19:18 UTC 2017 - guillaume@opensuse.org
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.07
* Patches added:
0003-Revert-rockchip-mkimage-remove-plac.patch
-------------------------------------------------------------------
Wed Jun 21 14:18:06 UTC 2017 - guillaume.gardet@opensuse.org
- Updated to v2017.07-rc2
-------------------------------------------------------------------
Fri Jun 9 14:21:41 UTC 2017 - afaerber@suse.de
- Updated to v2017.07-rc1
------------------------------------------------------------------- -------------------------------------------------------------------
Mon May 8 15:27:50 UTC 2017 - afaerber@suse.de Mon May 8 15:27:50 UTC 2017 - afaerber@suse.de

View File

@ -34,10 +34,10 @@
%endif %endif
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
%define archive_version 2017.05 %define archive_version 2017.07
Name: u-boot-lamobor1 Name: u-boot-lamobor1
Version: 2017.05 Version: 2017.07
Release: 0 Release: 0
Summary: The U-Boot firmware for the lamobor1 platform Summary: The U-Boot firmware for the lamobor1 platform
License: GPL-2.0 License: GPL-2.0
@ -50,14 +50,15 @@ Source3: update_git.sh
Source300: u-boot-rpmlintrc Source300: u-boot-rpmlintrc
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
Patch0003: 0003-Revert-rockchip-mkimage-remove-plac.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
# Arndale board need DTC >= 1.4
BuildRequires: bc BuildRequires: bc
# Arndale board needs DTC >= 1.4
BuildRequires: dtc >= 1.4.0 BuildRequires: dtc >= 1.4.0
# u-boot-clearfog (tools/kwbimage.c) needs openssl to build # u-boot-clearfog (tools/kwbimage.c) needs openssl to build
BuildRequires: libopenssl-devel BuildRequires: libopenssl-devel
# u-boot-firefly-rk3288 needs python to build BuildRequires: python-devel
BuildRequires: python BuildRequires: swig
%if "%{name}" == "u-boot-qemu-ppce500" %if "%{name}" == "u-boot-qemu-ppce500"
# Owns /usr/share/qemu directory # Owns /usr/share/qemu directory
BuildRequires: qemu BuildRequires: qemu
@ -93,6 +94,7 @@ This package contains documentation for U-Boot firmware.
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
%patch0001 -p1 %patch0001 -p1
%patch0002 -p1 %patch0002 -p1
%patch0003 -p1
%build %build
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s) export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)

View File

@ -1,3 +1,30 @@
-------------------------------------------------------------------
Mon Aug 21 14:46:36 UTC 2017 - guillaume@opensuse.org
- Updated to v2017.07
-------------------------------------------------------------------
Mon Jul 10 12:54:03 UTC 2017 - guillaume@opensuse.org
- Updated to v2017.07-rc3
-------------------------------------------------------------------
Thu Jun 22 08:19:18 UTC 2017 - guillaume@opensuse.org
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.07
* Patches added:
0003-Revert-rockchip-mkimage-remove-plac.patch
-------------------------------------------------------------------
Wed Jun 21 14:18:06 UTC 2017 - guillaume.gardet@opensuse.org
- Updated to v2017.07-rc2
-------------------------------------------------------------------
Fri Jun 9 14:21:41 UTC 2017 - afaerber@suse.de
- Updated to v2017.07-rc1
------------------------------------------------------------------- -------------------------------------------------------------------
Mon May 8 15:27:50 UTC 2017 - afaerber@suse.de Mon May 8 15:27:50 UTC 2017 - afaerber@suse.de

View File

@ -34,10 +34,10 @@
%endif %endif
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
%define archive_version 2017.05 %define archive_version 2017.07
Name: u-boot-ls1012afrdmqspi Name: u-boot-ls1012afrdmqspi
Version: 2017.05 Version: 2017.07
Release: 0 Release: 0
Summary: The U-Boot firmware for the ls1012afrdmqspi platform Summary: The U-Boot firmware for the ls1012afrdmqspi platform
License: GPL-2.0 License: GPL-2.0
@ -50,14 +50,15 @@ Source3: update_git.sh
Source300: u-boot-rpmlintrc Source300: u-boot-rpmlintrc
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
Patch0003: 0003-Revert-rockchip-mkimage-remove-plac.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
# Arndale board need DTC >= 1.4
BuildRequires: bc BuildRequires: bc
# Arndale board needs DTC >= 1.4
BuildRequires: dtc >= 1.4.0 BuildRequires: dtc >= 1.4.0
# u-boot-clearfog (tools/kwbimage.c) needs openssl to build # u-boot-clearfog (tools/kwbimage.c) needs openssl to build
BuildRequires: libopenssl-devel BuildRequires: libopenssl-devel
# u-boot-firefly-rk3288 needs python to build BuildRequires: python-devel
BuildRequires: python BuildRequires: swig
%if "%{name}" == "u-boot-qemu-ppce500" %if "%{name}" == "u-boot-qemu-ppce500"
# Owns /usr/share/qemu directory # Owns /usr/share/qemu directory
BuildRequires: qemu BuildRequires: qemu
@ -93,6 +94,7 @@ This package contains documentation for U-Boot firmware.
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
%patch0001 -p1 %patch0001 -p1
%patch0002 -p1 %patch0002 -p1
%patch0003 -p1
%build %build
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s) export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)

View File

@ -1,3 +1,30 @@
-------------------------------------------------------------------
Mon Aug 21 14:46:36 UTC 2017 - guillaume@opensuse.org
- Updated to v2017.07
-------------------------------------------------------------------
Mon Jul 10 12:54:03 UTC 2017 - guillaume@opensuse.org
- Updated to v2017.07-rc3
-------------------------------------------------------------------
Thu Jun 22 08:19:18 UTC 2017 - guillaume@opensuse.org
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.07
* Patches added:
0003-Revert-rockchip-mkimage-remove-plac.patch
-------------------------------------------------------------------
Wed Jun 21 14:18:06 UTC 2017 - guillaume.gardet@opensuse.org
- Updated to v2017.07-rc2
-------------------------------------------------------------------
Fri Jun 9 14:21:41 UTC 2017 - afaerber@suse.de
- Updated to v2017.07-rc1
------------------------------------------------------------------- -------------------------------------------------------------------
Mon May 8 15:27:50 UTC 2017 - afaerber@suse.de Mon May 8 15:27:50 UTC 2017 - afaerber@suse.de

View File

@ -34,10 +34,10 @@
%endif %endif
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
%define archive_version 2017.05 %define archive_version 2017.07
Name: u-boot-melea1000 Name: u-boot-melea1000
Version: 2017.05 Version: 2017.07
Release: 0 Release: 0
Summary: The U-Boot firmware for the melea1000 platform Summary: The U-Boot firmware for the melea1000 platform
License: GPL-2.0 License: GPL-2.0
@ -50,14 +50,15 @@ Source3: update_git.sh
Source300: u-boot-rpmlintrc Source300: u-boot-rpmlintrc
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
Patch0003: 0003-Revert-rockchip-mkimage-remove-plac.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
# Arndale board need DTC >= 1.4
BuildRequires: bc BuildRequires: bc
# Arndale board needs DTC >= 1.4
BuildRequires: dtc >= 1.4.0 BuildRequires: dtc >= 1.4.0
# u-boot-clearfog (tools/kwbimage.c) needs openssl to build # u-boot-clearfog (tools/kwbimage.c) needs openssl to build
BuildRequires: libopenssl-devel BuildRequires: libopenssl-devel
# u-boot-firefly-rk3288 needs python to build BuildRequires: python-devel
BuildRequires: python BuildRequires: swig
%if "%{name}" == "u-boot-qemu-ppce500" %if "%{name}" == "u-boot-qemu-ppce500"
# Owns /usr/share/qemu directory # Owns /usr/share/qemu directory
BuildRequires: qemu BuildRequires: qemu
@ -93,6 +94,7 @@ This package contains documentation for U-Boot firmware.
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
%patch0001 -p1 %patch0001 -p1
%patch0002 -p1 %patch0002 -p1
%patch0003 -p1
%build %build
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s) export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)

View File

@ -1,3 +1,30 @@
-------------------------------------------------------------------
Mon Aug 21 14:46:36 UTC 2017 - guillaume@opensuse.org
- Updated to v2017.07
-------------------------------------------------------------------
Mon Jul 10 12:54:03 UTC 2017 - guillaume@opensuse.org
- Updated to v2017.07-rc3
-------------------------------------------------------------------
Thu Jun 22 08:19:18 UTC 2017 - guillaume@opensuse.org
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.07
* Patches added:
0003-Revert-rockchip-mkimage-remove-plac.patch
-------------------------------------------------------------------
Wed Jun 21 14:18:06 UTC 2017 - guillaume.gardet@opensuse.org
- Updated to v2017.07-rc2
-------------------------------------------------------------------
Fri Jun 9 14:21:41 UTC 2017 - afaerber@suse.de
- Updated to v2017.07-rc1
------------------------------------------------------------------- -------------------------------------------------------------------
Mon May 8 15:27:50 UTC 2017 - afaerber@suse.de Mon May 8 15:27:50 UTC 2017 - afaerber@suse.de

View File

@ -34,10 +34,10 @@
%endif %endif
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
%define archive_version 2017.05 %define archive_version 2017.07
Name: u-boot-merriia80optimus Name: u-boot-merriia80optimus
Version: 2017.05 Version: 2017.07
Release: 0 Release: 0
Summary: The U-Boot firmware for the merriia80optimus platform Summary: The U-Boot firmware for the merriia80optimus platform
License: GPL-2.0 License: GPL-2.0
@ -50,14 +50,15 @@ Source3: update_git.sh
Source300: u-boot-rpmlintrc Source300: u-boot-rpmlintrc
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
Patch0003: 0003-Revert-rockchip-mkimage-remove-plac.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
# Arndale board need DTC >= 1.4
BuildRequires: bc BuildRequires: bc
# Arndale board needs DTC >= 1.4
BuildRequires: dtc >= 1.4.0 BuildRequires: dtc >= 1.4.0
# u-boot-clearfog (tools/kwbimage.c) needs openssl to build # u-boot-clearfog (tools/kwbimage.c) needs openssl to build
BuildRequires: libopenssl-devel BuildRequires: libopenssl-devel
# u-boot-firefly-rk3288 needs python to build BuildRequires: python-devel
BuildRequires: python BuildRequires: swig
%if "%{name}" == "u-boot-qemu-ppce500" %if "%{name}" == "u-boot-qemu-ppce500"
# Owns /usr/share/qemu directory # Owns /usr/share/qemu directory
BuildRequires: qemu BuildRequires: qemu
@ -93,6 +94,7 @@ This package contains documentation for U-Boot firmware.
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
%patch0001 -p1 %patch0001 -p1
%patch0002 -p1 %patch0002 -p1
%patch0003 -p1
%build %build
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s) export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)

View File

@ -1,3 +1,30 @@
-------------------------------------------------------------------
Mon Aug 21 14:46:36 UTC 2017 - guillaume@opensuse.org
- Updated to v2017.07
-------------------------------------------------------------------
Mon Jul 10 12:54:03 UTC 2017 - guillaume@opensuse.org
- Updated to v2017.07-rc3
-------------------------------------------------------------------
Thu Jun 22 08:19:18 UTC 2017 - guillaume@opensuse.org
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.07
* Patches added:
0003-Revert-rockchip-mkimage-remove-plac.patch
-------------------------------------------------------------------
Wed Jun 21 14:18:06 UTC 2017 - guillaume.gardet@opensuse.org
- Updated to v2017.07-rc2
-------------------------------------------------------------------
Fri Jun 9 14:21:41 UTC 2017 - afaerber@suse.de
- Updated to v2017.07-rc1
------------------------------------------------------------------- -------------------------------------------------------------------
Mon May 8 15:27:50 UTC 2017 - afaerber@suse.de Mon May 8 15:27:50 UTC 2017 - afaerber@suse.de

View File

@ -34,10 +34,10 @@
%endif %endif
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
%define archive_version 2017.05 %define archive_version 2017.07
Name: u-boot-mvebudb-88f3720 Name: u-boot-mvebudb-88f3720
Version: 2017.05 Version: 2017.07
Release: 0 Release: 0
Summary: The U-Boot firmware for the mvebudb-88f3720 platform Summary: The U-Boot firmware for the mvebudb-88f3720 platform
License: GPL-2.0 License: GPL-2.0
@ -50,14 +50,15 @@ Source3: update_git.sh
Source300: u-boot-rpmlintrc Source300: u-boot-rpmlintrc
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
Patch0003: 0003-Revert-rockchip-mkimage-remove-plac.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
# Arndale board need DTC >= 1.4
BuildRequires: bc BuildRequires: bc
# Arndale board needs DTC >= 1.4
BuildRequires: dtc >= 1.4.0 BuildRequires: dtc >= 1.4.0
# u-boot-clearfog (tools/kwbimage.c) needs openssl to build # u-boot-clearfog (tools/kwbimage.c) needs openssl to build
BuildRequires: libopenssl-devel BuildRequires: libopenssl-devel
# u-boot-firefly-rk3288 needs python to build BuildRequires: python-devel
BuildRequires: python BuildRequires: swig
%if "%{name}" == "u-boot-qemu-ppce500" %if "%{name}" == "u-boot-qemu-ppce500"
# Owns /usr/share/qemu directory # Owns /usr/share/qemu directory
BuildRequires: qemu BuildRequires: qemu
@ -93,6 +94,7 @@ This package contains documentation for U-Boot firmware.
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
%patch0001 -p1 %patch0001 -p1
%patch0002 -p1 %patch0002 -p1
%patch0003 -p1
%build %build
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s) export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)

View File

@ -1,3 +1,30 @@
-------------------------------------------------------------------
Mon Aug 21 14:46:36 UTC 2017 - guillaume@opensuse.org
- Updated to v2017.07
-------------------------------------------------------------------
Mon Jul 10 12:54:03 UTC 2017 - guillaume@opensuse.org
- Updated to v2017.07-rc3
-------------------------------------------------------------------
Thu Jun 22 08:19:18 UTC 2017 - guillaume@opensuse.org
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.07
* Patches added:
0003-Revert-rockchip-mkimage-remove-plac.patch
-------------------------------------------------------------------
Wed Jun 21 14:18:06 UTC 2017 - guillaume.gardet@opensuse.org
- Updated to v2017.07-rc2
-------------------------------------------------------------------
Fri Jun 9 14:21:41 UTC 2017 - afaerber@suse.de
- Updated to v2017.07-rc1
------------------------------------------------------------------- -------------------------------------------------------------------
Mon May 8 15:27:50 UTC 2017 - afaerber@suse.de Mon May 8 15:27:50 UTC 2017 - afaerber@suse.de

View File

@ -34,10 +34,10 @@
%endif %endif
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
%define archive_version 2017.05 %define archive_version 2017.07
Name: u-boot-mvebudb-88f7040 Name: u-boot-mvebudb-88f7040
Version: 2017.05 Version: 2017.07
Release: 0 Release: 0
Summary: The U-Boot firmware for the mvebudb-88f7040 platform Summary: The U-Boot firmware for the mvebudb-88f7040 platform
License: GPL-2.0 License: GPL-2.0
@ -50,14 +50,15 @@ Source3: update_git.sh
Source300: u-boot-rpmlintrc Source300: u-boot-rpmlintrc
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
Patch0003: 0003-Revert-rockchip-mkimage-remove-plac.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
# Arndale board need DTC >= 1.4
BuildRequires: bc BuildRequires: bc
# Arndale board needs DTC >= 1.4
BuildRequires: dtc >= 1.4.0 BuildRequires: dtc >= 1.4.0
# u-boot-clearfog (tools/kwbimage.c) needs openssl to build # u-boot-clearfog (tools/kwbimage.c) needs openssl to build
BuildRequires: libopenssl-devel BuildRequires: libopenssl-devel
# u-boot-firefly-rk3288 needs python to build BuildRequires: python-devel
BuildRequires: python BuildRequires: swig
%if "%{name}" == "u-boot-qemu-ppce500" %if "%{name}" == "u-boot-qemu-ppce500"
# Owns /usr/share/qemu directory # Owns /usr/share/qemu directory
BuildRequires: qemu BuildRequires: qemu
@ -93,6 +94,7 @@ This package contains documentation for U-Boot firmware.
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
%patch0001 -p1 %patch0001 -p1
%patch0002 -p1 %patch0002 -p1
%patch0003 -p1
%build %build
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s) export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)

View File

@ -1,3 +1,30 @@
-------------------------------------------------------------------
Mon Aug 21 14:46:36 UTC 2017 - guillaume@opensuse.org
- Updated to v2017.07
-------------------------------------------------------------------
Mon Jul 10 12:54:03 UTC 2017 - guillaume@opensuse.org
- Updated to v2017.07-rc3
-------------------------------------------------------------------
Thu Jun 22 08:19:18 UTC 2017 - guillaume@opensuse.org
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.07
* Patches added:
0003-Revert-rockchip-mkimage-remove-plac.patch
-------------------------------------------------------------------
Wed Jun 21 14:18:06 UTC 2017 - guillaume.gardet@opensuse.org
- Updated to v2017.07-rc2
-------------------------------------------------------------------
Fri Jun 9 14:21:41 UTC 2017 - afaerber@suse.de
- Updated to v2017.07-rc1
------------------------------------------------------------------- -------------------------------------------------------------------
Mon May 8 15:27:50 UTC 2017 - afaerber@suse.de Mon May 8 15:27:50 UTC 2017 - afaerber@suse.de

View File

@ -34,10 +34,10 @@
%endif %endif
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
%define archive_version 2017.05 %define archive_version 2017.07
Name: u-boot-mvebudb-88f8040 Name: u-boot-mvebudb-88f8040
Version: 2017.05 Version: 2017.07
Release: 0 Release: 0
Summary: The U-Boot firmware for the mvebudb-88f8040 platform Summary: The U-Boot firmware for the mvebudb-88f8040 platform
License: GPL-2.0 License: GPL-2.0
@ -50,14 +50,15 @@ Source3: update_git.sh
Source300: u-boot-rpmlintrc Source300: u-boot-rpmlintrc
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
Patch0003: 0003-Revert-rockchip-mkimage-remove-plac.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
# Arndale board need DTC >= 1.4
BuildRequires: bc BuildRequires: bc
# Arndale board needs DTC >= 1.4
BuildRequires: dtc >= 1.4.0 BuildRequires: dtc >= 1.4.0
# u-boot-clearfog (tools/kwbimage.c) needs openssl to build # u-boot-clearfog (tools/kwbimage.c) needs openssl to build
BuildRequires: libopenssl-devel BuildRequires: libopenssl-devel
# u-boot-firefly-rk3288 needs python to build BuildRequires: python-devel
BuildRequires: python BuildRequires: swig
%if "%{name}" == "u-boot-qemu-ppce500" %if "%{name}" == "u-boot-qemu-ppce500"
# Owns /usr/share/qemu directory # Owns /usr/share/qemu directory
BuildRequires: qemu BuildRequires: qemu
@ -93,6 +94,7 @@ This package contains documentation for U-Boot firmware.
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
%patch0001 -p1 %patch0001 -p1
%patch0002 -p1 %patch0002 -p1
%patch0003 -p1
%build %build
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s) export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)

View File

@ -1,3 +1,30 @@
-------------------------------------------------------------------
Mon Aug 21 14:46:36 UTC 2017 - guillaume@opensuse.org
- Updated to v2017.07
-------------------------------------------------------------------
Mon Jul 10 12:54:03 UTC 2017 - guillaume@opensuse.org
- Updated to v2017.07-rc3
-------------------------------------------------------------------
Thu Jun 22 08:19:18 UTC 2017 - guillaume@opensuse.org
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.07
* Patches added:
0003-Revert-rockchip-mkimage-remove-plac.patch
-------------------------------------------------------------------
Wed Jun 21 14:18:06 UTC 2017 - guillaume.gardet@opensuse.org
- Updated to v2017.07-rc2
-------------------------------------------------------------------
Fri Jun 9 14:21:41 UTC 2017 - afaerber@suse.de
- Updated to v2017.07-rc1
------------------------------------------------------------------- -------------------------------------------------------------------
Mon May 8 15:27:50 UTC 2017 - afaerber@suse.de Mon May 8 15:27:50 UTC 2017 - afaerber@suse.de

View File

@ -34,10 +34,10 @@
%endif %endif
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
%define archive_version 2017.05 %define archive_version 2017.07
Name: u-boot-mvebuespressobin-88f3720 Name: u-boot-mvebuespressobin-88f3720
Version: 2017.05 Version: 2017.07
Release: 0 Release: 0
Summary: The U-Boot firmware for the mvebuespressobin-88f3720 platform Summary: The U-Boot firmware for the mvebuespressobin-88f3720 platform
License: GPL-2.0 License: GPL-2.0
@ -50,14 +50,15 @@ Source3: update_git.sh
Source300: u-boot-rpmlintrc Source300: u-boot-rpmlintrc
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
Patch0003: 0003-Revert-rockchip-mkimage-remove-plac.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
# Arndale board need DTC >= 1.4
BuildRequires: bc BuildRequires: bc
# Arndale board needs DTC >= 1.4
BuildRequires: dtc >= 1.4.0 BuildRequires: dtc >= 1.4.0
# u-boot-clearfog (tools/kwbimage.c) needs openssl to build # u-boot-clearfog (tools/kwbimage.c) needs openssl to build
BuildRequires: libopenssl-devel BuildRequires: libopenssl-devel
# u-boot-firefly-rk3288 needs python to build BuildRequires: python-devel
BuildRequires: python BuildRequires: swig
%if "%{name}" == "u-boot-qemu-ppce500" %if "%{name}" == "u-boot-qemu-ppce500"
# Owns /usr/share/qemu directory # Owns /usr/share/qemu directory
BuildRequires: qemu BuildRequires: qemu
@ -93,6 +94,7 @@ This package contains documentation for U-Boot firmware.
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
%patch0001 -p1 %patch0001 -p1
%patch0002 -p1 %patch0002 -p1
%patch0003 -p1
%build %build
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s) export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)

View File

@ -1,3 +1,30 @@
-------------------------------------------------------------------
Mon Aug 21 14:46:36 UTC 2017 - guillaume@opensuse.org
- Updated to v2017.07
-------------------------------------------------------------------
Mon Jul 10 12:54:03 UTC 2017 - guillaume@opensuse.org
- Updated to v2017.07-rc3
-------------------------------------------------------------------
Thu Jun 22 08:19:18 UTC 2017 - guillaume@opensuse.org
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.07
* Patches added:
0003-Revert-rockchip-mkimage-remove-plac.patch
-------------------------------------------------------------------
Wed Jun 21 14:18:06 UTC 2017 - guillaume.gardet@opensuse.org
- Updated to v2017.07-rc2
-------------------------------------------------------------------
Fri Jun 9 14:21:41 UTC 2017 - afaerber@suse.de
- Updated to v2017.07-rc1
------------------------------------------------------------------- -------------------------------------------------------------------
Mon May 8 15:27:50 UTC 2017 - afaerber@suse.de Mon May 8 15:27:50 UTC 2017 - afaerber@suse.de

View File

@ -34,10 +34,10 @@
%endif %endif
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
%define archive_version 2017.05 %define archive_version 2017.07
Name: u-boot-mvebumcbin-88f8040 Name: u-boot-mvebumcbin-88f8040
Version: 2017.05 Version: 2017.07
Release: 0 Release: 0
Summary: The U-Boot firmware for the mvebumcbin-88f8040 platform Summary: The U-Boot firmware for the mvebumcbin-88f8040 platform
License: GPL-2.0 License: GPL-2.0
@ -50,14 +50,15 @@ Source3: update_git.sh
Source300: u-boot-rpmlintrc Source300: u-boot-rpmlintrc
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
Patch0003: 0003-Revert-rockchip-mkimage-remove-plac.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
# Arndale board need DTC >= 1.4
BuildRequires: bc BuildRequires: bc
# Arndale board needs DTC >= 1.4
BuildRequires: dtc >= 1.4.0 BuildRequires: dtc >= 1.4.0
# u-boot-clearfog (tools/kwbimage.c) needs openssl to build # u-boot-clearfog (tools/kwbimage.c) needs openssl to build
BuildRequires: libopenssl-devel BuildRequires: libopenssl-devel
# u-boot-firefly-rk3288 needs python to build BuildRequires: python-devel
BuildRequires: python BuildRequires: swig
%if "%{name}" == "u-boot-qemu-ppce500" %if "%{name}" == "u-boot-qemu-ppce500"
# Owns /usr/share/qemu directory # Owns /usr/share/qemu directory
BuildRequires: qemu BuildRequires: qemu
@ -93,6 +94,7 @@ This package contains documentation for U-Boot firmware.
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
%patch0001 -p1 %patch0001 -p1
%patch0002 -p1 %patch0002 -p1
%patch0003 -p1
%build %build
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s) export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)

View File

@ -1,3 +1,30 @@
-------------------------------------------------------------------
Mon Aug 21 14:46:36 UTC 2017 - guillaume@opensuse.org
- Updated to v2017.07
-------------------------------------------------------------------
Mon Jul 10 12:54:03 UTC 2017 - guillaume@opensuse.org
- Updated to v2017.07-rc3
-------------------------------------------------------------------
Thu Jun 22 08:19:18 UTC 2017 - guillaume@opensuse.org
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.07
* Patches added:
0003-Revert-rockchip-mkimage-remove-plac.patch
-------------------------------------------------------------------
Wed Jun 21 14:18:06 UTC 2017 - guillaume.gardet@opensuse.org
- Updated to v2017.07-rc2
-------------------------------------------------------------------
Fri Jun 9 14:21:41 UTC 2017 - afaerber@suse.de
- Updated to v2017.07-rc1
------------------------------------------------------------------- -------------------------------------------------------------------
Mon May 8 15:27:50 UTC 2017 - afaerber@suse.de Mon May 8 15:27:50 UTC 2017 - afaerber@suse.de

View File

@ -34,10 +34,10 @@
%endif %endif
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
%define archive_version 2017.05 %define archive_version 2017.07
Name: u-boot-mx53loco Name: u-boot-mx53loco
Version: 2017.05 Version: 2017.07
Release: 0 Release: 0
Summary: The U-Boot firmware for the mx53loco platform Summary: The U-Boot firmware for the mx53loco platform
License: GPL-2.0 License: GPL-2.0
@ -50,14 +50,15 @@ Source3: update_git.sh
Source300: u-boot-rpmlintrc Source300: u-boot-rpmlintrc
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
Patch0003: 0003-Revert-rockchip-mkimage-remove-plac.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
# Arndale board need DTC >= 1.4
BuildRequires: bc BuildRequires: bc
# Arndale board needs DTC >= 1.4
BuildRequires: dtc >= 1.4.0 BuildRequires: dtc >= 1.4.0
# u-boot-clearfog (tools/kwbimage.c) needs openssl to build # u-boot-clearfog (tools/kwbimage.c) needs openssl to build
BuildRequires: libopenssl-devel BuildRequires: libopenssl-devel
# u-boot-firefly-rk3288 needs python to build BuildRequires: python-devel
BuildRequires: python BuildRequires: swig
%if "%{name}" == "u-boot-qemu-ppce500" %if "%{name}" == "u-boot-qemu-ppce500"
# Owns /usr/share/qemu directory # Owns /usr/share/qemu directory
BuildRequires: qemu BuildRequires: qemu
@ -93,6 +94,7 @@ This package contains documentation for U-Boot firmware.
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
%patch0001 -p1 %patch0001 -p1
%patch0002 -p1 %patch0002 -p1
%patch0003 -p1
%build %build
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s) export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)

View File

@ -1,3 +1,30 @@
-------------------------------------------------------------------
Mon Aug 21 14:46:36 UTC 2017 - guillaume@opensuse.org
- Updated to v2017.07
-------------------------------------------------------------------
Mon Jul 10 12:54:03 UTC 2017 - guillaume@opensuse.org
- Updated to v2017.07-rc3
-------------------------------------------------------------------
Thu Jun 22 08:19:18 UTC 2017 - guillaume@opensuse.org
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.07
* Patches added:
0003-Revert-rockchip-mkimage-remove-plac.patch
-------------------------------------------------------------------
Wed Jun 21 14:18:06 UTC 2017 - guillaume.gardet@opensuse.org
- Updated to v2017.07-rc2
-------------------------------------------------------------------
Fri Jun 9 14:21:41 UTC 2017 - afaerber@suse.de
- Updated to v2017.07-rc1
------------------------------------------------------------------- -------------------------------------------------------------------
Mon May 8 15:27:50 UTC 2017 - afaerber@suse.de Mon May 8 15:27:50 UTC 2017 - afaerber@suse.de

View File

@ -34,10 +34,10 @@
%endif %endif
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
%define archive_version 2017.05 %define archive_version 2017.07
Name: u-boot-mx6cuboxi Name: u-boot-mx6cuboxi
Version: 2017.05 Version: 2017.07
Release: 0 Release: 0
Summary: The U-Boot firmware for the mx6cuboxi platform Summary: The U-Boot firmware for the mx6cuboxi platform
License: GPL-2.0 License: GPL-2.0
@ -50,14 +50,15 @@ Source3: update_git.sh
Source300: u-boot-rpmlintrc Source300: u-boot-rpmlintrc
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
Patch0003: 0003-Revert-rockchip-mkimage-remove-plac.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
# Arndale board need DTC >= 1.4
BuildRequires: bc BuildRequires: bc
# Arndale board needs DTC >= 1.4
BuildRequires: dtc >= 1.4.0 BuildRequires: dtc >= 1.4.0
# u-boot-clearfog (tools/kwbimage.c) needs openssl to build # u-boot-clearfog (tools/kwbimage.c) needs openssl to build
BuildRequires: libopenssl-devel BuildRequires: libopenssl-devel
# u-boot-firefly-rk3288 needs python to build BuildRequires: python-devel
BuildRequires: python BuildRequires: swig
%if "%{name}" == "u-boot-qemu-ppce500" %if "%{name}" == "u-boot-qemu-ppce500"
# Owns /usr/share/qemu directory # Owns /usr/share/qemu directory
BuildRequires: qemu BuildRequires: qemu
@ -93,6 +94,7 @@ This package contains documentation for U-Boot firmware.
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
%patch0001 -p1 %patch0001 -p1
%patch0002 -p1 %patch0002 -p1
%patch0003 -p1
%build %build
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s) export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)

View File

@ -1,3 +1,30 @@
-------------------------------------------------------------------
Mon Aug 21 14:46:36 UTC 2017 - guillaume@opensuse.org
- Updated to v2017.07
-------------------------------------------------------------------
Mon Jul 10 12:54:03 UTC 2017 - guillaume@opensuse.org
- Updated to v2017.07-rc3
-------------------------------------------------------------------
Thu Jun 22 08:19:18 UTC 2017 - guillaume@opensuse.org
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.07
* Patches added:
0003-Revert-rockchip-mkimage-remove-plac.patch
-------------------------------------------------------------------
Wed Jun 21 14:18:06 UTC 2017 - guillaume.gardet@opensuse.org
- Updated to v2017.07-rc2
-------------------------------------------------------------------
Fri Jun 9 14:21:41 UTC 2017 - afaerber@suse.de
- Updated to v2017.07-rc1
------------------------------------------------------------------- -------------------------------------------------------------------
Mon May 8 15:27:50 UTC 2017 - afaerber@suse.de Mon May 8 15:27:50 UTC 2017 - afaerber@suse.de

View File

@ -34,10 +34,10 @@
%endif %endif
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
%define archive_version 2017.05 %define archive_version 2017.07
Name: u-boot-mx6qsabrelite Name: u-boot-mx6qsabrelite
Version: 2017.05 Version: 2017.07
Release: 0 Release: 0
Summary: The U-Boot firmware for the mx6qsabrelite platform Summary: The U-Boot firmware for the mx6qsabrelite platform
License: GPL-2.0 License: GPL-2.0
@ -50,14 +50,15 @@ Source3: update_git.sh
Source300: u-boot-rpmlintrc Source300: u-boot-rpmlintrc
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
Patch0003: 0003-Revert-rockchip-mkimage-remove-plac.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
# Arndale board need DTC >= 1.4
BuildRequires: bc BuildRequires: bc
# Arndale board needs DTC >= 1.4
BuildRequires: dtc >= 1.4.0 BuildRequires: dtc >= 1.4.0
# u-boot-clearfog (tools/kwbimage.c) needs openssl to build # u-boot-clearfog (tools/kwbimage.c) needs openssl to build
BuildRequires: libopenssl-devel BuildRequires: libopenssl-devel
# u-boot-firefly-rk3288 needs python to build BuildRequires: python-devel
BuildRequires: python BuildRequires: swig
%if "%{name}" == "u-boot-qemu-ppce500" %if "%{name}" == "u-boot-qemu-ppce500"
# Owns /usr/share/qemu directory # Owns /usr/share/qemu directory
BuildRequires: qemu BuildRequires: qemu
@ -93,6 +94,7 @@ This package contains documentation for U-Boot firmware.
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
%patch0001 -p1 %patch0001 -p1
%patch0002 -p1 %patch0002 -p1
%patch0003 -p1
%build %build
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s) export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)

View File

@ -1,3 +1,30 @@
-------------------------------------------------------------------
Mon Aug 21 14:46:36 UTC 2017 - guillaume@opensuse.org
- Updated to v2017.07
-------------------------------------------------------------------
Mon Jul 10 12:54:03 UTC 2017 - guillaume@opensuse.org
- Updated to v2017.07-rc3
-------------------------------------------------------------------
Thu Jun 22 08:19:18 UTC 2017 - guillaume@opensuse.org
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.07
* Patches added:
0003-Revert-rockchip-mkimage-remove-plac.patch
-------------------------------------------------------------------
Wed Jun 21 14:18:06 UTC 2017 - guillaume.gardet@opensuse.org
- Updated to v2017.07-rc2
-------------------------------------------------------------------
Fri Jun 9 14:21:41 UTC 2017 - afaerber@suse.de
- Updated to v2017.07-rc1
------------------------------------------------------------------- -------------------------------------------------------------------
Mon May 8 15:27:50 UTC 2017 - afaerber@suse.de Mon May 8 15:27:50 UTC 2017 - afaerber@suse.de

View File

@ -34,10 +34,10 @@
%endif %endif
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
%define archive_version 2017.05 %define archive_version 2017.07
Name: u-boot-nanopineo Name: u-boot-nanopineo
Version: 2017.05 Version: 2017.07
Release: 0 Release: 0
Summary: The U-Boot firmware for the nanopineo platform Summary: The U-Boot firmware for the nanopineo platform
License: GPL-2.0 License: GPL-2.0
@ -50,14 +50,15 @@ Source3: update_git.sh
Source300: u-boot-rpmlintrc Source300: u-boot-rpmlintrc
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
Patch0003: 0003-Revert-rockchip-mkimage-remove-plac.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
# Arndale board need DTC >= 1.4
BuildRequires: bc BuildRequires: bc
# Arndale board needs DTC >= 1.4
BuildRequires: dtc >= 1.4.0 BuildRequires: dtc >= 1.4.0
# u-boot-clearfog (tools/kwbimage.c) needs openssl to build # u-boot-clearfog (tools/kwbimage.c) needs openssl to build
BuildRequires: libopenssl-devel BuildRequires: libopenssl-devel
# u-boot-firefly-rk3288 needs python to build BuildRequires: python-devel
BuildRequires: python BuildRequires: swig
%if "%{name}" == "u-boot-qemu-ppce500" %if "%{name}" == "u-boot-qemu-ppce500"
# Owns /usr/share/qemu directory # Owns /usr/share/qemu directory
BuildRequires: qemu BuildRequires: qemu
@ -93,6 +94,7 @@ This package contains documentation for U-Boot firmware.
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
%patch0001 -p1 %patch0001 -p1
%patch0002 -p1 %patch0002 -p1
%patch0003 -p1
%build %build
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s) export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)

View File

@ -1,3 +1,30 @@
-------------------------------------------------------------------
Mon Aug 21 14:46:36 UTC 2017 - guillaume@opensuse.org
- Updated to v2017.07
-------------------------------------------------------------------
Mon Jul 10 12:54:03 UTC 2017 - guillaume@opensuse.org
- Updated to v2017.07-rc3
-------------------------------------------------------------------
Thu Jun 22 08:19:18 UTC 2017 - guillaume@opensuse.org
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.07
* Patches added:
0003-Revert-rockchip-mkimage-remove-plac.patch
-------------------------------------------------------------------
Wed Jun 21 14:18:06 UTC 2017 - guillaume.gardet@opensuse.org
- Updated to v2017.07-rc2
-------------------------------------------------------------------
Fri Jun 9 14:21:41 UTC 2017 - afaerber@suse.de
- Updated to v2017.07-rc1
------------------------------------------------------------------- -------------------------------------------------------------------
Mon May 8 15:27:50 UTC 2017 - afaerber@suse.de Mon May 8 15:27:50 UTC 2017 - afaerber@suse.de

View File

@ -34,10 +34,10 @@
%endif %endif
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
%define archive_version 2017.05 %define archive_version 2017.07
Name: u-boot-nanopineoair Name: u-boot-nanopineoair
Version: 2017.05 Version: 2017.07
Release: 0 Release: 0
Summary: The U-Boot firmware for the nanopineoair platform Summary: The U-Boot firmware for the nanopineoair platform
License: GPL-2.0 License: GPL-2.0
@ -50,14 +50,15 @@ Source3: update_git.sh
Source300: u-boot-rpmlintrc Source300: u-boot-rpmlintrc
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
Patch0003: 0003-Revert-rockchip-mkimage-remove-plac.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
# Arndale board need DTC >= 1.4
BuildRequires: bc BuildRequires: bc
# Arndale board needs DTC >= 1.4
BuildRequires: dtc >= 1.4.0 BuildRequires: dtc >= 1.4.0
# u-boot-clearfog (tools/kwbimage.c) needs openssl to build # u-boot-clearfog (tools/kwbimage.c) needs openssl to build
BuildRequires: libopenssl-devel BuildRequires: libopenssl-devel
# u-boot-firefly-rk3288 needs python to build BuildRequires: python-devel
BuildRequires: python BuildRequires: swig
%if "%{name}" == "u-boot-qemu-ppce500" %if "%{name}" == "u-boot-qemu-ppce500"
# Owns /usr/share/qemu directory # Owns /usr/share/qemu directory
BuildRequires: qemu BuildRequires: qemu
@ -93,6 +94,7 @@ This package contains documentation for U-Boot firmware.
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
%patch0001 -p1 %patch0001 -p1
%patch0002 -p1 %patch0002 -p1
%patch0003 -p1
%build %build
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s) export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)

View File

@ -1,3 +1,30 @@
-------------------------------------------------------------------
Mon Aug 21 14:46:36 UTC 2017 - guillaume@opensuse.org
- Updated to v2017.07
-------------------------------------------------------------------
Mon Jul 10 12:54:03 UTC 2017 - guillaume@opensuse.org
- Updated to v2017.07-rc3
-------------------------------------------------------------------
Thu Jun 22 08:19:18 UTC 2017 - guillaume@opensuse.org
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.07
* Patches added:
0003-Revert-rockchip-mkimage-remove-plac.patch
-------------------------------------------------------------------
Wed Jun 21 14:18:06 UTC 2017 - guillaume.gardet@opensuse.org
- Updated to v2017.07-rc2
-------------------------------------------------------------------
Fri Jun 9 14:21:41 UTC 2017 - afaerber@suse.de
- Updated to v2017.07-rc1
------------------------------------------------------------------- -------------------------------------------------------------------
Mon May 8 15:27:50 UTC 2017 - afaerber@suse.de Mon May 8 15:27:50 UTC 2017 - afaerber@suse.de

View File

@ -34,10 +34,10 @@
%endif %endif
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
%define archive_version 2017.05 %define archive_version 2017.07
Name: u-boot-odroid-c2 Name: u-boot-odroid-c2
Version: 2017.05 Version: 2017.07
Release: 0 Release: 0
Summary: The U-Boot firmware for the odroid-c2 platform Summary: The U-Boot firmware for the odroid-c2 platform
License: GPL-2.0 License: GPL-2.0
@ -50,14 +50,15 @@ Source3: update_git.sh
Source300: u-boot-rpmlintrc Source300: u-boot-rpmlintrc
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
Patch0003: 0003-Revert-rockchip-mkimage-remove-plac.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
# Arndale board need DTC >= 1.4
BuildRequires: bc BuildRequires: bc
# Arndale board needs DTC >= 1.4
BuildRequires: dtc >= 1.4.0 BuildRequires: dtc >= 1.4.0
# u-boot-clearfog (tools/kwbimage.c) needs openssl to build # u-boot-clearfog (tools/kwbimage.c) needs openssl to build
BuildRequires: libopenssl-devel BuildRequires: libopenssl-devel
# u-boot-firefly-rk3288 needs python to build BuildRequires: python-devel
BuildRequires: python BuildRequires: swig
%if "%{name}" == "u-boot-qemu-ppce500" %if "%{name}" == "u-boot-qemu-ppce500"
# Owns /usr/share/qemu directory # Owns /usr/share/qemu directory
BuildRequires: qemu BuildRequires: qemu
@ -93,6 +94,7 @@ This package contains documentation for U-Boot firmware.
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
%patch0001 -p1 %patch0001 -p1
%patch0002 -p1 %patch0002 -p1
%patch0003 -p1
%build %build
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s) export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)

View File

@ -1,3 +1,30 @@
-------------------------------------------------------------------
Mon Aug 21 14:46:36 UTC 2017 - guillaume@opensuse.org
- Updated to v2017.07
-------------------------------------------------------------------
Mon Jul 10 12:54:03 UTC 2017 - guillaume@opensuse.org
- Updated to v2017.07-rc3
-------------------------------------------------------------------
Thu Jun 22 08:19:18 UTC 2017 - guillaume@opensuse.org
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.07
* Patches added:
0003-Revert-rockchip-mkimage-remove-plac.patch
-------------------------------------------------------------------
Wed Jun 21 14:18:06 UTC 2017 - guillaume.gardet@opensuse.org
- Updated to v2017.07-rc2
-------------------------------------------------------------------
Fri Jun 9 14:21:41 UTC 2017 - afaerber@suse.de
- Updated to v2017.07-rc1
------------------------------------------------------------------- -------------------------------------------------------------------
Mon May 8 15:27:50 UTC 2017 - afaerber@suse.de Mon May 8 15:27:50 UTC 2017 - afaerber@suse.de

View File

@ -34,10 +34,10 @@
%endif %endif
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
%define archive_version 2017.05 %define archive_version 2017.07
Name: u-boot-odroid-xu3 Name: u-boot-odroid-xu3
Version: 2017.05 Version: 2017.07
Release: 0 Release: 0
Summary: The U-Boot firmware for the odroid-xu3 platform Summary: The U-Boot firmware for the odroid-xu3 platform
License: GPL-2.0 License: GPL-2.0
@ -50,14 +50,15 @@ Source3: update_git.sh
Source300: u-boot-rpmlintrc Source300: u-boot-rpmlintrc
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
Patch0003: 0003-Revert-rockchip-mkimage-remove-plac.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
# Arndale board need DTC >= 1.4
BuildRequires: bc BuildRequires: bc
# Arndale board needs DTC >= 1.4
BuildRequires: dtc >= 1.4.0 BuildRequires: dtc >= 1.4.0
# u-boot-clearfog (tools/kwbimage.c) needs openssl to build # u-boot-clearfog (tools/kwbimage.c) needs openssl to build
BuildRequires: libopenssl-devel BuildRequires: libopenssl-devel
# u-boot-firefly-rk3288 needs python to build BuildRequires: python-devel
BuildRequires: python BuildRequires: swig
%if "%{name}" == "u-boot-qemu-ppce500" %if "%{name}" == "u-boot-qemu-ppce500"
# Owns /usr/share/qemu directory # Owns /usr/share/qemu directory
BuildRequires: qemu BuildRequires: qemu
@ -93,6 +94,7 @@ This package contains documentation for U-Boot firmware.
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
%patch0001 -p1 %patch0001 -p1
%patch0002 -p1 %patch0002 -p1
%patch0003 -p1
%build %build
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s) export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)

View File

@ -1,3 +1,30 @@
-------------------------------------------------------------------
Mon Aug 21 14:46:36 UTC 2017 - guillaume@opensuse.org
- Updated to v2017.07
-------------------------------------------------------------------
Mon Jul 10 12:54:03 UTC 2017 - guillaume@opensuse.org
- Updated to v2017.07-rc3
-------------------------------------------------------------------
Thu Jun 22 08:19:18 UTC 2017 - guillaume@opensuse.org
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.07
* Patches added:
0003-Revert-rockchip-mkimage-remove-plac.patch
-------------------------------------------------------------------
Wed Jun 21 14:18:06 UTC 2017 - guillaume.gardet@opensuse.org
- Updated to v2017.07-rc2
-------------------------------------------------------------------
Fri Jun 9 14:21:41 UTC 2017 - afaerber@suse.de
- Updated to v2017.07-rc1
------------------------------------------------------------------- -------------------------------------------------------------------
Mon May 8 15:27:50 UTC 2017 - afaerber@suse.de Mon May 8 15:27:50 UTC 2017 - afaerber@suse.de

View File

@ -34,10 +34,10 @@
%endif %endif
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
%define archive_version 2017.05 %define archive_version 2017.07
Name: u-boot-odroid Name: u-boot-odroid
Version: 2017.05 Version: 2017.07
Release: 0 Release: 0
Summary: The U-Boot firmware for the odroid platform Summary: The U-Boot firmware for the odroid platform
License: GPL-2.0 License: GPL-2.0
@ -50,14 +50,15 @@ Source3: update_git.sh
Source300: u-boot-rpmlintrc Source300: u-boot-rpmlintrc
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
Patch0003: 0003-Revert-rockchip-mkimage-remove-plac.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
# Arndale board need DTC >= 1.4
BuildRequires: bc BuildRequires: bc
# Arndale board needs DTC >= 1.4
BuildRequires: dtc >= 1.4.0 BuildRequires: dtc >= 1.4.0
# u-boot-clearfog (tools/kwbimage.c) needs openssl to build # u-boot-clearfog (tools/kwbimage.c) needs openssl to build
BuildRequires: libopenssl-devel BuildRequires: libopenssl-devel
# u-boot-firefly-rk3288 needs python to build BuildRequires: python-devel
BuildRequires: python BuildRequires: swig
%if "%{name}" == "u-boot-qemu-ppce500" %if "%{name}" == "u-boot-qemu-ppce500"
# Owns /usr/share/qemu directory # Owns /usr/share/qemu directory
BuildRequires: qemu BuildRequires: qemu
@ -93,6 +94,7 @@ This package contains documentation for U-Boot firmware.
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
%patch0001 -p1 %patch0001 -p1
%patch0002 -p1 %patch0002 -p1
%patch0003 -p1
%build %build
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s) export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)

View File

@ -1,3 +1,30 @@
-------------------------------------------------------------------
Mon Aug 21 14:46:36 UTC 2017 - guillaume@opensuse.org
- Updated to v2017.07
-------------------------------------------------------------------
Mon Jul 10 12:54:03 UTC 2017 - guillaume@opensuse.org
- Updated to v2017.07-rc3
-------------------------------------------------------------------
Thu Jun 22 08:19:18 UTC 2017 - guillaume@opensuse.org
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.07
* Patches added:
0003-Revert-rockchip-mkimage-remove-plac.patch
-------------------------------------------------------------------
Wed Jun 21 14:18:06 UTC 2017 - guillaume.gardet@opensuse.org
- Updated to v2017.07-rc2
-------------------------------------------------------------------
Fri Jun 9 14:21:41 UTC 2017 - afaerber@suse.de
- Updated to v2017.07-rc1
------------------------------------------------------------------- -------------------------------------------------------------------
Mon May 8 15:27:50 UTC 2017 - afaerber@suse.de Mon May 8 15:27:50 UTC 2017 - afaerber@suse.de

View File

@ -34,10 +34,10 @@
%endif %endif
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
%define archive_version 2017.05 %define archive_version 2017.07
Name: u-boot-omap3beagle Name: u-boot-omap3beagle
Version: 2017.05 Version: 2017.07
Release: 0 Release: 0
Summary: The U-Boot firmware for the omap3beagle platform Summary: The U-Boot firmware for the omap3beagle platform
License: GPL-2.0 License: GPL-2.0
@ -50,14 +50,15 @@ Source3: update_git.sh
Source300: u-boot-rpmlintrc Source300: u-boot-rpmlintrc
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
Patch0003: 0003-Revert-rockchip-mkimage-remove-plac.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
# Arndale board need DTC >= 1.4
BuildRequires: bc BuildRequires: bc
# Arndale board needs DTC >= 1.4
BuildRequires: dtc >= 1.4.0 BuildRequires: dtc >= 1.4.0
# u-boot-clearfog (tools/kwbimage.c) needs openssl to build # u-boot-clearfog (tools/kwbimage.c) needs openssl to build
BuildRequires: libopenssl-devel BuildRequires: libopenssl-devel
# u-boot-firefly-rk3288 needs python to build BuildRequires: python-devel
BuildRequires: python BuildRequires: swig
%if "%{name}" == "u-boot-qemu-ppce500" %if "%{name}" == "u-boot-qemu-ppce500"
# Owns /usr/share/qemu directory # Owns /usr/share/qemu directory
BuildRequires: qemu BuildRequires: qemu
@ -93,6 +94,7 @@ This package contains documentation for U-Boot firmware.
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
%patch0001 -p1 %patch0001 -p1
%patch0002 -p1 %patch0002 -p1
%patch0003 -p1
%build %build
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s) export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)

View File

@ -1,3 +1,30 @@
-------------------------------------------------------------------
Mon Aug 21 14:46:36 UTC 2017 - guillaume@opensuse.org
- Updated to v2017.07
-------------------------------------------------------------------
Mon Jul 10 12:54:03 UTC 2017 - guillaume@opensuse.org
- Updated to v2017.07-rc3
-------------------------------------------------------------------
Thu Jun 22 08:19:18 UTC 2017 - guillaume@opensuse.org
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.07
* Patches added:
0003-Revert-rockchip-mkimage-remove-plac.patch
-------------------------------------------------------------------
Wed Jun 21 14:18:06 UTC 2017 - guillaume.gardet@opensuse.org
- Updated to v2017.07-rc2
-------------------------------------------------------------------
Fri Jun 9 14:21:41 UTC 2017 - afaerber@suse.de
- Updated to v2017.07-rc1
------------------------------------------------------------------- -------------------------------------------------------------------
Mon May 8 15:27:50 UTC 2017 - afaerber@suse.de Mon May 8 15:27:50 UTC 2017 - afaerber@suse.de

View File

@ -34,10 +34,10 @@
%endif %endif
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
%define archive_version 2017.05 %define archive_version 2017.07
Name: u-boot-omap4panda Name: u-boot-omap4panda
Version: 2017.05 Version: 2017.07
Release: 0 Release: 0
Summary: The U-Boot firmware for the omap4panda platform Summary: The U-Boot firmware for the omap4panda platform
License: GPL-2.0 License: GPL-2.0
@ -50,14 +50,15 @@ Source3: update_git.sh
Source300: u-boot-rpmlintrc Source300: u-boot-rpmlintrc
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
Patch0003: 0003-Revert-rockchip-mkimage-remove-plac.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
# Arndale board need DTC >= 1.4
BuildRequires: bc BuildRequires: bc
# Arndale board needs DTC >= 1.4
BuildRequires: dtc >= 1.4.0 BuildRequires: dtc >= 1.4.0
# u-boot-clearfog (tools/kwbimage.c) needs openssl to build # u-boot-clearfog (tools/kwbimage.c) needs openssl to build
BuildRequires: libopenssl-devel BuildRequires: libopenssl-devel
# u-boot-firefly-rk3288 needs python to build BuildRequires: python-devel
BuildRequires: python BuildRequires: swig
%if "%{name}" == "u-boot-qemu-ppce500" %if "%{name}" == "u-boot-qemu-ppce500"
# Owns /usr/share/qemu directory # Owns /usr/share/qemu directory
BuildRequires: qemu BuildRequires: qemu
@ -93,6 +94,7 @@ This package contains documentation for U-Boot firmware.
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
%patch0001 -p1 %patch0001 -p1
%patch0002 -p1 %patch0002 -p1
%patch0003 -p1
%build %build
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s) export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)

View File

@ -1,3 +1,30 @@
-------------------------------------------------------------------
Mon Aug 21 14:46:36 UTC 2017 - guillaume@opensuse.org
- Updated to v2017.07
-------------------------------------------------------------------
Mon Jul 10 12:54:03 UTC 2017 - guillaume@opensuse.org
- Updated to v2017.07-rc3
-------------------------------------------------------------------
Thu Jun 22 08:19:18 UTC 2017 - guillaume@opensuse.org
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.07
* Patches added:
0003-Revert-rockchip-mkimage-remove-plac.patch
-------------------------------------------------------------------
Wed Jun 21 14:18:06 UTC 2017 - guillaume.gardet@opensuse.org
- Updated to v2017.07-rc2
-------------------------------------------------------------------
Fri Jun 9 14:21:41 UTC 2017 - afaerber@suse.de
- Updated to v2017.07-rc1
------------------------------------------------------------------- -------------------------------------------------------------------
Mon May 8 15:27:50 UTC 2017 - afaerber@suse.de Mon May 8 15:27:50 UTC 2017 - afaerber@suse.de

View File

@ -34,10 +34,10 @@
%endif %endif
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
%define archive_version 2017.05 %define archive_version 2017.07
Name: u-boot-orangepipc Name: u-boot-orangepipc
Version: 2017.05 Version: 2017.07
Release: 0 Release: 0
Summary: The U-Boot firmware for the orangepipc platform Summary: The U-Boot firmware for the orangepipc platform
License: GPL-2.0 License: GPL-2.0
@ -50,14 +50,15 @@ Source3: update_git.sh
Source300: u-boot-rpmlintrc Source300: u-boot-rpmlintrc
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
Patch0003: 0003-Revert-rockchip-mkimage-remove-plac.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
# Arndale board need DTC >= 1.4
BuildRequires: bc BuildRequires: bc
# Arndale board needs DTC >= 1.4
BuildRequires: dtc >= 1.4.0 BuildRequires: dtc >= 1.4.0
# u-boot-clearfog (tools/kwbimage.c) needs openssl to build # u-boot-clearfog (tools/kwbimage.c) needs openssl to build
BuildRequires: libopenssl-devel BuildRequires: libopenssl-devel
# u-boot-firefly-rk3288 needs python to build BuildRequires: python-devel
BuildRequires: python BuildRequires: swig
%if "%{name}" == "u-boot-qemu-ppce500" %if "%{name}" == "u-boot-qemu-ppce500"
# Owns /usr/share/qemu directory # Owns /usr/share/qemu directory
BuildRequires: qemu BuildRequires: qemu
@ -93,6 +94,7 @@ This package contains documentation for U-Boot firmware.
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
%patch0001 -p1 %patch0001 -p1
%patch0002 -p1 %patch0002 -p1
%patch0003 -p1
%build %build
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s) export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)

View File

@ -1,3 +1,30 @@
-------------------------------------------------------------------
Mon Aug 21 14:46:36 UTC 2017 - guillaume@opensuse.org
- Updated to v2017.07
-------------------------------------------------------------------
Mon Jul 10 12:54:03 UTC 2017 - guillaume@opensuse.org
- Updated to v2017.07-rc3
-------------------------------------------------------------------
Thu Jun 22 08:19:18 UTC 2017 - guillaume@opensuse.org
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.07
* Patches added:
0003-Revert-rockchip-mkimage-remove-plac.patch
-------------------------------------------------------------------
Wed Jun 21 14:18:06 UTC 2017 - guillaume.gardet@opensuse.org
- Updated to v2017.07-rc2
-------------------------------------------------------------------
Fri Jun 9 14:21:41 UTC 2017 - afaerber@suse.de
- Updated to v2017.07-rc1
------------------------------------------------------------------- -------------------------------------------------------------------
Mon May 8 15:27:50 UTC 2017 - afaerber@suse.de Mon May 8 15:27:50 UTC 2017 - afaerber@suse.de

View File

@ -34,10 +34,10 @@
%endif %endif
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
%define archive_version 2017.05 %define archive_version 2017.07
Name: u-boot-orangepipc2 Name: u-boot-orangepipc2
Version: 2017.05 Version: 2017.07
Release: 0 Release: 0
Summary: The U-Boot firmware for the orangepipc2 platform Summary: The U-Boot firmware for the orangepipc2 platform
License: GPL-2.0 License: GPL-2.0
@ -50,14 +50,15 @@ Source3: update_git.sh
Source300: u-boot-rpmlintrc Source300: u-boot-rpmlintrc
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
Patch0003: 0003-Revert-rockchip-mkimage-remove-plac.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
# Arndale board need DTC >= 1.4
BuildRequires: bc BuildRequires: bc
# Arndale board needs DTC >= 1.4
BuildRequires: dtc >= 1.4.0 BuildRequires: dtc >= 1.4.0
# u-boot-clearfog (tools/kwbimage.c) needs openssl to build # u-boot-clearfog (tools/kwbimage.c) needs openssl to build
BuildRequires: libopenssl-devel BuildRequires: libopenssl-devel
# u-boot-firefly-rk3288 needs python to build BuildRequires: python-devel
BuildRequires: python BuildRequires: swig
%if "%{name}" == "u-boot-qemu-ppce500" %if "%{name}" == "u-boot-qemu-ppce500"
# Owns /usr/share/qemu directory # Owns /usr/share/qemu directory
BuildRequires: qemu BuildRequires: qemu
@ -93,6 +94,7 @@ This package contains documentation for U-Boot firmware.
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
%patch0001 -p1 %patch0001 -p1
%patch0002 -p1 %patch0002 -p1
%patch0003 -p1
%build %build
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s) export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)

View File

@ -1,3 +1,30 @@
-------------------------------------------------------------------
Mon Aug 21 14:46:36 UTC 2017 - guillaume@opensuse.org
- Updated to v2017.07
-------------------------------------------------------------------
Mon Jul 10 12:54:03 UTC 2017 - guillaume@opensuse.org
- Updated to v2017.07-rc3
-------------------------------------------------------------------
Thu Jun 22 08:19:18 UTC 2017 - guillaume@opensuse.org
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.07
* Patches added:
0003-Revert-rockchip-mkimage-remove-plac.patch
-------------------------------------------------------------------
Wed Jun 21 14:18:06 UTC 2017 - guillaume.gardet@opensuse.org
- Updated to v2017.07-rc2
-------------------------------------------------------------------
Fri Jun 9 14:21:41 UTC 2017 - afaerber@suse.de
- Updated to v2017.07-rc1
------------------------------------------------------------------- -------------------------------------------------------------------
Mon May 8 15:27:50 UTC 2017 - afaerber@suse.de Mon May 8 15:27:50 UTC 2017 - afaerber@suse.de

View File

@ -34,10 +34,10 @@
%endif %endif
# archive_version differs from version for RC version only # archive_version differs from version for RC version only
%define archive_version 2017.05 %define archive_version 2017.07
Name: u-boot-p2371-2180 Name: u-boot-p2371-2180
Version: 2017.05 Version: 2017.07
Release: 0 Release: 0
Summary: The U-Boot firmware for the p2371-2180 platform Summary: The U-Boot firmware for the p2371-2180 platform
License: GPL-2.0 License: GPL-2.0
@ -50,14 +50,15 @@ Source3: update_git.sh
Source300: u-boot-rpmlintrc Source300: u-boot-rpmlintrc
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
Patch0003: 0003-Revert-rockchip-mkimage-remove-plac.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
# Arndale board need DTC >= 1.4
BuildRequires: bc BuildRequires: bc
# Arndale board needs DTC >= 1.4
BuildRequires: dtc >= 1.4.0 BuildRequires: dtc >= 1.4.0
# u-boot-clearfog (tools/kwbimage.c) needs openssl to build # u-boot-clearfog (tools/kwbimage.c) needs openssl to build
BuildRequires: libopenssl-devel BuildRequires: libopenssl-devel
# u-boot-firefly-rk3288 needs python to build BuildRequires: python-devel
BuildRequires: python BuildRequires: swig
%if "%{name}" == "u-boot-qemu-ppce500" %if "%{name}" == "u-boot-qemu-ppce500"
# Owns /usr/share/qemu directory # Owns /usr/share/qemu directory
BuildRequires: qemu BuildRequires: qemu
@ -93,6 +94,7 @@ This package contains documentation for U-Boot firmware.
%setup -q -n u-boot-%{archive_version} %setup -q -n u-boot-%{archive_version}
%patch0001 -p1 %patch0001 -p1
%patch0002 -p1 %patch0002 -p1
%patch0003 -p1
%build %build
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s) export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)

View File

@ -1,3 +1,30 @@
-------------------------------------------------------------------
Mon Aug 21 14:46:36 UTC 2017 - guillaume@opensuse.org
- Updated to v2017.07
-------------------------------------------------------------------
Mon Jul 10 12:54:03 UTC 2017 - guillaume@opensuse.org
- Updated to v2017.07-rc3
-------------------------------------------------------------------
Thu Jun 22 08:19:18 UTC 2017 - guillaume@opensuse.org
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.07
* Patches added:
0003-Revert-rockchip-mkimage-remove-plac.patch
-------------------------------------------------------------------
Wed Jun 21 14:18:06 UTC 2017 - guillaume.gardet@opensuse.org
- Updated to v2017.07-rc2
-------------------------------------------------------------------
Fri Jun 9 14:21:41 UTC 2017 - afaerber@suse.de
- Updated to v2017.07-rc1
------------------------------------------------------------------- -------------------------------------------------------------------
Mon May 8 15:27:50 UTC 2017 - afaerber@suse.de Mon May 8 15:27:50 UTC 2017 - afaerber@suse.de

Some files were not shown because too many files have changed in this diff Show More