Accepting request 338371 from Base:System
1 OBS-URL: https://build.opensuse.org/request/show/338371 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/u-boot?expand=0&rev=57
This commit is contained in:
@@ -1,106 +0,0 @@
|
||||
From 0052a7d99a9182e0ad343a98e77406226ea81740 Mon Sep 17 00:00:00 2001
|
||||
From: Ian Campbell <ian.campbell@citrix.com>
|
||||
Date: Tue, 29 Sep 2015 09:54:13 +0100
|
||||
Subject: [PATCH] arndale: Apply Cortex-A15 errata #773022 and #774769
|
||||
|
||||
We run 4 Arndale boards in our automated test framework, they have
|
||||
been running quite happily for quite some time using a Debian Wheezy
|
||||
userspace.
|
||||
|
||||
However when upgrading to a Debian Jessie we started seeing frequent
|
||||
segmentation faults from gcc when building the kernel, to the extent
|
||||
that it is unable to successfully build the kernel twice in a row, and
|
||||
often fails on the first attempt.
|
||||
|
||||
Searching around I found https://bugs.launchpad.net/arndale/+bug/1081417
|
||||
which pointed towards http://www.spinics.net/lists/kvm-arm/msg03723.html
|
||||
and CPU Errata 773022 and 774769.
|
||||
|
||||
This errata needs to be applied to all processors in an SMP system,
|
||||
meaning that the usual strategy of applying them in
|
||||
arch/arm/cpu/armv7/start.S is not appropriate (since that applies to
|
||||
the boot processor only). Instead we apply these errata in the secure
|
||||
monitor which is code that is traversed by all processors as they are
|
||||
brought up.
|
||||
|
||||
The net affect on Arndale is that ACTLR changes from 0x40 to
|
||||
0x2000042. I ran 17 kernel compile iterations overnight with no
|
||||
segfaults.
|
||||
|
||||
Runtime testing was done on our v2014.10 based branch and forward
|
||||
ported (with only minimal and trivial contextual conflicts) to current
|
||||
master, where it has been build tested only.
|
||||
|
||||
I suppose in theory these errata apply to any Exynos5250 based boards,
|
||||
but Arndale is the only one I have access to and I have therefore
|
||||
chosen to be conservative and only apply it there.
|
||||
|
||||
Also, reorder CONFIG_ARM_ERRATA_794072 in README to make the list
|
||||
numerically sorted.
|
||||
|
||||
Signed-off-by: Ian Campbell <ian.campbell@citrix.com>
|
||||
---
|
||||
Our v2014.10 based branch:
|
||||
http://xenbits.xen.org/gitweb/?p=people/ianc/osstest/u-boot.git;a=shortlog;h=refs/heads/arndale
|
||||
---
|
||||
README | 4 +++-
|
||||
arch/arm/cpu/armv7/nonsec_virt.S | 14 ++++++++++++++
|
||||
include/configs/arndale.h | 4 ++++
|
||||
3 files changed, 21 insertions(+), 1 deletions(-)
|
||||
|
||||
Index: u-boot-2015.10-rc4/README
|
||||
===================================================================
|
||||
--- u-boot-2015.10-rc4.orig/README
|
||||
+++ u-boot-2015.10-rc4/README
|
||||
@@ -681,8 +681,10 @@ The following options need to be configu
|
||||
CONFIG_ARM_ERRATA_742230
|
||||
CONFIG_ARM_ERRATA_743622
|
||||
CONFIG_ARM_ERRATA_751472
|
||||
- CONFIG_ARM_ERRATA_794072
|
||||
CONFIG_ARM_ERRATA_761320
|
||||
+ CONFIG_ARM_ERRATA_773022
|
||||
+ CONFIG_ARM_ERRATA_774769
|
||||
+ CONFIG_ARM_ERRATA_794072
|
||||
|
||||
If set, the workarounds for these ARM errata are applied early
|
||||
during U-Boot startup. Note that these options force the
|
||||
Index: u-boot-2015.10-rc4/arch/arm/cpu/armv7/nonsec_virt.S
|
||||
===================================================================
|
||||
--- u-boot-2015.10-rc4.orig/arch/arm/cpu/armv7/nonsec_virt.S
|
||||
+++ u-boot-2015.10-rc4/arch/arm/cpu/armv7/nonsec_virt.S
|
||||
@@ -53,6 +53,20 @@ _secure_monitor:
|
||||
bl psci_arch_init
|
||||
#endif
|
||||
|
||||
+#ifdef CONFIG_ARM_ERRATA_773022
|
||||
+ mrc p15, 0, r5, c1, c0, 1
|
||||
+ orr r5, r5, #(1 << 1)
|
||||
+ mcr p15, 0, r5, c1, c0, 1
|
||||
+ isb
|
||||
+#endif
|
||||
+
|
||||
+#ifdef CONFIG_ARM_ERRATA_774769
|
||||
+ mrc p15, 0, r5, c1, c0, 1
|
||||
+ orr r5, r5, #(1 << 25)
|
||||
+ mcr p15, 0, r5, c1, c0, 1
|
||||
+ isb
|
||||
+#endif
|
||||
+
|
||||
mrc p15, 0, r5, c1, c1, 0 @ read SCR
|
||||
bic r5, r5, #0x4a @ clear IRQ, EA, nET bits
|
||||
orr r5, r5, #0x31 @ enable NS, AW, FW bits
|
||||
Index: u-boot-2015.10-rc4/include/configs/arndale.h
|
||||
===================================================================
|
||||
--- u-boot-2015.10-rc4.orig/include/configs/arndale.h
|
||||
+++ u-boot-2015.10-rc4/include/configs/arndale.h
|
||||
@@ -49,6 +49,10 @@
|
||||
/* The PERIPHBASE in the CBAR register is wrong on the Arndale, so override it */
|
||||
#define CONFIG_ARM_GIC_BASE_ADDRESS 0x10480000
|
||||
|
||||
+/* CPU Errata */
|
||||
+#define CONFIG_ARM_ERRATA_773022
|
||||
+#define CONFIG_ARM_ERRATA_774769
|
||||
+
|
||||
/* Power */
|
||||
#define CONFIG_POWER
|
||||
#define CONFIG_POWER_I2C
|
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d9f8b62304d36aaa232d2f3c4d2d33f7177e12c6a707aca05a4cd4e058ba6655
|
||||
size 10397260
|
3
u-boot-2015.10-rc5.tar.bz2
Normal file
3
u-boot-2015.10-rc5.tar.bz2
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2c623632486fb0efed08a8017218bf657b50636cb3a0e518de31434295783737
|
||||
size 10422591
|
@@ -1,3 +1,10 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Oct 13 06:58:38 UTC 2015 - guillaume@opensuse.org
|
||||
|
||||
- Update to 2015.10-rc5
|
||||
- Remove upstreamed patch:
|
||||
* arndale-apply-cortex-a15-erratas.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 8 09:27:15 UTC 2015 - guillaume@opensuse.org
|
||||
|
||||
|
@@ -25,10 +25,10 @@
|
||||
%define cuboxi_spl 0
|
||||
|
||||
# archive_version differs from version for RC version only
|
||||
%define archive_version 2015.10-rc4
|
||||
%define archive_version 2015.10-rc5
|
||||
|
||||
Name: u-boot-a10-olinuxino-lime
|
||||
Version: 2015.10~rc4
|
||||
Version: 2015.10~rc5
|
||||
Release: 0
|
||||
Summary: The u-boot firmware for the a10-olinuxino-lime arm platform
|
||||
License: GPL-2.0
|
||||
@@ -40,9 +40,6 @@ Source300: u-boot-rpmlintrc
|
||||
# Odroid patches
|
||||
Patch10: 0001-odroid-replace-fatload-with-load-to-be-able-to-use-E.patch
|
||||
Patch11: 0002-odroid-Add-boot-script-boot.scr-support.patch
|
||||
# openSUSE fixes hopefully going upstream soon
|
||||
# https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html
|
||||
Patch50: arndale-apply-cortex-a15-erratas.patch
|
||||
# Marvell boards support is non-free licensed, and we don't need it (bnc#773824)
|
||||
Patch99: drop-marvell.patch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
@@ -73,10 +70,8 @@ This package contains documentation for u-boot firmware
|
||||
%setup -q -n u-boot-%{archive_version}
|
||||
%patch10 -p1
|
||||
%patch11 -p1
|
||||
%patch50 -p1
|
||||
# is non-free licensed, and we don't need it (bnc#773824)
|
||||
rm -rf board/Marvell
|
||||
# Any custom patches to be applied on top of mainline u-boot
|
||||
%patch99 -p1
|
||||
|
||||
%build
|
||||
|
@@ -1,3 +1,10 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Oct 13 06:58:38 UTC 2015 - guillaume@opensuse.org
|
||||
|
||||
- Update to 2015.10-rc5
|
||||
- Remove upstreamed patch:
|
||||
* arndale-apply-cortex-a15-erratas.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 8 09:27:15 UTC 2015 - guillaume@opensuse.org
|
||||
|
||||
|
@@ -25,10 +25,10 @@
|
||||
%define cuboxi_spl 0
|
||||
|
||||
# archive_version differs from version for RC version only
|
||||
%define archive_version 2015.10-rc4
|
||||
%define archive_version 2015.10-rc5
|
||||
|
||||
Name: u-boot-a13-olinuxino
|
||||
Version: 2015.10~rc4
|
||||
Version: 2015.10~rc5
|
||||
Release: 0
|
||||
Summary: The u-boot firmware for the a13-olinuxino arm platform
|
||||
License: GPL-2.0
|
||||
@@ -40,9 +40,6 @@ Source300: u-boot-rpmlintrc
|
||||
# Odroid patches
|
||||
Patch10: 0001-odroid-replace-fatload-with-load-to-be-able-to-use-E.patch
|
||||
Patch11: 0002-odroid-Add-boot-script-boot.scr-support.patch
|
||||
# openSUSE fixes hopefully going upstream soon
|
||||
# https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html
|
||||
Patch50: arndale-apply-cortex-a15-erratas.patch
|
||||
# Marvell boards support is non-free licensed, and we don't need it (bnc#773824)
|
||||
Patch99: drop-marvell.patch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
@@ -73,10 +70,8 @@ This package contains documentation for u-boot firmware
|
||||
%setup -q -n u-boot-%{archive_version}
|
||||
%patch10 -p1
|
||||
%patch11 -p1
|
||||
%patch50 -p1
|
||||
# is non-free licensed, and we don't need it (bnc#773824)
|
||||
rm -rf board/Marvell
|
||||
# Any custom patches to be applied on top of mainline u-boot
|
||||
%patch99 -p1
|
||||
|
||||
%build
|
||||
|
@@ -1,3 +1,10 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Oct 13 06:58:38 UTC 2015 - guillaume@opensuse.org
|
||||
|
||||
- Update to 2015.10-rc5
|
||||
- Remove upstreamed patch:
|
||||
* arndale-apply-cortex-a15-erratas.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 8 09:27:15 UTC 2015 - guillaume@opensuse.org
|
||||
|
||||
|
@@ -25,10 +25,10 @@
|
||||
%define cuboxi_spl 0
|
||||
|
||||
# archive_version differs from version for RC version only
|
||||
%define archive_version 2015.10-rc4
|
||||
%define archive_version 2015.10-rc5
|
||||
|
||||
Name: u-boot-a13-olinuxinom
|
||||
Version: 2015.10~rc4
|
||||
Version: 2015.10~rc5
|
||||
Release: 0
|
||||
Summary: The u-boot firmware for the a13-olinuxinom arm platform
|
||||
License: GPL-2.0
|
||||
@@ -40,9 +40,6 @@ Source300: u-boot-rpmlintrc
|
||||
# Odroid patches
|
||||
Patch10: 0001-odroid-replace-fatload-with-load-to-be-able-to-use-E.patch
|
||||
Patch11: 0002-odroid-Add-boot-script-boot.scr-support.patch
|
||||
# openSUSE fixes hopefully going upstream soon
|
||||
# https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html
|
||||
Patch50: arndale-apply-cortex-a15-erratas.patch
|
||||
# Marvell boards support is non-free licensed, and we don't need it (bnc#773824)
|
||||
Patch99: drop-marvell.patch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
@@ -73,10 +70,8 @@ This package contains documentation for u-boot firmware
|
||||
%setup -q -n u-boot-%{archive_version}
|
||||
%patch10 -p1
|
||||
%patch11 -p1
|
||||
%patch50 -p1
|
||||
# is non-free licensed, and we don't need it (bnc#773824)
|
||||
rm -rf board/Marvell
|
||||
# Any custom patches to be applied on top of mainline u-boot
|
||||
%patch99 -p1
|
||||
|
||||
%build
|
||||
|
@@ -1,3 +1,10 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Oct 13 06:58:38 UTC 2015 - guillaume@opensuse.org
|
||||
|
||||
- Update to 2015.10-rc5
|
||||
- Remove upstreamed patch:
|
||||
* arndale-apply-cortex-a15-erratas.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 8 09:27:15 UTC 2015 - guillaume@opensuse.org
|
||||
|
||||
|
@@ -25,10 +25,10 @@
|
||||
%define cuboxi_spl 0
|
||||
|
||||
# archive_version differs from version for RC version only
|
||||
%define archive_version 2015.10-rc4
|
||||
%define archive_version 2015.10-rc5
|
||||
|
||||
Name: u-boot-a20-olinuxino-lime
|
||||
Version: 2015.10~rc4
|
||||
Version: 2015.10~rc5
|
||||
Release: 0
|
||||
Summary: The u-boot firmware for the a20-olinuxino-lime arm platform
|
||||
License: GPL-2.0
|
||||
@@ -40,9 +40,6 @@ Source300: u-boot-rpmlintrc
|
||||
# Odroid patches
|
||||
Patch10: 0001-odroid-replace-fatload-with-load-to-be-able-to-use-E.patch
|
||||
Patch11: 0002-odroid-Add-boot-script-boot.scr-support.patch
|
||||
# openSUSE fixes hopefully going upstream soon
|
||||
# https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html
|
||||
Patch50: arndale-apply-cortex-a15-erratas.patch
|
||||
# Marvell boards support is non-free licensed, and we don't need it (bnc#773824)
|
||||
Patch99: drop-marvell.patch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
@@ -73,10 +70,8 @@ This package contains documentation for u-boot firmware
|
||||
%setup -q -n u-boot-%{archive_version}
|
||||
%patch10 -p1
|
||||
%patch11 -p1
|
||||
%patch50 -p1
|
||||
# is non-free licensed, and we don't need it (bnc#773824)
|
||||
rm -rf board/Marvell
|
||||
# Any custom patches to be applied on top of mainline u-boot
|
||||
%patch99 -p1
|
||||
|
||||
%build
|
||||
|
@@ -1,3 +1,10 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Oct 13 06:58:38 UTC 2015 - guillaume@opensuse.org
|
||||
|
||||
- Update to 2015.10-rc5
|
||||
- Remove upstreamed patch:
|
||||
* arndale-apply-cortex-a15-erratas.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 8 09:27:15 UTC 2015 - guillaume@opensuse.org
|
||||
|
||||
|
@@ -25,10 +25,10 @@
|
||||
%define cuboxi_spl 0
|
||||
|
||||
# archive_version differs from version for RC version only
|
||||
%define archive_version 2015.10-rc4
|
||||
%define archive_version 2015.10-rc5
|
||||
|
||||
Name: u-boot-a20-olinuxino-lime2
|
||||
Version: 2015.10~rc4
|
||||
Version: 2015.10~rc5
|
||||
Release: 0
|
||||
Summary: The u-boot firmware for the a20-olinuxino-lime2 arm platform
|
||||
License: GPL-2.0
|
||||
@@ -40,9 +40,6 @@ Source300: u-boot-rpmlintrc
|
||||
# Odroid patches
|
||||
Patch10: 0001-odroid-replace-fatload-with-load-to-be-able-to-use-E.patch
|
||||
Patch11: 0002-odroid-Add-boot-script-boot.scr-support.patch
|
||||
# openSUSE fixes hopefully going upstream soon
|
||||
# https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html
|
||||
Patch50: arndale-apply-cortex-a15-erratas.patch
|
||||
# Marvell boards support is non-free licensed, and we don't need it (bnc#773824)
|
||||
Patch99: drop-marvell.patch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
@@ -73,10 +70,8 @@ This package contains documentation for u-boot firmware
|
||||
%setup -q -n u-boot-%{archive_version}
|
||||
%patch10 -p1
|
||||
%patch11 -p1
|
||||
%patch50 -p1
|
||||
# is non-free licensed, and we don't need it (bnc#773824)
|
||||
rm -rf board/Marvell
|
||||
# Any custom patches to be applied on top of mainline u-boot
|
||||
%patch99 -p1
|
||||
|
||||
%build
|
||||
|
@@ -1,3 +1,10 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Oct 13 06:58:38 UTC 2015 - guillaume@opensuse.org
|
||||
|
||||
- Update to 2015.10-rc5
|
||||
- Remove upstreamed patch:
|
||||
* arndale-apply-cortex-a15-erratas.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 8 09:27:15 UTC 2015 - guillaume@opensuse.org
|
||||
|
||||
|
@@ -25,10 +25,10 @@
|
||||
%define cuboxi_spl 0
|
||||
|
||||
# archive_version differs from version for RC version only
|
||||
%define archive_version 2015.10-rc4
|
||||
%define archive_version 2015.10-rc5
|
||||
|
||||
Name: u-boot-a20-olinuxinomicro
|
||||
Version: 2015.10~rc4
|
||||
Version: 2015.10~rc5
|
||||
Release: 0
|
||||
Summary: The u-boot firmware for the a20-olinuxinomicro arm platform
|
||||
License: GPL-2.0
|
||||
@@ -40,9 +40,6 @@ Source300: u-boot-rpmlintrc
|
||||
# Odroid patches
|
||||
Patch10: 0001-odroid-replace-fatload-with-load-to-be-able-to-use-E.patch
|
||||
Patch11: 0002-odroid-Add-boot-script-boot.scr-support.patch
|
||||
# openSUSE fixes hopefully going upstream soon
|
||||
# https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html
|
||||
Patch50: arndale-apply-cortex-a15-erratas.patch
|
||||
# Marvell boards support is non-free licensed, and we don't need it (bnc#773824)
|
||||
Patch99: drop-marvell.patch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
@@ -73,10 +70,8 @@ This package contains documentation for u-boot firmware
|
||||
%setup -q -n u-boot-%{archive_version}
|
||||
%patch10 -p1
|
||||
%patch11 -p1
|
||||
%patch50 -p1
|
||||
# is non-free licensed, and we don't need it (bnc#773824)
|
||||
rm -rf board/Marvell
|
||||
# Any custom patches to be applied on top of mainline u-boot
|
||||
%patch99 -p1
|
||||
|
||||
%build
|
||||
|
@@ -1,3 +1,10 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Oct 13 06:58:38 UTC 2015 - guillaume@opensuse.org
|
||||
|
||||
- Update to 2015.10-rc5
|
||||
- Remove upstreamed patch:
|
||||
* arndale-apply-cortex-a15-erratas.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 8 09:27:15 UTC 2015 - guillaume@opensuse.org
|
||||
|
||||
|
@@ -25,10 +25,10 @@
|
||||
%define cuboxi_spl 0
|
||||
|
||||
# archive_version differs from version for RC version only
|
||||
%define archive_version 2015.10-rc4
|
||||
%define archive_version 2015.10-rc5
|
||||
|
||||
Name: u-boot-am335xevm
|
||||
Version: 2015.10~rc4
|
||||
Version: 2015.10~rc5
|
||||
Release: 0
|
||||
Summary: The u-boot firmware for the am335xevm arm platform
|
||||
License: GPL-2.0
|
||||
@@ -40,9 +40,6 @@ Source300: u-boot-rpmlintrc
|
||||
# Odroid patches
|
||||
Patch10: 0001-odroid-replace-fatload-with-load-to-be-able-to-use-E.patch
|
||||
Patch11: 0002-odroid-Add-boot-script-boot.scr-support.patch
|
||||
# openSUSE fixes hopefully going upstream soon
|
||||
# https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html
|
||||
Patch50: arndale-apply-cortex-a15-erratas.patch
|
||||
# Marvell boards support is non-free licensed, and we don't need it (bnc#773824)
|
||||
Patch99: drop-marvell.patch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
@@ -73,10 +70,8 @@ This package contains documentation for u-boot firmware
|
||||
%setup -q -n u-boot-%{archive_version}
|
||||
%patch10 -p1
|
||||
%patch11 -p1
|
||||
%patch50 -p1
|
||||
# is non-free licensed, and we don't need it (bnc#773824)
|
||||
rm -rf board/Marvell
|
||||
# Any custom patches to be applied on top of mainline u-boot
|
||||
%patch99 -p1
|
||||
|
||||
%build
|
||||
|
@@ -1,3 +1,10 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Oct 13 06:58:38 UTC 2015 - guillaume@opensuse.org
|
||||
|
||||
- Update to 2015.10-rc5
|
||||
- Remove upstreamed patch:
|
||||
* arndale-apply-cortex-a15-erratas.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 8 09:27:15 UTC 2015 - guillaume@opensuse.org
|
||||
|
||||
|
@@ -25,10 +25,10 @@
|
||||
%define cuboxi_spl 0
|
||||
|
||||
# archive_version differs from version for RC version only
|
||||
%define archive_version 2015.10-rc4
|
||||
%define archive_version 2015.10-rc5
|
||||
|
||||
Name: u-boot-arndale
|
||||
Version: 2015.10~rc4
|
||||
Version: 2015.10~rc5
|
||||
Release: 0
|
||||
Summary: The u-boot firmware for the arndale arm platform
|
||||
License: GPL-2.0
|
||||
@@ -40,9 +40,6 @@ Source300: u-boot-rpmlintrc
|
||||
# Odroid patches
|
||||
Patch10: 0001-odroid-replace-fatload-with-load-to-be-able-to-use-E.patch
|
||||
Patch11: 0002-odroid-Add-boot-script-boot.scr-support.patch
|
||||
# openSUSE fixes hopefully going upstream soon
|
||||
# https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html
|
||||
Patch50: arndale-apply-cortex-a15-erratas.patch
|
||||
# Marvell boards support is non-free licensed, and we don't need it (bnc#773824)
|
||||
Patch99: drop-marvell.patch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
@@ -73,10 +70,8 @@ This package contains documentation for u-boot firmware
|
||||
%setup -q -n u-boot-%{archive_version}
|
||||
%patch10 -p1
|
||||
%patch11 -p1
|
||||
%patch50 -p1
|
||||
# is non-free licensed, and we don't need it (bnc#773824)
|
||||
rm -rf board/Marvell
|
||||
# Any custom patches to be applied on top of mainline u-boot
|
||||
%patch99 -p1
|
||||
|
||||
%build
|
||||
|
@@ -1,3 +1,10 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Oct 13 06:58:38 UTC 2015 - guillaume@opensuse.org
|
||||
|
||||
- Update to 2015.10-rc5
|
||||
- Remove upstreamed patch:
|
||||
* arndale-apply-cortex-a15-erratas.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 8 09:27:15 UTC 2015 - guillaume@opensuse.org
|
||||
|
||||
|
@@ -25,10 +25,10 @@
|
||||
%define cuboxi_spl 0
|
||||
|
||||
# archive_version differs from version for RC version only
|
||||
%define archive_version 2015.10-rc4
|
||||
%define archive_version 2015.10-rc5
|
||||
|
||||
Name: u-boot-bananapi
|
||||
Version: 2015.10~rc4
|
||||
Version: 2015.10~rc5
|
||||
Release: 0
|
||||
Summary: The u-boot firmware for the bananapi arm platform
|
||||
License: GPL-2.0
|
||||
@@ -40,9 +40,6 @@ Source300: u-boot-rpmlintrc
|
||||
# Odroid patches
|
||||
Patch10: 0001-odroid-replace-fatload-with-load-to-be-able-to-use-E.patch
|
||||
Patch11: 0002-odroid-Add-boot-script-boot.scr-support.patch
|
||||
# openSUSE fixes hopefully going upstream soon
|
||||
# https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html
|
||||
Patch50: arndale-apply-cortex-a15-erratas.patch
|
||||
# Marvell boards support is non-free licensed, and we don't need it (bnc#773824)
|
||||
Patch99: drop-marvell.patch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
@@ -73,10 +70,8 @@ This package contains documentation for u-boot firmware
|
||||
%setup -q -n u-boot-%{archive_version}
|
||||
%patch10 -p1
|
||||
%patch11 -p1
|
||||
%patch50 -p1
|
||||
# is non-free licensed, and we don't need it (bnc#773824)
|
||||
rm -rf board/Marvell
|
||||
# Any custom patches to be applied on top of mainline u-boot
|
||||
%patch99 -p1
|
||||
|
||||
%build
|
||||
|
@@ -1,3 +1,10 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Oct 13 06:58:38 UTC 2015 - guillaume@opensuse.org
|
||||
|
||||
- Update to 2015.10-rc5
|
||||
- Remove upstreamed patch:
|
||||
* arndale-apply-cortex-a15-erratas.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 8 09:27:15 UTC 2015 - guillaume@opensuse.org
|
||||
|
||||
|
@@ -25,10 +25,10 @@
|
||||
%define cuboxi_spl 0
|
||||
|
||||
# archive_version differs from version for RC version only
|
||||
%define archive_version 2015.10-rc4
|
||||
%define archive_version 2015.10-rc5
|
||||
|
||||
Name: u-boot-colibrit20
|
||||
Version: 2015.10~rc4
|
||||
Version: 2015.10~rc5
|
||||
Release: 0
|
||||
Summary: The u-boot firmware for the colibrit20 arm platform
|
||||
License: GPL-2.0
|
||||
@@ -40,9 +40,6 @@ Source300: u-boot-rpmlintrc
|
||||
# Odroid patches
|
||||
Patch10: 0001-odroid-replace-fatload-with-load-to-be-able-to-use-E.patch
|
||||
Patch11: 0002-odroid-Add-boot-script-boot.scr-support.patch
|
||||
# openSUSE fixes hopefully going upstream soon
|
||||
# https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html
|
||||
Patch50: arndale-apply-cortex-a15-erratas.patch
|
||||
# Marvell boards support is non-free licensed, and we don't need it (bnc#773824)
|
||||
Patch99: drop-marvell.patch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
@@ -73,10 +70,8 @@ This package contains documentation for u-boot firmware
|
||||
%setup -q -n u-boot-%{archive_version}
|
||||
%patch10 -p1
|
||||
%patch11 -p1
|
||||
%patch50 -p1
|
||||
# is non-free licensed, and we don't need it (bnc#773824)
|
||||
rm -rf board/Marvell
|
||||
# Any custom patches to be applied on top of mainline u-boot
|
||||
%patch99 -p1
|
||||
|
||||
%build
|
||||
|
@@ -1,3 +1,10 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Oct 13 06:58:38 UTC 2015 - guillaume@opensuse.org
|
||||
|
||||
- Update to 2015.10-rc5
|
||||
- Remove upstreamed patch:
|
||||
* arndale-apply-cortex-a15-erratas.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 8 09:27:15 UTC 2015 - guillaume@opensuse.org
|
||||
|
||||
|
@@ -25,10 +25,10 @@
|
||||
%define cuboxi_spl 0
|
||||
|
||||
# archive_version differs from version for RC version only
|
||||
%define archive_version 2015.10-rc4
|
||||
%define archive_version 2015.10-rc5
|
||||
|
||||
Name: u-boot-cubieboard
|
||||
Version: 2015.10~rc4
|
||||
Version: 2015.10~rc5
|
||||
Release: 0
|
||||
Summary: The u-boot firmware for the cubieboard arm platform
|
||||
License: GPL-2.0
|
||||
@@ -40,9 +40,6 @@ Source300: u-boot-rpmlintrc
|
||||
# Odroid patches
|
||||
Patch10: 0001-odroid-replace-fatload-with-load-to-be-able-to-use-E.patch
|
||||
Patch11: 0002-odroid-Add-boot-script-boot.scr-support.patch
|
||||
# openSUSE fixes hopefully going upstream soon
|
||||
# https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html
|
||||
Patch50: arndale-apply-cortex-a15-erratas.patch
|
||||
# Marvell boards support is non-free licensed, and we don't need it (bnc#773824)
|
||||
Patch99: drop-marvell.patch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
@@ -73,10 +70,8 @@ This package contains documentation for u-boot firmware
|
||||
%setup -q -n u-boot-%{archive_version}
|
||||
%patch10 -p1
|
||||
%patch11 -p1
|
||||
%patch50 -p1
|
||||
# is non-free licensed, and we don't need it (bnc#773824)
|
||||
rm -rf board/Marvell
|
||||
# Any custom patches to be applied on top of mainline u-boot
|
||||
%patch99 -p1
|
||||
|
||||
%build
|
||||
|
@@ -1,3 +1,10 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Oct 13 06:58:38 UTC 2015 - guillaume@opensuse.org
|
||||
|
||||
- Update to 2015.10-rc5
|
||||
- Remove upstreamed patch:
|
||||
* arndale-apply-cortex-a15-erratas.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 8 09:27:15 UTC 2015 - guillaume@opensuse.org
|
||||
|
||||
|
@@ -25,10 +25,10 @@
|
||||
%define cuboxi_spl 0
|
||||
|
||||
# archive_version differs from version for RC version only
|
||||
%define archive_version 2015.10-rc4
|
||||
%define archive_version 2015.10-rc5
|
||||
|
||||
Name: u-boot-cubieboard2
|
||||
Version: 2015.10~rc4
|
||||
Version: 2015.10~rc5
|
||||
Release: 0
|
||||
Summary: The u-boot firmware for the cubieboard2 arm platform
|
||||
License: GPL-2.0
|
||||
@@ -40,9 +40,6 @@ Source300: u-boot-rpmlintrc
|
||||
# Odroid patches
|
||||
Patch10: 0001-odroid-replace-fatload-with-load-to-be-able-to-use-E.patch
|
||||
Patch11: 0002-odroid-Add-boot-script-boot.scr-support.patch
|
||||
# openSUSE fixes hopefully going upstream soon
|
||||
# https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html
|
||||
Patch50: arndale-apply-cortex-a15-erratas.patch
|
||||
# Marvell boards support is non-free licensed, and we don't need it (bnc#773824)
|
||||
Patch99: drop-marvell.patch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
@@ -73,10 +70,8 @@ This package contains documentation for u-boot firmware
|
||||
%setup -q -n u-boot-%{archive_version}
|
||||
%patch10 -p1
|
||||
%patch11 -p1
|
||||
%patch50 -p1
|
||||
# is non-free licensed, and we don't need it (bnc#773824)
|
||||
rm -rf board/Marvell
|
||||
# Any custom patches to be applied on top of mainline u-boot
|
||||
%patch99 -p1
|
||||
|
||||
%build
|
||||
|
@@ -1,3 +1,10 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Oct 13 06:58:38 UTC 2015 - guillaume@opensuse.org
|
||||
|
||||
- Update to 2015.10-rc5
|
||||
- Remove upstreamed patch:
|
||||
* arndale-apply-cortex-a15-erratas.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 8 09:27:15 UTC 2015 - guillaume@opensuse.org
|
||||
|
||||
|
@@ -25,10 +25,10 @@
|
||||
%define cuboxi_spl 0
|
||||
|
||||
# archive_version differs from version for RC version only
|
||||
%define archive_version 2015.10-rc4
|
||||
%define archive_version 2015.10-rc5
|
||||
|
||||
Name: u-boot-cubietruck
|
||||
Version: 2015.10~rc4
|
||||
Version: 2015.10~rc5
|
||||
Release: 0
|
||||
Summary: The u-boot firmware for the cubietruck arm platform
|
||||
License: GPL-2.0
|
||||
@@ -40,9 +40,6 @@ Source300: u-boot-rpmlintrc
|
||||
# Odroid patches
|
||||
Patch10: 0001-odroid-replace-fatload-with-load-to-be-able-to-use-E.patch
|
||||
Patch11: 0002-odroid-Add-boot-script-boot.scr-support.patch
|
||||
# openSUSE fixes hopefully going upstream soon
|
||||
# https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html
|
||||
Patch50: arndale-apply-cortex-a15-erratas.patch
|
||||
# Marvell boards support is non-free licensed, and we don't need it (bnc#773824)
|
||||
Patch99: drop-marvell.patch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
@@ -73,10 +70,8 @@ This package contains documentation for u-boot firmware
|
||||
%setup -q -n u-boot-%{archive_version}
|
||||
%patch10 -p1
|
||||
%patch11 -p1
|
||||
%patch50 -p1
|
||||
# is non-free licensed, and we don't need it (bnc#773824)
|
||||
rm -rf board/Marvell
|
||||
# Any custom patches to be applied on top of mainline u-boot
|
||||
%patch99 -p1
|
||||
|
||||
%build
|
||||
|
@@ -1,3 +1,10 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Oct 13 06:58:38 UTC 2015 - guillaume@opensuse.org
|
||||
|
||||
- Update to 2015.10-rc5
|
||||
- Remove upstreamed patch:
|
||||
* arndale-apply-cortex-a15-erratas.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 8 09:27:15 UTC 2015 - guillaume@opensuse.org
|
||||
|
||||
|
@@ -25,10 +25,10 @@
|
||||
%define cuboxi_spl 0
|
||||
|
||||
# archive_version differs from version for RC version only
|
||||
%define archive_version 2015.10-rc4
|
||||
%define archive_version 2015.10-rc5
|
||||
|
||||
Name: u-boot-firefly-rk3288
|
||||
Version: 2015.10~rc4
|
||||
Version: 2015.10~rc5
|
||||
Release: 0
|
||||
Summary: The u-boot firmware for the firefly-rk3288 arm platform
|
||||
License: GPL-2.0
|
||||
@@ -40,9 +40,6 @@ Source300: u-boot-rpmlintrc
|
||||
# Odroid patches
|
||||
Patch10: 0001-odroid-replace-fatload-with-load-to-be-able-to-use-E.patch
|
||||
Patch11: 0002-odroid-Add-boot-script-boot.scr-support.patch
|
||||
# openSUSE fixes hopefully going upstream soon
|
||||
# https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html
|
||||
Patch50: arndale-apply-cortex-a15-erratas.patch
|
||||
# Marvell boards support is non-free licensed, and we don't need it (bnc#773824)
|
||||
Patch99: drop-marvell.patch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
@@ -73,10 +70,8 @@ This package contains documentation for u-boot firmware
|
||||
%setup -q -n u-boot-%{archive_version}
|
||||
%patch10 -p1
|
||||
%patch11 -p1
|
||||
%patch50 -p1
|
||||
# is non-free licensed, and we don't need it (bnc#773824)
|
||||
rm -rf board/Marvell
|
||||
# Any custom patches to be applied on top of mainline u-boot
|
||||
%patch99 -p1
|
||||
|
||||
%build
|
||||
|
@@ -1,3 +1,10 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Oct 13 06:58:38 UTC 2015 - guillaume@opensuse.org
|
||||
|
||||
- Update to 2015.10-rc5
|
||||
- Remove upstreamed patch:
|
||||
* arndale-apply-cortex-a15-erratas.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 8 09:27:15 UTC 2015 - guillaume@opensuse.org
|
||||
|
||||
|
@@ -25,10 +25,10 @@
|
||||
%define cuboxi_spl 0
|
||||
|
||||
# archive_version differs from version for RC version only
|
||||
%define archive_version 2015.10-rc4
|
||||
%define archive_version 2015.10-rc5
|
||||
|
||||
Name: u-boot-highbank
|
||||
Version: 2015.10~rc4
|
||||
Version: 2015.10~rc5
|
||||
Release: 0
|
||||
Summary: The u-boot firmware for the highbank arm platform
|
||||
License: GPL-2.0
|
||||
@@ -40,9 +40,6 @@ Source300: u-boot-rpmlintrc
|
||||
# Odroid patches
|
||||
Patch10: 0001-odroid-replace-fatload-with-load-to-be-able-to-use-E.patch
|
||||
Patch11: 0002-odroid-Add-boot-script-boot.scr-support.patch
|
||||
# openSUSE fixes hopefully going upstream soon
|
||||
# https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html
|
||||
Patch50: arndale-apply-cortex-a15-erratas.patch
|
||||
# Marvell boards support is non-free licensed, and we don't need it (bnc#773824)
|
||||
Patch99: drop-marvell.patch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
@@ -73,10 +70,8 @@ This package contains documentation for u-boot firmware
|
||||
%setup -q -n u-boot-%{archive_version}
|
||||
%patch10 -p1
|
||||
%patch11 -p1
|
||||
%patch50 -p1
|
||||
# is non-free licensed, and we don't need it (bnc#773824)
|
||||
rm -rf board/Marvell
|
||||
# Any custom patches to be applied on top of mainline u-boot
|
||||
%patch99 -p1
|
||||
|
||||
%build
|
||||
|
@@ -1,3 +1,10 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Oct 13 06:58:38 UTC 2015 - guillaume@opensuse.org
|
||||
|
||||
- Update to 2015.10-rc5
|
||||
- Remove upstreamed patch:
|
||||
* arndale-apply-cortex-a15-erratas.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 8 09:27:15 UTC 2015 - guillaume@opensuse.org
|
||||
|
||||
|
@@ -25,10 +25,10 @@
|
||||
%define cuboxi_spl 0
|
||||
|
||||
# archive_version differs from version for RC version only
|
||||
%define archive_version 2015.10-rc4
|
||||
%define archive_version 2015.10-rc5
|
||||
|
||||
Name: u-boot-jetson-tk1
|
||||
Version: 2015.10~rc4
|
||||
Version: 2015.10~rc5
|
||||
Release: 0
|
||||
Summary: The u-boot firmware for the jetson-tk1 arm platform
|
||||
License: GPL-2.0
|
||||
@@ -40,9 +40,6 @@ Source300: u-boot-rpmlintrc
|
||||
# Odroid patches
|
||||
Patch10: 0001-odroid-replace-fatload-with-load-to-be-able-to-use-E.patch
|
||||
Patch11: 0002-odroid-Add-boot-script-boot.scr-support.patch
|
||||
# openSUSE fixes hopefully going upstream soon
|
||||
# https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html
|
||||
Patch50: arndale-apply-cortex-a15-erratas.patch
|
||||
# Marvell boards support is non-free licensed, and we don't need it (bnc#773824)
|
||||
Patch99: drop-marvell.patch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
@@ -73,10 +70,8 @@ This package contains documentation for u-boot firmware
|
||||
%setup -q -n u-boot-%{archive_version}
|
||||
%patch10 -p1
|
||||
%patch11 -p1
|
||||
%patch50 -p1
|
||||
# is non-free licensed, and we don't need it (bnc#773824)
|
||||
rm -rf board/Marvell
|
||||
# Any custom patches to be applied on top of mainline u-boot
|
||||
%patch99 -p1
|
||||
|
||||
%build
|
||||
|
@@ -1,3 +1,10 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Oct 13 06:58:38 UTC 2015 - guillaume@opensuse.org
|
||||
|
||||
- Update to 2015.10-rc5
|
||||
- Remove upstreamed patch:
|
||||
* arndale-apply-cortex-a15-erratas.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 8 09:27:15 UTC 2015 - guillaume@opensuse.org
|
||||
|
||||
|
@@ -25,10 +25,10 @@
|
||||
%define cuboxi_spl 0
|
||||
|
||||
# archive_version differs from version for RC version only
|
||||
%define archive_version 2015.10-rc4
|
||||
%define archive_version 2015.10-rc5
|
||||
|
||||
Name: u-boot-melea1000
|
||||
Version: 2015.10~rc4
|
||||
Version: 2015.10~rc5
|
||||
Release: 0
|
||||
Summary: The u-boot firmware for the melea1000 arm platform
|
||||
License: GPL-2.0
|
||||
@@ -40,9 +40,6 @@ Source300: u-boot-rpmlintrc
|
||||
# Odroid patches
|
||||
Patch10: 0001-odroid-replace-fatload-with-load-to-be-able-to-use-E.patch
|
||||
Patch11: 0002-odroid-Add-boot-script-boot.scr-support.patch
|
||||
# openSUSE fixes hopefully going upstream soon
|
||||
# https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html
|
||||
Patch50: arndale-apply-cortex-a15-erratas.patch
|
||||
# Marvell boards support is non-free licensed, and we don't need it (bnc#773824)
|
||||
Patch99: drop-marvell.patch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
@@ -73,10 +70,8 @@ This package contains documentation for u-boot firmware
|
||||
%setup -q -n u-boot-%{archive_version}
|
||||
%patch10 -p1
|
||||
%patch11 -p1
|
||||
%patch50 -p1
|
||||
# is non-free licensed, and we don't need it (bnc#773824)
|
||||
rm -rf board/Marvell
|
||||
# Any custom patches to be applied on top of mainline u-boot
|
||||
%patch99 -p1
|
||||
|
||||
%build
|
||||
|
@@ -1,3 +1,10 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Oct 13 06:58:38 UTC 2015 - guillaume@opensuse.org
|
||||
|
||||
- Update to 2015.10-rc5
|
||||
- Remove upstreamed patch:
|
||||
* arndale-apply-cortex-a15-erratas.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 8 09:27:15 UTC 2015 - guillaume@opensuse.org
|
||||
|
||||
|
@@ -25,10 +25,10 @@
|
||||
%define cuboxi_spl 0
|
||||
|
||||
# archive_version differs from version for RC version only
|
||||
%define archive_version 2015.10-rc4
|
||||
%define archive_version 2015.10-rc5
|
||||
|
||||
Name: u-boot-merriia80optimus
|
||||
Version: 2015.10~rc4
|
||||
Version: 2015.10~rc5
|
||||
Release: 0
|
||||
Summary: The u-boot firmware for the merriia80optimus arm platform
|
||||
License: GPL-2.0
|
||||
@@ -40,9 +40,6 @@ Source300: u-boot-rpmlintrc
|
||||
# Odroid patches
|
||||
Patch10: 0001-odroid-replace-fatload-with-load-to-be-able-to-use-E.patch
|
||||
Patch11: 0002-odroid-Add-boot-script-boot.scr-support.patch
|
||||
# openSUSE fixes hopefully going upstream soon
|
||||
# https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html
|
||||
Patch50: arndale-apply-cortex-a15-erratas.patch
|
||||
# Marvell boards support is non-free licensed, and we don't need it (bnc#773824)
|
||||
Patch99: drop-marvell.patch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
@@ -73,10 +70,8 @@ This package contains documentation for u-boot firmware
|
||||
%setup -q -n u-boot-%{archive_version}
|
||||
%patch10 -p1
|
||||
%patch11 -p1
|
||||
%patch50 -p1
|
||||
# is non-free licensed, and we don't need it (bnc#773824)
|
||||
rm -rf board/Marvell
|
||||
# Any custom patches to be applied on top of mainline u-boot
|
||||
%patch99 -p1
|
||||
|
||||
%build
|
||||
|
@@ -1,3 +1,10 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Oct 13 06:58:38 UTC 2015 - guillaume@opensuse.org
|
||||
|
||||
- Update to 2015.10-rc5
|
||||
- Remove upstreamed patch:
|
||||
* arndale-apply-cortex-a15-erratas.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 8 09:27:15 UTC 2015 - guillaume@opensuse.org
|
||||
|
||||
|
@@ -25,10 +25,10 @@
|
||||
%define cuboxi_spl 0
|
||||
|
||||
# archive_version differs from version for RC version only
|
||||
%define archive_version 2015.10-rc4
|
||||
%define archive_version 2015.10-rc5
|
||||
|
||||
Name: u-boot-mx53loco
|
||||
Version: 2015.10~rc4
|
||||
Version: 2015.10~rc5
|
||||
Release: 0
|
||||
Summary: The u-boot firmware for the mx53loco arm platform
|
||||
License: GPL-2.0
|
||||
@@ -40,9 +40,6 @@ Source300: u-boot-rpmlintrc
|
||||
# Odroid patches
|
||||
Patch10: 0001-odroid-replace-fatload-with-load-to-be-able-to-use-E.patch
|
||||
Patch11: 0002-odroid-Add-boot-script-boot.scr-support.patch
|
||||
# openSUSE fixes hopefully going upstream soon
|
||||
# https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html
|
||||
Patch50: arndale-apply-cortex-a15-erratas.patch
|
||||
# Marvell boards support is non-free licensed, and we don't need it (bnc#773824)
|
||||
Patch99: drop-marvell.patch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
@@ -73,10 +70,8 @@ This package contains documentation for u-boot firmware
|
||||
%setup -q -n u-boot-%{archive_version}
|
||||
%patch10 -p1
|
||||
%patch11 -p1
|
||||
%patch50 -p1
|
||||
# is non-free licensed, and we don't need it (bnc#773824)
|
||||
rm -rf board/Marvell
|
||||
# Any custom patches to be applied on top of mainline u-boot
|
||||
%patch99 -p1
|
||||
|
||||
%build
|
||||
|
@@ -1,3 +1,10 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Oct 13 06:58:38 UTC 2015 - guillaume@opensuse.org
|
||||
|
||||
- Update to 2015.10-rc5
|
||||
- Remove upstreamed patch:
|
||||
* arndale-apply-cortex-a15-erratas.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 8 09:27:15 UTC 2015 - guillaume@opensuse.org
|
||||
|
||||
|
@@ -25,10 +25,10 @@
|
||||
%define cuboxi_spl 1
|
||||
|
||||
# archive_version differs from version for RC version only
|
||||
%define archive_version 2015.10-rc4
|
||||
%define archive_version 2015.10-rc5
|
||||
|
||||
Name: u-boot-mx6cuboxi
|
||||
Version: 2015.10~rc4
|
||||
Version: 2015.10~rc5
|
||||
Release: 0
|
||||
Summary: The u-boot firmware for the mx6cuboxi arm platform
|
||||
License: GPL-2.0
|
||||
@@ -40,9 +40,6 @@ Source300: u-boot-rpmlintrc
|
||||
# Odroid patches
|
||||
Patch10: 0001-odroid-replace-fatload-with-load-to-be-able-to-use-E.patch
|
||||
Patch11: 0002-odroid-Add-boot-script-boot.scr-support.patch
|
||||
# openSUSE fixes hopefully going upstream soon
|
||||
# https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html
|
||||
Patch50: arndale-apply-cortex-a15-erratas.patch
|
||||
# Marvell boards support is non-free licensed, and we don't need it (bnc#773824)
|
||||
Patch99: drop-marvell.patch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
@@ -73,10 +70,8 @@ This package contains documentation for u-boot firmware
|
||||
%setup -q -n u-boot-%{archive_version}
|
||||
%patch10 -p1
|
||||
%patch11 -p1
|
||||
%patch50 -p1
|
||||
# is non-free licensed, and we don't need it (bnc#773824)
|
||||
rm -rf board/Marvell
|
||||
# Any custom patches to be applied on top of mainline u-boot
|
||||
%patch99 -p1
|
||||
|
||||
%build
|
||||
|
@@ -1,3 +1,10 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Oct 13 06:58:38 UTC 2015 - guillaume@opensuse.org
|
||||
|
||||
- Update to 2015.10-rc5
|
||||
- Remove upstreamed patch:
|
||||
* arndale-apply-cortex-a15-erratas.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 8 09:27:15 UTC 2015 - guillaume@opensuse.org
|
||||
|
||||
|
@@ -25,10 +25,10 @@
|
||||
%define cuboxi_spl 0
|
||||
|
||||
# archive_version differs from version for RC version only
|
||||
%define archive_version 2015.10-rc4
|
||||
%define archive_version 2015.10-rc5
|
||||
|
||||
Name: u-boot-mx6qsabrelite
|
||||
Version: 2015.10~rc4
|
||||
Version: 2015.10~rc5
|
||||
Release: 0
|
||||
Summary: The u-boot firmware for the mx6qsabrelite arm platform
|
||||
License: GPL-2.0
|
||||
@@ -40,9 +40,6 @@ Source300: u-boot-rpmlintrc
|
||||
# Odroid patches
|
||||
Patch10: 0001-odroid-replace-fatload-with-load-to-be-able-to-use-E.patch
|
||||
Patch11: 0002-odroid-Add-boot-script-boot.scr-support.patch
|
||||
# openSUSE fixes hopefully going upstream soon
|
||||
# https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html
|
||||
Patch50: arndale-apply-cortex-a15-erratas.patch
|
||||
# Marvell boards support is non-free licensed, and we don't need it (bnc#773824)
|
||||
Patch99: drop-marvell.patch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
@@ -73,10 +70,8 @@ This package contains documentation for u-boot firmware
|
||||
%setup -q -n u-boot-%{archive_version}
|
||||
%patch10 -p1
|
||||
%patch11 -p1
|
||||
%patch50 -p1
|
||||
# is non-free licensed, and we don't need it (bnc#773824)
|
||||
rm -rf board/Marvell
|
||||
# Any custom patches to be applied on top of mainline u-boot
|
||||
%patch99 -p1
|
||||
|
||||
%build
|
||||
|
@@ -1,3 +1,10 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Oct 13 06:58:38 UTC 2015 - guillaume@opensuse.org
|
||||
|
||||
- Update to 2015.10-rc5
|
||||
- Remove upstreamed patch:
|
||||
* arndale-apply-cortex-a15-erratas.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 8 09:27:15 UTC 2015 - guillaume@opensuse.org
|
||||
|
||||
|
@@ -25,10 +25,10 @@
|
||||
%define cuboxi_spl 0
|
||||
|
||||
# archive_version differs from version for RC version only
|
||||
%define archive_version 2015.10-rc4
|
||||
%define archive_version 2015.10-rc5
|
||||
|
||||
Name: u-boot-odroid-xu3
|
||||
Version: 2015.10~rc4
|
||||
Version: 2015.10~rc5
|
||||
Release: 0
|
||||
Summary: The u-boot firmware for the odroid-xu3 arm platform
|
||||
License: GPL-2.0
|
||||
@@ -40,9 +40,6 @@ Source300: u-boot-rpmlintrc
|
||||
# Odroid patches
|
||||
Patch10: 0001-odroid-replace-fatload-with-load-to-be-able-to-use-E.patch
|
||||
Patch11: 0002-odroid-Add-boot-script-boot.scr-support.patch
|
||||
# openSUSE fixes hopefully going upstream soon
|
||||
# https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html
|
||||
Patch50: arndale-apply-cortex-a15-erratas.patch
|
||||
# Marvell boards support is non-free licensed, and we don't need it (bnc#773824)
|
||||
Patch99: drop-marvell.patch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
@@ -73,10 +70,8 @@ This package contains documentation for u-boot firmware
|
||||
%setup -q -n u-boot-%{archive_version}
|
||||
%patch10 -p1
|
||||
%patch11 -p1
|
||||
%patch50 -p1
|
||||
# is non-free licensed, and we don't need it (bnc#773824)
|
||||
rm -rf board/Marvell
|
||||
# Any custom patches to be applied on top of mainline u-boot
|
||||
%patch99 -p1
|
||||
|
||||
%build
|
||||
|
@@ -1,3 +1,10 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Oct 13 06:58:38 UTC 2015 - guillaume@opensuse.org
|
||||
|
||||
- Update to 2015.10-rc5
|
||||
- Remove upstreamed patch:
|
||||
* arndale-apply-cortex-a15-erratas.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 8 09:27:15 UTC 2015 - guillaume@opensuse.org
|
||||
|
||||
|
@@ -25,10 +25,10 @@
|
||||
%define cuboxi_spl 0
|
||||
|
||||
# archive_version differs from version for RC version only
|
||||
%define archive_version 2015.10-rc4
|
||||
%define archive_version 2015.10-rc5
|
||||
|
||||
Name: u-boot-odroid
|
||||
Version: 2015.10~rc4
|
||||
Version: 2015.10~rc5
|
||||
Release: 0
|
||||
Summary: The u-boot firmware for the odroid arm platform
|
||||
License: GPL-2.0
|
||||
@@ -40,9 +40,6 @@ Source300: u-boot-rpmlintrc
|
||||
# Odroid patches
|
||||
Patch10: 0001-odroid-replace-fatload-with-load-to-be-able-to-use-E.patch
|
||||
Patch11: 0002-odroid-Add-boot-script-boot.scr-support.patch
|
||||
# openSUSE fixes hopefully going upstream soon
|
||||
# https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html
|
||||
Patch50: arndale-apply-cortex-a15-erratas.patch
|
||||
# Marvell boards support is non-free licensed, and we don't need it (bnc#773824)
|
||||
Patch99: drop-marvell.patch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
@@ -73,10 +70,8 @@ This package contains documentation for u-boot firmware
|
||||
%setup -q -n u-boot-%{archive_version}
|
||||
%patch10 -p1
|
||||
%patch11 -p1
|
||||
%patch50 -p1
|
||||
# is non-free licensed, and we don't need it (bnc#773824)
|
||||
rm -rf board/Marvell
|
||||
# Any custom patches to be applied on top of mainline u-boot
|
||||
%patch99 -p1
|
||||
|
||||
%build
|
||||
|
@@ -1,3 +1,10 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Oct 13 06:58:38 UTC 2015 - guillaume@opensuse.org
|
||||
|
||||
- Update to 2015.10-rc5
|
||||
- Remove upstreamed patch:
|
||||
* arndale-apply-cortex-a15-erratas.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 8 09:27:15 UTC 2015 - guillaume@opensuse.org
|
||||
|
||||
|
@@ -25,10 +25,10 @@
|
||||
%define cuboxi_spl 0
|
||||
|
||||
# archive_version differs from version for RC version only
|
||||
%define archive_version 2015.10-rc4
|
||||
%define archive_version 2015.10-rc5
|
||||
|
||||
Name: u-boot-omap3beagle
|
||||
Version: 2015.10~rc4
|
||||
Version: 2015.10~rc5
|
||||
Release: 0
|
||||
Summary: The u-boot firmware for the omap3beagle arm platform
|
||||
License: GPL-2.0
|
||||
@@ -40,9 +40,6 @@ Source300: u-boot-rpmlintrc
|
||||
# Odroid patches
|
||||
Patch10: 0001-odroid-replace-fatload-with-load-to-be-able-to-use-E.patch
|
||||
Patch11: 0002-odroid-Add-boot-script-boot.scr-support.patch
|
||||
# openSUSE fixes hopefully going upstream soon
|
||||
# https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html
|
||||
Patch50: arndale-apply-cortex-a15-erratas.patch
|
||||
# Marvell boards support is non-free licensed, and we don't need it (bnc#773824)
|
||||
Patch99: drop-marvell.patch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
@@ -73,10 +70,8 @@ This package contains documentation for u-boot firmware
|
||||
%setup -q -n u-boot-%{archive_version}
|
||||
%patch10 -p1
|
||||
%patch11 -p1
|
||||
%patch50 -p1
|
||||
# is non-free licensed, and we don't need it (bnc#773824)
|
||||
rm -rf board/Marvell
|
||||
# Any custom patches to be applied on top of mainline u-boot
|
||||
%patch99 -p1
|
||||
|
||||
%build
|
||||
|
@@ -1,3 +1,10 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Oct 13 06:58:38 UTC 2015 - guillaume@opensuse.org
|
||||
|
||||
- Update to 2015.10-rc5
|
||||
- Remove upstreamed patch:
|
||||
* arndale-apply-cortex-a15-erratas.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 8 09:27:15 UTC 2015 - guillaume@opensuse.org
|
||||
|
||||
|
@@ -25,10 +25,10 @@
|
||||
%define cuboxi_spl 0
|
||||
|
||||
# archive_version differs from version for RC version only
|
||||
%define archive_version 2015.10-rc4
|
||||
%define archive_version 2015.10-rc5
|
||||
|
||||
Name: u-boot-omap4panda
|
||||
Version: 2015.10~rc4
|
||||
Version: 2015.10~rc5
|
||||
Release: 0
|
||||
Summary: The u-boot firmware for the omap4panda arm platform
|
||||
License: GPL-2.0
|
||||
@@ -40,9 +40,6 @@ Source300: u-boot-rpmlintrc
|
||||
# Odroid patches
|
||||
Patch10: 0001-odroid-replace-fatload-with-load-to-be-able-to-use-E.patch
|
||||
Patch11: 0002-odroid-Add-boot-script-boot.scr-support.patch
|
||||
# openSUSE fixes hopefully going upstream soon
|
||||
# https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html
|
||||
Patch50: arndale-apply-cortex-a15-erratas.patch
|
||||
# Marvell boards support is non-free licensed, and we don't need it (bnc#773824)
|
||||
Patch99: drop-marvell.patch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
@@ -73,10 +70,8 @@ This package contains documentation for u-boot firmware
|
||||
%setup -q -n u-boot-%{archive_version}
|
||||
%patch10 -p1
|
||||
%patch11 -p1
|
||||
%patch50 -p1
|
||||
# is non-free licensed, and we don't need it (bnc#773824)
|
||||
rm -rf board/Marvell
|
||||
# Any custom patches to be applied on top of mainline u-boot
|
||||
%patch99 -p1
|
||||
|
||||
%build
|
||||
|
@@ -1,3 +1,10 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Oct 13 06:58:38 UTC 2015 - guillaume@opensuse.org
|
||||
|
||||
- Update to 2015.10-rc5
|
||||
- Remove upstreamed patch:
|
||||
* arndale-apply-cortex-a15-erratas.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 8 09:27:15 UTC 2015 - guillaume@opensuse.org
|
||||
|
||||
|
@@ -25,10 +25,10 @@
|
||||
%define cuboxi_spl 0
|
||||
|
||||
# archive_version differs from version for RC version only
|
||||
%define archive_version 2015.10-rc4
|
||||
%define archive_version 2015.10-rc5
|
||||
|
||||
Name: u-boot-paz00
|
||||
Version: 2015.10~rc4
|
||||
Version: 2015.10~rc5
|
||||
Release: 0
|
||||
Summary: The u-boot firmware for the paz00 arm platform
|
||||
License: GPL-2.0
|
||||
@@ -40,9 +40,6 @@ Source300: u-boot-rpmlintrc
|
||||
# Odroid patches
|
||||
Patch10: 0001-odroid-replace-fatload-with-load-to-be-able-to-use-E.patch
|
||||
Patch11: 0002-odroid-Add-boot-script-boot.scr-support.patch
|
||||
# openSUSE fixes hopefully going upstream soon
|
||||
# https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html
|
||||
Patch50: arndale-apply-cortex-a15-erratas.patch
|
||||
# Marvell boards support is non-free licensed, and we don't need it (bnc#773824)
|
||||
Patch99: drop-marvell.patch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
@@ -73,10 +70,8 @@ This package contains documentation for u-boot firmware
|
||||
%setup -q -n u-boot-%{archive_version}
|
||||
%patch10 -p1
|
||||
%patch11 -p1
|
||||
%patch50 -p1
|
||||
# is non-free licensed, and we don't need it (bnc#773824)
|
||||
rm -rf board/Marvell
|
||||
# Any custom patches to be applied on top of mainline u-boot
|
||||
%patch99 -p1
|
||||
|
||||
%build
|
||||
|
@@ -1,3 +1,10 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Oct 13 06:58:38 UTC 2015 - guillaume@opensuse.org
|
||||
|
||||
- Update to 2015.10-rc5
|
||||
- Remove upstreamed patch:
|
||||
* arndale-apply-cortex-a15-erratas.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 8 09:27:15 UTC 2015 - guillaume@opensuse.org
|
||||
|
||||
|
@@ -25,10 +25,10 @@
|
||||
%define cuboxi_spl 0
|
||||
|
||||
# archive_version differs from version for RC version only
|
||||
%define archive_version 2015.10-rc4
|
||||
%define archive_version 2015.10-rc5
|
||||
|
||||
Name: u-boot-pcm051rev3
|
||||
Version: 2015.10~rc4
|
||||
Version: 2015.10~rc5
|
||||
Release: 0
|
||||
Summary: The u-boot firmware for the pcm051rev3 arm platform
|
||||
License: GPL-2.0
|
||||
@@ -40,9 +40,6 @@ Source300: u-boot-rpmlintrc
|
||||
# Odroid patches
|
||||
Patch10: 0001-odroid-replace-fatload-with-load-to-be-able-to-use-E.patch
|
||||
Patch11: 0002-odroid-Add-boot-script-boot.scr-support.patch
|
||||
# openSUSE fixes hopefully going upstream soon
|
||||
# https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html
|
||||
Patch50: arndale-apply-cortex-a15-erratas.patch
|
||||
# Marvell boards support is non-free licensed, and we don't need it (bnc#773824)
|
||||
Patch99: drop-marvell.patch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
@@ -73,10 +70,8 @@ This package contains documentation for u-boot firmware
|
||||
%setup -q -n u-boot-%{archive_version}
|
||||
%patch10 -p1
|
||||
%patch11 -p1
|
||||
%patch50 -p1
|
||||
# is non-free licensed, and we don't need it (bnc#773824)
|
||||
rm -rf board/Marvell
|
||||
# Any custom patches to be applied on top of mainline u-boot
|
||||
%patch99 -p1
|
||||
|
||||
%build
|
||||
|
@@ -1,3 +1,10 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Oct 13 06:58:38 UTC 2015 - guillaume@opensuse.org
|
||||
|
||||
- Update to 2015.10-rc5
|
||||
- Remove upstreamed patch:
|
||||
* arndale-apply-cortex-a15-erratas.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 8 09:27:15 UTC 2015 - guillaume@opensuse.org
|
||||
|
||||
|
@@ -25,10 +25,10 @@
|
||||
%define cuboxi_spl 0
|
||||
|
||||
# archive_version differs from version for RC version only
|
||||
%define archive_version 2015.10-rc4
|
||||
%define archive_version 2015.10-rc5
|
||||
|
||||
Name: u-boot-rpi
|
||||
Version: 2015.10~rc4
|
||||
Version: 2015.10~rc5
|
||||
Release: 0
|
||||
Summary: The u-boot firmware for the rpi arm platform
|
||||
License: GPL-2.0
|
||||
@@ -40,9 +40,6 @@ Source300: u-boot-rpmlintrc
|
||||
# Odroid patches
|
||||
Patch10: 0001-odroid-replace-fatload-with-load-to-be-able-to-use-E.patch
|
||||
Patch11: 0002-odroid-Add-boot-script-boot.scr-support.patch
|
||||
# openSUSE fixes hopefully going upstream soon
|
||||
# https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html
|
||||
Patch50: arndale-apply-cortex-a15-erratas.patch
|
||||
# Marvell boards support is non-free licensed, and we don't need it (bnc#773824)
|
||||
Patch99: drop-marvell.patch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
@@ -73,10 +70,8 @@ This package contains documentation for u-boot firmware
|
||||
%setup -q -n u-boot-%{archive_version}
|
||||
%patch10 -p1
|
||||
%patch11 -p1
|
||||
%patch50 -p1
|
||||
# is non-free licensed, and we don't need it (bnc#773824)
|
||||
rm -rf board/Marvell
|
||||
# Any custom patches to be applied on top of mainline u-boot
|
||||
%patch99 -p1
|
||||
|
||||
%build
|
||||
|
@@ -1,3 +1,10 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Oct 13 06:58:38 UTC 2015 - guillaume@opensuse.org
|
||||
|
||||
- Update to 2015.10-rc5
|
||||
- Remove upstreamed patch:
|
||||
* arndale-apply-cortex-a15-erratas.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 8 09:27:15 UTC 2015 - guillaume@opensuse.org
|
||||
|
||||
|
@@ -25,10 +25,10 @@
|
||||
%define cuboxi_spl 0
|
||||
|
||||
# archive_version differs from version for RC version only
|
||||
%define archive_version 2015.10-rc4
|
||||
%define archive_version 2015.10-rc5
|
||||
|
||||
Name: u-boot-rpi2
|
||||
Version: 2015.10~rc4
|
||||
Version: 2015.10~rc5
|
||||
Release: 0
|
||||
Summary: The u-boot firmware for the rpi2 arm platform
|
||||
License: GPL-2.0
|
||||
@@ -40,9 +40,6 @@ Source300: u-boot-rpmlintrc
|
||||
# Odroid patches
|
||||
Patch10: 0001-odroid-replace-fatload-with-load-to-be-able-to-use-E.patch
|
||||
Patch11: 0002-odroid-Add-boot-script-boot.scr-support.patch
|
||||
# openSUSE fixes hopefully going upstream soon
|
||||
# https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html
|
||||
Patch50: arndale-apply-cortex-a15-erratas.patch
|
||||
# Marvell boards support is non-free licensed, and we don't need it (bnc#773824)
|
||||
Patch99: drop-marvell.patch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
@@ -73,10 +70,8 @@ This package contains documentation for u-boot firmware
|
||||
%setup -q -n u-boot-%{archive_version}
|
||||
%patch10 -p1
|
||||
%patch11 -p1
|
||||
%patch50 -p1
|
||||
# is non-free licensed, and we don't need it (bnc#773824)
|
||||
rm -rf board/Marvell
|
||||
# Any custom patches to be applied on top of mainline u-boot
|
||||
%patch99 -p1
|
||||
|
||||
%build
|
||||
|
@@ -1,3 +1,10 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Oct 13 06:58:38 UTC 2015 - guillaume@opensuse.org
|
||||
|
||||
- Update to 2015.10-rc5
|
||||
- Remove upstreamed patch:
|
||||
* arndale-apply-cortex-a15-erratas.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 8 09:27:15 UTC 2015 - guillaume@opensuse.org
|
||||
|
||||
|
@@ -25,10 +25,10 @@
|
||||
%define cuboxi_spl 0
|
||||
|
||||
# archive_version differs from version for RC version only
|
||||
%define archive_version 2015.10-rc4
|
||||
%define archive_version 2015.10-rc5
|
||||
|
||||
Name: u-boot-snow
|
||||
Version: 2015.10~rc4
|
||||
Version: 2015.10~rc5
|
||||
Release: 0
|
||||
Summary: The u-boot firmware for the snow arm platform
|
||||
License: GPL-2.0
|
||||
@@ -40,9 +40,6 @@ Source300: u-boot-rpmlintrc
|
||||
# Odroid patches
|
||||
Patch10: 0001-odroid-replace-fatload-with-load-to-be-able-to-use-E.patch
|
||||
Patch11: 0002-odroid-Add-boot-script-boot.scr-support.patch
|
||||
# openSUSE fixes hopefully going upstream soon
|
||||
# https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html
|
||||
Patch50: arndale-apply-cortex-a15-erratas.patch
|
||||
# Marvell boards support is non-free licensed, and we don't need it (bnc#773824)
|
||||
Patch99: drop-marvell.patch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
@@ -73,10 +70,8 @@ This package contains documentation for u-boot firmware
|
||||
%setup -q -n u-boot-%{archive_version}
|
||||
%patch10 -p1
|
||||
%patch11 -p1
|
||||
%patch50 -p1
|
||||
# is non-free licensed, and we don't need it (bnc#773824)
|
||||
rm -rf board/Marvell
|
||||
# Any custom patches to be applied on top of mainline u-boot
|
||||
%patch99 -p1
|
||||
|
||||
%build
|
||||
|
@@ -1,3 +1,10 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Oct 13 06:58:38 UTC 2015 - guillaume@opensuse.org
|
||||
|
||||
- Update to 2015.10-rc5
|
||||
- Remove upstreamed patch:
|
||||
* arndale-apply-cortex-a15-erratas.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 8 09:27:15 UTC 2015 - guillaume@opensuse.org
|
||||
|
||||
|
@@ -25,10 +25,10 @@
|
||||
%define cuboxi_spl 0
|
||||
|
||||
# archive_version differs from version for RC version only
|
||||
%define archive_version 2015.10-rc4
|
||||
%define archive_version 2015.10-rc5
|
||||
|
||||
Name: u-boot-spring
|
||||
Version: 2015.10~rc4
|
||||
Version: 2015.10~rc5
|
||||
Release: 0
|
||||
Summary: The u-boot firmware for the spring arm platform
|
||||
License: GPL-2.0
|
||||
@@ -40,9 +40,6 @@ Source300: u-boot-rpmlintrc
|
||||
# Odroid patches
|
||||
Patch10: 0001-odroid-replace-fatload-with-load-to-be-able-to-use-E.patch
|
||||
Patch11: 0002-odroid-Add-boot-script-boot.scr-support.patch
|
||||
# openSUSE fixes hopefully going upstream soon
|
||||
# https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html
|
||||
Patch50: arndale-apply-cortex-a15-erratas.patch
|
||||
# Marvell boards support is non-free licensed, and we don't need it (bnc#773824)
|
||||
Patch99: drop-marvell.patch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
@@ -73,10 +70,8 @@ This package contains documentation for u-boot firmware
|
||||
%setup -q -n u-boot-%{archive_version}
|
||||
%patch10 -p1
|
||||
%patch11 -p1
|
||||
%patch50 -p1
|
||||
# is non-free licensed, and we don't need it (bnc#773824)
|
||||
rm -rf board/Marvell
|
||||
# Any custom patches to be applied on top of mainline u-boot
|
||||
%patch99 -p1
|
||||
|
||||
%build
|
||||
|
@@ -1,3 +1,10 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Oct 13 06:58:38 UTC 2015 - guillaume@opensuse.org
|
||||
|
||||
- Update to 2015.10-rc5
|
||||
- Remove upstreamed patch:
|
||||
* arndale-apply-cortex-a15-erratas.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 8 09:27:15 UTC 2015 - guillaume@opensuse.org
|
||||
|
||||
|
@@ -19,10 +19,10 @@
|
||||
|
||||
|
||||
# 'archive_version' differs from 'version' for RC version only
|
||||
%define archive_version 2015.10-rc4
|
||||
%define archive_version 2015.10-rc5
|
||||
|
||||
Name: u-boot
|
||||
Version: 2015.10~rc4
|
||||
Version: 2015.10~rc5
|
||||
Release: 0
|
||||
Summary: Tools for the u-boot Firmware
|
||||
License: GPL-2.0
|
||||
|
@@ -25,10 +25,10 @@
|
||||
%define cuboxi_spl CUBOXI_SPL
|
||||
|
||||
# archive_version differs from version for RC version only
|
||||
%define archive_version 2015.10-rc4
|
||||
%define archive_version 2015.10-rc5
|
||||
|
||||
Name: u-boot-BOARDNAME
|
||||
Version: 2015.10~rc4
|
||||
Version: 2015.10~rc5
|
||||
Release: 0
|
||||
Summary: The u-boot firmware for the BOARDNAME arm platform
|
||||
License: GPL-2.0
|
||||
@@ -40,9 +40,6 @@ Source300: u-boot-rpmlintrc
|
||||
# Odroid patches
|
||||
Patch10: 0001-odroid-replace-fatload-with-load-to-be-able-to-use-E.patch
|
||||
Patch11: 0002-odroid-Add-boot-script-boot.scr-support.patch
|
||||
# openSUSE fixes hopefully going upstream soon
|
||||
# https://www.mail-archive.com/u-boot@lists.denx.de/msg187126.html
|
||||
Patch50: arndale-apply-cortex-a15-erratas.patch
|
||||
# Marvell boards support is non-free licensed, and we don't need it (bnc#773824)
|
||||
Patch99: drop-marvell.patch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
@@ -73,10 +70,8 @@ This package contains documentation for u-boot firmware
|
||||
%setup -q -n u-boot-%{archive_version}
|
||||
%patch10 -p1
|
||||
%patch11 -p1
|
||||
%patch50 -p1
|
||||
# is non-free licensed, and we don't need it (bnc#773824)
|
||||
rm -rf board/Marvell
|
||||
# Any custom patches to be applied on top of mainline u-boot
|
||||
%patch99 -p1
|
||||
|
||||
%build
|
||||
|
Reference in New Issue
Block a user