Accepting request 397969 from Base:System
Automatic submission by obs-autosubmit OBS-URL: https://build.opensuse.org/request/show/397969 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/u-boot?expand=0&rev=75
This commit is contained in:
parent
51760cc5b2
commit
475ab01269
@ -0,0 +1,40 @@
|
|||||||
|
From fabd591c6ba9c5ee5357d10c3284bf21ea585931 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Guillaume GARDET <guillaume.gardet@free.fr>
|
||||||
|
Date: Wed, 18 May 2016 14:12:43 +0200
|
||||||
|
Subject: [PATCH] video: ipu: Fix build with hard-float ARM toolchain
|
||||||
|
|
||||||
|
Build with hard-float ARM toolchain was broken by commit 3cb4f25c:
|
||||||
|
'video: ipu: avoid overflow issue'.
|
||||||
|
To fix it, we use do_div function.
|
||||||
|
|
||||||
|
Build tested for mx6qsabrelite_defconfig.
|
||||||
|
|
||||||
|
Signed-off-by: Guillaume GARDET <guillaume.gardet@free.fr>
|
||||||
|
Cc: Peng Fan <van.freenix@gmail.com>
|
||||||
|
Cc: Sandor Yu <sandor.yu@nxp.com>
|
||||||
|
Cc: Anatolij Gustschin <agust@denx.de>
|
||||||
|
Cc: Stefano Babic <sbabic@denx.de>
|
||||||
|
Cc: Fabio Estevam <fabio.estevam@nxp.com>
|
||||||
|
Cc: Tom Rini <trini@konsulko.com>
|
||||||
|
|
||||||
|
---
|
||||||
|
drivers/video/ipu_common.c | 3 ++-
|
||||||
|
1 file changed, 2 insertions(+), 1 deletion(-)
|
||||||
|
|
||||||
|
diff --git a/drivers/video/ipu_common.c b/drivers/video/ipu_common.c
|
||||||
|
index 36d4b23..e319c82 100644
|
||||||
|
--- a/drivers/video/ipu_common.c
|
||||||
|
+++ b/drivers/video/ipu_common.c
|
||||||
|
@@ -352,7 +352,8 @@ static int ipu_pixel_clk_set_rate(struct clk *clk, unsigned long rate)
|
||||||
|
*/
|
||||||
|
__raw_writel((div / 16) << 16, DI_BS_CLKGEN1(clk->id));
|
||||||
|
|
||||||
|
- clk->rate = (u64)(clk->parent->rate * 16) / div;
|
||||||
|
+ do_div(parent_rate, div);
|
||||||
|
+ clk->rate = parent_rate;
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
--
|
||||||
|
1.8.4.5
|
||||||
|
|
@ -1,39 +0,0 @@
|
|||||||
From a5026e4f60cc43cc9d5e685643f306140b53ba03 Mon Sep 17 00:00:00 2001
|
|
||||||
From: Alexander Graf <agraf@suse.de>
|
|
||||||
Date: Mon, 1 Feb 2016 21:41:06 +0100
|
|
||||||
Subject: [PATCH 3/3] exynos: Set CNTFRQ
|
|
||||||
|
|
||||||
Commit 73a1cb27 moved the check whether we should set the architected
|
|
||||||
timer frequency from CONFIG_SYS_CLK_FREQ to CONFIG_TIMER_CLK_FREQ, but
|
|
||||||
did not update all users of it.
|
|
||||||
|
|
||||||
The one where I (finally) realized why KVM didn't work is the Arndale
|
|
||||||
board, so this patch adds the respective define to it.
|
|
||||||
|
|
||||||
Signed-off-by: Alexander Graf <agraf@suse.de>
|
|
||||||
Fixes: 73a1cb27
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
v1 -> v2:
|
|
||||||
|
|
||||||
- Map to CONFIG_SYS_CLK_FREQ instead of redefining to the same number
|
|
||||||
---
|
|
||||||
include/configs/exynos-common.h | 1 +
|
|
||||||
1 file changed, 1 insertion(+)
|
|
||||||
|
|
||||||
diff --git a/include/configs/exynos-common.h b/include/configs/exynos-common.h
|
|
||||||
index f97f03c..98474d3 100644
|
|
||||||
--- a/include/configs/exynos-common.h
|
|
||||||
+++ b/include/configs/exynos-common.h
|
|
||||||
@@ -29,6 +29,7 @@
|
|
||||||
|
|
||||||
/* input clock of PLL: 24MHz input clock */
|
|
||||||
#define CONFIG_SYS_CLK_FREQ 24000000
|
|
||||||
+#define CONFIG_TIMER_CLK_FREQ CONFIG_SYS_CLK_FREQ
|
|
||||||
|
|
||||||
#define CONFIG_SETUP_MEMORY_TAGS
|
|
||||||
#define CONFIG_CMDLINE_TAG
|
|
||||||
--
|
|
||||||
1.8.5.6
|
|
||||||
|
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:ce7380814b4c399f10323d799677853efc731d888d4eff359f78f52aeb27bbc7
|
|
||||||
size 11342439
|
|
3
u-boot-2016.05.tar.bz2
Normal file
3
u-boot-2016.05.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:87d02275615aaf0cd007b54cbe9fbadceef2bee7c79e6c323ea1ae8956dcb171
|
||||||
|
size 11325053
|
@ -1,3 +1,21 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed May 18 13:07:24 UTC 2016 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Fix rpi3 installation location
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed May 18 12:22:31 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Add 0001-video-ipu-Fix-build-with-hard-float-ARM-toolchain.-I.patch
|
||||||
|
to fix build on iMX boards (with hard-float toolchains)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue May 17 12:53:24 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Update to 2016.05
|
||||||
|
- Remove upstreamed patch:
|
||||||
|
* 0003-exynos-Set-CNTFRQ.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
|
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
|
||||||
|
|
||||||
|
@ -28,10 +28,10 @@
|
|||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.05-rc3
|
%define archive_version 2016.05
|
||||||
|
|
||||||
Name: u-boot-a10-olinuxino-lime
|
Name: u-boot-a10-olinuxino-lime
|
||||||
Version: 2016.05~rc3
|
Version: 2016.05
|
||||||
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
|
||||||
@ -44,8 +44,8 @@ Source300: u-boot-rpmlintrc
|
|||||||
Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch
|
Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch
|
||||||
# Move omap3 to distro boot method
|
# Move omap3 to distro boot method
|
||||||
Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch
|
Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch
|
||||||
# Fix exynos KVM support
|
# UPSTREAM: Fix build with hard-float ARM toolchain (Fix iMX boards)
|
||||||
Patch3: 0003-exynos-Set-CNTFRQ.patch
|
Patch3: 0001-video-ipu-Fix-build-with-hard-float-ARM-toolchain.-I.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
# Arndale board need DTC >= 1.4
|
# Arndale board need DTC >= 1.4
|
||||||
BuildRequires: bc
|
BuildRequires: bc
|
||||||
@ -55,7 +55,7 @@ BuildRequires: dtc >= 1.4.0
|
|||||||
BuildRequires: qemu
|
BuildRequires: qemu
|
||||||
Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500
|
Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500
|
||||||
%endif
|
%endif
|
||||||
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2"
|
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi3"
|
||||||
# Owns /boot/vc directory
|
# Owns /boot/vc directory
|
||||||
BuildRequires: raspberrypi-firmware
|
BuildRequires: raspberrypi-firmware
|
||||||
%endif
|
%endif
|
||||||
@ -103,7 +103,7 @@ done
|
|||||||
export NO_BRP_STRIP_DEBUG=true
|
export NO_BRP_STRIP_DEBUG=true
|
||||||
export NO_DEBUGINFO_STRIP_DEBUG=true
|
export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||||
%define uboot_dir /boot
|
%define uboot_dir /boot
|
||||||
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2"
|
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi3"
|
||||||
%define uboot_dir /boot/vc
|
%define uboot_dir /boot/vc
|
||||||
%endif
|
%endif
|
||||||
%if "%{name}" == "u-boot-qemu-ppce500"
|
%if "%{name}" == "u-boot-qemu-ppce500"
|
||||||
|
@ -1,3 +1,21 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed May 18 13:07:24 UTC 2016 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Fix rpi3 installation location
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed May 18 12:22:31 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Add 0001-video-ipu-Fix-build-with-hard-float-ARM-toolchain.-I.patch
|
||||||
|
to fix build on iMX boards (with hard-float toolchains)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue May 17 12:53:24 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Update to 2016.05
|
||||||
|
- Remove upstreamed patch:
|
||||||
|
* 0003-exynos-Set-CNTFRQ.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
|
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
|
||||||
|
|
||||||
|
@ -28,10 +28,10 @@
|
|||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.05-rc3
|
%define archive_version 2016.05
|
||||||
|
|
||||||
Name: u-boot-a13-olinuxino
|
Name: u-boot-a13-olinuxino
|
||||||
Version: 2016.05~rc3
|
Version: 2016.05
|
||||||
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
|
||||||
@ -44,8 +44,8 @@ Source300: u-boot-rpmlintrc
|
|||||||
Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch
|
Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch
|
||||||
# Move omap3 to distro boot method
|
# Move omap3 to distro boot method
|
||||||
Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch
|
Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch
|
||||||
# Fix exynos KVM support
|
# UPSTREAM: Fix build with hard-float ARM toolchain (Fix iMX boards)
|
||||||
Patch3: 0003-exynos-Set-CNTFRQ.patch
|
Patch3: 0001-video-ipu-Fix-build-with-hard-float-ARM-toolchain.-I.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
# Arndale board need DTC >= 1.4
|
# Arndale board need DTC >= 1.4
|
||||||
BuildRequires: bc
|
BuildRequires: bc
|
||||||
@ -55,7 +55,7 @@ BuildRequires: dtc >= 1.4.0
|
|||||||
BuildRequires: qemu
|
BuildRequires: qemu
|
||||||
Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500
|
Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500
|
||||||
%endif
|
%endif
|
||||||
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2"
|
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi3"
|
||||||
# Owns /boot/vc directory
|
# Owns /boot/vc directory
|
||||||
BuildRequires: raspberrypi-firmware
|
BuildRequires: raspberrypi-firmware
|
||||||
%endif
|
%endif
|
||||||
@ -103,7 +103,7 @@ done
|
|||||||
export NO_BRP_STRIP_DEBUG=true
|
export NO_BRP_STRIP_DEBUG=true
|
||||||
export NO_DEBUGINFO_STRIP_DEBUG=true
|
export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||||
%define uboot_dir /boot
|
%define uboot_dir /boot
|
||||||
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2"
|
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi3"
|
||||||
%define uboot_dir /boot/vc
|
%define uboot_dir /boot/vc
|
||||||
%endif
|
%endif
|
||||||
%if "%{name}" == "u-boot-qemu-ppce500"
|
%if "%{name}" == "u-boot-qemu-ppce500"
|
||||||
|
@ -1,3 +1,21 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed May 18 13:07:24 UTC 2016 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Fix rpi3 installation location
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed May 18 12:22:31 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Add 0001-video-ipu-Fix-build-with-hard-float-ARM-toolchain.-I.patch
|
||||||
|
to fix build on iMX boards (with hard-float toolchains)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue May 17 12:53:24 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Update to 2016.05
|
||||||
|
- Remove upstreamed patch:
|
||||||
|
* 0003-exynos-Set-CNTFRQ.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
|
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
|
||||||
|
|
||||||
|
@ -28,10 +28,10 @@
|
|||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.05-rc3
|
%define archive_version 2016.05
|
||||||
|
|
||||||
Name: u-boot-a13-olinuxinom
|
Name: u-boot-a13-olinuxinom
|
||||||
Version: 2016.05~rc3
|
Version: 2016.05
|
||||||
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
|
||||||
@ -44,8 +44,8 @@ Source300: u-boot-rpmlintrc
|
|||||||
Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch
|
Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch
|
||||||
# Move omap3 to distro boot method
|
# Move omap3 to distro boot method
|
||||||
Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch
|
Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch
|
||||||
# Fix exynos KVM support
|
# UPSTREAM: Fix build with hard-float ARM toolchain (Fix iMX boards)
|
||||||
Patch3: 0003-exynos-Set-CNTFRQ.patch
|
Patch3: 0001-video-ipu-Fix-build-with-hard-float-ARM-toolchain.-I.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
# Arndale board need DTC >= 1.4
|
# Arndale board need DTC >= 1.4
|
||||||
BuildRequires: bc
|
BuildRequires: bc
|
||||||
@ -55,7 +55,7 @@ BuildRequires: dtc >= 1.4.0
|
|||||||
BuildRequires: qemu
|
BuildRequires: qemu
|
||||||
Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500
|
Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500
|
||||||
%endif
|
%endif
|
||||||
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2"
|
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi3"
|
||||||
# Owns /boot/vc directory
|
# Owns /boot/vc directory
|
||||||
BuildRequires: raspberrypi-firmware
|
BuildRequires: raspberrypi-firmware
|
||||||
%endif
|
%endif
|
||||||
@ -103,7 +103,7 @@ done
|
|||||||
export NO_BRP_STRIP_DEBUG=true
|
export NO_BRP_STRIP_DEBUG=true
|
||||||
export NO_DEBUGINFO_STRIP_DEBUG=true
|
export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||||
%define uboot_dir /boot
|
%define uboot_dir /boot
|
||||||
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2"
|
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi3"
|
||||||
%define uboot_dir /boot/vc
|
%define uboot_dir /boot/vc
|
||||||
%endif
|
%endif
|
||||||
%if "%{name}" == "u-boot-qemu-ppce500"
|
%if "%{name}" == "u-boot-qemu-ppce500"
|
||||||
|
@ -1,3 +1,21 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed May 18 13:07:24 UTC 2016 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Fix rpi3 installation location
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed May 18 12:22:31 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Add 0001-video-ipu-Fix-build-with-hard-float-ARM-toolchain.-I.patch
|
||||||
|
to fix build on iMX boards (with hard-float toolchains)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue May 17 12:53:24 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Update to 2016.05
|
||||||
|
- Remove upstreamed patch:
|
||||||
|
* 0003-exynos-Set-CNTFRQ.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
|
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
|
||||||
|
|
||||||
|
@ -28,10 +28,10 @@
|
|||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.05-rc3
|
%define archive_version 2016.05
|
||||||
|
|
||||||
Name: u-boot-a20-olinuxino-lime
|
Name: u-boot-a20-olinuxino-lime
|
||||||
Version: 2016.05~rc3
|
Version: 2016.05
|
||||||
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
|
||||||
@ -44,8 +44,8 @@ Source300: u-boot-rpmlintrc
|
|||||||
Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch
|
Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch
|
||||||
# Move omap3 to distro boot method
|
# Move omap3 to distro boot method
|
||||||
Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch
|
Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch
|
||||||
# Fix exynos KVM support
|
# UPSTREAM: Fix build with hard-float ARM toolchain (Fix iMX boards)
|
||||||
Patch3: 0003-exynos-Set-CNTFRQ.patch
|
Patch3: 0001-video-ipu-Fix-build-with-hard-float-ARM-toolchain.-I.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
# Arndale board need DTC >= 1.4
|
# Arndale board need DTC >= 1.4
|
||||||
BuildRequires: bc
|
BuildRequires: bc
|
||||||
@ -55,7 +55,7 @@ BuildRequires: dtc >= 1.4.0
|
|||||||
BuildRequires: qemu
|
BuildRequires: qemu
|
||||||
Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500
|
Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500
|
||||||
%endif
|
%endif
|
||||||
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2"
|
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi3"
|
||||||
# Owns /boot/vc directory
|
# Owns /boot/vc directory
|
||||||
BuildRequires: raspberrypi-firmware
|
BuildRequires: raspberrypi-firmware
|
||||||
%endif
|
%endif
|
||||||
@ -103,7 +103,7 @@ done
|
|||||||
export NO_BRP_STRIP_DEBUG=true
|
export NO_BRP_STRIP_DEBUG=true
|
||||||
export NO_DEBUGINFO_STRIP_DEBUG=true
|
export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||||
%define uboot_dir /boot
|
%define uboot_dir /boot
|
||||||
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2"
|
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi3"
|
||||||
%define uboot_dir /boot/vc
|
%define uboot_dir /boot/vc
|
||||||
%endif
|
%endif
|
||||||
%if "%{name}" == "u-boot-qemu-ppce500"
|
%if "%{name}" == "u-boot-qemu-ppce500"
|
||||||
|
@ -1,3 +1,21 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed May 18 13:07:24 UTC 2016 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Fix rpi3 installation location
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed May 18 12:22:31 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Add 0001-video-ipu-Fix-build-with-hard-float-ARM-toolchain.-I.patch
|
||||||
|
to fix build on iMX boards (with hard-float toolchains)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue May 17 12:53:24 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Update to 2016.05
|
||||||
|
- Remove upstreamed patch:
|
||||||
|
* 0003-exynos-Set-CNTFRQ.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
|
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
|
||||||
|
|
||||||
|
@ -28,10 +28,10 @@
|
|||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.05-rc3
|
%define archive_version 2016.05
|
||||||
|
|
||||||
Name: u-boot-a20-olinuxino-lime2
|
Name: u-boot-a20-olinuxino-lime2
|
||||||
Version: 2016.05~rc3
|
Version: 2016.05
|
||||||
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
|
||||||
@ -44,8 +44,8 @@ Source300: u-boot-rpmlintrc
|
|||||||
Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch
|
Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch
|
||||||
# Move omap3 to distro boot method
|
# Move omap3 to distro boot method
|
||||||
Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch
|
Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch
|
||||||
# Fix exynos KVM support
|
# UPSTREAM: Fix build with hard-float ARM toolchain (Fix iMX boards)
|
||||||
Patch3: 0003-exynos-Set-CNTFRQ.patch
|
Patch3: 0001-video-ipu-Fix-build-with-hard-float-ARM-toolchain.-I.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
# Arndale board need DTC >= 1.4
|
# Arndale board need DTC >= 1.4
|
||||||
BuildRequires: bc
|
BuildRequires: bc
|
||||||
@ -55,7 +55,7 @@ BuildRequires: dtc >= 1.4.0
|
|||||||
BuildRequires: qemu
|
BuildRequires: qemu
|
||||||
Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500
|
Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500
|
||||||
%endif
|
%endif
|
||||||
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2"
|
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi3"
|
||||||
# Owns /boot/vc directory
|
# Owns /boot/vc directory
|
||||||
BuildRequires: raspberrypi-firmware
|
BuildRequires: raspberrypi-firmware
|
||||||
%endif
|
%endif
|
||||||
@ -103,7 +103,7 @@ done
|
|||||||
export NO_BRP_STRIP_DEBUG=true
|
export NO_BRP_STRIP_DEBUG=true
|
||||||
export NO_DEBUGINFO_STRIP_DEBUG=true
|
export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||||
%define uboot_dir /boot
|
%define uboot_dir /boot
|
||||||
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2"
|
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi3"
|
||||||
%define uboot_dir /boot/vc
|
%define uboot_dir /boot/vc
|
||||||
%endif
|
%endif
|
||||||
%if "%{name}" == "u-boot-qemu-ppce500"
|
%if "%{name}" == "u-boot-qemu-ppce500"
|
||||||
|
@ -1,3 +1,21 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed May 18 13:07:24 UTC 2016 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Fix rpi3 installation location
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed May 18 12:22:31 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Add 0001-video-ipu-Fix-build-with-hard-float-ARM-toolchain.-I.patch
|
||||||
|
to fix build on iMX boards (with hard-float toolchains)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue May 17 12:53:24 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Update to 2016.05
|
||||||
|
- Remove upstreamed patch:
|
||||||
|
* 0003-exynos-Set-CNTFRQ.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
|
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
|
||||||
|
|
||||||
|
@ -28,10 +28,10 @@
|
|||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.05-rc3
|
%define archive_version 2016.05
|
||||||
|
|
||||||
Name: u-boot-a20-olinuxinomicro
|
Name: u-boot-a20-olinuxinomicro
|
||||||
Version: 2016.05~rc3
|
Version: 2016.05
|
||||||
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
|
||||||
@ -44,8 +44,8 @@ Source300: u-boot-rpmlintrc
|
|||||||
Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch
|
Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch
|
||||||
# Move omap3 to distro boot method
|
# Move omap3 to distro boot method
|
||||||
Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch
|
Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch
|
||||||
# Fix exynos KVM support
|
# UPSTREAM: Fix build with hard-float ARM toolchain (Fix iMX boards)
|
||||||
Patch3: 0003-exynos-Set-CNTFRQ.patch
|
Patch3: 0001-video-ipu-Fix-build-with-hard-float-ARM-toolchain.-I.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
# Arndale board need DTC >= 1.4
|
# Arndale board need DTC >= 1.4
|
||||||
BuildRequires: bc
|
BuildRequires: bc
|
||||||
@ -55,7 +55,7 @@ BuildRequires: dtc >= 1.4.0
|
|||||||
BuildRequires: qemu
|
BuildRequires: qemu
|
||||||
Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500
|
Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500
|
||||||
%endif
|
%endif
|
||||||
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2"
|
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi3"
|
||||||
# Owns /boot/vc directory
|
# Owns /boot/vc directory
|
||||||
BuildRequires: raspberrypi-firmware
|
BuildRequires: raspberrypi-firmware
|
||||||
%endif
|
%endif
|
||||||
@ -103,7 +103,7 @@ done
|
|||||||
export NO_BRP_STRIP_DEBUG=true
|
export NO_BRP_STRIP_DEBUG=true
|
||||||
export NO_DEBUGINFO_STRIP_DEBUG=true
|
export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||||
%define uboot_dir /boot
|
%define uboot_dir /boot
|
||||||
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2"
|
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi3"
|
||||||
%define uboot_dir /boot/vc
|
%define uboot_dir /boot/vc
|
||||||
%endif
|
%endif
|
||||||
%if "%{name}" == "u-boot-qemu-ppce500"
|
%if "%{name}" == "u-boot-qemu-ppce500"
|
||||||
|
@ -1,3 +1,21 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed May 18 13:07:24 UTC 2016 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Fix rpi3 installation location
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed May 18 12:22:31 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Add 0001-video-ipu-Fix-build-with-hard-float-ARM-toolchain.-I.patch
|
||||||
|
to fix build on iMX boards (with hard-float toolchains)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue May 17 12:53:24 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Update to 2016.05
|
||||||
|
- Remove upstreamed patch:
|
||||||
|
* 0003-exynos-Set-CNTFRQ.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
|
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
|
||||||
|
|
||||||
|
@ -28,10 +28,10 @@
|
|||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.05-rc3
|
%define archive_version 2016.05
|
||||||
|
|
||||||
Name: u-boot-am335xboneblack
|
Name: u-boot-am335xboneblack
|
||||||
Version: 2016.05~rc3
|
Version: 2016.05
|
||||||
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
|
||||||
@ -44,8 +44,8 @@ Source300: u-boot-rpmlintrc
|
|||||||
Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch
|
Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch
|
||||||
# Move omap3 to distro boot method
|
# Move omap3 to distro boot method
|
||||||
Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch
|
Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch
|
||||||
# Fix exynos KVM support
|
# UPSTREAM: Fix build with hard-float ARM toolchain (Fix iMX boards)
|
||||||
Patch3: 0003-exynos-Set-CNTFRQ.patch
|
Patch3: 0001-video-ipu-Fix-build-with-hard-float-ARM-toolchain.-I.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
# Arndale board need DTC >= 1.4
|
# Arndale board need DTC >= 1.4
|
||||||
BuildRequires: bc
|
BuildRequires: bc
|
||||||
@ -55,7 +55,7 @@ BuildRequires: dtc >= 1.4.0
|
|||||||
BuildRequires: qemu
|
BuildRequires: qemu
|
||||||
Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500
|
Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500
|
||||||
%endif
|
%endif
|
||||||
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2"
|
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi3"
|
||||||
# Owns /boot/vc directory
|
# Owns /boot/vc directory
|
||||||
BuildRequires: raspberrypi-firmware
|
BuildRequires: raspberrypi-firmware
|
||||||
%endif
|
%endif
|
||||||
@ -103,7 +103,7 @@ done
|
|||||||
export NO_BRP_STRIP_DEBUG=true
|
export NO_BRP_STRIP_DEBUG=true
|
||||||
export NO_DEBUGINFO_STRIP_DEBUG=true
|
export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||||
%define uboot_dir /boot
|
%define uboot_dir /boot
|
||||||
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2"
|
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi3"
|
||||||
%define uboot_dir /boot/vc
|
%define uboot_dir /boot/vc
|
||||||
%endif
|
%endif
|
||||||
%if "%{name}" == "u-boot-qemu-ppce500"
|
%if "%{name}" == "u-boot-qemu-ppce500"
|
||||||
|
@ -1,3 +1,21 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed May 18 13:07:24 UTC 2016 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Fix rpi3 installation location
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed May 18 12:22:31 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Add 0001-video-ipu-Fix-build-with-hard-float-ARM-toolchain.-I.patch
|
||||||
|
to fix build on iMX boards (with hard-float toolchains)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue May 17 12:53:24 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Update to 2016.05
|
||||||
|
- Remove upstreamed patch:
|
||||||
|
* 0003-exynos-Set-CNTFRQ.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
|
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
|
||||||
|
|
||||||
|
@ -28,10 +28,10 @@
|
|||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.05-rc3
|
%define archive_version 2016.05
|
||||||
|
|
||||||
Name: u-boot-am335xevm
|
Name: u-boot-am335xevm
|
||||||
Version: 2016.05~rc3
|
Version: 2016.05
|
||||||
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
|
||||||
@ -44,8 +44,8 @@ Source300: u-boot-rpmlintrc
|
|||||||
Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch
|
Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch
|
||||||
# Move omap3 to distro boot method
|
# Move omap3 to distro boot method
|
||||||
Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch
|
Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch
|
||||||
# Fix exynos KVM support
|
# UPSTREAM: Fix build with hard-float ARM toolchain (Fix iMX boards)
|
||||||
Patch3: 0003-exynos-Set-CNTFRQ.patch
|
Patch3: 0001-video-ipu-Fix-build-with-hard-float-ARM-toolchain.-I.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
# Arndale board need DTC >= 1.4
|
# Arndale board need DTC >= 1.4
|
||||||
BuildRequires: bc
|
BuildRequires: bc
|
||||||
@ -55,7 +55,7 @@ BuildRequires: dtc >= 1.4.0
|
|||||||
BuildRequires: qemu
|
BuildRequires: qemu
|
||||||
Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500
|
Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500
|
||||||
%endif
|
%endif
|
||||||
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2"
|
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi3"
|
||||||
# Owns /boot/vc directory
|
# Owns /boot/vc directory
|
||||||
BuildRequires: raspberrypi-firmware
|
BuildRequires: raspberrypi-firmware
|
||||||
%endif
|
%endif
|
||||||
@ -103,7 +103,7 @@ done
|
|||||||
export NO_BRP_STRIP_DEBUG=true
|
export NO_BRP_STRIP_DEBUG=true
|
||||||
export NO_DEBUGINFO_STRIP_DEBUG=true
|
export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||||
%define uboot_dir /boot
|
%define uboot_dir /boot
|
||||||
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2"
|
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi3"
|
||||||
%define uboot_dir /boot/vc
|
%define uboot_dir /boot/vc
|
||||||
%endif
|
%endif
|
||||||
%if "%{name}" == "u-boot-qemu-ppce500"
|
%if "%{name}" == "u-boot-qemu-ppce500"
|
||||||
|
@ -1,3 +1,21 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed May 18 13:07:24 UTC 2016 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Fix rpi3 installation location
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed May 18 12:22:31 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Add 0001-video-ipu-Fix-build-with-hard-float-ARM-toolchain.-I.patch
|
||||||
|
to fix build on iMX boards (with hard-float toolchains)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue May 17 12:53:24 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Update to 2016.05
|
||||||
|
- Remove upstreamed patch:
|
||||||
|
* 0003-exynos-Set-CNTFRQ.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
|
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
|
||||||
|
|
||||||
|
@ -28,10 +28,10 @@
|
|||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.05-rc3
|
%define archive_version 2016.05
|
||||||
|
|
||||||
Name: u-boot-am57xxevm
|
Name: u-boot-am57xxevm
|
||||||
Version: 2016.05~rc3
|
Version: 2016.05
|
||||||
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
|
||||||
@ -44,8 +44,8 @@ Source300: u-boot-rpmlintrc
|
|||||||
Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch
|
Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch
|
||||||
# Move omap3 to distro boot method
|
# Move omap3 to distro boot method
|
||||||
Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch
|
Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch
|
||||||
# Fix exynos KVM support
|
# UPSTREAM: Fix build with hard-float ARM toolchain (Fix iMX boards)
|
||||||
Patch3: 0003-exynos-Set-CNTFRQ.patch
|
Patch3: 0001-video-ipu-Fix-build-with-hard-float-ARM-toolchain.-I.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
# Arndale board need DTC >= 1.4
|
# Arndale board need DTC >= 1.4
|
||||||
BuildRequires: bc
|
BuildRequires: bc
|
||||||
@ -55,7 +55,7 @@ BuildRequires: dtc >= 1.4.0
|
|||||||
BuildRequires: qemu
|
BuildRequires: qemu
|
||||||
Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500
|
Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500
|
||||||
%endif
|
%endif
|
||||||
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2"
|
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi3"
|
||||||
# Owns /boot/vc directory
|
# Owns /boot/vc directory
|
||||||
BuildRequires: raspberrypi-firmware
|
BuildRequires: raspberrypi-firmware
|
||||||
%endif
|
%endif
|
||||||
@ -103,7 +103,7 @@ done
|
|||||||
export NO_BRP_STRIP_DEBUG=true
|
export NO_BRP_STRIP_DEBUG=true
|
||||||
export NO_DEBUGINFO_STRIP_DEBUG=true
|
export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||||
%define uboot_dir /boot
|
%define uboot_dir /boot
|
||||||
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2"
|
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi3"
|
||||||
%define uboot_dir /boot/vc
|
%define uboot_dir /boot/vc
|
||||||
%endif
|
%endif
|
||||||
%if "%{name}" == "u-boot-qemu-ppce500"
|
%if "%{name}" == "u-boot-qemu-ppce500"
|
||||||
|
@ -1,3 +1,21 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed May 18 13:07:24 UTC 2016 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Fix rpi3 installation location
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed May 18 12:22:31 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Add 0001-video-ipu-Fix-build-with-hard-float-ARM-toolchain.-I.patch
|
||||||
|
to fix build on iMX boards (with hard-float toolchains)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue May 17 12:53:24 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Update to 2016.05
|
||||||
|
- Remove upstreamed patch:
|
||||||
|
* 0003-exynos-Set-CNTFRQ.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
|
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
|
||||||
|
|
||||||
|
@ -28,10 +28,10 @@
|
|||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.05-rc3
|
%define archive_version 2016.05
|
||||||
|
|
||||||
Name: u-boot-am57xxevmnodt
|
Name: u-boot-am57xxevmnodt
|
||||||
Version: 2016.05~rc3
|
Version: 2016.05
|
||||||
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
|
||||||
@ -44,8 +44,8 @@ Source300: u-boot-rpmlintrc
|
|||||||
Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch
|
Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch
|
||||||
# Move omap3 to distro boot method
|
# Move omap3 to distro boot method
|
||||||
Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch
|
Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch
|
||||||
# Fix exynos KVM support
|
# UPSTREAM: Fix build with hard-float ARM toolchain (Fix iMX boards)
|
||||||
Patch3: 0003-exynos-Set-CNTFRQ.patch
|
Patch3: 0001-video-ipu-Fix-build-with-hard-float-ARM-toolchain.-I.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
# Arndale board need DTC >= 1.4
|
# Arndale board need DTC >= 1.4
|
||||||
BuildRequires: bc
|
BuildRequires: bc
|
||||||
@ -55,7 +55,7 @@ BuildRequires: dtc >= 1.4.0
|
|||||||
BuildRequires: qemu
|
BuildRequires: qemu
|
||||||
Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500
|
Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500
|
||||||
%endif
|
%endif
|
||||||
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2"
|
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi3"
|
||||||
# Owns /boot/vc directory
|
# Owns /boot/vc directory
|
||||||
BuildRequires: raspberrypi-firmware
|
BuildRequires: raspberrypi-firmware
|
||||||
%endif
|
%endif
|
||||||
@ -103,7 +103,7 @@ done
|
|||||||
export NO_BRP_STRIP_DEBUG=true
|
export NO_BRP_STRIP_DEBUG=true
|
||||||
export NO_DEBUGINFO_STRIP_DEBUG=true
|
export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||||
%define uboot_dir /boot
|
%define uboot_dir /boot
|
||||||
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2"
|
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi3"
|
||||||
%define uboot_dir /boot/vc
|
%define uboot_dir /boot/vc
|
||||||
%endif
|
%endif
|
||||||
%if "%{name}" == "u-boot-qemu-ppce500"
|
%if "%{name}" == "u-boot-qemu-ppce500"
|
||||||
|
@ -1,3 +1,21 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed May 18 13:07:24 UTC 2016 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Fix rpi3 installation location
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed May 18 12:22:31 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Add 0001-video-ipu-Fix-build-with-hard-float-ARM-toolchain.-I.patch
|
||||||
|
to fix build on iMX boards (with hard-float toolchains)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue May 17 12:53:24 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Update to 2016.05
|
||||||
|
- Remove upstreamed patch:
|
||||||
|
* 0003-exynos-Set-CNTFRQ.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
|
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
|
||||||
|
|
||||||
|
@ -28,10 +28,10 @@
|
|||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.05-rc3
|
%define archive_version 2016.05
|
||||||
|
|
||||||
Name: u-boot-arndale
|
Name: u-boot-arndale
|
||||||
Version: 2016.05~rc3
|
Version: 2016.05
|
||||||
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
|
||||||
@ -44,8 +44,8 @@ Source300: u-boot-rpmlintrc
|
|||||||
Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch
|
Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch
|
||||||
# Move omap3 to distro boot method
|
# Move omap3 to distro boot method
|
||||||
Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch
|
Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch
|
||||||
# Fix exynos KVM support
|
# UPSTREAM: Fix build with hard-float ARM toolchain (Fix iMX boards)
|
||||||
Patch3: 0003-exynos-Set-CNTFRQ.patch
|
Patch3: 0001-video-ipu-Fix-build-with-hard-float-ARM-toolchain.-I.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
# Arndale board need DTC >= 1.4
|
# Arndale board need DTC >= 1.4
|
||||||
BuildRequires: bc
|
BuildRequires: bc
|
||||||
@ -55,7 +55,7 @@ BuildRequires: dtc >= 1.4.0
|
|||||||
BuildRequires: qemu
|
BuildRequires: qemu
|
||||||
Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500
|
Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500
|
||||||
%endif
|
%endif
|
||||||
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2"
|
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi3"
|
||||||
# Owns /boot/vc directory
|
# Owns /boot/vc directory
|
||||||
BuildRequires: raspberrypi-firmware
|
BuildRequires: raspberrypi-firmware
|
||||||
%endif
|
%endif
|
||||||
@ -103,7 +103,7 @@ done
|
|||||||
export NO_BRP_STRIP_DEBUG=true
|
export NO_BRP_STRIP_DEBUG=true
|
||||||
export NO_DEBUGINFO_STRIP_DEBUG=true
|
export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||||
%define uboot_dir /boot
|
%define uboot_dir /boot
|
||||||
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2"
|
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi3"
|
||||||
%define uboot_dir /boot/vc
|
%define uboot_dir /boot/vc
|
||||||
%endif
|
%endif
|
||||||
%if "%{name}" == "u-boot-qemu-ppce500"
|
%if "%{name}" == "u-boot-qemu-ppce500"
|
||||||
|
@ -1,3 +1,21 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed May 18 13:07:24 UTC 2016 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Fix rpi3 installation location
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed May 18 12:22:31 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Add 0001-video-ipu-Fix-build-with-hard-float-ARM-toolchain.-I.patch
|
||||||
|
to fix build on iMX boards (with hard-float toolchains)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue May 17 12:53:24 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Update to 2016.05
|
||||||
|
- Remove upstreamed patch:
|
||||||
|
* 0003-exynos-Set-CNTFRQ.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
|
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
|
||||||
|
|
||||||
|
@ -28,10 +28,10 @@
|
|||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.05-rc3
|
%define archive_version 2016.05
|
||||||
|
|
||||||
Name: u-boot-bananapi
|
Name: u-boot-bananapi
|
||||||
Version: 2016.05~rc3
|
Version: 2016.05
|
||||||
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
|
||||||
@ -44,8 +44,8 @@ Source300: u-boot-rpmlintrc
|
|||||||
Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch
|
Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch
|
||||||
# Move omap3 to distro boot method
|
# Move omap3 to distro boot method
|
||||||
Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch
|
Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch
|
||||||
# Fix exynos KVM support
|
# UPSTREAM: Fix build with hard-float ARM toolchain (Fix iMX boards)
|
||||||
Patch3: 0003-exynos-Set-CNTFRQ.patch
|
Patch3: 0001-video-ipu-Fix-build-with-hard-float-ARM-toolchain.-I.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
# Arndale board need DTC >= 1.4
|
# Arndale board need DTC >= 1.4
|
||||||
BuildRequires: bc
|
BuildRequires: bc
|
||||||
@ -55,7 +55,7 @@ BuildRequires: dtc >= 1.4.0
|
|||||||
BuildRequires: qemu
|
BuildRequires: qemu
|
||||||
Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500
|
Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500
|
||||||
%endif
|
%endif
|
||||||
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2"
|
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi3"
|
||||||
# Owns /boot/vc directory
|
# Owns /boot/vc directory
|
||||||
BuildRequires: raspberrypi-firmware
|
BuildRequires: raspberrypi-firmware
|
||||||
%endif
|
%endif
|
||||||
@ -103,7 +103,7 @@ done
|
|||||||
export NO_BRP_STRIP_DEBUG=true
|
export NO_BRP_STRIP_DEBUG=true
|
||||||
export NO_DEBUGINFO_STRIP_DEBUG=true
|
export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||||
%define uboot_dir /boot
|
%define uboot_dir /boot
|
||||||
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2"
|
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi3"
|
||||||
%define uboot_dir /boot/vc
|
%define uboot_dir /boot/vc
|
||||||
%endif
|
%endif
|
||||||
%if "%{name}" == "u-boot-qemu-ppce500"
|
%if "%{name}" == "u-boot-qemu-ppce500"
|
||||||
|
@ -1,3 +1,21 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed May 18 13:07:24 UTC 2016 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Fix rpi3 installation location
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed May 18 12:22:31 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Add 0001-video-ipu-Fix-build-with-hard-float-ARM-toolchain.-I.patch
|
||||||
|
to fix build on iMX boards (with hard-float toolchains)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue May 17 12:53:24 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Update to 2016.05
|
||||||
|
- Remove upstreamed patch:
|
||||||
|
* 0003-exynos-Set-CNTFRQ.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
|
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
|
||||||
|
|
||||||
|
@ -28,10 +28,10 @@
|
|||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.05-rc3
|
%define archive_version 2016.05
|
||||||
|
|
||||||
Name: u-boot-clearfog
|
Name: u-boot-clearfog
|
||||||
Version: 2016.05~rc3
|
Version: 2016.05
|
||||||
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
|
||||||
@ -44,8 +44,8 @@ Source300: u-boot-rpmlintrc
|
|||||||
Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch
|
Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch
|
||||||
# Move omap3 to distro boot method
|
# Move omap3 to distro boot method
|
||||||
Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch
|
Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch
|
||||||
# Fix exynos KVM support
|
# UPSTREAM: Fix build with hard-float ARM toolchain (Fix iMX boards)
|
||||||
Patch3: 0003-exynos-Set-CNTFRQ.patch
|
Patch3: 0001-video-ipu-Fix-build-with-hard-float-ARM-toolchain.-I.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
# Arndale board need DTC >= 1.4
|
# Arndale board need DTC >= 1.4
|
||||||
BuildRequires: bc
|
BuildRequires: bc
|
||||||
@ -55,7 +55,7 @@ BuildRequires: dtc >= 1.4.0
|
|||||||
BuildRequires: qemu
|
BuildRequires: qemu
|
||||||
Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500
|
Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500
|
||||||
%endif
|
%endif
|
||||||
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2"
|
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi3"
|
||||||
# Owns /boot/vc directory
|
# Owns /boot/vc directory
|
||||||
BuildRequires: raspberrypi-firmware
|
BuildRequires: raspberrypi-firmware
|
||||||
%endif
|
%endif
|
||||||
@ -103,7 +103,7 @@ done
|
|||||||
export NO_BRP_STRIP_DEBUG=true
|
export NO_BRP_STRIP_DEBUG=true
|
||||||
export NO_DEBUGINFO_STRIP_DEBUG=true
|
export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||||
%define uboot_dir /boot
|
%define uboot_dir /boot
|
||||||
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2"
|
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi3"
|
||||||
%define uboot_dir /boot/vc
|
%define uboot_dir /boot/vc
|
||||||
%endif
|
%endif
|
||||||
%if "%{name}" == "u-boot-qemu-ppce500"
|
%if "%{name}" == "u-boot-qemu-ppce500"
|
||||||
|
@ -1,3 +1,21 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed May 18 13:07:24 UTC 2016 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Fix rpi3 installation location
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed May 18 12:22:31 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Add 0001-video-ipu-Fix-build-with-hard-float-ARM-toolchain.-I.patch
|
||||||
|
to fix build on iMX boards (with hard-float toolchains)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue May 17 12:53:24 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Update to 2016.05
|
||||||
|
- Remove upstreamed patch:
|
||||||
|
* 0003-exynos-Set-CNTFRQ.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
|
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
|
||||||
|
|
||||||
|
@ -28,10 +28,10 @@
|
|||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.05-rc3
|
%define archive_version 2016.05
|
||||||
|
|
||||||
Name: u-boot-colibrit20
|
Name: u-boot-colibrit20
|
||||||
Version: 2016.05~rc3
|
Version: 2016.05
|
||||||
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
|
||||||
@ -44,8 +44,8 @@ Source300: u-boot-rpmlintrc
|
|||||||
Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch
|
Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch
|
||||||
# Move omap3 to distro boot method
|
# Move omap3 to distro boot method
|
||||||
Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch
|
Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch
|
||||||
# Fix exynos KVM support
|
# UPSTREAM: Fix build with hard-float ARM toolchain (Fix iMX boards)
|
||||||
Patch3: 0003-exynos-Set-CNTFRQ.patch
|
Patch3: 0001-video-ipu-Fix-build-with-hard-float-ARM-toolchain.-I.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
# Arndale board need DTC >= 1.4
|
# Arndale board need DTC >= 1.4
|
||||||
BuildRequires: bc
|
BuildRequires: bc
|
||||||
@ -55,7 +55,7 @@ BuildRequires: dtc >= 1.4.0
|
|||||||
BuildRequires: qemu
|
BuildRequires: qemu
|
||||||
Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500
|
Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500
|
||||||
%endif
|
%endif
|
||||||
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2"
|
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi3"
|
||||||
# Owns /boot/vc directory
|
# Owns /boot/vc directory
|
||||||
BuildRequires: raspberrypi-firmware
|
BuildRequires: raspberrypi-firmware
|
||||||
%endif
|
%endif
|
||||||
@ -103,7 +103,7 @@ done
|
|||||||
export NO_BRP_STRIP_DEBUG=true
|
export NO_BRP_STRIP_DEBUG=true
|
||||||
export NO_DEBUGINFO_STRIP_DEBUG=true
|
export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||||
%define uboot_dir /boot
|
%define uboot_dir /boot
|
||||||
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2"
|
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi3"
|
||||||
%define uboot_dir /boot/vc
|
%define uboot_dir /boot/vc
|
||||||
%endif
|
%endif
|
||||||
%if "%{name}" == "u-boot-qemu-ppce500"
|
%if "%{name}" == "u-boot-qemu-ppce500"
|
||||||
|
@ -1,3 +1,21 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed May 18 13:07:24 UTC 2016 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Fix rpi3 installation location
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed May 18 12:22:31 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Add 0001-video-ipu-Fix-build-with-hard-float-ARM-toolchain.-I.patch
|
||||||
|
to fix build on iMX boards (with hard-float toolchains)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue May 17 12:53:24 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Update to 2016.05
|
||||||
|
- Remove upstreamed patch:
|
||||||
|
* 0003-exynos-Set-CNTFRQ.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
|
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
|
||||||
|
|
||||||
|
@ -28,10 +28,10 @@
|
|||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.05-rc3
|
%define archive_version 2016.05
|
||||||
|
|
||||||
Name: u-boot-cubieboard
|
Name: u-boot-cubieboard
|
||||||
Version: 2016.05~rc3
|
Version: 2016.05
|
||||||
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
|
||||||
@ -44,8 +44,8 @@ Source300: u-boot-rpmlintrc
|
|||||||
Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch
|
Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch
|
||||||
# Move omap3 to distro boot method
|
# Move omap3 to distro boot method
|
||||||
Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch
|
Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch
|
||||||
# Fix exynos KVM support
|
# UPSTREAM: Fix build with hard-float ARM toolchain (Fix iMX boards)
|
||||||
Patch3: 0003-exynos-Set-CNTFRQ.patch
|
Patch3: 0001-video-ipu-Fix-build-with-hard-float-ARM-toolchain.-I.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
# Arndale board need DTC >= 1.4
|
# Arndale board need DTC >= 1.4
|
||||||
BuildRequires: bc
|
BuildRequires: bc
|
||||||
@ -55,7 +55,7 @@ BuildRequires: dtc >= 1.4.0
|
|||||||
BuildRequires: qemu
|
BuildRequires: qemu
|
||||||
Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500
|
Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500
|
||||||
%endif
|
%endif
|
||||||
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2"
|
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi3"
|
||||||
# Owns /boot/vc directory
|
# Owns /boot/vc directory
|
||||||
BuildRequires: raspberrypi-firmware
|
BuildRequires: raspberrypi-firmware
|
||||||
%endif
|
%endif
|
||||||
@ -103,7 +103,7 @@ done
|
|||||||
export NO_BRP_STRIP_DEBUG=true
|
export NO_BRP_STRIP_DEBUG=true
|
||||||
export NO_DEBUGINFO_STRIP_DEBUG=true
|
export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||||
%define uboot_dir /boot
|
%define uboot_dir /boot
|
||||||
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2"
|
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi3"
|
||||||
%define uboot_dir /boot/vc
|
%define uboot_dir /boot/vc
|
||||||
%endif
|
%endif
|
||||||
%if "%{name}" == "u-boot-qemu-ppce500"
|
%if "%{name}" == "u-boot-qemu-ppce500"
|
||||||
|
@ -1,3 +1,21 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed May 18 13:07:24 UTC 2016 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Fix rpi3 installation location
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed May 18 12:22:31 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Add 0001-video-ipu-Fix-build-with-hard-float-ARM-toolchain.-I.patch
|
||||||
|
to fix build on iMX boards (with hard-float toolchains)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue May 17 12:53:24 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Update to 2016.05
|
||||||
|
- Remove upstreamed patch:
|
||||||
|
* 0003-exynos-Set-CNTFRQ.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
|
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
|
||||||
|
|
||||||
|
@ -28,10 +28,10 @@
|
|||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.05-rc3
|
%define archive_version 2016.05
|
||||||
|
|
||||||
Name: u-boot-cubieboard2
|
Name: u-boot-cubieboard2
|
||||||
Version: 2016.05~rc3
|
Version: 2016.05
|
||||||
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
|
||||||
@ -44,8 +44,8 @@ Source300: u-boot-rpmlintrc
|
|||||||
Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch
|
Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch
|
||||||
# Move omap3 to distro boot method
|
# Move omap3 to distro boot method
|
||||||
Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch
|
Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch
|
||||||
# Fix exynos KVM support
|
# UPSTREAM: Fix build with hard-float ARM toolchain (Fix iMX boards)
|
||||||
Patch3: 0003-exynos-Set-CNTFRQ.patch
|
Patch3: 0001-video-ipu-Fix-build-with-hard-float-ARM-toolchain.-I.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
# Arndale board need DTC >= 1.4
|
# Arndale board need DTC >= 1.4
|
||||||
BuildRequires: bc
|
BuildRequires: bc
|
||||||
@ -55,7 +55,7 @@ BuildRequires: dtc >= 1.4.0
|
|||||||
BuildRequires: qemu
|
BuildRequires: qemu
|
||||||
Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500
|
Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500
|
||||||
%endif
|
%endif
|
||||||
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2"
|
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi3"
|
||||||
# Owns /boot/vc directory
|
# Owns /boot/vc directory
|
||||||
BuildRequires: raspberrypi-firmware
|
BuildRequires: raspberrypi-firmware
|
||||||
%endif
|
%endif
|
||||||
@ -103,7 +103,7 @@ done
|
|||||||
export NO_BRP_STRIP_DEBUG=true
|
export NO_BRP_STRIP_DEBUG=true
|
||||||
export NO_DEBUGINFO_STRIP_DEBUG=true
|
export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||||
%define uboot_dir /boot
|
%define uboot_dir /boot
|
||||||
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2"
|
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi3"
|
||||||
%define uboot_dir /boot/vc
|
%define uboot_dir /boot/vc
|
||||||
%endif
|
%endif
|
||||||
%if "%{name}" == "u-boot-qemu-ppce500"
|
%if "%{name}" == "u-boot-qemu-ppce500"
|
||||||
|
@ -1,3 +1,21 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed May 18 13:07:24 UTC 2016 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Fix rpi3 installation location
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed May 18 12:22:31 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Add 0001-video-ipu-Fix-build-with-hard-float-ARM-toolchain.-I.patch
|
||||||
|
to fix build on iMX boards (with hard-float toolchains)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue May 17 12:53:24 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Update to 2016.05
|
||||||
|
- Remove upstreamed patch:
|
||||||
|
* 0003-exynos-Set-CNTFRQ.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
|
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
|
||||||
|
|
||||||
|
@ -28,10 +28,10 @@
|
|||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.05-rc3
|
%define archive_version 2016.05
|
||||||
|
|
||||||
Name: u-boot-cubietruck
|
Name: u-boot-cubietruck
|
||||||
Version: 2016.05~rc3
|
Version: 2016.05
|
||||||
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
|
||||||
@ -44,8 +44,8 @@ Source300: u-boot-rpmlintrc
|
|||||||
Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch
|
Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch
|
||||||
# Move omap3 to distro boot method
|
# Move omap3 to distro boot method
|
||||||
Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch
|
Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch
|
||||||
# Fix exynos KVM support
|
# UPSTREAM: Fix build with hard-float ARM toolchain (Fix iMX boards)
|
||||||
Patch3: 0003-exynos-Set-CNTFRQ.patch
|
Patch3: 0001-video-ipu-Fix-build-with-hard-float-ARM-toolchain.-I.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
# Arndale board need DTC >= 1.4
|
# Arndale board need DTC >= 1.4
|
||||||
BuildRequires: bc
|
BuildRequires: bc
|
||||||
@ -55,7 +55,7 @@ BuildRequires: dtc >= 1.4.0
|
|||||||
BuildRequires: qemu
|
BuildRequires: qemu
|
||||||
Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500
|
Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500
|
||||||
%endif
|
%endif
|
||||||
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2"
|
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi3"
|
||||||
# Owns /boot/vc directory
|
# Owns /boot/vc directory
|
||||||
BuildRequires: raspberrypi-firmware
|
BuildRequires: raspberrypi-firmware
|
||||||
%endif
|
%endif
|
||||||
@ -103,7 +103,7 @@ done
|
|||||||
export NO_BRP_STRIP_DEBUG=true
|
export NO_BRP_STRIP_DEBUG=true
|
||||||
export NO_DEBUGINFO_STRIP_DEBUG=true
|
export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||||
%define uboot_dir /boot
|
%define uboot_dir /boot
|
||||||
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2"
|
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi3"
|
||||||
%define uboot_dir /boot/vc
|
%define uboot_dir /boot/vc
|
||||||
%endif
|
%endif
|
||||||
%if "%{name}" == "u-boot-qemu-ppce500"
|
%if "%{name}" == "u-boot-qemu-ppce500"
|
||||||
|
@ -1,3 +1,21 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed May 18 13:07:24 UTC 2016 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Fix rpi3 installation location
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed May 18 12:22:31 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Add 0001-video-ipu-Fix-build-with-hard-float-ARM-toolchain.-I.patch
|
||||||
|
to fix build on iMX boards (with hard-float toolchains)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue May 17 12:53:24 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Update to 2016.05
|
||||||
|
- Remove upstreamed patch:
|
||||||
|
* 0003-exynos-Set-CNTFRQ.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
|
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
|
||||||
|
|
||||||
|
@ -28,10 +28,10 @@
|
|||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.05-rc3
|
%define archive_version 2016.05
|
||||||
|
|
||||||
Name: u-boot-firefly-rk3288
|
Name: u-boot-firefly-rk3288
|
||||||
Version: 2016.05~rc3
|
Version: 2016.05
|
||||||
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
|
||||||
@ -44,8 +44,8 @@ Source300: u-boot-rpmlintrc
|
|||||||
Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch
|
Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch
|
||||||
# Move omap3 to distro boot method
|
# Move omap3 to distro boot method
|
||||||
Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch
|
Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch
|
||||||
# Fix exynos KVM support
|
# UPSTREAM: Fix build with hard-float ARM toolchain (Fix iMX boards)
|
||||||
Patch3: 0003-exynos-Set-CNTFRQ.patch
|
Patch3: 0001-video-ipu-Fix-build-with-hard-float-ARM-toolchain.-I.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
# Arndale board need DTC >= 1.4
|
# Arndale board need DTC >= 1.4
|
||||||
BuildRequires: bc
|
BuildRequires: bc
|
||||||
@ -55,7 +55,7 @@ BuildRequires: dtc >= 1.4.0
|
|||||||
BuildRequires: qemu
|
BuildRequires: qemu
|
||||||
Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500
|
Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500
|
||||||
%endif
|
%endif
|
||||||
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2"
|
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi3"
|
||||||
# Owns /boot/vc directory
|
# Owns /boot/vc directory
|
||||||
BuildRequires: raspberrypi-firmware
|
BuildRequires: raspberrypi-firmware
|
||||||
%endif
|
%endif
|
||||||
@ -103,7 +103,7 @@ done
|
|||||||
export NO_BRP_STRIP_DEBUG=true
|
export NO_BRP_STRIP_DEBUG=true
|
||||||
export NO_DEBUGINFO_STRIP_DEBUG=true
|
export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||||
%define uboot_dir /boot
|
%define uboot_dir /boot
|
||||||
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2"
|
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi3"
|
||||||
%define uboot_dir /boot/vc
|
%define uboot_dir /boot/vc
|
||||||
%endif
|
%endif
|
||||||
%if "%{name}" == "u-boot-qemu-ppce500"
|
%if "%{name}" == "u-boot-qemu-ppce500"
|
||||||
|
@ -1,3 +1,21 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed May 18 13:07:24 UTC 2016 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Fix rpi3 installation location
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed May 18 12:22:31 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Add 0001-video-ipu-Fix-build-with-hard-float-ARM-toolchain.-I.patch
|
||||||
|
to fix build on iMX boards (with hard-float toolchains)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue May 17 12:53:24 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Update to 2016.05
|
||||||
|
- Remove upstreamed patch:
|
||||||
|
* 0003-exynos-Set-CNTFRQ.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
|
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
|
||||||
|
|
||||||
|
@ -28,10 +28,10 @@
|
|||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.05-rc3
|
%define archive_version 2016.05
|
||||||
|
|
||||||
Name: u-boot-highbank
|
Name: u-boot-highbank
|
||||||
Version: 2016.05~rc3
|
Version: 2016.05
|
||||||
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
|
||||||
@ -44,8 +44,8 @@ Source300: u-boot-rpmlintrc
|
|||||||
Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch
|
Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch
|
||||||
# Move omap3 to distro boot method
|
# Move omap3 to distro boot method
|
||||||
Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch
|
Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch
|
||||||
# Fix exynos KVM support
|
# UPSTREAM: Fix build with hard-float ARM toolchain (Fix iMX boards)
|
||||||
Patch3: 0003-exynos-Set-CNTFRQ.patch
|
Patch3: 0001-video-ipu-Fix-build-with-hard-float-ARM-toolchain.-I.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
# Arndale board need DTC >= 1.4
|
# Arndale board need DTC >= 1.4
|
||||||
BuildRequires: bc
|
BuildRequires: bc
|
||||||
@ -55,7 +55,7 @@ BuildRequires: dtc >= 1.4.0
|
|||||||
BuildRequires: qemu
|
BuildRequires: qemu
|
||||||
Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500
|
Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500
|
||||||
%endif
|
%endif
|
||||||
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2"
|
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi3"
|
||||||
# Owns /boot/vc directory
|
# Owns /boot/vc directory
|
||||||
BuildRequires: raspberrypi-firmware
|
BuildRequires: raspberrypi-firmware
|
||||||
%endif
|
%endif
|
||||||
@ -103,7 +103,7 @@ done
|
|||||||
export NO_BRP_STRIP_DEBUG=true
|
export NO_BRP_STRIP_DEBUG=true
|
||||||
export NO_DEBUGINFO_STRIP_DEBUG=true
|
export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||||
%define uboot_dir /boot
|
%define uboot_dir /boot
|
||||||
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2"
|
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi3"
|
||||||
%define uboot_dir /boot/vc
|
%define uboot_dir /boot/vc
|
||||||
%endif
|
%endif
|
||||||
%if "%{name}" == "u-boot-qemu-ppce500"
|
%if "%{name}" == "u-boot-qemu-ppce500"
|
||||||
|
@ -1,3 +1,21 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed May 18 13:07:24 UTC 2016 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Fix rpi3 installation location
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed May 18 12:22:31 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Add 0001-video-ipu-Fix-build-with-hard-float-ARM-toolchain.-I.patch
|
||||||
|
to fix build on iMX boards (with hard-float toolchains)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue May 17 12:53:24 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Update to 2016.05
|
||||||
|
- Remove upstreamed patch:
|
||||||
|
* 0003-exynos-Set-CNTFRQ.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
|
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
|
||||||
|
|
||||||
|
@ -28,10 +28,10 @@
|
|||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.05-rc3
|
%define archive_version 2016.05
|
||||||
|
|
||||||
Name: u-boot-hyundaia7hd
|
Name: u-boot-hyundaia7hd
|
||||||
Version: 2016.05~rc3
|
Version: 2016.05
|
||||||
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
|
||||||
@ -44,8 +44,8 @@ Source300: u-boot-rpmlintrc
|
|||||||
Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch
|
Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch
|
||||||
# Move omap3 to distro boot method
|
# Move omap3 to distro boot method
|
||||||
Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch
|
Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch
|
||||||
# Fix exynos KVM support
|
# UPSTREAM: Fix build with hard-float ARM toolchain (Fix iMX boards)
|
||||||
Patch3: 0003-exynos-Set-CNTFRQ.patch
|
Patch3: 0001-video-ipu-Fix-build-with-hard-float-ARM-toolchain.-I.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
# Arndale board need DTC >= 1.4
|
# Arndale board need DTC >= 1.4
|
||||||
BuildRequires: bc
|
BuildRequires: bc
|
||||||
@ -55,7 +55,7 @@ BuildRequires: dtc >= 1.4.0
|
|||||||
BuildRequires: qemu
|
BuildRequires: qemu
|
||||||
Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500
|
Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500
|
||||||
%endif
|
%endif
|
||||||
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2"
|
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi3"
|
||||||
# Owns /boot/vc directory
|
# Owns /boot/vc directory
|
||||||
BuildRequires: raspberrypi-firmware
|
BuildRequires: raspberrypi-firmware
|
||||||
%endif
|
%endif
|
||||||
@ -103,7 +103,7 @@ done
|
|||||||
export NO_BRP_STRIP_DEBUG=true
|
export NO_BRP_STRIP_DEBUG=true
|
||||||
export NO_DEBUGINFO_STRIP_DEBUG=true
|
export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||||
%define uboot_dir /boot
|
%define uboot_dir /boot
|
||||||
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2"
|
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi3"
|
||||||
%define uboot_dir /boot/vc
|
%define uboot_dir /boot/vc
|
||||||
%endif
|
%endif
|
||||||
%if "%{name}" == "u-boot-qemu-ppce500"
|
%if "%{name}" == "u-boot-qemu-ppce500"
|
||||||
|
@ -1,3 +1,21 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed May 18 13:07:24 UTC 2016 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Fix rpi3 installation location
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed May 18 12:22:31 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Add 0001-video-ipu-Fix-build-with-hard-float-ARM-toolchain.-I.patch
|
||||||
|
to fix build on iMX boards (with hard-float toolchains)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue May 17 12:53:24 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Update to 2016.05
|
||||||
|
- Remove upstreamed patch:
|
||||||
|
* 0003-exynos-Set-CNTFRQ.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
|
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
|
||||||
|
|
||||||
|
@ -28,10 +28,10 @@
|
|||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.05-rc3
|
%define archive_version 2016.05
|
||||||
|
|
||||||
Name: u-boot-jetson-tk1
|
Name: u-boot-jetson-tk1
|
||||||
Version: 2016.05~rc3
|
Version: 2016.05
|
||||||
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
|
||||||
@ -44,8 +44,8 @@ Source300: u-boot-rpmlintrc
|
|||||||
Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch
|
Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch
|
||||||
# Move omap3 to distro boot method
|
# Move omap3 to distro boot method
|
||||||
Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch
|
Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch
|
||||||
# Fix exynos KVM support
|
# UPSTREAM: Fix build with hard-float ARM toolchain (Fix iMX boards)
|
||||||
Patch3: 0003-exynos-Set-CNTFRQ.patch
|
Patch3: 0001-video-ipu-Fix-build-with-hard-float-ARM-toolchain.-I.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
# Arndale board need DTC >= 1.4
|
# Arndale board need DTC >= 1.4
|
||||||
BuildRequires: bc
|
BuildRequires: bc
|
||||||
@ -55,7 +55,7 @@ BuildRequires: dtc >= 1.4.0
|
|||||||
BuildRequires: qemu
|
BuildRequires: qemu
|
||||||
Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500
|
Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500
|
||||||
%endif
|
%endif
|
||||||
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2"
|
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi3"
|
||||||
# Owns /boot/vc directory
|
# Owns /boot/vc directory
|
||||||
BuildRequires: raspberrypi-firmware
|
BuildRequires: raspberrypi-firmware
|
||||||
%endif
|
%endif
|
||||||
@ -103,7 +103,7 @@ done
|
|||||||
export NO_BRP_STRIP_DEBUG=true
|
export NO_BRP_STRIP_DEBUG=true
|
||||||
export NO_DEBUGINFO_STRIP_DEBUG=true
|
export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||||
%define uboot_dir /boot
|
%define uboot_dir /boot
|
||||||
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2"
|
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi3"
|
||||||
%define uboot_dir /boot/vc
|
%define uboot_dir /boot/vc
|
||||||
%endif
|
%endif
|
||||||
%if "%{name}" == "u-boot-qemu-ppce500"
|
%if "%{name}" == "u-boot-qemu-ppce500"
|
||||||
|
@ -1,3 +1,21 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed May 18 13:07:24 UTC 2016 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Fix rpi3 installation location
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed May 18 12:22:31 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Add 0001-video-ipu-Fix-build-with-hard-float-ARM-toolchain.-I.patch
|
||||||
|
to fix build on iMX boards (with hard-float toolchains)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue May 17 12:53:24 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Update to 2016.05
|
||||||
|
- Remove upstreamed patch:
|
||||||
|
* 0003-exynos-Set-CNTFRQ.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
|
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
|
||||||
|
|
||||||
|
@ -28,10 +28,10 @@
|
|||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.05-rc3
|
%define archive_version 2016.05
|
||||||
|
|
||||||
Name: u-boot-melea1000
|
Name: u-boot-melea1000
|
||||||
Version: 2016.05~rc3
|
Version: 2016.05
|
||||||
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
|
||||||
@ -44,8 +44,8 @@ Source300: u-boot-rpmlintrc
|
|||||||
Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch
|
Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch
|
||||||
# Move omap3 to distro boot method
|
# Move omap3 to distro boot method
|
||||||
Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch
|
Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch
|
||||||
# Fix exynos KVM support
|
# UPSTREAM: Fix build with hard-float ARM toolchain (Fix iMX boards)
|
||||||
Patch3: 0003-exynos-Set-CNTFRQ.patch
|
Patch3: 0001-video-ipu-Fix-build-with-hard-float-ARM-toolchain.-I.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
# Arndale board need DTC >= 1.4
|
# Arndale board need DTC >= 1.4
|
||||||
BuildRequires: bc
|
BuildRequires: bc
|
||||||
@ -55,7 +55,7 @@ BuildRequires: dtc >= 1.4.0
|
|||||||
BuildRequires: qemu
|
BuildRequires: qemu
|
||||||
Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500
|
Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500
|
||||||
%endif
|
%endif
|
||||||
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2"
|
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi3"
|
||||||
# Owns /boot/vc directory
|
# Owns /boot/vc directory
|
||||||
BuildRequires: raspberrypi-firmware
|
BuildRequires: raspberrypi-firmware
|
||||||
%endif
|
%endif
|
||||||
@ -103,7 +103,7 @@ done
|
|||||||
export NO_BRP_STRIP_DEBUG=true
|
export NO_BRP_STRIP_DEBUG=true
|
||||||
export NO_DEBUGINFO_STRIP_DEBUG=true
|
export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||||
%define uboot_dir /boot
|
%define uboot_dir /boot
|
||||||
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2"
|
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi3"
|
||||||
%define uboot_dir /boot/vc
|
%define uboot_dir /boot/vc
|
||||||
%endif
|
%endif
|
||||||
%if "%{name}" == "u-boot-qemu-ppce500"
|
%if "%{name}" == "u-boot-qemu-ppce500"
|
||||||
|
@ -1,3 +1,21 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed May 18 13:07:24 UTC 2016 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Fix rpi3 installation location
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed May 18 12:22:31 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Add 0001-video-ipu-Fix-build-with-hard-float-ARM-toolchain.-I.patch
|
||||||
|
to fix build on iMX boards (with hard-float toolchains)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue May 17 12:53:24 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Update to 2016.05
|
||||||
|
- Remove upstreamed patch:
|
||||||
|
* 0003-exynos-Set-CNTFRQ.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
|
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
|
||||||
|
|
||||||
|
@ -28,10 +28,10 @@
|
|||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.05-rc3
|
%define archive_version 2016.05
|
||||||
|
|
||||||
Name: u-boot-merriia80optimus
|
Name: u-boot-merriia80optimus
|
||||||
Version: 2016.05~rc3
|
Version: 2016.05
|
||||||
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
|
||||||
@ -44,8 +44,8 @@ Source300: u-boot-rpmlintrc
|
|||||||
Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch
|
Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch
|
||||||
# Move omap3 to distro boot method
|
# Move omap3 to distro boot method
|
||||||
Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch
|
Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch
|
||||||
# Fix exynos KVM support
|
# UPSTREAM: Fix build with hard-float ARM toolchain (Fix iMX boards)
|
||||||
Patch3: 0003-exynos-Set-CNTFRQ.patch
|
Patch3: 0001-video-ipu-Fix-build-with-hard-float-ARM-toolchain.-I.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
# Arndale board need DTC >= 1.4
|
# Arndale board need DTC >= 1.4
|
||||||
BuildRequires: bc
|
BuildRequires: bc
|
||||||
@ -55,7 +55,7 @@ BuildRequires: dtc >= 1.4.0
|
|||||||
BuildRequires: qemu
|
BuildRequires: qemu
|
||||||
Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500
|
Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500
|
||||||
%endif
|
%endif
|
||||||
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2"
|
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi3"
|
||||||
# Owns /boot/vc directory
|
# Owns /boot/vc directory
|
||||||
BuildRequires: raspberrypi-firmware
|
BuildRequires: raspberrypi-firmware
|
||||||
%endif
|
%endif
|
||||||
@ -103,7 +103,7 @@ done
|
|||||||
export NO_BRP_STRIP_DEBUG=true
|
export NO_BRP_STRIP_DEBUG=true
|
||||||
export NO_DEBUGINFO_STRIP_DEBUG=true
|
export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||||
%define uboot_dir /boot
|
%define uboot_dir /boot
|
||||||
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2"
|
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi3"
|
||||||
%define uboot_dir /boot/vc
|
%define uboot_dir /boot/vc
|
||||||
%endif
|
%endif
|
||||||
%if "%{name}" == "u-boot-qemu-ppce500"
|
%if "%{name}" == "u-boot-qemu-ppce500"
|
||||||
|
@ -1,3 +1,21 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed May 18 13:07:24 UTC 2016 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Fix rpi3 installation location
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed May 18 12:22:31 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Add 0001-video-ipu-Fix-build-with-hard-float-ARM-toolchain.-I.patch
|
||||||
|
to fix build on iMX boards (with hard-float toolchains)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue May 17 12:53:24 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Update to 2016.05
|
||||||
|
- Remove upstreamed patch:
|
||||||
|
* 0003-exynos-Set-CNTFRQ.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
|
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
|
||||||
|
|
||||||
|
@ -28,10 +28,10 @@
|
|||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.05-rc3
|
%define archive_version 2016.05
|
||||||
|
|
||||||
Name: u-boot-mx53loco
|
Name: u-boot-mx53loco
|
||||||
Version: 2016.05~rc3
|
Version: 2016.05
|
||||||
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
|
||||||
@ -44,8 +44,8 @@ Source300: u-boot-rpmlintrc
|
|||||||
Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch
|
Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch
|
||||||
# Move omap3 to distro boot method
|
# Move omap3 to distro boot method
|
||||||
Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch
|
Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch
|
||||||
# Fix exynos KVM support
|
# UPSTREAM: Fix build with hard-float ARM toolchain (Fix iMX boards)
|
||||||
Patch3: 0003-exynos-Set-CNTFRQ.patch
|
Patch3: 0001-video-ipu-Fix-build-with-hard-float-ARM-toolchain.-I.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
# Arndale board need DTC >= 1.4
|
# Arndale board need DTC >= 1.4
|
||||||
BuildRequires: bc
|
BuildRequires: bc
|
||||||
@ -55,7 +55,7 @@ BuildRequires: dtc >= 1.4.0
|
|||||||
BuildRequires: qemu
|
BuildRequires: qemu
|
||||||
Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500
|
Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500
|
||||||
%endif
|
%endif
|
||||||
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2"
|
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi3"
|
||||||
# Owns /boot/vc directory
|
# Owns /boot/vc directory
|
||||||
BuildRequires: raspberrypi-firmware
|
BuildRequires: raspberrypi-firmware
|
||||||
%endif
|
%endif
|
||||||
@ -103,7 +103,7 @@ done
|
|||||||
export NO_BRP_STRIP_DEBUG=true
|
export NO_BRP_STRIP_DEBUG=true
|
||||||
export NO_DEBUGINFO_STRIP_DEBUG=true
|
export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||||
%define uboot_dir /boot
|
%define uboot_dir /boot
|
||||||
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2"
|
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi3"
|
||||||
%define uboot_dir /boot/vc
|
%define uboot_dir /boot/vc
|
||||||
%endif
|
%endif
|
||||||
%if "%{name}" == "u-boot-qemu-ppce500"
|
%if "%{name}" == "u-boot-qemu-ppce500"
|
||||||
|
@ -1,3 +1,21 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed May 18 13:07:24 UTC 2016 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Fix rpi3 installation location
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed May 18 12:22:31 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Add 0001-video-ipu-Fix-build-with-hard-float-ARM-toolchain.-I.patch
|
||||||
|
to fix build on iMX boards (with hard-float toolchains)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue May 17 12:53:24 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Update to 2016.05
|
||||||
|
- Remove upstreamed patch:
|
||||||
|
* 0003-exynos-Set-CNTFRQ.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
|
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
|
||||||
|
|
||||||
|
@ -28,10 +28,10 @@
|
|||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.05-rc3
|
%define archive_version 2016.05
|
||||||
|
|
||||||
Name: u-boot-mx6cuboxi
|
Name: u-boot-mx6cuboxi
|
||||||
Version: 2016.05~rc3
|
Version: 2016.05
|
||||||
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
|
||||||
@ -44,8 +44,8 @@ Source300: u-boot-rpmlintrc
|
|||||||
Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch
|
Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch
|
||||||
# Move omap3 to distro boot method
|
# Move omap3 to distro boot method
|
||||||
Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch
|
Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch
|
||||||
# Fix exynos KVM support
|
# UPSTREAM: Fix build with hard-float ARM toolchain (Fix iMX boards)
|
||||||
Patch3: 0003-exynos-Set-CNTFRQ.patch
|
Patch3: 0001-video-ipu-Fix-build-with-hard-float-ARM-toolchain.-I.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
# Arndale board need DTC >= 1.4
|
# Arndale board need DTC >= 1.4
|
||||||
BuildRequires: bc
|
BuildRequires: bc
|
||||||
@ -55,7 +55,7 @@ BuildRequires: dtc >= 1.4.0
|
|||||||
BuildRequires: qemu
|
BuildRequires: qemu
|
||||||
Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500
|
Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500
|
||||||
%endif
|
%endif
|
||||||
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2"
|
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi3"
|
||||||
# Owns /boot/vc directory
|
# Owns /boot/vc directory
|
||||||
BuildRequires: raspberrypi-firmware
|
BuildRequires: raspberrypi-firmware
|
||||||
%endif
|
%endif
|
||||||
@ -103,7 +103,7 @@ done
|
|||||||
export NO_BRP_STRIP_DEBUG=true
|
export NO_BRP_STRIP_DEBUG=true
|
||||||
export NO_DEBUGINFO_STRIP_DEBUG=true
|
export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||||
%define uboot_dir /boot
|
%define uboot_dir /boot
|
||||||
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2"
|
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi3"
|
||||||
%define uboot_dir /boot/vc
|
%define uboot_dir /boot/vc
|
||||||
%endif
|
%endif
|
||||||
%if "%{name}" == "u-boot-qemu-ppce500"
|
%if "%{name}" == "u-boot-qemu-ppce500"
|
||||||
|
@ -1,3 +1,21 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed May 18 13:07:24 UTC 2016 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Fix rpi3 installation location
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed May 18 12:22:31 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Add 0001-video-ipu-Fix-build-with-hard-float-ARM-toolchain.-I.patch
|
||||||
|
to fix build on iMX boards (with hard-float toolchains)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue May 17 12:53:24 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Update to 2016.05
|
||||||
|
- Remove upstreamed patch:
|
||||||
|
* 0003-exynos-Set-CNTFRQ.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
|
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
|
||||||
|
|
||||||
|
@ -28,10 +28,10 @@
|
|||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.05-rc3
|
%define archive_version 2016.05
|
||||||
|
|
||||||
Name: u-boot-mx6qsabrelite
|
Name: u-boot-mx6qsabrelite
|
||||||
Version: 2016.05~rc3
|
Version: 2016.05
|
||||||
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
|
||||||
@ -44,8 +44,8 @@ Source300: u-boot-rpmlintrc
|
|||||||
Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch
|
Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch
|
||||||
# Move omap3 to distro boot method
|
# Move omap3 to distro boot method
|
||||||
Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch
|
Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch
|
||||||
# Fix exynos KVM support
|
# UPSTREAM: Fix build with hard-float ARM toolchain (Fix iMX boards)
|
||||||
Patch3: 0003-exynos-Set-CNTFRQ.patch
|
Patch3: 0001-video-ipu-Fix-build-with-hard-float-ARM-toolchain.-I.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
# Arndale board need DTC >= 1.4
|
# Arndale board need DTC >= 1.4
|
||||||
BuildRequires: bc
|
BuildRequires: bc
|
||||||
@ -55,7 +55,7 @@ BuildRequires: dtc >= 1.4.0
|
|||||||
BuildRequires: qemu
|
BuildRequires: qemu
|
||||||
Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500
|
Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500
|
||||||
%endif
|
%endif
|
||||||
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2"
|
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi3"
|
||||||
# Owns /boot/vc directory
|
# Owns /boot/vc directory
|
||||||
BuildRequires: raspberrypi-firmware
|
BuildRequires: raspberrypi-firmware
|
||||||
%endif
|
%endif
|
||||||
@ -103,7 +103,7 @@ done
|
|||||||
export NO_BRP_STRIP_DEBUG=true
|
export NO_BRP_STRIP_DEBUG=true
|
||||||
export NO_DEBUGINFO_STRIP_DEBUG=true
|
export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||||
%define uboot_dir /boot
|
%define uboot_dir /boot
|
||||||
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2"
|
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi3"
|
||||||
%define uboot_dir /boot/vc
|
%define uboot_dir /boot/vc
|
||||||
%endif
|
%endif
|
||||||
%if "%{name}" == "u-boot-qemu-ppce500"
|
%if "%{name}" == "u-boot-qemu-ppce500"
|
||||||
|
@ -1,3 +1,21 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed May 18 13:07:24 UTC 2016 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Fix rpi3 installation location
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed May 18 12:22:31 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Add 0001-video-ipu-Fix-build-with-hard-float-ARM-toolchain.-I.patch
|
||||||
|
to fix build on iMX boards (with hard-float toolchains)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue May 17 12:53:24 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Update to 2016.05
|
||||||
|
- Remove upstreamed patch:
|
||||||
|
* 0003-exynos-Set-CNTFRQ.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
|
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
|
||||||
|
|
||||||
|
@ -28,10 +28,10 @@
|
|||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.05-rc3
|
%define archive_version 2016.05
|
||||||
|
|
||||||
Name: u-boot-odroid-xu3
|
Name: u-boot-odroid-xu3
|
||||||
Version: 2016.05~rc3
|
Version: 2016.05
|
||||||
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
|
||||||
@ -44,8 +44,8 @@ Source300: u-boot-rpmlintrc
|
|||||||
Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch
|
Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch
|
||||||
# Move omap3 to distro boot method
|
# Move omap3 to distro boot method
|
||||||
Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch
|
Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch
|
||||||
# Fix exynos KVM support
|
# UPSTREAM: Fix build with hard-float ARM toolchain (Fix iMX boards)
|
||||||
Patch3: 0003-exynos-Set-CNTFRQ.patch
|
Patch3: 0001-video-ipu-Fix-build-with-hard-float-ARM-toolchain.-I.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
# Arndale board need DTC >= 1.4
|
# Arndale board need DTC >= 1.4
|
||||||
BuildRequires: bc
|
BuildRequires: bc
|
||||||
@ -55,7 +55,7 @@ BuildRequires: dtc >= 1.4.0
|
|||||||
BuildRequires: qemu
|
BuildRequires: qemu
|
||||||
Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500
|
Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500
|
||||||
%endif
|
%endif
|
||||||
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2"
|
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi3"
|
||||||
# Owns /boot/vc directory
|
# Owns /boot/vc directory
|
||||||
BuildRequires: raspberrypi-firmware
|
BuildRequires: raspberrypi-firmware
|
||||||
%endif
|
%endif
|
||||||
@ -103,7 +103,7 @@ done
|
|||||||
export NO_BRP_STRIP_DEBUG=true
|
export NO_BRP_STRIP_DEBUG=true
|
||||||
export NO_DEBUGINFO_STRIP_DEBUG=true
|
export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||||
%define uboot_dir /boot
|
%define uboot_dir /boot
|
||||||
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2"
|
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi3"
|
||||||
%define uboot_dir /boot/vc
|
%define uboot_dir /boot/vc
|
||||||
%endif
|
%endif
|
||||||
%if "%{name}" == "u-boot-qemu-ppce500"
|
%if "%{name}" == "u-boot-qemu-ppce500"
|
||||||
|
@ -1,3 +1,21 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed May 18 13:07:24 UTC 2016 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Fix rpi3 installation location
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed May 18 12:22:31 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Add 0001-video-ipu-Fix-build-with-hard-float-ARM-toolchain.-I.patch
|
||||||
|
to fix build on iMX boards (with hard-float toolchains)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue May 17 12:53:24 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Update to 2016.05
|
||||||
|
- Remove upstreamed patch:
|
||||||
|
* 0003-exynos-Set-CNTFRQ.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
|
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
|
||||||
|
|
||||||
|
@ -28,10 +28,10 @@
|
|||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.05-rc3
|
%define archive_version 2016.05
|
||||||
|
|
||||||
Name: u-boot-odroid
|
Name: u-boot-odroid
|
||||||
Version: 2016.05~rc3
|
Version: 2016.05
|
||||||
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
|
||||||
@ -44,8 +44,8 @@ Source300: u-boot-rpmlintrc
|
|||||||
Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch
|
Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch
|
||||||
# Move omap3 to distro boot method
|
# Move omap3 to distro boot method
|
||||||
Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch
|
Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch
|
||||||
# Fix exynos KVM support
|
# UPSTREAM: Fix build with hard-float ARM toolchain (Fix iMX boards)
|
||||||
Patch3: 0003-exynos-Set-CNTFRQ.patch
|
Patch3: 0001-video-ipu-Fix-build-with-hard-float-ARM-toolchain.-I.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
# Arndale board need DTC >= 1.4
|
# Arndale board need DTC >= 1.4
|
||||||
BuildRequires: bc
|
BuildRequires: bc
|
||||||
@ -55,7 +55,7 @@ BuildRequires: dtc >= 1.4.0
|
|||||||
BuildRequires: qemu
|
BuildRequires: qemu
|
||||||
Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500
|
Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500
|
||||||
%endif
|
%endif
|
||||||
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2"
|
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi3"
|
||||||
# Owns /boot/vc directory
|
# Owns /boot/vc directory
|
||||||
BuildRequires: raspberrypi-firmware
|
BuildRequires: raspberrypi-firmware
|
||||||
%endif
|
%endif
|
||||||
@ -103,7 +103,7 @@ done
|
|||||||
export NO_BRP_STRIP_DEBUG=true
|
export NO_BRP_STRIP_DEBUG=true
|
||||||
export NO_DEBUGINFO_STRIP_DEBUG=true
|
export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||||
%define uboot_dir /boot
|
%define uboot_dir /boot
|
||||||
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2"
|
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi3"
|
||||||
%define uboot_dir /boot/vc
|
%define uboot_dir /boot/vc
|
||||||
%endif
|
%endif
|
||||||
%if "%{name}" == "u-boot-qemu-ppce500"
|
%if "%{name}" == "u-boot-qemu-ppce500"
|
||||||
|
@ -1,3 +1,21 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed May 18 13:07:24 UTC 2016 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Fix rpi3 installation location
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed May 18 12:22:31 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Add 0001-video-ipu-Fix-build-with-hard-float-ARM-toolchain.-I.patch
|
||||||
|
to fix build on iMX boards (with hard-float toolchains)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue May 17 12:53:24 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Update to 2016.05
|
||||||
|
- Remove upstreamed patch:
|
||||||
|
* 0003-exynos-Set-CNTFRQ.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
|
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
|
||||||
|
|
||||||
|
@ -28,10 +28,10 @@
|
|||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.05-rc3
|
%define archive_version 2016.05
|
||||||
|
|
||||||
Name: u-boot-omap3beagle
|
Name: u-boot-omap3beagle
|
||||||
Version: 2016.05~rc3
|
Version: 2016.05
|
||||||
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
|
||||||
@ -44,8 +44,8 @@ Source300: u-boot-rpmlintrc
|
|||||||
Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch
|
Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch
|
||||||
# Move omap3 to distro boot method
|
# Move omap3 to distro boot method
|
||||||
Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch
|
Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch
|
||||||
# Fix exynos KVM support
|
# UPSTREAM: Fix build with hard-float ARM toolchain (Fix iMX boards)
|
||||||
Patch3: 0003-exynos-Set-CNTFRQ.patch
|
Patch3: 0001-video-ipu-Fix-build-with-hard-float-ARM-toolchain.-I.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
# Arndale board need DTC >= 1.4
|
# Arndale board need DTC >= 1.4
|
||||||
BuildRequires: bc
|
BuildRequires: bc
|
||||||
@ -55,7 +55,7 @@ BuildRequires: dtc >= 1.4.0
|
|||||||
BuildRequires: qemu
|
BuildRequires: qemu
|
||||||
Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500
|
Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500
|
||||||
%endif
|
%endif
|
||||||
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2"
|
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi3"
|
||||||
# Owns /boot/vc directory
|
# Owns /boot/vc directory
|
||||||
BuildRequires: raspberrypi-firmware
|
BuildRequires: raspberrypi-firmware
|
||||||
%endif
|
%endif
|
||||||
@ -103,7 +103,7 @@ done
|
|||||||
export NO_BRP_STRIP_DEBUG=true
|
export NO_BRP_STRIP_DEBUG=true
|
||||||
export NO_DEBUGINFO_STRIP_DEBUG=true
|
export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||||
%define uboot_dir /boot
|
%define uboot_dir /boot
|
||||||
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2"
|
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi3"
|
||||||
%define uboot_dir /boot/vc
|
%define uboot_dir /boot/vc
|
||||||
%endif
|
%endif
|
||||||
%if "%{name}" == "u-boot-qemu-ppce500"
|
%if "%{name}" == "u-boot-qemu-ppce500"
|
||||||
|
@ -1,3 +1,21 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed May 18 13:07:24 UTC 2016 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Fix rpi3 installation location
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed May 18 12:22:31 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Add 0001-video-ipu-Fix-build-with-hard-float-ARM-toolchain.-I.patch
|
||||||
|
to fix build on iMX boards (with hard-float toolchains)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue May 17 12:53:24 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Update to 2016.05
|
||||||
|
- Remove upstreamed patch:
|
||||||
|
* 0003-exynos-Set-CNTFRQ.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
|
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
|
||||||
|
|
||||||
|
@ -28,10 +28,10 @@
|
|||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.05-rc3
|
%define archive_version 2016.05
|
||||||
|
|
||||||
Name: u-boot-omap4panda
|
Name: u-boot-omap4panda
|
||||||
Version: 2016.05~rc3
|
Version: 2016.05
|
||||||
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
|
||||||
@ -44,8 +44,8 @@ Source300: u-boot-rpmlintrc
|
|||||||
Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch
|
Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch
|
||||||
# Move omap3 to distro boot method
|
# Move omap3 to distro boot method
|
||||||
Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch
|
Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch
|
||||||
# Fix exynos KVM support
|
# UPSTREAM: Fix build with hard-float ARM toolchain (Fix iMX boards)
|
||||||
Patch3: 0003-exynos-Set-CNTFRQ.patch
|
Patch3: 0001-video-ipu-Fix-build-with-hard-float-ARM-toolchain.-I.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
# Arndale board need DTC >= 1.4
|
# Arndale board need DTC >= 1.4
|
||||||
BuildRequires: bc
|
BuildRequires: bc
|
||||||
@ -55,7 +55,7 @@ BuildRequires: dtc >= 1.4.0
|
|||||||
BuildRequires: qemu
|
BuildRequires: qemu
|
||||||
Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500
|
Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500
|
||||||
%endif
|
%endif
|
||||||
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2"
|
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi3"
|
||||||
# Owns /boot/vc directory
|
# Owns /boot/vc directory
|
||||||
BuildRequires: raspberrypi-firmware
|
BuildRequires: raspberrypi-firmware
|
||||||
%endif
|
%endif
|
||||||
@ -103,7 +103,7 @@ done
|
|||||||
export NO_BRP_STRIP_DEBUG=true
|
export NO_BRP_STRIP_DEBUG=true
|
||||||
export NO_DEBUGINFO_STRIP_DEBUG=true
|
export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||||
%define uboot_dir /boot
|
%define uboot_dir /boot
|
||||||
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2"
|
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi3"
|
||||||
%define uboot_dir /boot/vc
|
%define uboot_dir /boot/vc
|
||||||
%endif
|
%endif
|
||||||
%if "%{name}" == "u-boot-qemu-ppce500"
|
%if "%{name}" == "u-boot-qemu-ppce500"
|
||||||
|
@ -1,3 +1,21 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed May 18 13:07:24 UTC 2016 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Fix rpi3 installation location
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed May 18 12:22:31 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Add 0001-video-ipu-Fix-build-with-hard-float-ARM-toolchain.-I.patch
|
||||||
|
to fix build on iMX boards (with hard-float toolchains)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue May 17 12:53:24 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Update to 2016.05
|
||||||
|
- Remove upstreamed patch:
|
||||||
|
* 0003-exynos-Set-CNTFRQ.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
|
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
|
||||||
|
|
||||||
|
@ -28,10 +28,10 @@
|
|||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.05-rc3
|
%define archive_version 2016.05
|
||||||
|
|
||||||
Name: u-boot-orangepipc
|
Name: u-boot-orangepipc
|
||||||
Version: 2016.05~rc3
|
Version: 2016.05
|
||||||
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
|
||||||
@ -44,8 +44,8 @@ Source300: u-boot-rpmlintrc
|
|||||||
Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch
|
Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch
|
||||||
# Move omap3 to distro boot method
|
# Move omap3 to distro boot method
|
||||||
Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch
|
Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch
|
||||||
# Fix exynos KVM support
|
# UPSTREAM: Fix build with hard-float ARM toolchain (Fix iMX boards)
|
||||||
Patch3: 0003-exynos-Set-CNTFRQ.patch
|
Patch3: 0001-video-ipu-Fix-build-with-hard-float-ARM-toolchain.-I.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
# Arndale board need DTC >= 1.4
|
# Arndale board need DTC >= 1.4
|
||||||
BuildRequires: bc
|
BuildRequires: bc
|
||||||
@ -55,7 +55,7 @@ BuildRequires: dtc >= 1.4.0
|
|||||||
BuildRequires: qemu
|
BuildRequires: qemu
|
||||||
Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500
|
Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500
|
||||||
%endif
|
%endif
|
||||||
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2"
|
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi3"
|
||||||
# Owns /boot/vc directory
|
# Owns /boot/vc directory
|
||||||
BuildRequires: raspberrypi-firmware
|
BuildRequires: raspberrypi-firmware
|
||||||
%endif
|
%endif
|
||||||
@ -103,7 +103,7 @@ done
|
|||||||
export NO_BRP_STRIP_DEBUG=true
|
export NO_BRP_STRIP_DEBUG=true
|
||||||
export NO_DEBUGINFO_STRIP_DEBUG=true
|
export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||||
%define uboot_dir /boot
|
%define uboot_dir /boot
|
||||||
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2"
|
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi3"
|
||||||
%define uboot_dir /boot/vc
|
%define uboot_dir /boot/vc
|
||||||
%endif
|
%endif
|
||||||
%if "%{name}" == "u-boot-qemu-ppce500"
|
%if "%{name}" == "u-boot-qemu-ppce500"
|
||||||
|
@ -1,3 +1,21 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed May 18 13:07:24 UTC 2016 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Fix rpi3 installation location
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed May 18 12:22:31 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Add 0001-video-ipu-Fix-build-with-hard-float-ARM-toolchain.-I.patch
|
||||||
|
to fix build on iMX boards (with hard-float toolchains)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue May 17 12:53:24 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Update to 2016.05
|
||||||
|
- Remove upstreamed patch:
|
||||||
|
* 0003-exynos-Set-CNTFRQ.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
|
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
|
||||||
|
|
||||||
|
@ -28,10 +28,10 @@
|
|||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.05-rc3
|
%define archive_version 2016.05
|
||||||
|
|
||||||
Name: u-boot-p2371-2180
|
Name: u-boot-p2371-2180
|
||||||
Version: 2016.05~rc3
|
Version: 2016.05
|
||||||
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
|
||||||
@ -44,8 +44,8 @@ Source300: u-boot-rpmlintrc
|
|||||||
Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch
|
Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch
|
||||||
# Move omap3 to distro boot method
|
# Move omap3 to distro boot method
|
||||||
Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch
|
Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch
|
||||||
# Fix exynos KVM support
|
# UPSTREAM: Fix build with hard-float ARM toolchain (Fix iMX boards)
|
||||||
Patch3: 0003-exynos-Set-CNTFRQ.patch
|
Patch3: 0001-video-ipu-Fix-build-with-hard-float-ARM-toolchain.-I.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
# Arndale board need DTC >= 1.4
|
# Arndale board need DTC >= 1.4
|
||||||
BuildRequires: bc
|
BuildRequires: bc
|
||||||
@ -55,7 +55,7 @@ BuildRequires: dtc >= 1.4.0
|
|||||||
BuildRequires: qemu
|
BuildRequires: qemu
|
||||||
Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500
|
Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500
|
||||||
%endif
|
%endif
|
||||||
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2"
|
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi3"
|
||||||
# Owns /boot/vc directory
|
# Owns /boot/vc directory
|
||||||
BuildRequires: raspberrypi-firmware
|
BuildRequires: raspberrypi-firmware
|
||||||
%endif
|
%endif
|
||||||
@ -103,7 +103,7 @@ done
|
|||||||
export NO_BRP_STRIP_DEBUG=true
|
export NO_BRP_STRIP_DEBUG=true
|
||||||
export NO_DEBUGINFO_STRIP_DEBUG=true
|
export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||||
%define uboot_dir /boot
|
%define uboot_dir /boot
|
||||||
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2"
|
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi3"
|
||||||
%define uboot_dir /boot/vc
|
%define uboot_dir /boot/vc
|
||||||
%endif
|
%endif
|
||||||
%if "%{name}" == "u-boot-qemu-ppce500"
|
%if "%{name}" == "u-boot-qemu-ppce500"
|
||||||
|
@ -1,3 +1,21 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed May 18 13:07:24 UTC 2016 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Fix rpi3 installation location
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed May 18 12:22:31 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Add 0001-video-ipu-Fix-build-with-hard-float-ARM-toolchain.-I.patch
|
||||||
|
to fix build on iMX boards (with hard-float toolchains)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue May 17 12:53:24 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Update to 2016.05
|
||||||
|
- Remove upstreamed patch:
|
||||||
|
* 0003-exynos-Set-CNTFRQ.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
|
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
|
||||||
|
|
||||||
|
@ -28,10 +28,10 @@
|
|||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.05-rc3
|
%define archive_version 2016.05
|
||||||
|
|
||||||
Name: u-boot-paz00
|
Name: u-boot-paz00
|
||||||
Version: 2016.05~rc3
|
Version: 2016.05
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: The U-Boot firmware for the paz00 platform
|
Summary: The U-Boot firmware for the paz00 platform
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
@ -44,8 +44,8 @@ Source300: u-boot-rpmlintrc
|
|||||||
Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch
|
Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch
|
||||||
# Move omap3 to distro boot method
|
# Move omap3 to distro boot method
|
||||||
Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch
|
Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch
|
||||||
# Fix exynos KVM support
|
# UPSTREAM: Fix build with hard-float ARM toolchain (Fix iMX boards)
|
||||||
Patch3: 0003-exynos-Set-CNTFRQ.patch
|
Patch3: 0001-video-ipu-Fix-build-with-hard-float-ARM-toolchain.-I.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
# Arndale board need DTC >= 1.4
|
# Arndale board need DTC >= 1.4
|
||||||
BuildRequires: bc
|
BuildRequires: bc
|
||||||
@ -55,7 +55,7 @@ BuildRequires: dtc >= 1.4.0
|
|||||||
BuildRequires: qemu
|
BuildRequires: qemu
|
||||||
Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500
|
Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500
|
||||||
%endif
|
%endif
|
||||||
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2"
|
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi3"
|
||||||
# Owns /boot/vc directory
|
# Owns /boot/vc directory
|
||||||
BuildRequires: raspberrypi-firmware
|
BuildRequires: raspberrypi-firmware
|
||||||
%endif
|
%endif
|
||||||
@ -103,7 +103,7 @@ done
|
|||||||
export NO_BRP_STRIP_DEBUG=true
|
export NO_BRP_STRIP_DEBUG=true
|
||||||
export NO_DEBUGINFO_STRIP_DEBUG=true
|
export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||||
%define uboot_dir /boot
|
%define uboot_dir /boot
|
||||||
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2"
|
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi3"
|
||||||
%define uboot_dir /boot/vc
|
%define uboot_dir /boot/vc
|
||||||
%endif
|
%endif
|
||||||
%if "%{name}" == "u-boot-qemu-ppce500"
|
%if "%{name}" == "u-boot-qemu-ppce500"
|
||||||
|
@ -1,3 +1,21 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed May 18 13:07:24 UTC 2016 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Fix rpi3 installation location
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed May 18 12:22:31 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Add 0001-video-ipu-Fix-build-with-hard-float-ARM-toolchain.-I.patch
|
||||||
|
to fix build on iMX boards (with hard-float toolchains)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue May 17 12:53:24 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Update to 2016.05
|
||||||
|
- Remove upstreamed patch:
|
||||||
|
* 0003-exynos-Set-CNTFRQ.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
|
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
|
||||||
|
|
||||||
|
@ -28,10 +28,10 @@
|
|||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.05-rc3
|
%define archive_version 2016.05
|
||||||
|
|
||||||
Name: u-boot-pcm051rev3
|
Name: u-boot-pcm051rev3
|
||||||
Version: 2016.05~rc3
|
Version: 2016.05
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: The U-Boot firmware for the pcm051rev3 platform
|
Summary: The U-Boot firmware for the pcm051rev3 platform
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
@ -44,8 +44,8 @@ Source300: u-boot-rpmlintrc
|
|||||||
Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch
|
Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch
|
||||||
# Move omap3 to distro boot method
|
# Move omap3 to distro boot method
|
||||||
Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch
|
Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch
|
||||||
# Fix exynos KVM support
|
# UPSTREAM: Fix build with hard-float ARM toolchain (Fix iMX boards)
|
||||||
Patch3: 0003-exynos-Set-CNTFRQ.patch
|
Patch3: 0001-video-ipu-Fix-build-with-hard-float-ARM-toolchain.-I.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
# Arndale board need DTC >= 1.4
|
# Arndale board need DTC >= 1.4
|
||||||
BuildRequires: bc
|
BuildRequires: bc
|
||||||
@ -55,7 +55,7 @@ BuildRequires: dtc >= 1.4.0
|
|||||||
BuildRequires: qemu
|
BuildRequires: qemu
|
||||||
Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500
|
Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500
|
||||||
%endif
|
%endif
|
||||||
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2"
|
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi3"
|
||||||
# Owns /boot/vc directory
|
# Owns /boot/vc directory
|
||||||
BuildRequires: raspberrypi-firmware
|
BuildRequires: raspberrypi-firmware
|
||||||
%endif
|
%endif
|
||||||
@ -103,7 +103,7 @@ done
|
|||||||
export NO_BRP_STRIP_DEBUG=true
|
export NO_BRP_STRIP_DEBUG=true
|
||||||
export NO_DEBUGINFO_STRIP_DEBUG=true
|
export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||||
%define uboot_dir /boot
|
%define uboot_dir /boot
|
||||||
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2"
|
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi3"
|
||||||
%define uboot_dir /boot/vc
|
%define uboot_dir /boot/vc
|
||||||
%endif
|
%endif
|
||||||
%if "%{name}" == "u-boot-qemu-ppce500"
|
%if "%{name}" == "u-boot-qemu-ppce500"
|
||||||
|
@ -1,3 +1,21 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed May 18 13:07:24 UTC 2016 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Fix rpi3 installation location
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed May 18 12:22:31 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Add 0001-video-ipu-Fix-build-with-hard-float-ARM-toolchain.-I.patch
|
||||||
|
to fix build on iMX boards (with hard-float toolchains)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue May 17 12:53:24 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Update to 2016.05
|
||||||
|
- Remove upstreamed patch:
|
||||||
|
* 0003-exynos-Set-CNTFRQ.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
|
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
|
||||||
|
|
||||||
|
@ -28,10 +28,10 @@
|
|||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.05-rc3
|
%define archive_version 2016.05
|
||||||
|
|
||||||
Name: u-boot-qemu-ppce500
|
Name: u-boot-qemu-ppce500
|
||||||
Version: 2016.05~rc3
|
Version: 2016.05
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: The U-Boot firmware for the qemu-ppce500 platform
|
Summary: The U-Boot firmware for the qemu-ppce500 platform
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
@ -44,8 +44,8 @@ Source300: u-boot-rpmlintrc
|
|||||||
Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch
|
Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch
|
||||||
# Move omap3 to distro boot method
|
# Move omap3 to distro boot method
|
||||||
Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch
|
Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch
|
||||||
# Fix exynos KVM support
|
# UPSTREAM: Fix build with hard-float ARM toolchain (Fix iMX boards)
|
||||||
Patch3: 0003-exynos-Set-CNTFRQ.patch
|
Patch3: 0001-video-ipu-Fix-build-with-hard-float-ARM-toolchain.-I.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
# Arndale board need DTC >= 1.4
|
# Arndale board need DTC >= 1.4
|
||||||
BuildRequires: bc
|
BuildRequires: bc
|
||||||
@ -55,7 +55,7 @@ BuildRequires: dtc >= 1.4.0
|
|||||||
BuildRequires: qemu
|
BuildRequires: qemu
|
||||||
Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500
|
Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500
|
||||||
%endif
|
%endif
|
||||||
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2"
|
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi3"
|
||||||
# Owns /boot/vc directory
|
# Owns /boot/vc directory
|
||||||
BuildRequires: raspberrypi-firmware
|
BuildRequires: raspberrypi-firmware
|
||||||
%endif
|
%endif
|
||||||
@ -103,7 +103,7 @@ done
|
|||||||
export NO_BRP_STRIP_DEBUG=true
|
export NO_BRP_STRIP_DEBUG=true
|
||||||
export NO_DEBUGINFO_STRIP_DEBUG=true
|
export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||||
%define uboot_dir /boot
|
%define uboot_dir /boot
|
||||||
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2"
|
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi3"
|
||||||
%define uboot_dir /boot/vc
|
%define uboot_dir /boot/vc
|
||||||
%endif
|
%endif
|
||||||
%if "%{name}" == "u-boot-qemu-ppce500"
|
%if "%{name}" == "u-boot-qemu-ppce500"
|
||||||
|
@ -1,3 +1,21 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed May 18 13:07:24 UTC 2016 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Fix rpi3 installation location
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed May 18 12:22:31 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Add 0001-video-ipu-Fix-build-with-hard-float-ARM-toolchain.-I.patch
|
||||||
|
to fix build on iMX boards (with hard-float toolchains)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue May 17 12:53:24 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Update to 2016.05
|
||||||
|
- Remove upstreamed patch:
|
||||||
|
* 0003-exynos-Set-CNTFRQ.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
|
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
|
||||||
|
|
||||||
|
@ -28,10 +28,10 @@
|
|||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.05-rc3
|
%define archive_version 2016.05
|
||||||
|
|
||||||
Name: u-boot-rpi
|
Name: u-boot-rpi
|
||||||
Version: 2016.05~rc3
|
Version: 2016.05
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: The U-Boot firmware for the rpi platform
|
Summary: The U-Boot firmware for the rpi platform
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
@ -44,8 +44,8 @@ Source300: u-boot-rpmlintrc
|
|||||||
Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch
|
Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch
|
||||||
# Move omap3 to distro boot method
|
# Move omap3 to distro boot method
|
||||||
Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch
|
Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch
|
||||||
# Fix exynos KVM support
|
# UPSTREAM: Fix build with hard-float ARM toolchain (Fix iMX boards)
|
||||||
Patch3: 0003-exynos-Set-CNTFRQ.patch
|
Patch3: 0001-video-ipu-Fix-build-with-hard-float-ARM-toolchain.-I.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
# Arndale board need DTC >= 1.4
|
# Arndale board need DTC >= 1.4
|
||||||
BuildRequires: bc
|
BuildRequires: bc
|
||||||
@ -55,7 +55,7 @@ BuildRequires: dtc >= 1.4.0
|
|||||||
BuildRequires: qemu
|
BuildRequires: qemu
|
||||||
Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500
|
Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500
|
||||||
%endif
|
%endif
|
||||||
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2"
|
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi3"
|
||||||
# Owns /boot/vc directory
|
# Owns /boot/vc directory
|
||||||
BuildRequires: raspberrypi-firmware
|
BuildRequires: raspberrypi-firmware
|
||||||
%endif
|
%endif
|
||||||
@ -103,7 +103,7 @@ done
|
|||||||
export NO_BRP_STRIP_DEBUG=true
|
export NO_BRP_STRIP_DEBUG=true
|
||||||
export NO_DEBUGINFO_STRIP_DEBUG=true
|
export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||||
%define uboot_dir /boot
|
%define uboot_dir /boot
|
||||||
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2"
|
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi3"
|
||||||
%define uboot_dir /boot/vc
|
%define uboot_dir /boot/vc
|
||||||
%endif
|
%endif
|
||||||
%if "%{name}" == "u-boot-qemu-ppce500"
|
%if "%{name}" == "u-boot-qemu-ppce500"
|
||||||
|
@ -1,3 +1,21 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed May 18 13:07:24 UTC 2016 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Fix rpi3 installation location
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed May 18 12:22:31 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Add 0001-video-ipu-Fix-build-with-hard-float-ARM-toolchain.-I.patch
|
||||||
|
to fix build on iMX boards (with hard-float toolchains)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue May 17 12:53:24 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Update to 2016.05
|
||||||
|
- Remove upstreamed patch:
|
||||||
|
* 0003-exynos-Set-CNTFRQ.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
|
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
|
||||||
|
|
||||||
|
@ -28,10 +28,10 @@
|
|||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.05-rc3
|
%define archive_version 2016.05
|
||||||
|
|
||||||
Name: u-boot-rpi2
|
Name: u-boot-rpi2
|
||||||
Version: 2016.05~rc3
|
Version: 2016.05
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: The U-Boot firmware for the rpi2 platform
|
Summary: The U-Boot firmware for the rpi2 platform
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
@ -44,8 +44,8 @@ Source300: u-boot-rpmlintrc
|
|||||||
Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch
|
Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch
|
||||||
# Move omap3 to distro boot method
|
# Move omap3 to distro boot method
|
||||||
Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch
|
Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch
|
||||||
# Fix exynos KVM support
|
# UPSTREAM: Fix build with hard-float ARM toolchain (Fix iMX boards)
|
||||||
Patch3: 0003-exynos-Set-CNTFRQ.patch
|
Patch3: 0001-video-ipu-Fix-build-with-hard-float-ARM-toolchain.-I.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
# Arndale board need DTC >= 1.4
|
# Arndale board need DTC >= 1.4
|
||||||
BuildRequires: bc
|
BuildRequires: bc
|
||||||
@ -55,7 +55,7 @@ BuildRequires: dtc >= 1.4.0
|
|||||||
BuildRequires: qemu
|
BuildRequires: qemu
|
||||||
Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500
|
Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500
|
||||||
%endif
|
%endif
|
||||||
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2"
|
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi3"
|
||||||
# Owns /boot/vc directory
|
# Owns /boot/vc directory
|
||||||
BuildRequires: raspberrypi-firmware
|
BuildRequires: raspberrypi-firmware
|
||||||
%endif
|
%endif
|
||||||
@ -103,7 +103,7 @@ done
|
|||||||
export NO_BRP_STRIP_DEBUG=true
|
export NO_BRP_STRIP_DEBUG=true
|
||||||
export NO_DEBUGINFO_STRIP_DEBUG=true
|
export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||||
%define uboot_dir /boot
|
%define uboot_dir /boot
|
||||||
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2"
|
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi3"
|
||||||
%define uboot_dir /boot/vc
|
%define uboot_dir /boot/vc
|
||||||
%endif
|
%endif
|
||||||
%if "%{name}" == "u-boot-qemu-ppce500"
|
%if "%{name}" == "u-boot-qemu-ppce500"
|
||||||
|
@ -1,3 +1,21 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed May 18 13:07:24 UTC 2016 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Fix rpi3 installation location
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed May 18 12:22:31 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Add 0001-video-ipu-Fix-build-with-hard-float-ARM-toolchain.-I.patch
|
||||||
|
to fix build on iMX boards (with hard-float toolchains)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue May 17 12:53:24 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Update to 2016.05
|
||||||
|
- Remove upstreamed patch:
|
||||||
|
* 0003-exynos-Set-CNTFRQ.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
|
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
|
||||||
|
|
||||||
|
@ -28,10 +28,10 @@
|
|||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.05-rc3
|
%define archive_version 2016.05
|
||||||
|
|
||||||
Name: u-boot-rpi3
|
Name: u-boot-rpi3
|
||||||
Version: 2016.05~rc3
|
Version: 2016.05
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: The U-Boot firmware for the rpi3 platform
|
Summary: The U-Boot firmware for the rpi3 platform
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
@ -44,8 +44,8 @@ Source300: u-boot-rpmlintrc
|
|||||||
Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch
|
Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch
|
||||||
# Move omap3 to distro boot method
|
# Move omap3 to distro boot method
|
||||||
Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch
|
Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch
|
||||||
# Fix exynos KVM support
|
# UPSTREAM: Fix build with hard-float ARM toolchain (Fix iMX boards)
|
||||||
Patch3: 0003-exynos-Set-CNTFRQ.patch
|
Patch3: 0001-video-ipu-Fix-build-with-hard-float-ARM-toolchain.-I.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
# Arndale board need DTC >= 1.4
|
# Arndale board need DTC >= 1.4
|
||||||
BuildRequires: bc
|
BuildRequires: bc
|
||||||
@ -55,7 +55,7 @@ BuildRequires: dtc >= 1.4.0
|
|||||||
BuildRequires: qemu
|
BuildRequires: qemu
|
||||||
Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500
|
Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500
|
||||||
%endif
|
%endif
|
||||||
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2"
|
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi3"
|
||||||
# Owns /boot/vc directory
|
# Owns /boot/vc directory
|
||||||
BuildRequires: raspberrypi-firmware
|
BuildRequires: raspberrypi-firmware
|
||||||
%endif
|
%endif
|
||||||
@ -103,7 +103,7 @@ done
|
|||||||
export NO_BRP_STRIP_DEBUG=true
|
export NO_BRP_STRIP_DEBUG=true
|
||||||
export NO_DEBUGINFO_STRIP_DEBUG=true
|
export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||||
%define uboot_dir /boot
|
%define uboot_dir /boot
|
||||||
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2"
|
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi3"
|
||||||
%define uboot_dir /boot/vc
|
%define uboot_dir /boot/vc
|
||||||
%endif
|
%endif
|
||||||
%if "%{name}" == "u-boot-qemu-ppce500"
|
%if "%{name}" == "u-boot-qemu-ppce500"
|
||||||
|
@ -1,3 +1,21 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed May 18 13:07:24 UTC 2016 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Fix rpi3 installation location
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed May 18 12:22:31 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Add 0001-video-ipu-Fix-build-with-hard-float-ARM-toolchain.-I.patch
|
||||||
|
to fix build on iMX boards (with hard-float toolchains)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue May 17 12:53:24 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Update to 2016.05
|
||||||
|
- Remove upstreamed patch:
|
||||||
|
* 0003-exynos-Set-CNTFRQ.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
|
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
|
||||||
|
|
||||||
|
@ -28,10 +28,10 @@
|
|||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.05-rc3
|
%define archive_version 2016.05
|
||||||
|
|
||||||
Name: u-boot-snow
|
Name: u-boot-snow
|
||||||
Version: 2016.05~rc3
|
Version: 2016.05
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: The U-Boot firmware for the snow platform
|
Summary: The U-Boot firmware for the snow platform
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
@ -44,8 +44,8 @@ Source300: u-boot-rpmlintrc
|
|||||||
Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch
|
Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch
|
||||||
# Move omap3 to distro boot method
|
# Move omap3 to distro boot method
|
||||||
Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch
|
Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch
|
||||||
# Fix exynos KVM support
|
# UPSTREAM: Fix build with hard-float ARM toolchain (Fix iMX boards)
|
||||||
Patch3: 0003-exynos-Set-CNTFRQ.patch
|
Patch3: 0001-video-ipu-Fix-build-with-hard-float-ARM-toolchain.-I.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
# Arndale board need DTC >= 1.4
|
# Arndale board need DTC >= 1.4
|
||||||
BuildRequires: bc
|
BuildRequires: bc
|
||||||
@ -55,7 +55,7 @@ BuildRequires: dtc >= 1.4.0
|
|||||||
BuildRequires: qemu
|
BuildRequires: qemu
|
||||||
Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500
|
Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500
|
||||||
%endif
|
%endif
|
||||||
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2"
|
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi3"
|
||||||
# Owns /boot/vc directory
|
# Owns /boot/vc directory
|
||||||
BuildRequires: raspberrypi-firmware
|
BuildRequires: raspberrypi-firmware
|
||||||
%endif
|
%endif
|
||||||
@ -103,7 +103,7 @@ done
|
|||||||
export NO_BRP_STRIP_DEBUG=true
|
export NO_BRP_STRIP_DEBUG=true
|
||||||
export NO_DEBUGINFO_STRIP_DEBUG=true
|
export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||||
%define uboot_dir /boot
|
%define uboot_dir /boot
|
||||||
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2"
|
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi3"
|
||||||
%define uboot_dir /boot/vc
|
%define uboot_dir /boot/vc
|
||||||
%endif
|
%endif
|
||||||
%if "%{name}" == "u-boot-qemu-ppce500"
|
%if "%{name}" == "u-boot-qemu-ppce500"
|
||||||
|
@ -1,3 +1,21 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed May 18 13:07:24 UTC 2016 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Fix rpi3 installation location
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed May 18 12:22:31 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Add 0001-video-ipu-Fix-build-with-hard-float-ARM-toolchain.-I.patch
|
||||||
|
to fix build on iMX boards (with hard-float toolchains)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue May 17 12:53:24 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Update to 2016.05
|
||||||
|
- Remove upstreamed patch:
|
||||||
|
* 0003-exynos-Set-CNTFRQ.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
|
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
|
||||||
|
|
||||||
|
@ -28,10 +28,10 @@
|
|||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.05-rc3
|
%define archive_version 2016.05
|
||||||
|
|
||||||
Name: u-boot-spring
|
Name: u-boot-spring
|
||||||
Version: 2016.05~rc3
|
Version: 2016.05
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: The U-Boot firmware for the spring platform
|
Summary: The U-Boot firmware for the spring platform
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
@ -44,8 +44,8 @@ Source300: u-boot-rpmlintrc
|
|||||||
Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch
|
Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch
|
||||||
# Move omap3 to distro boot method
|
# Move omap3 to distro boot method
|
||||||
Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch
|
Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch
|
||||||
# Fix exynos KVM support
|
# UPSTREAM: Fix build with hard-float ARM toolchain (Fix iMX boards)
|
||||||
Patch3: 0003-exynos-Set-CNTFRQ.patch
|
Patch3: 0001-video-ipu-Fix-build-with-hard-float-ARM-toolchain.-I.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
# Arndale board need DTC >= 1.4
|
# Arndale board need DTC >= 1.4
|
||||||
BuildRequires: bc
|
BuildRequires: bc
|
||||||
@ -55,7 +55,7 @@ BuildRequires: dtc >= 1.4.0
|
|||||||
BuildRequires: qemu
|
BuildRequires: qemu
|
||||||
Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500
|
Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500
|
||||||
%endif
|
%endif
|
||||||
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2"
|
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi3"
|
||||||
# Owns /boot/vc directory
|
# Owns /boot/vc directory
|
||||||
BuildRequires: raspberrypi-firmware
|
BuildRequires: raspberrypi-firmware
|
||||||
%endif
|
%endif
|
||||||
@ -103,7 +103,7 @@ done
|
|||||||
export NO_BRP_STRIP_DEBUG=true
|
export NO_BRP_STRIP_DEBUG=true
|
||||||
export NO_DEBUGINFO_STRIP_DEBUG=true
|
export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||||
%define uboot_dir /boot
|
%define uboot_dir /boot
|
||||||
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2"
|
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi3"
|
||||||
%define uboot_dir /boot/vc
|
%define uboot_dir /boot/vc
|
||||||
%endif
|
%endif
|
||||||
%if "%{name}" == "u-boot-qemu-ppce500"
|
%if "%{name}" == "u-boot-qemu-ppce500"
|
||||||
|
@ -1,3 +1,21 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed May 18 13:07:24 UTC 2016 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Fix rpi3 installation location
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed May 18 12:22:31 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Add 0001-video-ipu-Fix-build-with-hard-float-ARM-toolchain.-I.patch
|
||||||
|
to fix build on iMX boards (with hard-float toolchains)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue May 17 12:53:24 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Update to 2016.05
|
||||||
|
- Remove upstreamed patch:
|
||||||
|
* 0003-exynos-Set-CNTFRQ.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
|
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
|
||||||
|
|
||||||
|
@ -28,10 +28,10 @@
|
|||||||
%define udoo_spl 1
|
%define udoo_spl 1
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.05-rc3
|
%define archive_version 2016.05
|
||||||
|
|
||||||
Name: u-boot-udoo
|
Name: u-boot-udoo
|
||||||
Version: 2016.05~rc3
|
Version: 2016.05
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: The U-Boot firmware for the udoo platform
|
Summary: The U-Boot firmware for the udoo platform
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
@ -44,8 +44,8 @@ Source300: u-boot-rpmlintrc
|
|||||||
Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch
|
Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch
|
||||||
# Move omap3 to distro boot method
|
# Move omap3 to distro boot method
|
||||||
Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch
|
Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch
|
||||||
# Fix exynos KVM support
|
# UPSTREAM: Fix build with hard-float ARM toolchain (Fix iMX boards)
|
||||||
Patch3: 0003-exynos-Set-CNTFRQ.patch
|
Patch3: 0001-video-ipu-Fix-build-with-hard-float-ARM-toolchain.-I.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
# Arndale board need DTC >= 1.4
|
# Arndale board need DTC >= 1.4
|
||||||
BuildRequires: bc
|
BuildRequires: bc
|
||||||
@ -55,7 +55,7 @@ BuildRequires: dtc >= 1.4.0
|
|||||||
BuildRequires: qemu
|
BuildRequires: qemu
|
||||||
Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500
|
Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500
|
||||||
%endif
|
%endif
|
||||||
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2"
|
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi3"
|
||||||
# Owns /boot/vc directory
|
# Owns /boot/vc directory
|
||||||
BuildRequires: raspberrypi-firmware
|
BuildRequires: raspberrypi-firmware
|
||||||
%endif
|
%endif
|
||||||
@ -103,7 +103,7 @@ done
|
|||||||
export NO_BRP_STRIP_DEBUG=true
|
export NO_BRP_STRIP_DEBUG=true
|
||||||
export NO_DEBUGINFO_STRIP_DEBUG=true
|
export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||||
%define uboot_dir /boot
|
%define uboot_dir /boot
|
||||||
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2"
|
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi3"
|
||||||
%define uboot_dir /boot/vc
|
%define uboot_dir /boot/vc
|
||||||
%endif
|
%endif
|
||||||
%if "%{name}" == "u-boot-qemu-ppce500"
|
%if "%{name}" == "u-boot-qemu-ppce500"
|
||||||
|
@ -1,3 +1,21 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed May 18 13:07:24 UTC 2016 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Fix rpi3 installation location
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed May 18 12:22:31 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Add 0001-video-ipu-Fix-build-with-hard-float-ARM-toolchain.-I.patch
|
||||||
|
to fix build on iMX boards (with hard-float toolchains)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue May 17 12:53:24 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Update to 2016.05
|
||||||
|
- Remove upstreamed patch:
|
||||||
|
* 0003-exynos-Set-CNTFRQ.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
|
Wed May 4 20:22:57 UTC 2016 - afaerber@suse.de
|
||||||
|
|
||||||
|
@ -19,10 +19,10 @@
|
|||||||
|
|
||||||
|
|
||||||
# 'archive_version' differs from 'version' for RC version only
|
# 'archive_version' differs from 'version' for RC version only
|
||||||
%define archive_version 2016.05-rc3
|
%define archive_version 2016.05
|
||||||
|
|
||||||
Name: u-boot
|
Name: u-boot
|
||||||
Version: 2016.05~rc3
|
Version: 2016.05
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Tools for the U-Boot Firmware
|
Summary: Tools for the U-Boot Firmware
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
|
@ -28,10 +28,10 @@
|
|||||||
%define udoo_spl UDOO_SPL
|
%define udoo_spl UDOO_SPL
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.05-rc3
|
%define archive_version 2016.05
|
||||||
|
|
||||||
Name: u-boot-BOARDNAME
|
Name: u-boot-BOARDNAME
|
||||||
Version: 2016.05~rc3
|
Version: 2016.05
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: The U-Boot firmware for the BOARDNAME platform
|
Summary: The U-Boot firmware for the BOARDNAME platform
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
@ -44,8 +44,8 @@ Source300: u-boot-rpmlintrc
|
|||||||
Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch
|
Patch1: 0001-XXX-openSUSE-XXX-Load-dtb-from-partition-2.patch
|
||||||
# Move omap3 to distro boot method
|
# Move omap3 to distro boot method
|
||||||
Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch
|
Patch2: 0002-XXX-openSUSE-XXX-omap3-Move-to-distro-bootcmd.patch
|
||||||
# Fix exynos KVM support
|
# UPSTREAM: Fix build with hard-float ARM toolchain (Fix iMX boards)
|
||||||
Patch3: 0003-exynos-Set-CNTFRQ.patch
|
Patch3: 0001-video-ipu-Fix-build-with-hard-float-ARM-toolchain.-I.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
# Arndale board need DTC >= 1.4
|
# Arndale board need DTC >= 1.4
|
||||||
BuildRequires: bc
|
BuildRequires: bc
|
||||||
@ -55,7 +55,7 @@ BuildRequires: dtc >= 1.4.0
|
|||||||
BuildRequires: qemu
|
BuildRequires: qemu
|
||||||
Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500
|
Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500
|
||||||
%endif
|
%endif
|
||||||
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2"
|
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi3"
|
||||||
# Owns /boot/vc directory
|
# Owns /boot/vc directory
|
||||||
BuildRequires: raspberrypi-firmware
|
BuildRequires: raspberrypi-firmware
|
||||||
%endif
|
%endif
|
||||||
@ -103,7 +103,7 @@ done
|
|||||||
export NO_BRP_STRIP_DEBUG=true
|
export NO_BRP_STRIP_DEBUG=true
|
||||||
export NO_DEBUGINFO_STRIP_DEBUG=true
|
export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||||
%define uboot_dir /boot
|
%define uboot_dir /boot
|
||||||
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2"
|
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi3"
|
||||||
%define uboot_dir /boot/vc
|
%define uboot_dir /boot/vc
|
||||||
%endif
|
%endif
|
||||||
%if "%{name}" == "u-boot-qemu-ppce500"
|
%if "%{name}" == "u-boot-qemu-ppce500"
|
||||||
|
Loading…
Reference in New Issue
Block a user