Accepting request 623667 from hardware👢staging
OBS-URL: https://build.opensuse.org/request/show/623667 OBS-URL: https://build.opensuse.org/package/show/hardware:boot/u-boot?expand=0&rev=23
This commit is contained in:
@@ -1,41 +0,0 @@
|
||||
From 891e02db364c3b6a75d933af4eae5c40014a18b8 Mon Sep 17 00:00:00 2001
|
||||
From: Alexander Graf <agraf@suse.de>
|
||||
Date: Wed, 13 Apr 2016 13:44:29 +0200
|
||||
Subject: [PATCH] XXX openSUSE XXX: Load dtb from partition 2
|
||||
|
||||
Upstream U-Boot loads the device tree from the EFI partition. This is
|
||||
mostly because upstream we don't know which partition really holds the
|
||||
boot data.
|
||||
|
||||
For openSUSE however we do know, so let's just patch the boot script to
|
||||
load device trees from partition 2.
|
||||
|
||||
Signed-off-by: Alexander Graf <agraf@suse.de>
|
||||
---
|
||||
include/config_distro_bootcmd.h | 6 +++---
|
||||
1 file changed, 3 insertions(+), 3 deletions(-)
|
||||
|
||||
diff --git a/include/config_distro_bootcmd.h b/include/config_distro_bootcmd.h
|
||||
index d672e8ebe6..d06fb4367e 100644
|
||||
--- a/include/config_distro_bootcmd.h
|
||||
+++ b/include/config_distro_bootcmd.h
|
||||
@@ -138,16 +138,16 @@
|
||||
"fi\0" \
|
||||
\
|
||||
"load_efi_dtb=" \
|
||||
- "load ${devtype} ${devnum}:${distro_bootpart} " \
|
||||
+ "load ${devtype} ${devnum}:2 " \
|
||||
"${fdt_addr_r} ${prefix}${efi_fdtfile}\0" \
|
||||
\
|
||||
- "efi_dtb_prefixes=/ /dtb/ /dtb/current/\0" \
|
||||
+ "efi_dtb_prefixes=/ /dtb/ /dtb/current/ /boot/ /boot/dtb/ /boot/dtb/current/\0" \
|
||||
"scan_dev_for_efi=" \
|
||||
"setenv efi_fdtfile ${fdtfile}; " \
|
||||
BOOTENV_EFI_SET_FDTFILE_FALLBACK \
|
||||
"for prefix in ${efi_dtb_prefixes}; do " \
|
||||
"if test -e ${devtype} " \
|
||||
- "${devnum}:${distro_bootpart} " \
|
||||
+ "${devnum}:2 " \
|
||||
"${prefix}${efi_fdtfile}; then " \
|
||||
"run load_efi_dtb; " \
|
||||
"fi;" \
|
33
0001-XXX-openSUSE-XXX-Prepend-partition-.patch
Normal file
33
0001-XXX-openSUSE-XXX-Prepend-partition-.patch
Normal file
@@ -0,0 +1,33 @@
|
||||
From 1cc819f9d34f9f4df65f536a1237d0212284fcb9 Mon Sep 17 00:00:00 2001
|
||||
From: Guillaume GARDET <guillaume.gardet@free.fr>
|
||||
Date: Wed, 13 Apr 2016 13:44:29 +0200
|
||||
Subject: [PATCH] XXX openSUSE XXX: Prepend partition 2 (and 3 fo chromebook
|
||||
snow) to list of boot partition to load DTB before EFI Also add new folders
|
||||
to find DTB
|
||||
|
||||
---
|
||||
include/config_distro_bootcmd.h | 4 ++--
|
||||
1 file changed, 2 insertions(+), 2 deletions(-)
|
||||
|
||||
diff --git a/include/config_distro_bootcmd.h b/include/config_distro_bootcmd.h
|
||||
index d672e8ebe6..0f5bcf4129 100644
|
||||
--- a/include/config_distro_bootcmd.h
|
||||
+++ b/include/config_distro_bootcmd.h
|
||||
@@ -141,7 +141,7 @@
|
||||
"load ${devtype} ${devnum}:${distro_bootpart} " \
|
||||
"${fdt_addr_r} ${prefix}${efi_fdtfile}\0" \
|
||||
\
|
||||
- "efi_dtb_prefixes=/ /dtb/ /dtb/current/\0" \
|
||||
+ "efi_dtb_prefixes=/ /dtb/ /dtb/current/ /boot/ /boot/dtb/ /boot/dtb/current/\0" \
|
||||
"scan_dev_for_efi=" \
|
||||
"setenv efi_fdtfile ${fdtfile}; " \
|
||||
BOOTENV_EFI_SET_FDTFILE_FALLBACK \
|
||||
@@ -394,7 +394,7 @@
|
||||
"scan_dev_for_boot_part=" \
|
||||
"part list ${devtype} ${devnum} -bootable devplist; " \
|
||||
"env exists devplist || setenv devplist 1; " \
|
||||
- "for distro_bootpart in ${devplist}; do " \
|
||||
+ "for distro_bootpart in 2 3 ${devplist}; do " \
|
||||
"if fstype ${devtype} " \
|
||||
"${devnum}:${distro_bootpart} " \
|
||||
"bootfstype; then " \
|
@@ -1,4 +1,4 @@
|
||||
From c751e516fa4c31ce8f57774a47ea567c3e13eaeb Mon Sep 17 00:00:00 2001
|
||||
From affe155c4db494c287e00fbe78e55c8b36425f82 Mon Sep 17 00:00:00 2001
|
||||
From: Alexander Graf <agraf@suse.de>
|
||||
Date: Mon, 2 May 2016 23:25:07 +0200
|
||||
Subject: [PATCH] Revert "Revert "omap3: Use raw SPL by default for mmc1""
|
||||
|
@@ -1,4 +1,4 @@
|
||||
From 909b59bb6ae7c432ca333cdc378e121f56e16496 Mon Sep 17 00:00:00 2001
|
||||
From e187ec3cacfb3b7d6817c2b75fbd3c273831f129 Mon Sep 17 00:00:00 2001
|
||||
From: Alexander Graf <agraf@suse.de>
|
||||
Date: Wed, 21 Feb 2018 17:41:13 +0100
|
||||
Subject: [PATCH] rpi: Use firmware provided device tree
|
||||
|
@@ -1,4 +1,4 @@
|
||||
From 2a075e1f09127120399d385c3131a64a49c032bf Mon Sep 17 00:00:00 2001
|
||||
From 895d3902b893bfe3382f5982c2907c607c4ec02a Mon Sep 17 00:00:00 2001
|
||||
From: Guillaume GARDET <guillaume.gardet@free.fr>
|
||||
Date: Mon, 9 Apr 2018 10:28:26 +0200
|
||||
Subject: [PATCH] Temp workaround for Chromebook snow to avoid the 'unable to
|
||||
|
@@ -1,4 +1,4 @@
|
||||
From b128f2a584a81a3265efc13efd2de54aad483c2a Mon Sep 17 00:00:00 2001
|
||||
From 7b9f74bb84cb40b594ba188eff8dabe1f089f5ae Mon Sep 17 00:00:00 2001
|
||||
From: Alexander Graf <agraf@suse.de>
|
||||
Date: Tue, 24 Apr 2018 21:25:23 +0200
|
||||
Subject: [PATCH] zynqmp: Add generic target
|
||||
|
@@ -1,4 +1,4 @@
|
||||
From 2981c1f748db1690af0a51381cf8da9492a8ee9c Mon Sep 17 00:00:00 2001
|
||||
From bd756caa0d6d5c8b4a411b1913b340facf7f421b Mon Sep 17 00:00:00 2001
|
||||
From: Alexander Graf <agraf@suse.de>
|
||||
Date: Thu, 26 Apr 2018 13:30:32 +0200
|
||||
Subject: [PATCH] tools: zynqmpbif: Add support for load=after
|
||||
|
@@ -1,4 +1,4 @@
|
||||
From bfb6a2238374e0881ee226883bdd00d732811afc Mon Sep 17 00:00:00 2001
|
||||
From db132ea8473c65273125efe21c9b8815477b176d Mon Sep 17 00:00:00 2001
|
||||
From: Mian Yousaf Kaukab <yousaf.kaukab@suse.com>
|
||||
Date: Wed, 16 May 2018 18:44:33 +0200
|
||||
Subject: [PATCH] rockchip: make_fit_atf: use elf entry point
|
||||
|
@@ -1,4 +1,4 @@
|
||||
From 57607cb9df0088e2f00db4c01e5b10b1d40ab443 Mon Sep 17 00:00:00 2001
|
||||
From 6822b14d5efb261e4cd6c112710433090b3f2093 Mon Sep 17 00:00:00 2001
|
||||
From: Mian Yousaf Kaukab <yousaf.kaukab@suse.com>
|
||||
Date: Mon, 21 May 2018 16:38:57 +0200
|
||||
Subject: [PATCH] rockchip: make_fit_atf: make python3 compatible
|
||||
|
@@ -1,4 +1,4 @@
|
||||
From 6f4a537ed398b414b4abdac34e730124b7a3b25a Mon Sep 17 00:00:00 2001
|
||||
From 15a83d7deb6782113021c198eeeddfc357e0831c Mon Sep 17 00:00:00 2001
|
||||
From: =?UTF-8?q?Andreas=20F=C3=A4rber?= <afaerber@suse.de>
|
||||
Date: Sun, 3 Jun 2018 05:47:38 +0200
|
||||
Subject: [PATCH] rockchip: make_fit_atf.py depends on u-boot
|
||||
|
29
0010-snow-set-fdtfile.patch
Normal file
29
0010-snow-set-fdtfile.patch
Normal file
@@ -0,0 +1,29 @@
|
||||
From 1a8a6e05b5e69243526c2dedd2e7124900ad2656 Mon Sep 17 00:00:00 2001
|
||||
From: Guillaume GARDET <guillaume.gardet@free.fr>
|
||||
Date: Thu, 14 Jun 2018 22:23:19 +0200
|
||||
Subject: [PATCH] snow: set fdtfile
|
||||
|
||||
Needed to boot with EFI distro boot.
|
||||
|
||||
Signed-off-by: Guillaume GARDET <guillaume.gardet@free.fr>
|
||||
|
||||
Cc: Akshay Saraswat <akshay.s@samsung.com>
|
||||
Cc: Tom Rini <trini@konsulko.com>
|
||||
---
|
||||
include/configs/snow.h | 3 +++
|
||||
1 file changed, 3 insertions(+)
|
||||
|
||||
diff --git a/include/configs/snow.h b/include/configs/snow.h
|
||||
index 3b0db32ece..c546a5a6d0 100644
|
||||
--- a/include/configs/snow.h
|
||||
+++ b/include/configs/snow.h
|
||||
@@ -8,6 +8,9 @@
|
||||
#ifndef __CONFIG_SNOW_H
|
||||
#define __CONFIG_SNOW_H
|
||||
|
||||
+#define EXYNOS_FDTFILE_SETTING \
|
||||
+ "fdtfile=exynos5250-snow.dtb\0"
|
||||
+
|
||||
#include <configs/exynos5250-common.h>
|
||||
#include <configs/exynos5-dt-common.h>
|
||||
#include <configs/exynos5-common.h>
|
@@ -1,3 +1,13 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Jul 18 13:29:34 UTC 2018 - guillaume.gardet@opensuse.org
|
||||
|
||||
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.07
|
||||
* Patches dropped:
|
||||
0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||
* Patches added:
|
||||
0001-XXX-openSUSE-XXX-Prepend-partition-.patch
|
||||
0010-snow-set-fdtfile.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jul 10 09:12:26 UTC 2018 - guillaume.gardet@opensuse.org
|
||||
|
||||
|
@@ -52,7 +52,7 @@ Source1: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2.s
|
||||
Source2: arndale-bl1.img
|
||||
Source3: update_git.sh
|
||||
Source300: u-boot-rpmlintrc
|
||||
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||
Patch0001: 0001-XXX-openSUSE-XXX-Prepend-partition-.patch
|
||||
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||
Patch0003: 0003-rpi-Use-firmware-provided-device-tr.patch
|
||||
Patch0004: 0004-Temp-workaround-for-Chromebook-snow.patch
|
||||
@@ -61,6 +61,7 @@ Patch0006: 0006-tools-zynqmpbif-Add-support-for-loa.patch
|
||||
Patch0007: 0007-rockchip-make_fit_atf-use-elf-entry.patch
|
||||
Patch0008: 0008-rockchip-make_fit_atf-make-python3-.patch
|
||||
Patch0009: 0009-rockchip-make_fit_atf.py-depends-on.patch
|
||||
Patch0010: 0010-snow-set-fdtfile.patch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
%if "%{name}" == "u-boot-pine64plus" && %{with uboot_atf_pine64}
|
||||
BuildRequires: arm-trusted-firmware-pine64
|
||||
@@ -130,6 +131,7 @@ This package contains documentation for U-Boot firmware.
|
||||
%patch0007 -p1
|
||||
%patch0008 -p1
|
||||
%patch0009 -p1
|
||||
%patch0010 -p1
|
||||
|
||||
%build
|
||||
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||
|
@@ -1,3 +1,13 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Jul 18 13:29:34 UTC 2018 - guillaume.gardet@opensuse.org
|
||||
|
||||
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.07
|
||||
* Patches dropped:
|
||||
0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||
* Patches added:
|
||||
0001-XXX-openSUSE-XXX-Prepend-partition-.patch
|
||||
0010-snow-set-fdtfile.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jul 10 09:12:26 UTC 2018 - guillaume.gardet@opensuse.org
|
||||
|
||||
|
@@ -52,7 +52,7 @@ Source1: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2.s
|
||||
Source2: arndale-bl1.img
|
||||
Source3: update_git.sh
|
||||
Source300: u-boot-rpmlintrc
|
||||
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||
Patch0001: 0001-XXX-openSUSE-XXX-Prepend-partition-.patch
|
||||
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||
Patch0003: 0003-rpi-Use-firmware-provided-device-tr.patch
|
||||
Patch0004: 0004-Temp-workaround-for-Chromebook-snow.patch
|
||||
@@ -61,6 +61,7 @@ Patch0006: 0006-tools-zynqmpbif-Add-support-for-loa.patch
|
||||
Patch0007: 0007-rockchip-make_fit_atf-use-elf-entry.patch
|
||||
Patch0008: 0008-rockchip-make_fit_atf-make-python3-.patch
|
||||
Patch0009: 0009-rockchip-make_fit_atf.py-depends-on.patch
|
||||
Patch0010: 0010-snow-set-fdtfile.patch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
%if "%{name}" == "u-boot-pine64plus" && %{with uboot_atf_pine64}
|
||||
BuildRequires: arm-trusted-firmware-pine64
|
||||
@@ -130,6 +131,7 @@ This package contains documentation for U-Boot firmware.
|
||||
%patch0007 -p1
|
||||
%patch0008 -p1
|
||||
%patch0009 -p1
|
||||
%patch0010 -p1
|
||||
|
||||
%build
|
||||
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||
|
@@ -1,3 +1,13 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Jul 18 13:29:34 UTC 2018 - guillaume.gardet@opensuse.org
|
||||
|
||||
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.07
|
||||
* Patches dropped:
|
||||
0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||
* Patches added:
|
||||
0001-XXX-openSUSE-XXX-Prepend-partition-.patch
|
||||
0010-snow-set-fdtfile.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jul 10 09:12:26 UTC 2018 - guillaume.gardet@opensuse.org
|
||||
|
||||
|
@@ -52,7 +52,7 @@ Source1: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2.s
|
||||
Source2: arndale-bl1.img
|
||||
Source3: update_git.sh
|
||||
Source300: u-boot-rpmlintrc
|
||||
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||
Patch0001: 0001-XXX-openSUSE-XXX-Prepend-partition-.patch
|
||||
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||
Patch0003: 0003-rpi-Use-firmware-provided-device-tr.patch
|
||||
Patch0004: 0004-Temp-workaround-for-Chromebook-snow.patch
|
||||
@@ -61,6 +61,7 @@ Patch0006: 0006-tools-zynqmpbif-Add-support-for-loa.patch
|
||||
Patch0007: 0007-rockchip-make_fit_atf-use-elf-entry.patch
|
||||
Patch0008: 0008-rockchip-make_fit_atf-make-python3-.patch
|
||||
Patch0009: 0009-rockchip-make_fit_atf.py-depends-on.patch
|
||||
Patch0010: 0010-snow-set-fdtfile.patch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
%if "%{name}" == "u-boot-pine64plus" && %{with uboot_atf_pine64}
|
||||
BuildRequires: arm-trusted-firmware-pine64
|
||||
@@ -130,6 +131,7 @@ This package contains documentation for U-Boot firmware.
|
||||
%patch0007 -p1
|
||||
%patch0008 -p1
|
||||
%patch0009 -p1
|
||||
%patch0010 -p1
|
||||
|
||||
%build
|
||||
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||
|
@@ -1,3 +1,13 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Jul 18 13:29:34 UTC 2018 - guillaume.gardet@opensuse.org
|
||||
|
||||
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.07
|
||||
* Patches dropped:
|
||||
0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||
* Patches added:
|
||||
0001-XXX-openSUSE-XXX-Prepend-partition-.patch
|
||||
0010-snow-set-fdtfile.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jul 10 09:12:26 UTC 2018 - guillaume.gardet@opensuse.org
|
||||
|
||||
|
@@ -52,7 +52,7 @@ Source1: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2.s
|
||||
Source2: arndale-bl1.img
|
||||
Source3: update_git.sh
|
||||
Source300: u-boot-rpmlintrc
|
||||
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||
Patch0001: 0001-XXX-openSUSE-XXX-Prepend-partition-.patch
|
||||
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||
Patch0003: 0003-rpi-Use-firmware-provided-device-tr.patch
|
||||
Patch0004: 0004-Temp-workaround-for-Chromebook-snow.patch
|
||||
@@ -61,6 +61,7 @@ Patch0006: 0006-tools-zynqmpbif-Add-support-for-loa.patch
|
||||
Patch0007: 0007-rockchip-make_fit_atf-use-elf-entry.patch
|
||||
Patch0008: 0008-rockchip-make_fit_atf-make-python3-.patch
|
||||
Patch0009: 0009-rockchip-make_fit_atf.py-depends-on.patch
|
||||
Patch0010: 0010-snow-set-fdtfile.patch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
%if "%{name}" == "u-boot-pine64plus" && %{with uboot_atf_pine64}
|
||||
BuildRequires: arm-trusted-firmware-pine64
|
||||
@@ -130,6 +131,7 @@ This package contains documentation for U-Boot firmware.
|
||||
%patch0007 -p1
|
||||
%patch0008 -p1
|
||||
%patch0009 -p1
|
||||
%patch0010 -p1
|
||||
|
||||
%build
|
||||
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||
|
@@ -1,3 +1,13 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Jul 18 13:29:34 UTC 2018 - guillaume.gardet@opensuse.org
|
||||
|
||||
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.07
|
||||
* Patches dropped:
|
||||
0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||
* Patches added:
|
||||
0001-XXX-openSUSE-XXX-Prepend-partition-.patch
|
||||
0010-snow-set-fdtfile.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jul 10 09:12:26 UTC 2018 - guillaume.gardet@opensuse.org
|
||||
|
||||
|
@@ -52,7 +52,7 @@ Source1: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2.s
|
||||
Source2: arndale-bl1.img
|
||||
Source3: update_git.sh
|
||||
Source300: u-boot-rpmlintrc
|
||||
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||
Patch0001: 0001-XXX-openSUSE-XXX-Prepend-partition-.patch
|
||||
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||
Patch0003: 0003-rpi-Use-firmware-provided-device-tr.patch
|
||||
Patch0004: 0004-Temp-workaround-for-Chromebook-snow.patch
|
||||
@@ -61,6 +61,7 @@ Patch0006: 0006-tools-zynqmpbif-Add-support-for-loa.patch
|
||||
Patch0007: 0007-rockchip-make_fit_atf-use-elf-entry.patch
|
||||
Patch0008: 0008-rockchip-make_fit_atf-make-python3-.patch
|
||||
Patch0009: 0009-rockchip-make_fit_atf.py-depends-on.patch
|
||||
Patch0010: 0010-snow-set-fdtfile.patch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
%if "%{name}" == "u-boot-pine64plus" && %{with uboot_atf_pine64}
|
||||
BuildRequires: arm-trusted-firmware-pine64
|
||||
@@ -130,6 +131,7 @@ This package contains documentation for U-Boot firmware.
|
||||
%patch0007 -p1
|
||||
%patch0008 -p1
|
||||
%patch0009 -p1
|
||||
%patch0010 -p1
|
||||
|
||||
%build
|
||||
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||
|
@@ -1,3 +1,13 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Jul 18 13:29:34 UTC 2018 - guillaume.gardet@opensuse.org
|
||||
|
||||
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.07
|
||||
* Patches dropped:
|
||||
0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||
* Patches added:
|
||||
0001-XXX-openSUSE-XXX-Prepend-partition-.patch
|
||||
0010-snow-set-fdtfile.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jul 10 09:12:26 UTC 2018 - guillaume.gardet@opensuse.org
|
||||
|
||||
|
@@ -52,7 +52,7 @@ Source1: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2.s
|
||||
Source2: arndale-bl1.img
|
||||
Source3: update_git.sh
|
||||
Source300: u-boot-rpmlintrc
|
||||
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||
Patch0001: 0001-XXX-openSUSE-XXX-Prepend-partition-.patch
|
||||
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||
Patch0003: 0003-rpi-Use-firmware-provided-device-tr.patch
|
||||
Patch0004: 0004-Temp-workaround-for-Chromebook-snow.patch
|
||||
@@ -61,6 +61,7 @@ Patch0006: 0006-tools-zynqmpbif-Add-support-for-loa.patch
|
||||
Patch0007: 0007-rockchip-make_fit_atf-use-elf-entry.patch
|
||||
Patch0008: 0008-rockchip-make_fit_atf-make-python3-.patch
|
||||
Patch0009: 0009-rockchip-make_fit_atf.py-depends-on.patch
|
||||
Patch0010: 0010-snow-set-fdtfile.patch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
%if "%{name}" == "u-boot-pine64plus" && %{with uboot_atf_pine64}
|
||||
BuildRequires: arm-trusted-firmware-pine64
|
||||
@@ -130,6 +131,7 @@ This package contains documentation for U-Boot firmware.
|
||||
%patch0007 -p1
|
||||
%patch0008 -p1
|
||||
%patch0009 -p1
|
||||
%patch0010 -p1
|
||||
|
||||
%build
|
||||
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||
|
@@ -1,3 +1,13 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Jul 18 13:29:34 UTC 2018 - guillaume.gardet@opensuse.org
|
||||
|
||||
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.07
|
||||
* Patches dropped:
|
||||
0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||
* Patches added:
|
||||
0001-XXX-openSUSE-XXX-Prepend-partition-.patch
|
||||
0010-snow-set-fdtfile.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jul 10 09:12:26 UTC 2018 - guillaume.gardet@opensuse.org
|
||||
|
||||
|
@@ -52,7 +52,7 @@ Source1: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2.s
|
||||
Source2: arndale-bl1.img
|
||||
Source3: update_git.sh
|
||||
Source300: u-boot-rpmlintrc
|
||||
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||
Patch0001: 0001-XXX-openSUSE-XXX-Prepend-partition-.patch
|
||||
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||
Patch0003: 0003-rpi-Use-firmware-provided-device-tr.patch
|
||||
Patch0004: 0004-Temp-workaround-for-Chromebook-snow.patch
|
||||
@@ -61,6 +61,7 @@ Patch0006: 0006-tools-zynqmpbif-Add-support-for-loa.patch
|
||||
Patch0007: 0007-rockchip-make_fit_atf-use-elf-entry.patch
|
||||
Patch0008: 0008-rockchip-make_fit_atf-make-python3-.patch
|
||||
Patch0009: 0009-rockchip-make_fit_atf.py-depends-on.patch
|
||||
Patch0010: 0010-snow-set-fdtfile.patch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
%if "%{name}" == "u-boot-pine64plus" && %{with uboot_atf_pine64}
|
||||
BuildRequires: arm-trusted-firmware-pine64
|
||||
@@ -130,6 +131,7 @@ This package contains documentation for U-Boot firmware.
|
||||
%patch0007 -p1
|
||||
%patch0008 -p1
|
||||
%patch0009 -p1
|
||||
%patch0010 -p1
|
||||
|
||||
%build
|
||||
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||
|
@@ -1,3 +1,13 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Jul 18 13:29:34 UTC 2018 - guillaume.gardet@opensuse.org
|
||||
|
||||
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.07
|
||||
* Patches dropped:
|
||||
0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||
* Patches added:
|
||||
0001-XXX-openSUSE-XXX-Prepend-partition-.patch
|
||||
0010-snow-set-fdtfile.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jul 10 09:12:26 UTC 2018 - guillaume.gardet@opensuse.org
|
||||
|
||||
|
@@ -52,7 +52,7 @@ Source1: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2.s
|
||||
Source2: arndale-bl1.img
|
||||
Source3: update_git.sh
|
||||
Source300: u-boot-rpmlintrc
|
||||
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||
Patch0001: 0001-XXX-openSUSE-XXX-Prepend-partition-.patch
|
||||
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||
Patch0003: 0003-rpi-Use-firmware-provided-device-tr.patch
|
||||
Patch0004: 0004-Temp-workaround-for-Chromebook-snow.patch
|
||||
@@ -61,6 +61,7 @@ Patch0006: 0006-tools-zynqmpbif-Add-support-for-loa.patch
|
||||
Patch0007: 0007-rockchip-make_fit_atf-use-elf-entry.patch
|
||||
Patch0008: 0008-rockchip-make_fit_atf-make-python3-.patch
|
||||
Patch0009: 0009-rockchip-make_fit_atf.py-depends-on.patch
|
||||
Patch0010: 0010-snow-set-fdtfile.patch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
%if "%{name}" == "u-boot-pine64plus" && %{with uboot_atf_pine64}
|
||||
BuildRequires: arm-trusted-firmware-pine64
|
||||
@@ -130,6 +131,7 @@ This package contains documentation for U-Boot firmware.
|
||||
%patch0007 -p1
|
||||
%patch0008 -p1
|
||||
%patch0009 -p1
|
||||
%patch0010 -p1
|
||||
|
||||
%build
|
||||
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||
|
@@ -1,3 +1,13 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Jul 18 13:29:34 UTC 2018 - guillaume.gardet@opensuse.org
|
||||
|
||||
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.07
|
||||
* Patches dropped:
|
||||
0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||
* Patches added:
|
||||
0001-XXX-openSUSE-XXX-Prepend-partition-.patch
|
||||
0010-snow-set-fdtfile.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jul 10 09:12:26 UTC 2018 - guillaume.gardet@opensuse.org
|
||||
|
||||
|
@@ -52,7 +52,7 @@ Source1: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2.s
|
||||
Source2: arndale-bl1.img
|
||||
Source3: update_git.sh
|
||||
Source300: u-boot-rpmlintrc
|
||||
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||
Patch0001: 0001-XXX-openSUSE-XXX-Prepend-partition-.patch
|
||||
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||
Patch0003: 0003-rpi-Use-firmware-provided-device-tr.patch
|
||||
Patch0004: 0004-Temp-workaround-for-Chromebook-snow.patch
|
||||
@@ -61,6 +61,7 @@ Patch0006: 0006-tools-zynqmpbif-Add-support-for-loa.patch
|
||||
Patch0007: 0007-rockchip-make_fit_atf-use-elf-entry.patch
|
||||
Patch0008: 0008-rockchip-make_fit_atf-make-python3-.patch
|
||||
Patch0009: 0009-rockchip-make_fit_atf.py-depends-on.patch
|
||||
Patch0010: 0010-snow-set-fdtfile.patch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
%if "%{name}" == "u-boot-pine64plus" && %{with uboot_atf_pine64}
|
||||
BuildRequires: arm-trusted-firmware-pine64
|
||||
@@ -130,6 +131,7 @@ This package contains documentation for U-Boot firmware.
|
||||
%patch0007 -p1
|
||||
%patch0008 -p1
|
||||
%patch0009 -p1
|
||||
%patch0010 -p1
|
||||
|
||||
%build
|
||||
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||
|
@@ -1,3 +1,13 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Jul 18 13:29:34 UTC 2018 - guillaume.gardet@opensuse.org
|
||||
|
||||
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.07
|
||||
* Patches dropped:
|
||||
0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||
* Patches added:
|
||||
0001-XXX-openSUSE-XXX-Prepend-partition-.patch
|
||||
0010-snow-set-fdtfile.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jul 10 09:12:26 UTC 2018 - guillaume.gardet@opensuse.org
|
||||
|
||||
|
@@ -52,7 +52,7 @@ Source1: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2.s
|
||||
Source2: arndale-bl1.img
|
||||
Source3: update_git.sh
|
||||
Source300: u-boot-rpmlintrc
|
||||
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||
Patch0001: 0001-XXX-openSUSE-XXX-Prepend-partition-.patch
|
||||
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||
Patch0003: 0003-rpi-Use-firmware-provided-device-tr.patch
|
||||
Patch0004: 0004-Temp-workaround-for-Chromebook-snow.patch
|
||||
@@ -61,6 +61,7 @@ Patch0006: 0006-tools-zynqmpbif-Add-support-for-loa.patch
|
||||
Patch0007: 0007-rockchip-make_fit_atf-use-elf-entry.patch
|
||||
Patch0008: 0008-rockchip-make_fit_atf-make-python3-.patch
|
||||
Patch0009: 0009-rockchip-make_fit_atf.py-depends-on.patch
|
||||
Patch0010: 0010-snow-set-fdtfile.patch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
%if "%{name}" == "u-boot-pine64plus" && %{with uboot_atf_pine64}
|
||||
BuildRequires: arm-trusted-firmware-pine64
|
||||
@@ -130,6 +131,7 @@ This package contains documentation for U-Boot firmware.
|
||||
%patch0007 -p1
|
||||
%patch0008 -p1
|
||||
%patch0009 -p1
|
||||
%patch0010 -p1
|
||||
|
||||
%build
|
||||
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||
|
@@ -1,3 +1,13 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Jul 18 13:29:34 UTC 2018 - guillaume.gardet@opensuse.org
|
||||
|
||||
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.07
|
||||
* Patches dropped:
|
||||
0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||
* Patches added:
|
||||
0001-XXX-openSUSE-XXX-Prepend-partition-.patch
|
||||
0010-snow-set-fdtfile.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jul 10 09:12:26 UTC 2018 - guillaume.gardet@opensuse.org
|
||||
|
||||
|
@@ -52,7 +52,7 @@ Source1: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2.s
|
||||
Source2: arndale-bl1.img
|
||||
Source3: update_git.sh
|
||||
Source300: u-boot-rpmlintrc
|
||||
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||
Patch0001: 0001-XXX-openSUSE-XXX-Prepend-partition-.patch
|
||||
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||
Patch0003: 0003-rpi-Use-firmware-provided-device-tr.patch
|
||||
Patch0004: 0004-Temp-workaround-for-Chromebook-snow.patch
|
||||
@@ -61,6 +61,7 @@ Patch0006: 0006-tools-zynqmpbif-Add-support-for-loa.patch
|
||||
Patch0007: 0007-rockchip-make_fit_atf-use-elf-entry.patch
|
||||
Patch0008: 0008-rockchip-make_fit_atf-make-python3-.patch
|
||||
Patch0009: 0009-rockchip-make_fit_atf.py-depends-on.patch
|
||||
Patch0010: 0010-snow-set-fdtfile.patch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
%if "%{name}" == "u-boot-pine64plus" && %{with uboot_atf_pine64}
|
||||
BuildRequires: arm-trusted-firmware-pine64
|
||||
@@ -130,6 +131,7 @@ This package contains documentation for U-Boot firmware.
|
||||
%patch0007 -p1
|
||||
%patch0008 -p1
|
||||
%patch0009 -p1
|
||||
%patch0010 -p1
|
||||
|
||||
%build
|
||||
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||
|
@@ -1,3 +1,13 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Jul 18 13:29:34 UTC 2018 - guillaume.gardet@opensuse.org
|
||||
|
||||
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.07
|
||||
* Patches dropped:
|
||||
0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||
* Patches added:
|
||||
0001-XXX-openSUSE-XXX-Prepend-partition-.patch
|
||||
0010-snow-set-fdtfile.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jul 10 09:12:26 UTC 2018 - guillaume.gardet@opensuse.org
|
||||
|
||||
|
@@ -52,7 +52,7 @@ Source1: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2.s
|
||||
Source2: arndale-bl1.img
|
||||
Source3: update_git.sh
|
||||
Source300: u-boot-rpmlintrc
|
||||
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||
Patch0001: 0001-XXX-openSUSE-XXX-Prepend-partition-.patch
|
||||
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||
Patch0003: 0003-rpi-Use-firmware-provided-device-tr.patch
|
||||
Patch0004: 0004-Temp-workaround-for-Chromebook-snow.patch
|
||||
@@ -61,6 +61,7 @@ Patch0006: 0006-tools-zynqmpbif-Add-support-for-loa.patch
|
||||
Patch0007: 0007-rockchip-make_fit_atf-use-elf-entry.patch
|
||||
Patch0008: 0008-rockchip-make_fit_atf-make-python3-.patch
|
||||
Patch0009: 0009-rockchip-make_fit_atf.py-depends-on.patch
|
||||
Patch0010: 0010-snow-set-fdtfile.patch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
%if "%{name}" == "u-boot-pine64plus" && %{with uboot_atf_pine64}
|
||||
BuildRequires: arm-trusted-firmware-pine64
|
||||
@@ -130,6 +131,7 @@ This package contains documentation for U-Boot firmware.
|
||||
%patch0007 -p1
|
||||
%patch0008 -p1
|
||||
%patch0009 -p1
|
||||
%patch0010 -p1
|
||||
|
||||
%build
|
||||
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||
|
@@ -1,3 +1,13 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Jul 18 13:29:34 UTC 2018 - guillaume.gardet@opensuse.org
|
||||
|
||||
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.07
|
||||
* Patches dropped:
|
||||
0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||
* Patches added:
|
||||
0001-XXX-openSUSE-XXX-Prepend-partition-.patch
|
||||
0010-snow-set-fdtfile.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jul 10 09:12:26 UTC 2018 - guillaume.gardet@opensuse.org
|
||||
|
||||
|
@@ -52,7 +52,7 @@ Source1: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2.s
|
||||
Source2: arndale-bl1.img
|
||||
Source3: update_git.sh
|
||||
Source300: u-boot-rpmlintrc
|
||||
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||
Patch0001: 0001-XXX-openSUSE-XXX-Prepend-partition-.patch
|
||||
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||
Patch0003: 0003-rpi-Use-firmware-provided-device-tr.patch
|
||||
Patch0004: 0004-Temp-workaround-for-Chromebook-snow.patch
|
||||
@@ -61,6 +61,7 @@ Patch0006: 0006-tools-zynqmpbif-Add-support-for-loa.patch
|
||||
Patch0007: 0007-rockchip-make_fit_atf-use-elf-entry.patch
|
||||
Patch0008: 0008-rockchip-make_fit_atf-make-python3-.patch
|
||||
Patch0009: 0009-rockchip-make_fit_atf.py-depends-on.patch
|
||||
Patch0010: 0010-snow-set-fdtfile.patch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
%if "%{name}" == "u-boot-pine64plus" && %{with uboot_atf_pine64}
|
||||
BuildRequires: arm-trusted-firmware-pine64
|
||||
@@ -130,6 +131,7 @@ This package contains documentation for U-Boot firmware.
|
||||
%patch0007 -p1
|
||||
%patch0008 -p1
|
||||
%patch0009 -p1
|
||||
%patch0010 -p1
|
||||
|
||||
%build
|
||||
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||
|
@@ -1,3 +1,13 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Jul 18 13:29:34 UTC 2018 - guillaume.gardet@opensuse.org
|
||||
|
||||
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.07
|
||||
* Patches dropped:
|
||||
0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||
* Patches added:
|
||||
0001-XXX-openSUSE-XXX-Prepend-partition-.patch
|
||||
0010-snow-set-fdtfile.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jul 10 09:12:26 UTC 2018 - guillaume.gardet@opensuse.org
|
||||
|
||||
|
@@ -52,7 +52,7 @@ Source1: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2.s
|
||||
Source2: arndale-bl1.img
|
||||
Source3: update_git.sh
|
||||
Source300: u-boot-rpmlintrc
|
||||
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||
Patch0001: 0001-XXX-openSUSE-XXX-Prepend-partition-.patch
|
||||
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||
Patch0003: 0003-rpi-Use-firmware-provided-device-tr.patch
|
||||
Patch0004: 0004-Temp-workaround-for-Chromebook-snow.patch
|
||||
@@ -61,6 +61,7 @@ Patch0006: 0006-tools-zynqmpbif-Add-support-for-loa.patch
|
||||
Patch0007: 0007-rockchip-make_fit_atf-use-elf-entry.patch
|
||||
Patch0008: 0008-rockchip-make_fit_atf-make-python3-.patch
|
||||
Patch0009: 0009-rockchip-make_fit_atf.py-depends-on.patch
|
||||
Patch0010: 0010-snow-set-fdtfile.patch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
%if "%{name}" == "u-boot-pine64plus" && %{with uboot_atf_pine64}
|
||||
BuildRequires: arm-trusted-firmware-pine64
|
||||
@@ -130,6 +131,7 @@ This package contains documentation for U-Boot firmware.
|
||||
%patch0007 -p1
|
||||
%patch0008 -p1
|
||||
%patch0009 -p1
|
||||
%patch0010 -p1
|
||||
|
||||
%build
|
||||
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||
|
@@ -1,3 +1,13 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Jul 18 13:29:34 UTC 2018 - guillaume.gardet@opensuse.org
|
||||
|
||||
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.07
|
||||
* Patches dropped:
|
||||
0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||
* Patches added:
|
||||
0001-XXX-openSUSE-XXX-Prepend-partition-.patch
|
||||
0010-snow-set-fdtfile.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jul 10 09:12:26 UTC 2018 - guillaume.gardet@opensuse.org
|
||||
|
||||
|
@@ -52,7 +52,7 @@ Source1: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2.s
|
||||
Source2: arndale-bl1.img
|
||||
Source3: update_git.sh
|
||||
Source300: u-boot-rpmlintrc
|
||||
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||
Patch0001: 0001-XXX-openSUSE-XXX-Prepend-partition-.patch
|
||||
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||
Patch0003: 0003-rpi-Use-firmware-provided-device-tr.patch
|
||||
Patch0004: 0004-Temp-workaround-for-Chromebook-snow.patch
|
||||
@@ -61,6 +61,7 @@ Patch0006: 0006-tools-zynqmpbif-Add-support-for-loa.patch
|
||||
Patch0007: 0007-rockchip-make_fit_atf-use-elf-entry.patch
|
||||
Patch0008: 0008-rockchip-make_fit_atf-make-python3-.patch
|
||||
Patch0009: 0009-rockchip-make_fit_atf.py-depends-on.patch
|
||||
Patch0010: 0010-snow-set-fdtfile.patch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
%if "%{name}" == "u-boot-pine64plus" && %{with uboot_atf_pine64}
|
||||
BuildRequires: arm-trusted-firmware-pine64
|
||||
@@ -130,6 +131,7 @@ This package contains documentation for U-Boot firmware.
|
||||
%patch0007 -p1
|
||||
%patch0008 -p1
|
||||
%patch0009 -p1
|
||||
%patch0010 -p1
|
||||
|
||||
%build
|
||||
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||
|
@@ -1,3 +1,13 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Jul 18 13:29:34 UTC 2018 - guillaume.gardet@opensuse.org
|
||||
|
||||
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.07
|
||||
* Patches dropped:
|
||||
0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||
* Patches added:
|
||||
0001-XXX-openSUSE-XXX-Prepend-partition-.patch
|
||||
0010-snow-set-fdtfile.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jul 10 09:12:26 UTC 2018 - guillaume.gardet@opensuse.org
|
||||
|
||||
|
@@ -52,7 +52,7 @@ Source1: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2.s
|
||||
Source2: arndale-bl1.img
|
||||
Source3: update_git.sh
|
||||
Source300: u-boot-rpmlintrc
|
||||
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||
Patch0001: 0001-XXX-openSUSE-XXX-Prepend-partition-.patch
|
||||
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||
Patch0003: 0003-rpi-Use-firmware-provided-device-tr.patch
|
||||
Patch0004: 0004-Temp-workaround-for-Chromebook-snow.patch
|
||||
@@ -61,6 +61,7 @@ Patch0006: 0006-tools-zynqmpbif-Add-support-for-loa.patch
|
||||
Patch0007: 0007-rockchip-make_fit_atf-use-elf-entry.patch
|
||||
Patch0008: 0008-rockchip-make_fit_atf-make-python3-.patch
|
||||
Patch0009: 0009-rockchip-make_fit_atf.py-depends-on.patch
|
||||
Patch0010: 0010-snow-set-fdtfile.patch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
%if "%{name}" == "u-boot-pine64plus" && %{with uboot_atf_pine64}
|
||||
BuildRequires: arm-trusted-firmware-pine64
|
||||
@@ -130,6 +131,7 @@ This package contains documentation for U-Boot firmware.
|
||||
%patch0007 -p1
|
||||
%patch0008 -p1
|
||||
%patch0009 -p1
|
||||
%patch0010 -p1
|
||||
|
||||
%build
|
||||
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||
|
@@ -1,3 +1,13 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Jul 18 13:29:34 UTC 2018 - guillaume.gardet@opensuse.org
|
||||
|
||||
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.07
|
||||
* Patches dropped:
|
||||
0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||
* Patches added:
|
||||
0001-XXX-openSUSE-XXX-Prepend-partition-.patch
|
||||
0010-snow-set-fdtfile.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jul 10 09:12:26 UTC 2018 - guillaume.gardet@opensuse.org
|
||||
|
||||
|
@@ -52,7 +52,7 @@ Source1: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2.s
|
||||
Source2: arndale-bl1.img
|
||||
Source3: update_git.sh
|
||||
Source300: u-boot-rpmlintrc
|
||||
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||
Patch0001: 0001-XXX-openSUSE-XXX-Prepend-partition-.patch
|
||||
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||
Patch0003: 0003-rpi-Use-firmware-provided-device-tr.patch
|
||||
Patch0004: 0004-Temp-workaround-for-Chromebook-snow.patch
|
||||
@@ -61,6 +61,7 @@ Patch0006: 0006-tools-zynqmpbif-Add-support-for-loa.patch
|
||||
Patch0007: 0007-rockchip-make_fit_atf-use-elf-entry.patch
|
||||
Patch0008: 0008-rockchip-make_fit_atf-make-python3-.patch
|
||||
Patch0009: 0009-rockchip-make_fit_atf.py-depends-on.patch
|
||||
Patch0010: 0010-snow-set-fdtfile.patch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
%if "%{name}" == "u-boot-pine64plus" && %{with uboot_atf_pine64}
|
||||
BuildRequires: arm-trusted-firmware-pine64
|
||||
@@ -130,6 +131,7 @@ This package contains documentation for U-Boot firmware.
|
||||
%patch0007 -p1
|
||||
%patch0008 -p1
|
||||
%patch0009 -p1
|
||||
%patch0010 -p1
|
||||
|
||||
%build
|
||||
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||
|
@@ -1,3 +1,13 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Jul 18 13:29:34 UTC 2018 - guillaume.gardet@opensuse.org
|
||||
|
||||
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.07
|
||||
* Patches dropped:
|
||||
0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||
* Patches added:
|
||||
0001-XXX-openSUSE-XXX-Prepend-partition-.patch
|
||||
0010-snow-set-fdtfile.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jul 10 09:12:26 UTC 2018 - guillaume.gardet@opensuse.org
|
||||
|
||||
|
@@ -52,7 +52,7 @@ Source1: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2.s
|
||||
Source2: arndale-bl1.img
|
||||
Source3: update_git.sh
|
||||
Source300: u-boot-rpmlintrc
|
||||
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||
Patch0001: 0001-XXX-openSUSE-XXX-Prepend-partition-.patch
|
||||
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||
Patch0003: 0003-rpi-Use-firmware-provided-device-tr.patch
|
||||
Patch0004: 0004-Temp-workaround-for-Chromebook-snow.patch
|
||||
@@ -61,6 +61,7 @@ Patch0006: 0006-tools-zynqmpbif-Add-support-for-loa.patch
|
||||
Patch0007: 0007-rockchip-make_fit_atf-use-elf-entry.patch
|
||||
Patch0008: 0008-rockchip-make_fit_atf-make-python3-.patch
|
||||
Patch0009: 0009-rockchip-make_fit_atf.py-depends-on.patch
|
||||
Patch0010: 0010-snow-set-fdtfile.patch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
%if "%{name}" == "u-boot-pine64plus" && %{with uboot_atf_pine64}
|
||||
BuildRequires: arm-trusted-firmware-pine64
|
||||
@@ -130,6 +131,7 @@ This package contains documentation for U-Boot firmware.
|
||||
%patch0007 -p1
|
||||
%patch0008 -p1
|
||||
%patch0009 -p1
|
||||
%patch0010 -p1
|
||||
|
||||
%build
|
||||
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||
|
@@ -1,3 +1,13 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Jul 18 13:29:34 UTC 2018 - guillaume.gardet@opensuse.org
|
||||
|
||||
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.07
|
||||
* Patches dropped:
|
||||
0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||
* Patches added:
|
||||
0001-XXX-openSUSE-XXX-Prepend-partition-.patch
|
||||
0010-snow-set-fdtfile.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jul 10 09:12:26 UTC 2018 - guillaume.gardet@opensuse.org
|
||||
|
||||
|
@@ -52,7 +52,7 @@ Source1: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2.s
|
||||
Source2: arndale-bl1.img
|
||||
Source3: update_git.sh
|
||||
Source300: u-boot-rpmlintrc
|
||||
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||
Patch0001: 0001-XXX-openSUSE-XXX-Prepend-partition-.patch
|
||||
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||
Patch0003: 0003-rpi-Use-firmware-provided-device-tr.patch
|
||||
Patch0004: 0004-Temp-workaround-for-Chromebook-snow.patch
|
||||
@@ -61,6 +61,7 @@ Patch0006: 0006-tools-zynqmpbif-Add-support-for-loa.patch
|
||||
Patch0007: 0007-rockchip-make_fit_atf-use-elf-entry.patch
|
||||
Patch0008: 0008-rockchip-make_fit_atf-make-python3-.patch
|
||||
Patch0009: 0009-rockchip-make_fit_atf.py-depends-on.patch
|
||||
Patch0010: 0010-snow-set-fdtfile.patch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
%if "%{name}" == "u-boot-pine64plus" && %{with uboot_atf_pine64}
|
||||
BuildRequires: arm-trusted-firmware-pine64
|
||||
@@ -130,6 +131,7 @@ This package contains documentation for U-Boot firmware.
|
||||
%patch0007 -p1
|
||||
%patch0008 -p1
|
||||
%patch0009 -p1
|
||||
%patch0010 -p1
|
||||
|
||||
%build
|
||||
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||
|
@@ -1,3 +1,13 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Jul 18 13:29:34 UTC 2018 - guillaume.gardet@opensuse.org
|
||||
|
||||
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.07
|
||||
* Patches dropped:
|
||||
0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||
* Patches added:
|
||||
0001-XXX-openSUSE-XXX-Prepend-partition-.patch
|
||||
0010-snow-set-fdtfile.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jul 10 09:12:26 UTC 2018 - guillaume.gardet@opensuse.org
|
||||
|
||||
|
@@ -52,7 +52,7 @@ Source1: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2.s
|
||||
Source2: arndale-bl1.img
|
||||
Source3: update_git.sh
|
||||
Source300: u-boot-rpmlintrc
|
||||
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||
Patch0001: 0001-XXX-openSUSE-XXX-Prepend-partition-.patch
|
||||
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||
Patch0003: 0003-rpi-Use-firmware-provided-device-tr.patch
|
||||
Patch0004: 0004-Temp-workaround-for-Chromebook-snow.patch
|
||||
@@ -61,6 +61,7 @@ Patch0006: 0006-tools-zynqmpbif-Add-support-for-loa.patch
|
||||
Patch0007: 0007-rockchip-make_fit_atf-use-elf-entry.patch
|
||||
Patch0008: 0008-rockchip-make_fit_atf-make-python3-.patch
|
||||
Patch0009: 0009-rockchip-make_fit_atf.py-depends-on.patch
|
||||
Patch0010: 0010-snow-set-fdtfile.patch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
%if "%{name}" == "u-boot-pine64plus" && %{with uboot_atf_pine64}
|
||||
BuildRequires: arm-trusted-firmware-pine64
|
||||
@@ -130,6 +131,7 @@ This package contains documentation for U-Boot firmware.
|
||||
%patch0007 -p1
|
||||
%patch0008 -p1
|
||||
%patch0009 -p1
|
||||
%patch0010 -p1
|
||||
|
||||
%build
|
||||
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||
|
@@ -1,3 +1,13 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Jul 18 13:29:34 UTC 2018 - guillaume.gardet@opensuse.org
|
||||
|
||||
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.07
|
||||
* Patches dropped:
|
||||
0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||
* Patches added:
|
||||
0001-XXX-openSUSE-XXX-Prepend-partition-.patch
|
||||
0010-snow-set-fdtfile.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jul 10 09:12:26 UTC 2018 - guillaume.gardet@opensuse.org
|
||||
|
||||
|
@@ -52,7 +52,7 @@ Source1: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2.s
|
||||
Source2: arndale-bl1.img
|
||||
Source3: update_git.sh
|
||||
Source300: u-boot-rpmlintrc
|
||||
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||
Patch0001: 0001-XXX-openSUSE-XXX-Prepend-partition-.patch
|
||||
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||
Patch0003: 0003-rpi-Use-firmware-provided-device-tr.patch
|
||||
Patch0004: 0004-Temp-workaround-for-Chromebook-snow.patch
|
||||
@@ -61,6 +61,7 @@ Patch0006: 0006-tools-zynqmpbif-Add-support-for-loa.patch
|
||||
Patch0007: 0007-rockchip-make_fit_atf-use-elf-entry.patch
|
||||
Patch0008: 0008-rockchip-make_fit_atf-make-python3-.patch
|
||||
Patch0009: 0009-rockchip-make_fit_atf.py-depends-on.patch
|
||||
Patch0010: 0010-snow-set-fdtfile.patch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
%if "%{name}" == "u-boot-pine64plus" && %{with uboot_atf_pine64}
|
||||
BuildRequires: arm-trusted-firmware-pine64
|
||||
@@ -130,6 +131,7 @@ This package contains documentation for U-Boot firmware.
|
||||
%patch0007 -p1
|
||||
%patch0008 -p1
|
||||
%patch0009 -p1
|
||||
%patch0010 -p1
|
||||
|
||||
%build
|
||||
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||
|
@@ -1,3 +1,13 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Jul 18 13:29:34 UTC 2018 - guillaume.gardet@opensuse.org
|
||||
|
||||
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.07
|
||||
* Patches dropped:
|
||||
0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||
* Patches added:
|
||||
0001-XXX-openSUSE-XXX-Prepend-partition-.patch
|
||||
0010-snow-set-fdtfile.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jul 10 09:12:26 UTC 2018 - guillaume.gardet@opensuse.org
|
||||
|
||||
|
@@ -52,7 +52,7 @@ Source1: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2.s
|
||||
Source2: arndale-bl1.img
|
||||
Source3: update_git.sh
|
||||
Source300: u-boot-rpmlintrc
|
||||
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||
Patch0001: 0001-XXX-openSUSE-XXX-Prepend-partition-.patch
|
||||
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||
Patch0003: 0003-rpi-Use-firmware-provided-device-tr.patch
|
||||
Patch0004: 0004-Temp-workaround-for-Chromebook-snow.patch
|
||||
@@ -61,6 +61,7 @@ Patch0006: 0006-tools-zynqmpbif-Add-support-for-loa.patch
|
||||
Patch0007: 0007-rockchip-make_fit_atf-use-elf-entry.patch
|
||||
Patch0008: 0008-rockchip-make_fit_atf-make-python3-.patch
|
||||
Patch0009: 0009-rockchip-make_fit_atf.py-depends-on.patch
|
||||
Patch0010: 0010-snow-set-fdtfile.patch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
%if "%{name}" == "u-boot-pine64plus" && %{with uboot_atf_pine64}
|
||||
BuildRequires: arm-trusted-firmware-pine64
|
||||
@@ -130,6 +131,7 @@ This package contains documentation for U-Boot firmware.
|
||||
%patch0007 -p1
|
||||
%patch0008 -p1
|
||||
%patch0009 -p1
|
||||
%patch0010 -p1
|
||||
|
||||
%build
|
||||
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||
|
@@ -1,3 +1,13 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Jul 18 13:29:34 UTC 2018 - guillaume.gardet@opensuse.org
|
||||
|
||||
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.07
|
||||
* Patches dropped:
|
||||
0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||
* Patches added:
|
||||
0001-XXX-openSUSE-XXX-Prepend-partition-.patch
|
||||
0010-snow-set-fdtfile.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jul 10 09:12:26 UTC 2018 - guillaume.gardet@opensuse.org
|
||||
|
||||
|
@@ -52,7 +52,7 @@ Source1: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2.s
|
||||
Source2: arndale-bl1.img
|
||||
Source3: update_git.sh
|
||||
Source300: u-boot-rpmlintrc
|
||||
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||
Patch0001: 0001-XXX-openSUSE-XXX-Prepend-partition-.patch
|
||||
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||
Patch0003: 0003-rpi-Use-firmware-provided-device-tr.patch
|
||||
Patch0004: 0004-Temp-workaround-for-Chromebook-snow.patch
|
||||
@@ -61,6 +61,7 @@ Patch0006: 0006-tools-zynqmpbif-Add-support-for-loa.patch
|
||||
Patch0007: 0007-rockchip-make_fit_atf-use-elf-entry.patch
|
||||
Patch0008: 0008-rockchip-make_fit_atf-make-python3-.patch
|
||||
Patch0009: 0009-rockchip-make_fit_atf.py-depends-on.patch
|
||||
Patch0010: 0010-snow-set-fdtfile.patch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
%if "%{name}" == "u-boot-pine64plus" && %{with uboot_atf_pine64}
|
||||
BuildRequires: arm-trusted-firmware-pine64
|
||||
@@ -130,6 +131,7 @@ This package contains documentation for U-Boot firmware.
|
||||
%patch0007 -p1
|
||||
%patch0008 -p1
|
||||
%patch0009 -p1
|
||||
%patch0010 -p1
|
||||
|
||||
%build
|
||||
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||
|
@@ -1,3 +1,13 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Jul 18 13:29:34 UTC 2018 - guillaume.gardet@opensuse.org
|
||||
|
||||
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.07
|
||||
* Patches dropped:
|
||||
0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||
* Patches added:
|
||||
0001-XXX-openSUSE-XXX-Prepend-partition-.patch
|
||||
0010-snow-set-fdtfile.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jul 10 09:12:26 UTC 2018 - guillaume.gardet@opensuse.org
|
||||
|
||||
|
@@ -52,7 +52,7 @@ Source1: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2.s
|
||||
Source2: arndale-bl1.img
|
||||
Source3: update_git.sh
|
||||
Source300: u-boot-rpmlintrc
|
||||
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||
Patch0001: 0001-XXX-openSUSE-XXX-Prepend-partition-.patch
|
||||
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||
Patch0003: 0003-rpi-Use-firmware-provided-device-tr.patch
|
||||
Patch0004: 0004-Temp-workaround-for-Chromebook-snow.patch
|
||||
@@ -61,6 +61,7 @@ Patch0006: 0006-tools-zynqmpbif-Add-support-for-loa.patch
|
||||
Patch0007: 0007-rockchip-make_fit_atf-use-elf-entry.patch
|
||||
Patch0008: 0008-rockchip-make_fit_atf-make-python3-.patch
|
||||
Patch0009: 0009-rockchip-make_fit_atf.py-depends-on.patch
|
||||
Patch0010: 0010-snow-set-fdtfile.patch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
%if "%{name}" == "u-boot-pine64plus" && %{with uboot_atf_pine64}
|
||||
BuildRequires: arm-trusted-firmware-pine64
|
||||
@@ -130,6 +131,7 @@ This package contains documentation for U-Boot firmware.
|
||||
%patch0007 -p1
|
||||
%patch0008 -p1
|
||||
%patch0009 -p1
|
||||
%patch0010 -p1
|
||||
|
||||
%build
|
||||
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||
|
@@ -1,3 +1,13 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Jul 18 13:29:34 UTC 2018 - guillaume.gardet@opensuse.org
|
||||
|
||||
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.07
|
||||
* Patches dropped:
|
||||
0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||
* Patches added:
|
||||
0001-XXX-openSUSE-XXX-Prepend-partition-.patch
|
||||
0010-snow-set-fdtfile.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jul 10 09:12:26 UTC 2018 - guillaume.gardet@opensuse.org
|
||||
|
||||
|
@@ -52,7 +52,7 @@ Source1: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2.s
|
||||
Source2: arndale-bl1.img
|
||||
Source3: update_git.sh
|
||||
Source300: u-boot-rpmlintrc
|
||||
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||
Patch0001: 0001-XXX-openSUSE-XXX-Prepend-partition-.patch
|
||||
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||
Patch0003: 0003-rpi-Use-firmware-provided-device-tr.patch
|
||||
Patch0004: 0004-Temp-workaround-for-Chromebook-snow.patch
|
||||
@@ -61,6 +61,7 @@ Patch0006: 0006-tools-zynqmpbif-Add-support-for-loa.patch
|
||||
Patch0007: 0007-rockchip-make_fit_atf-use-elf-entry.patch
|
||||
Patch0008: 0008-rockchip-make_fit_atf-make-python3-.patch
|
||||
Patch0009: 0009-rockchip-make_fit_atf.py-depends-on.patch
|
||||
Patch0010: 0010-snow-set-fdtfile.patch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
%if "%{name}" == "u-boot-pine64plus" && %{with uboot_atf_pine64}
|
||||
BuildRequires: arm-trusted-firmware-pine64
|
||||
@@ -130,6 +131,7 @@ This package contains documentation for U-Boot firmware.
|
||||
%patch0007 -p1
|
||||
%patch0008 -p1
|
||||
%patch0009 -p1
|
||||
%patch0010 -p1
|
||||
|
||||
%build
|
||||
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||
|
@@ -1,3 +1,13 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Jul 18 13:29:34 UTC 2018 - guillaume.gardet@opensuse.org
|
||||
|
||||
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.07
|
||||
* Patches dropped:
|
||||
0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||
* Patches added:
|
||||
0001-XXX-openSUSE-XXX-Prepend-partition-.patch
|
||||
0010-snow-set-fdtfile.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jul 10 09:12:26 UTC 2018 - guillaume.gardet@opensuse.org
|
||||
|
||||
|
@@ -52,7 +52,7 @@ Source1: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2.s
|
||||
Source2: arndale-bl1.img
|
||||
Source3: update_git.sh
|
||||
Source300: u-boot-rpmlintrc
|
||||
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||
Patch0001: 0001-XXX-openSUSE-XXX-Prepend-partition-.patch
|
||||
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||
Patch0003: 0003-rpi-Use-firmware-provided-device-tr.patch
|
||||
Patch0004: 0004-Temp-workaround-for-Chromebook-snow.patch
|
||||
@@ -61,6 +61,7 @@ Patch0006: 0006-tools-zynqmpbif-Add-support-for-loa.patch
|
||||
Patch0007: 0007-rockchip-make_fit_atf-use-elf-entry.patch
|
||||
Patch0008: 0008-rockchip-make_fit_atf-make-python3-.patch
|
||||
Patch0009: 0009-rockchip-make_fit_atf.py-depends-on.patch
|
||||
Patch0010: 0010-snow-set-fdtfile.patch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
%if "%{name}" == "u-boot-pine64plus" && %{with uboot_atf_pine64}
|
||||
BuildRequires: arm-trusted-firmware-pine64
|
||||
@@ -130,6 +131,7 @@ This package contains documentation for U-Boot firmware.
|
||||
%patch0007 -p1
|
||||
%patch0008 -p1
|
||||
%patch0009 -p1
|
||||
%patch0010 -p1
|
||||
|
||||
%build
|
||||
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||
|
@@ -1,3 +1,13 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Jul 18 13:29:34 UTC 2018 - guillaume.gardet@opensuse.org
|
||||
|
||||
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.07
|
||||
* Patches dropped:
|
||||
0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||
* Patches added:
|
||||
0001-XXX-openSUSE-XXX-Prepend-partition-.patch
|
||||
0010-snow-set-fdtfile.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jul 10 09:12:26 UTC 2018 - guillaume.gardet@opensuse.org
|
||||
|
||||
|
@@ -52,7 +52,7 @@ Source1: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2.s
|
||||
Source2: arndale-bl1.img
|
||||
Source3: update_git.sh
|
||||
Source300: u-boot-rpmlintrc
|
||||
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||
Patch0001: 0001-XXX-openSUSE-XXX-Prepend-partition-.patch
|
||||
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||
Patch0003: 0003-rpi-Use-firmware-provided-device-tr.patch
|
||||
Patch0004: 0004-Temp-workaround-for-Chromebook-snow.patch
|
||||
@@ -61,6 +61,7 @@ Patch0006: 0006-tools-zynqmpbif-Add-support-for-loa.patch
|
||||
Patch0007: 0007-rockchip-make_fit_atf-use-elf-entry.patch
|
||||
Patch0008: 0008-rockchip-make_fit_atf-make-python3-.patch
|
||||
Patch0009: 0009-rockchip-make_fit_atf.py-depends-on.patch
|
||||
Patch0010: 0010-snow-set-fdtfile.patch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
%if "%{name}" == "u-boot-pine64plus" && %{with uboot_atf_pine64}
|
||||
BuildRequires: arm-trusted-firmware-pine64
|
||||
@@ -130,6 +131,7 @@ This package contains documentation for U-Boot firmware.
|
||||
%patch0007 -p1
|
||||
%patch0008 -p1
|
||||
%patch0009 -p1
|
||||
%patch0010 -p1
|
||||
|
||||
%build
|
||||
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||
|
@@ -1,3 +1,13 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Jul 18 13:29:34 UTC 2018 - guillaume.gardet@opensuse.org
|
||||
|
||||
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.07
|
||||
* Patches dropped:
|
||||
0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||
* Patches added:
|
||||
0001-XXX-openSUSE-XXX-Prepend-partition-.patch
|
||||
0010-snow-set-fdtfile.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jul 10 09:12:26 UTC 2018 - guillaume.gardet@opensuse.org
|
||||
|
||||
|
@@ -52,7 +52,7 @@ Source1: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2.s
|
||||
Source2: arndale-bl1.img
|
||||
Source3: update_git.sh
|
||||
Source300: u-boot-rpmlintrc
|
||||
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||
Patch0001: 0001-XXX-openSUSE-XXX-Prepend-partition-.patch
|
||||
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||
Patch0003: 0003-rpi-Use-firmware-provided-device-tr.patch
|
||||
Patch0004: 0004-Temp-workaround-for-Chromebook-snow.patch
|
||||
@@ -61,6 +61,7 @@ Patch0006: 0006-tools-zynqmpbif-Add-support-for-loa.patch
|
||||
Patch0007: 0007-rockchip-make_fit_atf-use-elf-entry.patch
|
||||
Patch0008: 0008-rockchip-make_fit_atf-make-python3-.patch
|
||||
Patch0009: 0009-rockchip-make_fit_atf.py-depends-on.patch
|
||||
Patch0010: 0010-snow-set-fdtfile.patch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
%if "%{name}" == "u-boot-pine64plus" && %{with uboot_atf_pine64}
|
||||
BuildRequires: arm-trusted-firmware-pine64
|
||||
@@ -130,6 +131,7 @@ This package contains documentation for U-Boot firmware.
|
||||
%patch0007 -p1
|
||||
%patch0008 -p1
|
||||
%patch0009 -p1
|
||||
%patch0010 -p1
|
||||
|
||||
%build
|
||||
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||
|
@@ -1,3 +1,13 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Jul 18 13:29:34 UTC 2018 - guillaume.gardet@opensuse.org
|
||||
|
||||
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.07
|
||||
* Patches dropped:
|
||||
0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||
* Patches added:
|
||||
0001-XXX-openSUSE-XXX-Prepend-partition-.patch
|
||||
0010-snow-set-fdtfile.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jul 10 09:12:26 UTC 2018 - guillaume.gardet@opensuse.org
|
||||
|
||||
|
@@ -52,7 +52,7 @@ Source1: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2.s
|
||||
Source2: arndale-bl1.img
|
||||
Source3: update_git.sh
|
||||
Source300: u-boot-rpmlintrc
|
||||
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||
Patch0001: 0001-XXX-openSUSE-XXX-Prepend-partition-.patch
|
||||
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||
Patch0003: 0003-rpi-Use-firmware-provided-device-tr.patch
|
||||
Patch0004: 0004-Temp-workaround-for-Chromebook-snow.patch
|
||||
@@ -61,6 +61,7 @@ Patch0006: 0006-tools-zynqmpbif-Add-support-for-loa.patch
|
||||
Patch0007: 0007-rockchip-make_fit_atf-use-elf-entry.patch
|
||||
Patch0008: 0008-rockchip-make_fit_atf-make-python3-.patch
|
||||
Patch0009: 0009-rockchip-make_fit_atf.py-depends-on.patch
|
||||
Patch0010: 0010-snow-set-fdtfile.patch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
%if "%{name}" == "u-boot-pine64plus" && %{with uboot_atf_pine64}
|
||||
BuildRequires: arm-trusted-firmware-pine64
|
||||
@@ -130,6 +131,7 @@ This package contains documentation for U-Boot firmware.
|
||||
%patch0007 -p1
|
||||
%patch0008 -p1
|
||||
%patch0009 -p1
|
||||
%patch0010 -p1
|
||||
|
||||
%build
|
||||
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||
|
@@ -1,3 +1,13 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Jul 18 13:29:34 UTC 2018 - guillaume.gardet@opensuse.org
|
||||
|
||||
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.07
|
||||
* Patches dropped:
|
||||
0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||
* Patches added:
|
||||
0001-XXX-openSUSE-XXX-Prepend-partition-.patch
|
||||
0010-snow-set-fdtfile.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jul 10 09:12:26 UTC 2018 - guillaume.gardet@opensuse.org
|
||||
|
||||
|
@@ -52,7 +52,7 @@ Source1: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2.s
|
||||
Source2: arndale-bl1.img
|
||||
Source3: update_git.sh
|
||||
Source300: u-boot-rpmlintrc
|
||||
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||
Patch0001: 0001-XXX-openSUSE-XXX-Prepend-partition-.patch
|
||||
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||
Patch0003: 0003-rpi-Use-firmware-provided-device-tr.patch
|
||||
Patch0004: 0004-Temp-workaround-for-Chromebook-snow.patch
|
||||
@@ -61,6 +61,7 @@ Patch0006: 0006-tools-zynqmpbif-Add-support-for-loa.patch
|
||||
Patch0007: 0007-rockchip-make_fit_atf-use-elf-entry.patch
|
||||
Patch0008: 0008-rockchip-make_fit_atf-make-python3-.patch
|
||||
Patch0009: 0009-rockchip-make_fit_atf.py-depends-on.patch
|
||||
Patch0010: 0010-snow-set-fdtfile.patch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
%if "%{name}" == "u-boot-pine64plus" && %{with uboot_atf_pine64}
|
||||
BuildRequires: arm-trusted-firmware-pine64
|
||||
@@ -130,6 +131,7 @@ This package contains documentation for U-Boot firmware.
|
||||
%patch0007 -p1
|
||||
%patch0008 -p1
|
||||
%patch0009 -p1
|
||||
%patch0010 -p1
|
||||
|
||||
%build
|
||||
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||
|
@@ -1,3 +1,13 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Jul 18 13:29:34 UTC 2018 - guillaume.gardet@opensuse.org
|
||||
|
||||
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.07
|
||||
* Patches dropped:
|
||||
0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||
* Patches added:
|
||||
0001-XXX-openSUSE-XXX-Prepend-partition-.patch
|
||||
0010-snow-set-fdtfile.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jul 10 09:12:26 UTC 2018 - guillaume.gardet@opensuse.org
|
||||
|
||||
|
@@ -52,7 +52,7 @@ Source1: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2.s
|
||||
Source2: arndale-bl1.img
|
||||
Source3: update_git.sh
|
||||
Source300: u-boot-rpmlintrc
|
||||
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||
Patch0001: 0001-XXX-openSUSE-XXX-Prepend-partition-.patch
|
||||
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||
Patch0003: 0003-rpi-Use-firmware-provided-device-tr.patch
|
||||
Patch0004: 0004-Temp-workaround-for-Chromebook-snow.patch
|
||||
@@ -61,6 +61,7 @@ Patch0006: 0006-tools-zynqmpbif-Add-support-for-loa.patch
|
||||
Patch0007: 0007-rockchip-make_fit_atf-use-elf-entry.patch
|
||||
Patch0008: 0008-rockchip-make_fit_atf-make-python3-.patch
|
||||
Patch0009: 0009-rockchip-make_fit_atf.py-depends-on.patch
|
||||
Patch0010: 0010-snow-set-fdtfile.patch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
%if "%{name}" == "u-boot-pine64plus" && %{with uboot_atf_pine64}
|
||||
BuildRequires: arm-trusted-firmware-pine64
|
||||
@@ -130,6 +131,7 @@ This package contains documentation for U-Boot firmware.
|
||||
%patch0007 -p1
|
||||
%patch0008 -p1
|
||||
%patch0009 -p1
|
||||
%patch0010 -p1
|
||||
|
||||
%build
|
||||
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||
|
@@ -1,3 +1,13 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Jul 18 13:29:34 UTC 2018 - guillaume.gardet@opensuse.org
|
||||
|
||||
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.07
|
||||
* Patches dropped:
|
||||
0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||
* Patches added:
|
||||
0001-XXX-openSUSE-XXX-Prepend-partition-.patch
|
||||
0010-snow-set-fdtfile.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jul 10 09:12:26 UTC 2018 - guillaume.gardet@opensuse.org
|
||||
|
||||
|
@@ -52,7 +52,7 @@ Source1: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2.s
|
||||
Source2: arndale-bl1.img
|
||||
Source3: update_git.sh
|
||||
Source300: u-boot-rpmlintrc
|
||||
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||
Patch0001: 0001-XXX-openSUSE-XXX-Prepend-partition-.patch
|
||||
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||
Patch0003: 0003-rpi-Use-firmware-provided-device-tr.patch
|
||||
Patch0004: 0004-Temp-workaround-for-Chromebook-snow.patch
|
||||
@@ -61,6 +61,7 @@ Patch0006: 0006-tools-zynqmpbif-Add-support-for-loa.patch
|
||||
Patch0007: 0007-rockchip-make_fit_atf-use-elf-entry.patch
|
||||
Patch0008: 0008-rockchip-make_fit_atf-make-python3-.patch
|
||||
Patch0009: 0009-rockchip-make_fit_atf.py-depends-on.patch
|
||||
Patch0010: 0010-snow-set-fdtfile.patch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
%if "%{name}" == "u-boot-pine64plus" && %{with uboot_atf_pine64}
|
||||
BuildRequires: arm-trusted-firmware-pine64
|
||||
@@ -130,6 +131,7 @@ This package contains documentation for U-Boot firmware.
|
||||
%patch0007 -p1
|
||||
%patch0008 -p1
|
||||
%patch0009 -p1
|
||||
%patch0010 -p1
|
||||
|
||||
%build
|
||||
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||
|
@@ -1,3 +1,13 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Jul 18 13:29:34 UTC 2018 - guillaume.gardet@opensuse.org
|
||||
|
||||
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.07
|
||||
* Patches dropped:
|
||||
0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||
* Patches added:
|
||||
0001-XXX-openSUSE-XXX-Prepend-partition-.patch
|
||||
0010-snow-set-fdtfile.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jul 10 09:12:26 UTC 2018 - guillaume.gardet@opensuse.org
|
||||
|
||||
|
@@ -52,7 +52,7 @@ Source1: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2.s
|
||||
Source2: arndale-bl1.img
|
||||
Source3: update_git.sh
|
||||
Source300: u-boot-rpmlintrc
|
||||
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||
Patch0001: 0001-XXX-openSUSE-XXX-Prepend-partition-.patch
|
||||
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||
Patch0003: 0003-rpi-Use-firmware-provided-device-tr.patch
|
||||
Patch0004: 0004-Temp-workaround-for-Chromebook-snow.patch
|
||||
@@ -61,6 +61,7 @@ Patch0006: 0006-tools-zynqmpbif-Add-support-for-loa.patch
|
||||
Patch0007: 0007-rockchip-make_fit_atf-use-elf-entry.patch
|
||||
Patch0008: 0008-rockchip-make_fit_atf-make-python3-.patch
|
||||
Patch0009: 0009-rockchip-make_fit_atf.py-depends-on.patch
|
||||
Patch0010: 0010-snow-set-fdtfile.patch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
%if "%{name}" == "u-boot-pine64plus" && %{with uboot_atf_pine64}
|
||||
BuildRequires: arm-trusted-firmware-pine64
|
||||
@@ -130,6 +131,7 @@ This package contains documentation for U-Boot firmware.
|
||||
%patch0007 -p1
|
||||
%patch0008 -p1
|
||||
%patch0009 -p1
|
||||
%patch0010 -p1
|
||||
|
||||
%build
|
||||
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||
|
@@ -1,3 +1,13 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Jul 18 13:29:34 UTC 2018 - guillaume.gardet@opensuse.org
|
||||
|
||||
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.07
|
||||
* Patches dropped:
|
||||
0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||
* Patches added:
|
||||
0001-XXX-openSUSE-XXX-Prepend-partition-.patch
|
||||
0010-snow-set-fdtfile.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jul 10 09:12:26 UTC 2018 - guillaume.gardet@opensuse.org
|
||||
|
||||
|
@@ -52,7 +52,7 @@ Source1: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2.s
|
||||
Source2: arndale-bl1.img
|
||||
Source3: update_git.sh
|
||||
Source300: u-boot-rpmlintrc
|
||||
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||
Patch0001: 0001-XXX-openSUSE-XXX-Prepend-partition-.patch
|
||||
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||
Patch0003: 0003-rpi-Use-firmware-provided-device-tr.patch
|
||||
Patch0004: 0004-Temp-workaround-for-Chromebook-snow.patch
|
||||
@@ -61,6 +61,7 @@ Patch0006: 0006-tools-zynqmpbif-Add-support-for-loa.patch
|
||||
Patch0007: 0007-rockchip-make_fit_atf-use-elf-entry.patch
|
||||
Patch0008: 0008-rockchip-make_fit_atf-make-python3-.patch
|
||||
Patch0009: 0009-rockchip-make_fit_atf.py-depends-on.patch
|
||||
Patch0010: 0010-snow-set-fdtfile.patch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
%if "%{name}" == "u-boot-pine64plus" && %{with uboot_atf_pine64}
|
||||
BuildRequires: arm-trusted-firmware-pine64
|
||||
@@ -130,6 +131,7 @@ This package contains documentation for U-Boot firmware.
|
||||
%patch0007 -p1
|
||||
%patch0008 -p1
|
||||
%patch0009 -p1
|
||||
%patch0010 -p1
|
||||
|
||||
%build
|
||||
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||
|
@@ -1,3 +1,13 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Jul 18 13:29:34 UTC 2018 - guillaume.gardet@opensuse.org
|
||||
|
||||
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.07
|
||||
* Patches dropped:
|
||||
0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||
* Patches added:
|
||||
0001-XXX-openSUSE-XXX-Prepend-partition-.patch
|
||||
0010-snow-set-fdtfile.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jul 10 09:12:26 UTC 2018 - guillaume.gardet@opensuse.org
|
||||
|
||||
|
@@ -52,7 +52,7 @@ Source1: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2.s
|
||||
Source2: arndale-bl1.img
|
||||
Source3: update_git.sh
|
||||
Source300: u-boot-rpmlintrc
|
||||
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||
Patch0001: 0001-XXX-openSUSE-XXX-Prepend-partition-.patch
|
||||
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||
Patch0003: 0003-rpi-Use-firmware-provided-device-tr.patch
|
||||
Patch0004: 0004-Temp-workaround-for-Chromebook-snow.patch
|
||||
@@ -61,6 +61,7 @@ Patch0006: 0006-tools-zynqmpbif-Add-support-for-loa.patch
|
||||
Patch0007: 0007-rockchip-make_fit_atf-use-elf-entry.patch
|
||||
Patch0008: 0008-rockchip-make_fit_atf-make-python3-.patch
|
||||
Patch0009: 0009-rockchip-make_fit_atf.py-depends-on.patch
|
||||
Patch0010: 0010-snow-set-fdtfile.patch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
%if "%{name}" == "u-boot-pine64plus" && %{with uboot_atf_pine64}
|
||||
BuildRequires: arm-trusted-firmware-pine64
|
||||
@@ -130,6 +131,7 @@ This package contains documentation for U-Boot firmware.
|
||||
%patch0007 -p1
|
||||
%patch0008 -p1
|
||||
%patch0009 -p1
|
||||
%patch0010 -p1
|
||||
|
||||
%build
|
||||
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||
|
@@ -1,3 +1,13 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Jul 18 13:29:34 UTC 2018 - guillaume.gardet@opensuse.org
|
||||
|
||||
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.07
|
||||
* Patches dropped:
|
||||
0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||
* Patches added:
|
||||
0001-XXX-openSUSE-XXX-Prepend-partition-.patch
|
||||
0010-snow-set-fdtfile.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jul 10 09:12:26 UTC 2018 - guillaume.gardet@opensuse.org
|
||||
|
||||
|
@@ -52,7 +52,7 @@ Source1: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2.s
|
||||
Source2: arndale-bl1.img
|
||||
Source3: update_git.sh
|
||||
Source300: u-boot-rpmlintrc
|
||||
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||
Patch0001: 0001-XXX-openSUSE-XXX-Prepend-partition-.patch
|
||||
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||
Patch0003: 0003-rpi-Use-firmware-provided-device-tr.patch
|
||||
Patch0004: 0004-Temp-workaround-for-Chromebook-snow.patch
|
||||
@@ -61,6 +61,7 @@ Patch0006: 0006-tools-zynqmpbif-Add-support-for-loa.patch
|
||||
Patch0007: 0007-rockchip-make_fit_atf-use-elf-entry.patch
|
||||
Patch0008: 0008-rockchip-make_fit_atf-make-python3-.patch
|
||||
Patch0009: 0009-rockchip-make_fit_atf.py-depends-on.patch
|
||||
Patch0010: 0010-snow-set-fdtfile.patch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
%if "%{name}" == "u-boot-pine64plus" && %{with uboot_atf_pine64}
|
||||
BuildRequires: arm-trusted-firmware-pine64
|
||||
@@ -130,6 +131,7 @@ This package contains documentation for U-Boot firmware.
|
||||
%patch0007 -p1
|
||||
%patch0008 -p1
|
||||
%patch0009 -p1
|
||||
%patch0010 -p1
|
||||
|
||||
%build
|
||||
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||
|
@@ -1,3 +1,13 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Jul 18 13:29:34 UTC 2018 - guillaume.gardet@opensuse.org
|
||||
|
||||
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.07
|
||||
* Patches dropped:
|
||||
0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||
* Patches added:
|
||||
0001-XXX-openSUSE-XXX-Prepend-partition-.patch
|
||||
0010-snow-set-fdtfile.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jul 10 09:12:26 UTC 2018 - guillaume.gardet@opensuse.org
|
||||
|
||||
|
@@ -52,7 +52,7 @@ Source1: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2.s
|
||||
Source2: arndale-bl1.img
|
||||
Source3: update_git.sh
|
||||
Source300: u-boot-rpmlintrc
|
||||
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||
Patch0001: 0001-XXX-openSUSE-XXX-Prepend-partition-.patch
|
||||
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||
Patch0003: 0003-rpi-Use-firmware-provided-device-tr.patch
|
||||
Patch0004: 0004-Temp-workaround-for-Chromebook-snow.patch
|
||||
@@ -61,6 +61,7 @@ Patch0006: 0006-tools-zynqmpbif-Add-support-for-loa.patch
|
||||
Patch0007: 0007-rockchip-make_fit_atf-use-elf-entry.patch
|
||||
Patch0008: 0008-rockchip-make_fit_atf-make-python3-.patch
|
||||
Patch0009: 0009-rockchip-make_fit_atf.py-depends-on.patch
|
||||
Patch0010: 0010-snow-set-fdtfile.patch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
%if "%{name}" == "u-boot-pine64plus" && %{with uboot_atf_pine64}
|
||||
BuildRequires: arm-trusted-firmware-pine64
|
||||
@@ -130,6 +131,7 @@ This package contains documentation for U-Boot firmware.
|
||||
%patch0007 -p1
|
||||
%patch0008 -p1
|
||||
%patch0009 -p1
|
||||
%patch0010 -p1
|
||||
|
||||
%build
|
||||
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||
|
@@ -1,3 +1,13 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Jul 18 13:29:34 UTC 2018 - guillaume.gardet@opensuse.org
|
||||
|
||||
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.07
|
||||
* Patches dropped:
|
||||
0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||
* Patches added:
|
||||
0001-XXX-openSUSE-XXX-Prepend-partition-.patch
|
||||
0010-snow-set-fdtfile.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jul 10 09:12:26 UTC 2018 - guillaume.gardet@opensuse.org
|
||||
|
||||
|
@@ -52,7 +52,7 @@ Source1: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2.s
|
||||
Source2: arndale-bl1.img
|
||||
Source3: update_git.sh
|
||||
Source300: u-boot-rpmlintrc
|
||||
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||
Patch0001: 0001-XXX-openSUSE-XXX-Prepend-partition-.patch
|
||||
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||
Patch0003: 0003-rpi-Use-firmware-provided-device-tr.patch
|
||||
Patch0004: 0004-Temp-workaround-for-Chromebook-snow.patch
|
||||
@@ -61,6 +61,7 @@ Patch0006: 0006-tools-zynqmpbif-Add-support-for-loa.patch
|
||||
Patch0007: 0007-rockchip-make_fit_atf-use-elf-entry.patch
|
||||
Patch0008: 0008-rockchip-make_fit_atf-make-python3-.patch
|
||||
Patch0009: 0009-rockchip-make_fit_atf.py-depends-on.patch
|
||||
Patch0010: 0010-snow-set-fdtfile.patch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
%if "%{name}" == "u-boot-pine64plus" && %{with uboot_atf_pine64}
|
||||
BuildRequires: arm-trusted-firmware-pine64
|
||||
@@ -130,6 +131,7 @@ This package contains documentation for U-Boot firmware.
|
||||
%patch0007 -p1
|
||||
%patch0008 -p1
|
||||
%patch0009 -p1
|
||||
%patch0010 -p1
|
||||
|
||||
%build
|
||||
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||
|
@@ -1,3 +1,13 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Jul 18 13:29:34 UTC 2018 - guillaume.gardet@opensuse.org
|
||||
|
||||
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.07
|
||||
* Patches dropped:
|
||||
0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||
* Patches added:
|
||||
0001-XXX-openSUSE-XXX-Prepend-partition-.patch
|
||||
0010-snow-set-fdtfile.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jul 10 09:12:26 UTC 2018 - guillaume.gardet@opensuse.org
|
||||
|
||||
|
@@ -52,7 +52,7 @@ Source1: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2.s
|
||||
Source2: arndale-bl1.img
|
||||
Source3: update_git.sh
|
||||
Source300: u-boot-rpmlintrc
|
||||
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||
Patch0001: 0001-XXX-openSUSE-XXX-Prepend-partition-.patch
|
||||
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||
Patch0003: 0003-rpi-Use-firmware-provided-device-tr.patch
|
||||
Patch0004: 0004-Temp-workaround-for-Chromebook-snow.patch
|
||||
@@ -61,6 +61,7 @@ Patch0006: 0006-tools-zynqmpbif-Add-support-for-loa.patch
|
||||
Patch0007: 0007-rockchip-make_fit_atf-use-elf-entry.patch
|
||||
Patch0008: 0008-rockchip-make_fit_atf-make-python3-.patch
|
||||
Patch0009: 0009-rockchip-make_fit_atf.py-depends-on.patch
|
||||
Patch0010: 0010-snow-set-fdtfile.patch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
%if "%{name}" == "u-boot-pine64plus" && %{with uboot_atf_pine64}
|
||||
BuildRequires: arm-trusted-firmware-pine64
|
||||
@@ -130,6 +131,7 @@ This package contains documentation for U-Boot firmware.
|
||||
%patch0007 -p1
|
||||
%patch0008 -p1
|
||||
%patch0009 -p1
|
||||
%patch0010 -p1
|
||||
|
||||
%build
|
||||
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||
|
@@ -1,3 +1,13 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Jul 18 13:29:34 UTC 2018 - guillaume.gardet@opensuse.org
|
||||
|
||||
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.07
|
||||
* Patches dropped:
|
||||
0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||
* Patches added:
|
||||
0001-XXX-openSUSE-XXX-Prepend-partition-.patch
|
||||
0010-snow-set-fdtfile.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jul 10 09:12:26 UTC 2018 - guillaume.gardet@opensuse.org
|
||||
|
||||
|
@@ -52,7 +52,7 @@ Source1: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2.s
|
||||
Source2: arndale-bl1.img
|
||||
Source3: update_git.sh
|
||||
Source300: u-boot-rpmlintrc
|
||||
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||
Patch0001: 0001-XXX-openSUSE-XXX-Prepend-partition-.patch
|
||||
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||
Patch0003: 0003-rpi-Use-firmware-provided-device-tr.patch
|
||||
Patch0004: 0004-Temp-workaround-for-Chromebook-snow.patch
|
||||
@@ -61,6 +61,7 @@ Patch0006: 0006-tools-zynqmpbif-Add-support-for-loa.patch
|
||||
Patch0007: 0007-rockchip-make_fit_atf-use-elf-entry.patch
|
||||
Patch0008: 0008-rockchip-make_fit_atf-make-python3-.patch
|
||||
Patch0009: 0009-rockchip-make_fit_atf.py-depends-on.patch
|
||||
Patch0010: 0010-snow-set-fdtfile.patch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
%if "%{name}" == "u-boot-pine64plus" && %{with uboot_atf_pine64}
|
||||
BuildRequires: arm-trusted-firmware-pine64
|
||||
@@ -130,6 +131,7 @@ This package contains documentation for U-Boot firmware.
|
||||
%patch0007 -p1
|
||||
%patch0008 -p1
|
||||
%patch0009 -p1
|
||||
%patch0010 -p1
|
||||
|
||||
%build
|
||||
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||
|
@@ -1,3 +1,13 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Jul 18 13:29:34 UTC 2018 - guillaume.gardet@opensuse.org
|
||||
|
||||
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.07
|
||||
* Patches dropped:
|
||||
0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||
* Patches added:
|
||||
0001-XXX-openSUSE-XXX-Prepend-partition-.patch
|
||||
0010-snow-set-fdtfile.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jul 10 09:12:26 UTC 2018 - guillaume.gardet@opensuse.org
|
||||
|
||||
|
@@ -52,7 +52,7 @@ Source1: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2.s
|
||||
Source2: arndale-bl1.img
|
||||
Source3: update_git.sh
|
||||
Source300: u-boot-rpmlintrc
|
||||
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||
Patch0001: 0001-XXX-openSUSE-XXX-Prepend-partition-.patch
|
||||
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||
Patch0003: 0003-rpi-Use-firmware-provided-device-tr.patch
|
||||
Patch0004: 0004-Temp-workaround-for-Chromebook-snow.patch
|
||||
@@ -61,6 +61,7 @@ Patch0006: 0006-tools-zynqmpbif-Add-support-for-loa.patch
|
||||
Patch0007: 0007-rockchip-make_fit_atf-use-elf-entry.patch
|
||||
Patch0008: 0008-rockchip-make_fit_atf-make-python3-.patch
|
||||
Patch0009: 0009-rockchip-make_fit_atf.py-depends-on.patch
|
||||
Patch0010: 0010-snow-set-fdtfile.patch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
%if "%{name}" == "u-boot-pine64plus" && %{with uboot_atf_pine64}
|
||||
BuildRequires: arm-trusted-firmware-pine64
|
||||
@@ -130,6 +131,7 @@ This package contains documentation for U-Boot firmware.
|
||||
%patch0007 -p1
|
||||
%patch0008 -p1
|
||||
%patch0009 -p1
|
||||
%patch0010 -p1
|
||||
|
||||
%build
|
||||
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||
|
@@ -1,3 +1,13 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Jul 18 13:29:34 UTC 2018 - guillaume.gardet@opensuse.org
|
||||
|
||||
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.07
|
||||
* Patches dropped:
|
||||
0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||
* Patches added:
|
||||
0001-XXX-openSUSE-XXX-Prepend-partition-.patch
|
||||
0010-snow-set-fdtfile.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jul 10 09:12:26 UTC 2018 - guillaume.gardet@opensuse.org
|
||||
|
||||
|
@@ -52,7 +52,7 @@ Source1: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2.s
|
||||
Source2: arndale-bl1.img
|
||||
Source3: update_git.sh
|
||||
Source300: u-boot-rpmlintrc
|
||||
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||
Patch0001: 0001-XXX-openSUSE-XXX-Prepend-partition-.patch
|
||||
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||
Patch0003: 0003-rpi-Use-firmware-provided-device-tr.patch
|
||||
Patch0004: 0004-Temp-workaround-for-Chromebook-snow.patch
|
||||
@@ -61,6 +61,7 @@ Patch0006: 0006-tools-zynqmpbif-Add-support-for-loa.patch
|
||||
Patch0007: 0007-rockchip-make_fit_atf-use-elf-entry.patch
|
||||
Patch0008: 0008-rockchip-make_fit_atf-make-python3-.patch
|
||||
Patch0009: 0009-rockchip-make_fit_atf.py-depends-on.patch
|
||||
Patch0010: 0010-snow-set-fdtfile.patch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
%if "%{name}" == "u-boot-pine64plus" && %{with uboot_atf_pine64}
|
||||
BuildRequires: arm-trusted-firmware-pine64
|
||||
@@ -130,6 +131,7 @@ This package contains documentation for U-Boot firmware.
|
||||
%patch0007 -p1
|
||||
%patch0008 -p1
|
||||
%patch0009 -p1
|
||||
%patch0010 -p1
|
||||
|
||||
%build
|
||||
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||
|
@@ -1,3 +1,13 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Jul 18 13:29:34 UTC 2018 - guillaume.gardet@opensuse.org
|
||||
|
||||
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.07
|
||||
* Patches dropped:
|
||||
0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||
* Patches added:
|
||||
0001-XXX-openSUSE-XXX-Prepend-partition-.patch
|
||||
0010-snow-set-fdtfile.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jul 10 09:12:26 UTC 2018 - guillaume.gardet@opensuse.org
|
||||
|
||||
|
@@ -52,7 +52,7 @@ Source1: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2.s
|
||||
Source2: arndale-bl1.img
|
||||
Source3: update_git.sh
|
||||
Source300: u-boot-rpmlintrc
|
||||
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||
Patch0001: 0001-XXX-openSUSE-XXX-Prepend-partition-.patch
|
||||
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||
Patch0003: 0003-rpi-Use-firmware-provided-device-tr.patch
|
||||
Patch0004: 0004-Temp-workaround-for-Chromebook-snow.patch
|
||||
@@ -61,6 +61,7 @@ Patch0006: 0006-tools-zynqmpbif-Add-support-for-loa.patch
|
||||
Patch0007: 0007-rockchip-make_fit_atf-use-elf-entry.patch
|
||||
Patch0008: 0008-rockchip-make_fit_atf-make-python3-.patch
|
||||
Patch0009: 0009-rockchip-make_fit_atf.py-depends-on.patch
|
||||
Patch0010: 0010-snow-set-fdtfile.patch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
%if "%{name}" == "u-boot-pine64plus" && %{with uboot_atf_pine64}
|
||||
BuildRequires: arm-trusted-firmware-pine64
|
||||
@@ -130,6 +131,7 @@ This package contains documentation for U-Boot firmware.
|
||||
%patch0007 -p1
|
||||
%patch0008 -p1
|
||||
%patch0009 -p1
|
||||
%patch0010 -p1
|
||||
|
||||
%build
|
||||
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||
|
@@ -1,3 +1,13 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Jul 18 13:29:34 UTC 2018 - guillaume.gardet@opensuse.org
|
||||
|
||||
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.07
|
||||
* Patches dropped:
|
||||
0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||
* Patches added:
|
||||
0001-XXX-openSUSE-XXX-Prepend-partition-.patch
|
||||
0010-snow-set-fdtfile.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jul 10 09:12:26 UTC 2018 - guillaume.gardet@opensuse.org
|
||||
|
||||
|
@@ -52,7 +52,7 @@ Source1: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2.s
|
||||
Source2: arndale-bl1.img
|
||||
Source3: update_git.sh
|
||||
Source300: u-boot-rpmlintrc
|
||||
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||
Patch0001: 0001-XXX-openSUSE-XXX-Prepend-partition-.patch
|
||||
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||
Patch0003: 0003-rpi-Use-firmware-provided-device-tr.patch
|
||||
Patch0004: 0004-Temp-workaround-for-Chromebook-snow.patch
|
||||
@@ -61,6 +61,7 @@ Patch0006: 0006-tools-zynqmpbif-Add-support-for-loa.patch
|
||||
Patch0007: 0007-rockchip-make_fit_atf-use-elf-entry.patch
|
||||
Patch0008: 0008-rockchip-make_fit_atf-make-python3-.patch
|
||||
Patch0009: 0009-rockchip-make_fit_atf.py-depends-on.patch
|
||||
Patch0010: 0010-snow-set-fdtfile.patch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
%if "%{name}" == "u-boot-pine64plus" && %{with uboot_atf_pine64}
|
||||
BuildRequires: arm-trusted-firmware-pine64
|
||||
@@ -130,6 +131,7 @@ This package contains documentation for U-Boot firmware.
|
||||
%patch0007 -p1
|
||||
%patch0008 -p1
|
||||
%patch0009 -p1
|
||||
%patch0010 -p1
|
||||
|
||||
%build
|
||||
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||
|
@@ -1,3 +1,13 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Jul 18 13:29:34 UTC 2018 - guillaume.gardet@opensuse.org
|
||||
|
||||
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.07
|
||||
* Patches dropped:
|
||||
0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||
* Patches added:
|
||||
0001-XXX-openSUSE-XXX-Prepend-partition-.patch
|
||||
0010-snow-set-fdtfile.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jul 10 09:12:26 UTC 2018 - guillaume.gardet@opensuse.org
|
||||
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user