Accepting request 593772 from hardware:boot
OBS-URL: https://build.opensuse.org/request/show/593772 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/u-boot?expand=0&rev=95
This commit is contained in:
commit
ba557a4c3d
44
0009-rpi-Allow-to-boot-without-serial.patch
Normal file
44
0009-rpi-Allow-to-boot-without-serial.patch
Normal file
@ -0,0 +1,44 @@
|
|||||||
|
From b18857389b6fc8641afec7077c16bbdea80febf7 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Alexander Graf <agraf@suse.de>
|
||||||
|
Date: Thu, 5 Apr 2018 11:36:22 +0200
|
||||||
|
Subject: [PATCH] rpi: Allow to boot without serial
|
||||||
|
|
||||||
|
When we enable CONFIG_OF_BOARD on Raspberry Pis, we may end up without
|
||||||
|
serial console support in early boot. Hence we need to make the serial
|
||||||
|
port optional, otherwise we will never get to the point where serial
|
||||||
|
would be probed.
|
||||||
|
|
||||||
|
Signed-off-by: Alexander Graf <agraf@suse.de>
|
||||||
|
---
|
||||||
|
configs/rpi_0_w_defconfig | 1 +
|
||||||
|
configs/rpi_2_defconfig | 1 +
|
||||||
|
configs/rpi_defconfig | 1 +
|
||||||
|
3 files changed, 3 insertions(+)
|
||||||
|
|
||||||
|
diff --git a/configs/rpi_0_w_defconfig b/configs/rpi_0_w_defconfig
|
||||||
|
index 3b7e4f7ad9..3958b768d1 100644
|
||||||
|
--- a/configs/rpi_0_w_defconfig
|
||||||
|
+++ b/configs/rpi_0_w_defconfig
|
||||||
|
@@ -34,3 +34,4 @@ CONFIG_SYS_WHITE_ON_BLACK=y
|
||||||
|
CONFIG_CONSOLE_SCROLL_LINES=10
|
||||||
|
CONFIG_PHYS_TO_BUS=y
|
||||||
|
CONFIG_OF_LIBFDT_OVERLAY=y
|
||||||
|
+# CONFIG_REQUIRE_SERIAL_CONSOLE is not set
|
||||||
|
diff --git a/configs/rpi_2_defconfig b/configs/rpi_2_defconfig
|
||||||
|
index de9c0e1937..e915c14219 100644
|
||||||
|
--- a/configs/rpi_2_defconfig
|
||||||
|
+++ b/configs/rpi_2_defconfig
|
||||||
|
@@ -34,3 +34,4 @@ CONFIG_SYS_WHITE_ON_BLACK=y
|
||||||
|
CONFIG_CONSOLE_SCROLL_LINES=10
|
||||||
|
CONFIG_PHYS_TO_BUS=y
|
||||||
|
CONFIG_OF_LIBFDT_OVERLAY=y
|
||||||
|
+# CONFIG_REQUIRE_SERIAL_CONSOLE is not set
|
||||||
|
diff --git a/configs/rpi_defconfig b/configs/rpi_defconfig
|
||||||
|
index d75032c420..62d37c0afb 100644
|
||||||
|
--- a/configs/rpi_defconfig
|
||||||
|
+++ b/configs/rpi_defconfig
|
||||||
|
@@ -34,3 +34,4 @@ CONFIG_SYS_WHITE_ON_BLACK=y
|
||||||
|
CONFIG_CONSOLE_SCROLL_LINES=10
|
||||||
|
CONFIG_PHYS_TO_BUS=y
|
||||||
|
CONFIG_OF_LIBFDT_OVERLAY=y
|
||||||
|
+# CONFIG_REQUIRE_SERIAL_CONSOLE is not set
|
105
0010-mmc-use-core-clock-frequency-in-bcm.patch
Normal file
105
0010-mmc-use-core-clock-frequency-in-bcm.patch
Normal file
@ -0,0 +1,105 @@
|
|||||||
|
From 734c7b6ad34b617b9f4d34a94d338c311de3ef77 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Jonathan Gray <jsg@jsg.id.au>
|
||||||
|
Date: Sat, 17 Mar 2018 16:15:48 +1100
|
||||||
|
Subject: [PATCH] mmc: use core clock frequency in bcm2835 sdhost
|
||||||
|
|
||||||
|
In raspberrypi-firmware 7fdcd00e00a42a1c91e8bd6f5eb8352fe9358557 and
|
||||||
|
later start.elf now sets the EMMC clock to 200 MHz.
|
||||||
|
|
||||||
|
According to Phil Elwell in
|
||||||
|
https://github.com/raspberrypi/firmware/issues/953
|
||||||
|
the SDHost controller shares the core/VPU clock and doesn't use
|
||||||
|
the EMMC clock.
|
||||||
|
|
||||||
|
Use the core clock id when determining the frequency to allow
|
||||||
|
U-Boot to work with recent versions of raspberrypi-firmware.
|
||||||
|
Otherwise U-Boot hangs at:
|
||||||
|
|
||||||
|
U-Boot 2018.03 (Mar 14 2018 - 20:36:00 +1100)
|
||||||
|
|
||||||
|
DRAM: 948 MiB
|
||||||
|
RPI 3 Model B (0xa02082)
|
||||||
|
MMC: mmc@7e202000: 0, sdhci@7e300000: 1
|
||||||
|
Loading Environment from FAT...
|
||||||
|
|
||||||
|
Signed-off-by: Jonathan Gray <jsg@jsg.id.au>
|
||||||
|
Signed-off-by: Alexander Graf <agraf@suse.de>
|
||||||
|
---
|
||||||
|
arch/arm/mach-bcm283x/include/mach/msg.h | 3 ++-
|
||||||
|
arch/arm/mach-bcm283x/msg.c | 4 ++--
|
||||||
|
drivers/mmc/bcm2835_sdhci.c | 2 +-
|
||||||
|
drivers/mmc/bcm2835_sdhost.c | 3 ++-
|
||||||
|
4 files changed, 7 insertions(+), 5 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/arch/arm/mach-bcm283x/include/mach/msg.h b/arch/arm/mach-bcm283x/include/mach/msg.h
|
||||||
|
index 478b1f1c50..d055480ba1 100644
|
||||||
|
--- a/arch/arm/mach-bcm283x/include/mach/msg.h
|
||||||
|
+++ b/arch/arm/mach-bcm283x/include/mach/msg.h
|
||||||
|
@@ -18,9 +18,10 @@ int bcm2835_power_on_module(u32 module);
|
||||||
|
/**
|
||||||
|
* bcm2835_get_mmc_clock() - get the frequency of the MMC clock
|
||||||
|
*
|
||||||
|
+ * @clock_id: ID of clock to get frequency for
|
||||||
|
* @return clock frequency, or -ve on error
|
||||||
|
*/
|
||||||
|
-int bcm2835_get_mmc_clock(void);
|
||||||
|
+int bcm2835_get_mmc_clock(u32 clock_id);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* bcm2835_get_video_size() - get the current display size
|
||||||
|
diff --git a/arch/arm/mach-bcm283x/msg.c b/arch/arm/mach-bcm283x/msg.c
|
||||||
|
index 92e93ad9e5..ad29f3be09 100644
|
||||||
|
--- a/arch/arm/mach-bcm283x/msg.c
|
||||||
|
+++ b/arch/arm/mach-bcm283x/msg.c
|
||||||
|
@@ -65,7 +65,7 @@ int bcm2835_power_on_module(u32 module)
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
-int bcm2835_get_mmc_clock(void)
|
||||||
|
+int bcm2835_get_mmc_clock(u32 clock_id)
|
||||||
|
{
|
||||||
|
ALLOC_CACHE_ALIGN_BUFFER(struct msg_get_clock_rate, msg_clk, 1);
|
||||||
|
int ret;
|
||||||
|
@@ -76,7 +76,7 @@ int bcm2835_get_mmc_clock(void)
|
||||||
|
|
||||||
|
BCM2835_MBOX_INIT_HDR(msg_clk);
|
||||||
|
BCM2835_MBOX_INIT_TAG(&msg_clk->get_clock_rate, GET_CLOCK_RATE);
|
||||||
|
- msg_clk->get_clock_rate.body.req.clock_id = BCM2835_MBOX_CLOCK_ID_EMMC;
|
||||||
|
+ msg_clk->get_clock_rate.body.req.clock_id = clock_id;
|
||||||
|
|
||||||
|
ret = bcm2835_mbox_call_prop(BCM2835_MBOX_PROP_CHAN, &msg_clk->hdr);
|
||||||
|
if (ret) {
|
||||||
|
diff --git a/drivers/mmc/bcm2835_sdhci.c b/drivers/mmc/bcm2835_sdhci.c
|
||||||
|
index 3157354d2a..08bddd410e 100644
|
||||||
|
--- a/drivers/mmc/bcm2835_sdhci.c
|
||||||
|
+++ b/drivers/mmc/bcm2835_sdhci.c
|
||||||
|
@@ -183,7 +183,7 @@ static int bcm2835_sdhci_probe(struct udevice *dev)
|
||||||
|
if (base == FDT_ADDR_T_NONE)
|
||||||
|
return -EINVAL;
|
||||||
|
|
||||||
|
- ret = bcm2835_get_mmc_clock();
|
||||||
|
+ ret = bcm2835_get_mmc_clock(BCM2835_MBOX_CLOCK_ID_EMMC);
|
||||||
|
if (ret < 0) {
|
||||||
|
debug("%s: Failed to set MMC clock (err=%d)\n", __func__, ret);
|
||||||
|
return ret;
|
||||||
|
diff --git a/drivers/mmc/bcm2835_sdhost.c b/drivers/mmc/bcm2835_sdhost.c
|
||||||
|
index 1bf52a3019..bccd182e50 100644
|
||||||
|
--- a/drivers/mmc/bcm2835_sdhost.c
|
||||||
|
+++ b/drivers/mmc/bcm2835_sdhost.c
|
||||||
|
@@ -35,6 +35,7 @@
|
||||||
|
#include <dm.h>
|
||||||
|
#include <mmc.h>
|
||||||
|
#include <asm/arch/msg.h>
|
||||||
|
+#include <asm/arch/mbox.h>
|
||||||
|
#include <asm/unaligned.h>
|
||||||
|
#include <linux/compat.h>
|
||||||
|
#include <linux/io.h>
|
||||||
|
@@ -941,7 +942,7 @@ static int bcm2835_probe(struct udevice *dev)
|
||||||
|
if (!host->ioaddr)
|
||||||
|
return -ENOMEM;
|
||||||
|
|
||||||
|
- host->max_clk = bcm2835_get_mmc_clock();
|
||||||
|
+ host->max_clk = bcm2835_get_mmc_clock(BCM2835_MBOX_CLOCK_ID_CORE);
|
||||||
|
|
||||||
|
bcm2835_add_host(host);
|
||||||
|
|
@ -46,6 +46,8 @@ aarch64_boards="$aarch64_boards mvebu_db_armada8k mvebu_mcbin-88f8040"
|
|||||||
# Rockchip
|
# Rockchip
|
||||||
aarch64_boards="$aarch64_boards geekbox"
|
aarch64_boards="$aarch64_boards geekbox"
|
||||||
aarch64_boards="$aarch64_boards evb-rk3399 firefly-rk3399"
|
aarch64_boards="$aarch64_boards evb-rk3399 firefly-rk3399"
|
||||||
|
# Xilinx
|
||||||
|
aarch64_boards="$aarch64_boards xilinx_zynqmp_zcu102_rev1_0"
|
||||||
|
|
||||||
ppc_boards="qemu-ppce500"
|
ppc_boards="qemu-ppce500"
|
||||||
|
|
||||||
|
@ -1,3 +1,23 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 5 11:25:47 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
|
||||||
|
* Patches added:
|
||||||
|
0010-mmc-use-core-clock-frequency-in-bcm.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 5 09:54:56 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Fix rainbow screen on 32bit RPis (boo#1086757)
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
|
||||||
|
* Patches added:
|
||||||
|
0009-rpi-Allow-to-boot-without-serial.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Mar 15 23:44:18 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Add Xilinx ZynqMP ZCU 102 target
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Mar 15 16:34:22 UTC 2018 - agraf@suse.com
|
Thu Mar 15 16:34:22 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
@ -54,6 +54,8 @@ Patch0005: 0005-rpi3-Enable-lan78xx-driver.patch
|
|||||||
Patch0006: 0006-net-Only-access-network-devices-aft.patch
|
Patch0006: 0006-net-Only-access-network-devices-aft.patch
|
||||||
Patch0007: 0007-rpi-Add-identifier-for-the-new-RPi3.patch
|
Patch0007: 0007-rpi-Add-identifier-for-the-new-RPi3.patch
|
||||||
Patch0008: 0008-efi_loader-Fix-network-DP-with-DM_E.patch
|
Patch0008: 0008-efi_loader-Fix-network-DP-with-DM_E.patch
|
||||||
|
Patch0009: 0009-rpi-Allow-to-boot-without-serial.patch
|
||||||
|
Patch0010: 0010-mmc-use-core-clock-frequency-in-bcm.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
%if 0
|
%if 0
|
||||||
BuildRequires: arm-trusted-firmware-pine64
|
BuildRequires: arm-trusted-firmware-pine64
|
||||||
@ -106,6 +108,8 @@ This package contains documentation for U-Boot firmware.
|
|||||||
%patch0006 -p1
|
%patch0006 -p1
|
||||||
%patch0007 -p1
|
%patch0007 -p1
|
||||||
%patch0008 -p1
|
%patch0008 -p1
|
||||||
|
%patch0009 -p1
|
||||||
|
%patch0010 -p1
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
|
@ -1,3 +1,23 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 5 11:25:47 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
|
||||||
|
* Patches added:
|
||||||
|
0010-mmc-use-core-clock-frequency-in-bcm.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 5 09:54:56 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Fix rainbow screen on 32bit RPis (boo#1086757)
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
|
||||||
|
* Patches added:
|
||||||
|
0009-rpi-Allow-to-boot-without-serial.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Mar 15 23:44:18 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Add Xilinx ZynqMP ZCU 102 target
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Mar 15 16:34:22 UTC 2018 - agraf@suse.com
|
Thu Mar 15 16:34:22 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
@ -54,6 +54,8 @@ Patch0005: 0005-rpi3-Enable-lan78xx-driver.patch
|
|||||||
Patch0006: 0006-net-Only-access-network-devices-aft.patch
|
Patch0006: 0006-net-Only-access-network-devices-aft.patch
|
||||||
Patch0007: 0007-rpi-Add-identifier-for-the-new-RPi3.patch
|
Patch0007: 0007-rpi-Add-identifier-for-the-new-RPi3.patch
|
||||||
Patch0008: 0008-efi_loader-Fix-network-DP-with-DM_E.patch
|
Patch0008: 0008-efi_loader-Fix-network-DP-with-DM_E.patch
|
||||||
|
Patch0009: 0009-rpi-Allow-to-boot-without-serial.patch
|
||||||
|
Patch0010: 0010-mmc-use-core-clock-frequency-in-bcm.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
%if 0
|
%if 0
|
||||||
BuildRequires: arm-trusted-firmware-pine64
|
BuildRequires: arm-trusted-firmware-pine64
|
||||||
@ -106,6 +108,8 @@ This package contains documentation for U-Boot firmware.
|
|||||||
%patch0006 -p1
|
%patch0006 -p1
|
||||||
%patch0007 -p1
|
%patch0007 -p1
|
||||||
%patch0008 -p1
|
%patch0008 -p1
|
||||||
|
%patch0009 -p1
|
||||||
|
%patch0010 -p1
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
|
@ -1,3 +1,23 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 5 11:25:47 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
|
||||||
|
* Patches added:
|
||||||
|
0010-mmc-use-core-clock-frequency-in-bcm.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 5 09:54:56 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Fix rainbow screen on 32bit RPis (boo#1086757)
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
|
||||||
|
* Patches added:
|
||||||
|
0009-rpi-Allow-to-boot-without-serial.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Mar 15 23:44:18 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Add Xilinx ZynqMP ZCU 102 target
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Mar 15 16:34:22 UTC 2018 - agraf@suse.com
|
Thu Mar 15 16:34:22 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
@ -54,6 +54,8 @@ Patch0005: 0005-rpi3-Enable-lan78xx-driver.patch
|
|||||||
Patch0006: 0006-net-Only-access-network-devices-aft.patch
|
Patch0006: 0006-net-Only-access-network-devices-aft.patch
|
||||||
Patch0007: 0007-rpi-Add-identifier-for-the-new-RPi3.patch
|
Patch0007: 0007-rpi-Add-identifier-for-the-new-RPi3.patch
|
||||||
Patch0008: 0008-efi_loader-Fix-network-DP-with-DM_E.patch
|
Patch0008: 0008-efi_loader-Fix-network-DP-with-DM_E.patch
|
||||||
|
Patch0009: 0009-rpi-Allow-to-boot-without-serial.patch
|
||||||
|
Patch0010: 0010-mmc-use-core-clock-frequency-in-bcm.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
%if 0
|
%if 0
|
||||||
BuildRequires: arm-trusted-firmware-pine64
|
BuildRequires: arm-trusted-firmware-pine64
|
||||||
@ -106,6 +108,8 @@ This package contains documentation for U-Boot firmware.
|
|||||||
%patch0006 -p1
|
%patch0006 -p1
|
||||||
%patch0007 -p1
|
%patch0007 -p1
|
||||||
%patch0008 -p1
|
%patch0008 -p1
|
||||||
|
%patch0009 -p1
|
||||||
|
%patch0010 -p1
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
|
@ -1,3 +1,23 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 5 11:25:47 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
|
||||||
|
* Patches added:
|
||||||
|
0010-mmc-use-core-clock-frequency-in-bcm.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 5 09:54:56 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Fix rainbow screen on 32bit RPis (boo#1086757)
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
|
||||||
|
* Patches added:
|
||||||
|
0009-rpi-Allow-to-boot-without-serial.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Mar 15 23:44:18 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Add Xilinx ZynqMP ZCU 102 target
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Mar 15 16:34:22 UTC 2018 - agraf@suse.com
|
Thu Mar 15 16:34:22 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
@ -54,6 +54,8 @@ Patch0005: 0005-rpi3-Enable-lan78xx-driver.patch
|
|||||||
Patch0006: 0006-net-Only-access-network-devices-aft.patch
|
Patch0006: 0006-net-Only-access-network-devices-aft.patch
|
||||||
Patch0007: 0007-rpi-Add-identifier-for-the-new-RPi3.patch
|
Patch0007: 0007-rpi-Add-identifier-for-the-new-RPi3.patch
|
||||||
Patch0008: 0008-efi_loader-Fix-network-DP-with-DM_E.patch
|
Patch0008: 0008-efi_loader-Fix-network-DP-with-DM_E.patch
|
||||||
|
Patch0009: 0009-rpi-Allow-to-boot-without-serial.patch
|
||||||
|
Patch0010: 0010-mmc-use-core-clock-frequency-in-bcm.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
%if 0
|
%if 0
|
||||||
BuildRequires: arm-trusted-firmware-pine64
|
BuildRequires: arm-trusted-firmware-pine64
|
||||||
@ -106,6 +108,8 @@ This package contains documentation for U-Boot firmware.
|
|||||||
%patch0006 -p1
|
%patch0006 -p1
|
||||||
%patch0007 -p1
|
%patch0007 -p1
|
||||||
%patch0008 -p1
|
%patch0008 -p1
|
||||||
|
%patch0009 -p1
|
||||||
|
%patch0010 -p1
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
|
@ -1,3 +1,23 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 5 11:25:47 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
|
||||||
|
* Patches added:
|
||||||
|
0010-mmc-use-core-clock-frequency-in-bcm.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 5 09:54:56 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Fix rainbow screen on 32bit RPis (boo#1086757)
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
|
||||||
|
* Patches added:
|
||||||
|
0009-rpi-Allow-to-boot-without-serial.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Mar 15 23:44:18 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Add Xilinx ZynqMP ZCU 102 target
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Mar 15 16:34:22 UTC 2018 - agraf@suse.com
|
Thu Mar 15 16:34:22 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
@ -54,6 +54,8 @@ Patch0005: 0005-rpi3-Enable-lan78xx-driver.patch
|
|||||||
Patch0006: 0006-net-Only-access-network-devices-aft.patch
|
Patch0006: 0006-net-Only-access-network-devices-aft.patch
|
||||||
Patch0007: 0007-rpi-Add-identifier-for-the-new-RPi3.patch
|
Patch0007: 0007-rpi-Add-identifier-for-the-new-RPi3.patch
|
||||||
Patch0008: 0008-efi_loader-Fix-network-DP-with-DM_E.patch
|
Patch0008: 0008-efi_loader-Fix-network-DP-with-DM_E.patch
|
||||||
|
Patch0009: 0009-rpi-Allow-to-boot-without-serial.patch
|
||||||
|
Patch0010: 0010-mmc-use-core-clock-frequency-in-bcm.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
%if 0
|
%if 0
|
||||||
BuildRequires: arm-trusted-firmware-pine64
|
BuildRequires: arm-trusted-firmware-pine64
|
||||||
@ -106,6 +108,8 @@ This package contains documentation for U-Boot firmware.
|
|||||||
%patch0006 -p1
|
%patch0006 -p1
|
||||||
%patch0007 -p1
|
%patch0007 -p1
|
||||||
%patch0008 -p1
|
%patch0008 -p1
|
||||||
|
%patch0009 -p1
|
||||||
|
%patch0010 -p1
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
|
@ -1,3 +1,23 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 5 11:25:47 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
|
||||||
|
* Patches added:
|
||||||
|
0010-mmc-use-core-clock-frequency-in-bcm.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 5 09:54:56 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Fix rainbow screen on 32bit RPis (boo#1086757)
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
|
||||||
|
* Patches added:
|
||||||
|
0009-rpi-Allow-to-boot-without-serial.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Mar 15 23:44:18 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Add Xilinx ZynqMP ZCU 102 target
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Mar 15 16:34:22 UTC 2018 - agraf@suse.com
|
Thu Mar 15 16:34:22 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
@ -54,6 +54,8 @@ Patch0005: 0005-rpi3-Enable-lan78xx-driver.patch
|
|||||||
Patch0006: 0006-net-Only-access-network-devices-aft.patch
|
Patch0006: 0006-net-Only-access-network-devices-aft.patch
|
||||||
Patch0007: 0007-rpi-Add-identifier-for-the-new-RPi3.patch
|
Patch0007: 0007-rpi-Add-identifier-for-the-new-RPi3.patch
|
||||||
Patch0008: 0008-efi_loader-Fix-network-DP-with-DM_E.patch
|
Patch0008: 0008-efi_loader-Fix-network-DP-with-DM_E.patch
|
||||||
|
Patch0009: 0009-rpi-Allow-to-boot-without-serial.patch
|
||||||
|
Patch0010: 0010-mmc-use-core-clock-frequency-in-bcm.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
%if 0
|
%if 0
|
||||||
BuildRequires: arm-trusted-firmware-pine64
|
BuildRequires: arm-trusted-firmware-pine64
|
||||||
@ -106,6 +108,8 @@ This package contains documentation for U-Boot firmware.
|
|||||||
%patch0006 -p1
|
%patch0006 -p1
|
||||||
%patch0007 -p1
|
%patch0007 -p1
|
||||||
%patch0008 -p1
|
%patch0008 -p1
|
||||||
|
%patch0009 -p1
|
||||||
|
%patch0010 -p1
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
|
@ -1,3 +1,23 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 5 11:25:47 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
|
||||||
|
* Patches added:
|
||||||
|
0010-mmc-use-core-clock-frequency-in-bcm.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 5 09:54:56 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Fix rainbow screen on 32bit RPis (boo#1086757)
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
|
||||||
|
* Patches added:
|
||||||
|
0009-rpi-Allow-to-boot-without-serial.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Mar 15 23:44:18 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Add Xilinx ZynqMP ZCU 102 target
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Mar 15 16:34:22 UTC 2018 - agraf@suse.com
|
Thu Mar 15 16:34:22 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
@ -54,6 +54,8 @@ Patch0005: 0005-rpi3-Enable-lan78xx-driver.patch
|
|||||||
Patch0006: 0006-net-Only-access-network-devices-aft.patch
|
Patch0006: 0006-net-Only-access-network-devices-aft.patch
|
||||||
Patch0007: 0007-rpi-Add-identifier-for-the-new-RPi3.patch
|
Patch0007: 0007-rpi-Add-identifier-for-the-new-RPi3.patch
|
||||||
Patch0008: 0008-efi_loader-Fix-network-DP-with-DM_E.patch
|
Patch0008: 0008-efi_loader-Fix-network-DP-with-DM_E.patch
|
||||||
|
Patch0009: 0009-rpi-Allow-to-boot-without-serial.patch
|
||||||
|
Patch0010: 0010-mmc-use-core-clock-frequency-in-bcm.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
%if 0
|
%if 0
|
||||||
BuildRequires: arm-trusted-firmware-pine64
|
BuildRequires: arm-trusted-firmware-pine64
|
||||||
@ -106,6 +108,8 @@ This package contains documentation for U-Boot firmware.
|
|||||||
%patch0006 -p1
|
%patch0006 -p1
|
||||||
%patch0007 -p1
|
%patch0007 -p1
|
||||||
%patch0008 -p1
|
%patch0008 -p1
|
||||||
|
%patch0009 -p1
|
||||||
|
%patch0010 -p1
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
|
@ -1,3 +1,23 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 5 11:25:47 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
|
||||||
|
* Patches added:
|
||||||
|
0010-mmc-use-core-clock-frequency-in-bcm.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 5 09:54:56 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Fix rainbow screen on 32bit RPis (boo#1086757)
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
|
||||||
|
* Patches added:
|
||||||
|
0009-rpi-Allow-to-boot-without-serial.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Mar 15 23:44:18 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Add Xilinx ZynqMP ZCU 102 target
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Mar 15 16:34:22 UTC 2018 - agraf@suse.com
|
Thu Mar 15 16:34:22 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
@ -54,6 +54,8 @@ Patch0005: 0005-rpi3-Enable-lan78xx-driver.patch
|
|||||||
Patch0006: 0006-net-Only-access-network-devices-aft.patch
|
Patch0006: 0006-net-Only-access-network-devices-aft.patch
|
||||||
Patch0007: 0007-rpi-Add-identifier-for-the-new-RPi3.patch
|
Patch0007: 0007-rpi-Add-identifier-for-the-new-RPi3.patch
|
||||||
Patch0008: 0008-efi_loader-Fix-network-DP-with-DM_E.patch
|
Patch0008: 0008-efi_loader-Fix-network-DP-with-DM_E.patch
|
||||||
|
Patch0009: 0009-rpi-Allow-to-boot-without-serial.patch
|
||||||
|
Patch0010: 0010-mmc-use-core-clock-frequency-in-bcm.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
%if 0
|
%if 0
|
||||||
BuildRequires: arm-trusted-firmware-pine64
|
BuildRequires: arm-trusted-firmware-pine64
|
||||||
@ -106,6 +108,8 @@ This package contains documentation for U-Boot firmware.
|
|||||||
%patch0006 -p1
|
%patch0006 -p1
|
||||||
%patch0007 -p1
|
%patch0007 -p1
|
||||||
%patch0008 -p1
|
%patch0008 -p1
|
||||||
|
%patch0009 -p1
|
||||||
|
%patch0010 -p1
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
|
@ -1,3 +1,23 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 5 11:25:47 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
|
||||||
|
* Patches added:
|
||||||
|
0010-mmc-use-core-clock-frequency-in-bcm.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 5 09:54:56 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Fix rainbow screen on 32bit RPis (boo#1086757)
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
|
||||||
|
* Patches added:
|
||||||
|
0009-rpi-Allow-to-boot-without-serial.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Mar 15 23:44:18 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Add Xilinx ZynqMP ZCU 102 target
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Mar 15 16:34:22 UTC 2018 - agraf@suse.com
|
Thu Mar 15 16:34:22 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
@ -54,6 +54,8 @@ Patch0005: 0005-rpi3-Enable-lan78xx-driver.patch
|
|||||||
Patch0006: 0006-net-Only-access-network-devices-aft.patch
|
Patch0006: 0006-net-Only-access-network-devices-aft.patch
|
||||||
Patch0007: 0007-rpi-Add-identifier-for-the-new-RPi3.patch
|
Patch0007: 0007-rpi-Add-identifier-for-the-new-RPi3.patch
|
||||||
Patch0008: 0008-efi_loader-Fix-network-DP-with-DM_E.patch
|
Patch0008: 0008-efi_loader-Fix-network-DP-with-DM_E.patch
|
||||||
|
Patch0009: 0009-rpi-Allow-to-boot-without-serial.patch
|
||||||
|
Patch0010: 0010-mmc-use-core-clock-frequency-in-bcm.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
%if 0
|
%if 0
|
||||||
BuildRequires: arm-trusted-firmware-pine64
|
BuildRequires: arm-trusted-firmware-pine64
|
||||||
@ -106,6 +108,8 @@ This package contains documentation for U-Boot firmware.
|
|||||||
%patch0006 -p1
|
%patch0006 -p1
|
||||||
%patch0007 -p1
|
%patch0007 -p1
|
||||||
%patch0008 -p1
|
%patch0008 -p1
|
||||||
|
%patch0009 -p1
|
||||||
|
%patch0010 -p1
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
|
@ -1,3 +1,23 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 5 11:25:47 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
|
||||||
|
* Patches added:
|
||||||
|
0010-mmc-use-core-clock-frequency-in-bcm.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 5 09:54:56 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Fix rainbow screen on 32bit RPis (boo#1086757)
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
|
||||||
|
* Patches added:
|
||||||
|
0009-rpi-Allow-to-boot-without-serial.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Mar 15 23:44:18 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Add Xilinx ZynqMP ZCU 102 target
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Mar 15 16:34:22 UTC 2018 - agraf@suse.com
|
Thu Mar 15 16:34:22 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
@ -54,6 +54,8 @@ Patch0005: 0005-rpi3-Enable-lan78xx-driver.patch
|
|||||||
Patch0006: 0006-net-Only-access-network-devices-aft.patch
|
Patch0006: 0006-net-Only-access-network-devices-aft.patch
|
||||||
Patch0007: 0007-rpi-Add-identifier-for-the-new-RPi3.patch
|
Patch0007: 0007-rpi-Add-identifier-for-the-new-RPi3.patch
|
||||||
Patch0008: 0008-efi_loader-Fix-network-DP-with-DM_E.patch
|
Patch0008: 0008-efi_loader-Fix-network-DP-with-DM_E.patch
|
||||||
|
Patch0009: 0009-rpi-Allow-to-boot-without-serial.patch
|
||||||
|
Patch0010: 0010-mmc-use-core-clock-frequency-in-bcm.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
%if 0
|
%if 0
|
||||||
BuildRequires: arm-trusted-firmware-pine64
|
BuildRequires: arm-trusted-firmware-pine64
|
||||||
@ -106,6 +108,8 @@ This package contains documentation for U-Boot firmware.
|
|||||||
%patch0006 -p1
|
%patch0006 -p1
|
||||||
%patch0007 -p1
|
%patch0007 -p1
|
||||||
%patch0008 -p1
|
%patch0008 -p1
|
||||||
|
%patch0009 -p1
|
||||||
|
%patch0010 -p1
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
|
@ -1,3 +1,23 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 5 11:25:47 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
|
||||||
|
* Patches added:
|
||||||
|
0010-mmc-use-core-clock-frequency-in-bcm.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 5 09:54:56 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Fix rainbow screen on 32bit RPis (boo#1086757)
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
|
||||||
|
* Patches added:
|
||||||
|
0009-rpi-Allow-to-boot-without-serial.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Mar 15 23:44:18 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Add Xilinx ZynqMP ZCU 102 target
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Mar 15 16:34:22 UTC 2018 - agraf@suse.com
|
Thu Mar 15 16:34:22 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
@ -54,6 +54,8 @@ Patch0005: 0005-rpi3-Enable-lan78xx-driver.patch
|
|||||||
Patch0006: 0006-net-Only-access-network-devices-aft.patch
|
Patch0006: 0006-net-Only-access-network-devices-aft.patch
|
||||||
Patch0007: 0007-rpi-Add-identifier-for-the-new-RPi3.patch
|
Patch0007: 0007-rpi-Add-identifier-for-the-new-RPi3.patch
|
||||||
Patch0008: 0008-efi_loader-Fix-network-DP-with-DM_E.patch
|
Patch0008: 0008-efi_loader-Fix-network-DP-with-DM_E.patch
|
||||||
|
Patch0009: 0009-rpi-Allow-to-boot-without-serial.patch
|
||||||
|
Patch0010: 0010-mmc-use-core-clock-frequency-in-bcm.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
%if 0
|
%if 0
|
||||||
BuildRequires: arm-trusted-firmware-pine64
|
BuildRequires: arm-trusted-firmware-pine64
|
||||||
@ -106,6 +108,8 @@ This package contains documentation for U-Boot firmware.
|
|||||||
%patch0006 -p1
|
%patch0006 -p1
|
||||||
%patch0007 -p1
|
%patch0007 -p1
|
||||||
%patch0008 -p1
|
%patch0008 -p1
|
||||||
|
%patch0009 -p1
|
||||||
|
%patch0010 -p1
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
|
@ -1,3 +1,23 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 5 11:25:47 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
|
||||||
|
* Patches added:
|
||||||
|
0010-mmc-use-core-clock-frequency-in-bcm.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 5 09:54:56 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Fix rainbow screen on 32bit RPis (boo#1086757)
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
|
||||||
|
* Patches added:
|
||||||
|
0009-rpi-Allow-to-boot-without-serial.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Mar 15 23:44:18 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Add Xilinx ZynqMP ZCU 102 target
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Mar 15 16:34:22 UTC 2018 - agraf@suse.com
|
Thu Mar 15 16:34:22 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
@ -54,6 +54,8 @@ Patch0005: 0005-rpi3-Enable-lan78xx-driver.patch
|
|||||||
Patch0006: 0006-net-Only-access-network-devices-aft.patch
|
Patch0006: 0006-net-Only-access-network-devices-aft.patch
|
||||||
Patch0007: 0007-rpi-Add-identifier-for-the-new-RPi3.patch
|
Patch0007: 0007-rpi-Add-identifier-for-the-new-RPi3.patch
|
||||||
Patch0008: 0008-efi_loader-Fix-network-DP-with-DM_E.patch
|
Patch0008: 0008-efi_loader-Fix-network-DP-with-DM_E.patch
|
||||||
|
Patch0009: 0009-rpi-Allow-to-boot-without-serial.patch
|
||||||
|
Patch0010: 0010-mmc-use-core-clock-frequency-in-bcm.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
%if 0
|
%if 0
|
||||||
BuildRequires: arm-trusted-firmware-pine64
|
BuildRequires: arm-trusted-firmware-pine64
|
||||||
@ -106,6 +108,8 @@ This package contains documentation for U-Boot firmware.
|
|||||||
%patch0006 -p1
|
%patch0006 -p1
|
||||||
%patch0007 -p1
|
%patch0007 -p1
|
||||||
%patch0008 -p1
|
%patch0008 -p1
|
||||||
|
%patch0009 -p1
|
||||||
|
%patch0010 -p1
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
|
@ -1,3 +1,23 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 5 11:25:47 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
|
||||||
|
* Patches added:
|
||||||
|
0010-mmc-use-core-clock-frequency-in-bcm.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 5 09:54:56 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Fix rainbow screen on 32bit RPis (boo#1086757)
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
|
||||||
|
* Patches added:
|
||||||
|
0009-rpi-Allow-to-boot-without-serial.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Mar 15 23:44:18 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Add Xilinx ZynqMP ZCU 102 target
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Mar 15 16:34:22 UTC 2018 - agraf@suse.com
|
Thu Mar 15 16:34:22 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
@ -54,6 +54,8 @@ Patch0005: 0005-rpi3-Enable-lan78xx-driver.patch
|
|||||||
Patch0006: 0006-net-Only-access-network-devices-aft.patch
|
Patch0006: 0006-net-Only-access-network-devices-aft.patch
|
||||||
Patch0007: 0007-rpi-Add-identifier-for-the-new-RPi3.patch
|
Patch0007: 0007-rpi-Add-identifier-for-the-new-RPi3.patch
|
||||||
Patch0008: 0008-efi_loader-Fix-network-DP-with-DM_E.patch
|
Patch0008: 0008-efi_loader-Fix-network-DP-with-DM_E.patch
|
||||||
|
Patch0009: 0009-rpi-Allow-to-boot-without-serial.patch
|
||||||
|
Patch0010: 0010-mmc-use-core-clock-frequency-in-bcm.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
%if 0
|
%if 0
|
||||||
BuildRequires: arm-trusted-firmware-pine64
|
BuildRequires: arm-trusted-firmware-pine64
|
||||||
@ -106,6 +108,8 @@ This package contains documentation for U-Boot firmware.
|
|||||||
%patch0006 -p1
|
%patch0006 -p1
|
||||||
%patch0007 -p1
|
%patch0007 -p1
|
||||||
%patch0008 -p1
|
%patch0008 -p1
|
||||||
|
%patch0009 -p1
|
||||||
|
%patch0010 -p1
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
|
@ -1,3 +1,23 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 5 11:25:47 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
|
||||||
|
* Patches added:
|
||||||
|
0010-mmc-use-core-clock-frequency-in-bcm.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 5 09:54:56 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Fix rainbow screen on 32bit RPis (boo#1086757)
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
|
||||||
|
* Patches added:
|
||||||
|
0009-rpi-Allow-to-boot-without-serial.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Mar 15 23:44:18 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Add Xilinx ZynqMP ZCU 102 target
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Mar 15 16:34:22 UTC 2018 - agraf@suse.com
|
Thu Mar 15 16:34:22 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
@ -54,6 +54,8 @@ Patch0005: 0005-rpi3-Enable-lan78xx-driver.patch
|
|||||||
Patch0006: 0006-net-Only-access-network-devices-aft.patch
|
Patch0006: 0006-net-Only-access-network-devices-aft.patch
|
||||||
Patch0007: 0007-rpi-Add-identifier-for-the-new-RPi3.patch
|
Patch0007: 0007-rpi-Add-identifier-for-the-new-RPi3.patch
|
||||||
Patch0008: 0008-efi_loader-Fix-network-DP-with-DM_E.patch
|
Patch0008: 0008-efi_loader-Fix-network-DP-with-DM_E.patch
|
||||||
|
Patch0009: 0009-rpi-Allow-to-boot-without-serial.patch
|
||||||
|
Patch0010: 0010-mmc-use-core-clock-frequency-in-bcm.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
%if 0
|
%if 0
|
||||||
BuildRequires: arm-trusted-firmware-pine64
|
BuildRequires: arm-trusted-firmware-pine64
|
||||||
@ -106,6 +108,8 @@ This package contains documentation for U-Boot firmware.
|
|||||||
%patch0006 -p1
|
%patch0006 -p1
|
||||||
%patch0007 -p1
|
%patch0007 -p1
|
||||||
%patch0008 -p1
|
%patch0008 -p1
|
||||||
|
%patch0009 -p1
|
||||||
|
%patch0010 -p1
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
|
@ -1,3 +1,23 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 5 11:25:47 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
|
||||||
|
* Patches added:
|
||||||
|
0010-mmc-use-core-clock-frequency-in-bcm.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 5 09:54:56 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Fix rainbow screen on 32bit RPis (boo#1086757)
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
|
||||||
|
* Patches added:
|
||||||
|
0009-rpi-Allow-to-boot-without-serial.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Mar 15 23:44:18 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Add Xilinx ZynqMP ZCU 102 target
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Mar 15 16:34:22 UTC 2018 - agraf@suse.com
|
Thu Mar 15 16:34:22 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
@ -54,6 +54,8 @@ Patch0005: 0005-rpi3-Enable-lan78xx-driver.patch
|
|||||||
Patch0006: 0006-net-Only-access-network-devices-aft.patch
|
Patch0006: 0006-net-Only-access-network-devices-aft.patch
|
||||||
Patch0007: 0007-rpi-Add-identifier-for-the-new-RPi3.patch
|
Patch0007: 0007-rpi-Add-identifier-for-the-new-RPi3.patch
|
||||||
Patch0008: 0008-efi_loader-Fix-network-DP-with-DM_E.patch
|
Patch0008: 0008-efi_loader-Fix-network-DP-with-DM_E.patch
|
||||||
|
Patch0009: 0009-rpi-Allow-to-boot-without-serial.patch
|
||||||
|
Patch0010: 0010-mmc-use-core-clock-frequency-in-bcm.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
%if 0
|
%if 0
|
||||||
BuildRequires: arm-trusted-firmware-pine64
|
BuildRequires: arm-trusted-firmware-pine64
|
||||||
@ -106,6 +108,8 @@ This package contains documentation for U-Boot firmware.
|
|||||||
%patch0006 -p1
|
%patch0006 -p1
|
||||||
%patch0007 -p1
|
%patch0007 -p1
|
||||||
%patch0008 -p1
|
%patch0008 -p1
|
||||||
|
%patch0009 -p1
|
||||||
|
%patch0010 -p1
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
|
@ -1,3 +1,23 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 5 11:25:47 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
|
||||||
|
* Patches added:
|
||||||
|
0010-mmc-use-core-clock-frequency-in-bcm.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 5 09:54:56 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Fix rainbow screen on 32bit RPis (boo#1086757)
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
|
||||||
|
* Patches added:
|
||||||
|
0009-rpi-Allow-to-boot-without-serial.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Mar 15 23:44:18 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Add Xilinx ZynqMP ZCU 102 target
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Mar 15 16:34:22 UTC 2018 - agraf@suse.com
|
Thu Mar 15 16:34:22 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
@ -54,6 +54,8 @@ Patch0005: 0005-rpi3-Enable-lan78xx-driver.patch
|
|||||||
Patch0006: 0006-net-Only-access-network-devices-aft.patch
|
Patch0006: 0006-net-Only-access-network-devices-aft.patch
|
||||||
Patch0007: 0007-rpi-Add-identifier-for-the-new-RPi3.patch
|
Patch0007: 0007-rpi-Add-identifier-for-the-new-RPi3.patch
|
||||||
Patch0008: 0008-efi_loader-Fix-network-DP-with-DM_E.patch
|
Patch0008: 0008-efi_loader-Fix-network-DP-with-DM_E.patch
|
||||||
|
Patch0009: 0009-rpi-Allow-to-boot-without-serial.patch
|
||||||
|
Patch0010: 0010-mmc-use-core-clock-frequency-in-bcm.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
%if 0
|
%if 0
|
||||||
BuildRequires: arm-trusted-firmware-pine64
|
BuildRequires: arm-trusted-firmware-pine64
|
||||||
@ -106,6 +108,8 @@ This package contains documentation for U-Boot firmware.
|
|||||||
%patch0006 -p1
|
%patch0006 -p1
|
||||||
%patch0007 -p1
|
%patch0007 -p1
|
||||||
%patch0008 -p1
|
%patch0008 -p1
|
||||||
|
%patch0009 -p1
|
||||||
|
%patch0010 -p1
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
|
@ -1,3 +1,23 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 5 11:25:47 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
|
||||||
|
* Patches added:
|
||||||
|
0010-mmc-use-core-clock-frequency-in-bcm.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 5 09:54:56 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Fix rainbow screen on 32bit RPis (boo#1086757)
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
|
||||||
|
* Patches added:
|
||||||
|
0009-rpi-Allow-to-boot-without-serial.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Mar 15 23:44:18 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Add Xilinx ZynqMP ZCU 102 target
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Mar 15 16:34:22 UTC 2018 - agraf@suse.com
|
Thu Mar 15 16:34:22 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
@ -54,6 +54,8 @@ Patch0005: 0005-rpi3-Enable-lan78xx-driver.patch
|
|||||||
Patch0006: 0006-net-Only-access-network-devices-aft.patch
|
Patch0006: 0006-net-Only-access-network-devices-aft.patch
|
||||||
Patch0007: 0007-rpi-Add-identifier-for-the-new-RPi3.patch
|
Patch0007: 0007-rpi-Add-identifier-for-the-new-RPi3.patch
|
||||||
Patch0008: 0008-efi_loader-Fix-network-DP-with-DM_E.patch
|
Patch0008: 0008-efi_loader-Fix-network-DP-with-DM_E.patch
|
||||||
|
Patch0009: 0009-rpi-Allow-to-boot-without-serial.patch
|
||||||
|
Patch0010: 0010-mmc-use-core-clock-frequency-in-bcm.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
%if 0
|
%if 0
|
||||||
BuildRequires: arm-trusted-firmware-pine64
|
BuildRequires: arm-trusted-firmware-pine64
|
||||||
@ -106,6 +108,8 @@ This package contains documentation for U-Boot firmware.
|
|||||||
%patch0006 -p1
|
%patch0006 -p1
|
||||||
%patch0007 -p1
|
%patch0007 -p1
|
||||||
%patch0008 -p1
|
%patch0008 -p1
|
||||||
|
%patch0009 -p1
|
||||||
|
%patch0010 -p1
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
|
@ -1,3 +1,23 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 5 11:25:47 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
|
||||||
|
* Patches added:
|
||||||
|
0010-mmc-use-core-clock-frequency-in-bcm.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 5 09:54:56 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Fix rainbow screen on 32bit RPis (boo#1086757)
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
|
||||||
|
* Patches added:
|
||||||
|
0009-rpi-Allow-to-boot-without-serial.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Mar 15 23:44:18 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Add Xilinx ZynqMP ZCU 102 target
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Mar 15 16:34:22 UTC 2018 - agraf@suse.com
|
Thu Mar 15 16:34:22 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
@ -54,6 +54,8 @@ Patch0005: 0005-rpi3-Enable-lan78xx-driver.patch
|
|||||||
Patch0006: 0006-net-Only-access-network-devices-aft.patch
|
Patch0006: 0006-net-Only-access-network-devices-aft.patch
|
||||||
Patch0007: 0007-rpi-Add-identifier-for-the-new-RPi3.patch
|
Patch0007: 0007-rpi-Add-identifier-for-the-new-RPi3.patch
|
||||||
Patch0008: 0008-efi_loader-Fix-network-DP-with-DM_E.patch
|
Patch0008: 0008-efi_loader-Fix-network-DP-with-DM_E.patch
|
||||||
|
Patch0009: 0009-rpi-Allow-to-boot-without-serial.patch
|
||||||
|
Patch0010: 0010-mmc-use-core-clock-frequency-in-bcm.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
%if 0
|
%if 0
|
||||||
BuildRequires: arm-trusted-firmware-pine64
|
BuildRequires: arm-trusted-firmware-pine64
|
||||||
@ -106,6 +108,8 @@ This package contains documentation for U-Boot firmware.
|
|||||||
%patch0006 -p1
|
%patch0006 -p1
|
||||||
%patch0007 -p1
|
%patch0007 -p1
|
||||||
%patch0008 -p1
|
%patch0008 -p1
|
||||||
|
%patch0009 -p1
|
||||||
|
%patch0010 -p1
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
|
@ -1,3 +1,23 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 5 11:25:47 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
|
||||||
|
* Patches added:
|
||||||
|
0010-mmc-use-core-clock-frequency-in-bcm.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 5 09:54:56 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Fix rainbow screen on 32bit RPis (boo#1086757)
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
|
||||||
|
* Patches added:
|
||||||
|
0009-rpi-Allow-to-boot-without-serial.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Mar 15 23:44:18 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Add Xilinx ZynqMP ZCU 102 target
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Mar 15 16:34:22 UTC 2018 - agraf@suse.com
|
Thu Mar 15 16:34:22 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
@ -54,6 +54,8 @@ Patch0005: 0005-rpi3-Enable-lan78xx-driver.patch
|
|||||||
Patch0006: 0006-net-Only-access-network-devices-aft.patch
|
Patch0006: 0006-net-Only-access-network-devices-aft.patch
|
||||||
Patch0007: 0007-rpi-Add-identifier-for-the-new-RPi3.patch
|
Patch0007: 0007-rpi-Add-identifier-for-the-new-RPi3.patch
|
||||||
Patch0008: 0008-efi_loader-Fix-network-DP-with-DM_E.patch
|
Patch0008: 0008-efi_loader-Fix-network-DP-with-DM_E.patch
|
||||||
|
Patch0009: 0009-rpi-Allow-to-boot-without-serial.patch
|
||||||
|
Patch0010: 0010-mmc-use-core-clock-frequency-in-bcm.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
%if 0
|
%if 0
|
||||||
BuildRequires: arm-trusted-firmware-pine64
|
BuildRequires: arm-trusted-firmware-pine64
|
||||||
@ -106,6 +108,8 @@ This package contains documentation for U-Boot firmware.
|
|||||||
%patch0006 -p1
|
%patch0006 -p1
|
||||||
%patch0007 -p1
|
%patch0007 -p1
|
||||||
%patch0008 -p1
|
%patch0008 -p1
|
||||||
|
%patch0009 -p1
|
||||||
|
%patch0010 -p1
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
|
@ -1,3 +1,23 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 5 11:25:47 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
|
||||||
|
* Patches added:
|
||||||
|
0010-mmc-use-core-clock-frequency-in-bcm.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 5 09:54:56 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Fix rainbow screen on 32bit RPis (boo#1086757)
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
|
||||||
|
* Patches added:
|
||||||
|
0009-rpi-Allow-to-boot-without-serial.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Mar 15 23:44:18 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Add Xilinx ZynqMP ZCU 102 target
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Mar 15 16:34:22 UTC 2018 - agraf@suse.com
|
Thu Mar 15 16:34:22 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
@ -54,6 +54,8 @@ Patch0005: 0005-rpi3-Enable-lan78xx-driver.patch
|
|||||||
Patch0006: 0006-net-Only-access-network-devices-aft.patch
|
Patch0006: 0006-net-Only-access-network-devices-aft.patch
|
||||||
Patch0007: 0007-rpi-Add-identifier-for-the-new-RPi3.patch
|
Patch0007: 0007-rpi-Add-identifier-for-the-new-RPi3.patch
|
||||||
Patch0008: 0008-efi_loader-Fix-network-DP-with-DM_E.patch
|
Patch0008: 0008-efi_loader-Fix-network-DP-with-DM_E.patch
|
||||||
|
Patch0009: 0009-rpi-Allow-to-boot-without-serial.patch
|
||||||
|
Patch0010: 0010-mmc-use-core-clock-frequency-in-bcm.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
%if 0
|
%if 0
|
||||||
BuildRequires: arm-trusted-firmware-pine64
|
BuildRequires: arm-trusted-firmware-pine64
|
||||||
@ -106,6 +108,8 @@ This package contains documentation for U-Boot firmware.
|
|||||||
%patch0006 -p1
|
%patch0006 -p1
|
||||||
%patch0007 -p1
|
%patch0007 -p1
|
||||||
%patch0008 -p1
|
%patch0008 -p1
|
||||||
|
%patch0009 -p1
|
||||||
|
%patch0010 -p1
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
|
@ -1,3 +1,23 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 5 11:25:47 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
|
||||||
|
* Patches added:
|
||||||
|
0010-mmc-use-core-clock-frequency-in-bcm.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 5 09:54:56 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Fix rainbow screen on 32bit RPis (boo#1086757)
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
|
||||||
|
* Patches added:
|
||||||
|
0009-rpi-Allow-to-boot-without-serial.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Mar 15 23:44:18 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Add Xilinx ZynqMP ZCU 102 target
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Mar 15 16:34:22 UTC 2018 - agraf@suse.com
|
Thu Mar 15 16:34:22 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
@ -54,6 +54,8 @@ Patch0005: 0005-rpi3-Enable-lan78xx-driver.patch
|
|||||||
Patch0006: 0006-net-Only-access-network-devices-aft.patch
|
Patch0006: 0006-net-Only-access-network-devices-aft.patch
|
||||||
Patch0007: 0007-rpi-Add-identifier-for-the-new-RPi3.patch
|
Patch0007: 0007-rpi-Add-identifier-for-the-new-RPi3.patch
|
||||||
Patch0008: 0008-efi_loader-Fix-network-DP-with-DM_E.patch
|
Patch0008: 0008-efi_loader-Fix-network-DP-with-DM_E.patch
|
||||||
|
Patch0009: 0009-rpi-Allow-to-boot-without-serial.patch
|
||||||
|
Patch0010: 0010-mmc-use-core-clock-frequency-in-bcm.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
%if 0
|
%if 0
|
||||||
BuildRequires: arm-trusted-firmware-pine64
|
BuildRequires: arm-trusted-firmware-pine64
|
||||||
@ -106,6 +108,8 @@ This package contains documentation for U-Boot firmware.
|
|||||||
%patch0006 -p1
|
%patch0006 -p1
|
||||||
%patch0007 -p1
|
%patch0007 -p1
|
||||||
%patch0008 -p1
|
%patch0008 -p1
|
||||||
|
%patch0009 -p1
|
||||||
|
%patch0010 -p1
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
|
@ -1,3 +1,23 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 5 11:25:47 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
|
||||||
|
* Patches added:
|
||||||
|
0010-mmc-use-core-clock-frequency-in-bcm.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 5 09:54:56 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Fix rainbow screen on 32bit RPis (boo#1086757)
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
|
||||||
|
* Patches added:
|
||||||
|
0009-rpi-Allow-to-boot-without-serial.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Mar 15 23:44:18 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Add Xilinx ZynqMP ZCU 102 target
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Mar 15 16:34:22 UTC 2018 - agraf@suse.com
|
Thu Mar 15 16:34:22 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
@ -54,6 +54,8 @@ Patch0005: 0005-rpi3-Enable-lan78xx-driver.patch
|
|||||||
Patch0006: 0006-net-Only-access-network-devices-aft.patch
|
Patch0006: 0006-net-Only-access-network-devices-aft.patch
|
||||||
Patch0007: 0007-rpi-Add-identifier-for-the-new-RPi3.patch
|
Patch0007: 0007-rpi-Add-identifier-for-the-new-RPi3.patch
|
||||||
Patch0008: 0008-efi_loader-Fix-network-DP-with-DM_E.patch
|
Patch0008: 0008-efi_loader-Fix-network-DP-with-DM_E.patch
|
||||||
|
Patch0009: 0009-rpi-Allow-to-boot-without-serial.patch
|
||||||
|
Patch0010: 0010-mmc-use-core-clock-frequency-in-bcm.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
%if 0
|
%if 0
|
||||||
BuildRequires: arm-trusted-firmware-pine64
|
BuildRequires: arm-trusted-firmware-pine64
|
||||||
@ -106,6 +108,8 @@ This package contains documentation for U-Boot firmware.
|
|||||||
%patch0006 -p1
|
%patch0006 -p1
|
||||||
%patch0007 -p1
|
%patch0007 -p1
|
||||||
%patch0008 -p1
|
%patch0008 -p1
|
||||||
|
%patch0009 -p1
|
||||||
|
%patch0010 -p1
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
|
@ -1,3 +1,23 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 5 11:25:47 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
|
||||||
|
* Patches added:
|
||||||
|
0010-mmc-use-core-clock-frequency-in-bcm.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 5 09:54:56 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Fix rainbow screen on 32bit RPis (boo#1086757)
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
|
||||||
|
* Patches added:
|
||||||
|
0009-rpi-Allow-to-boot-without-serial.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Mar 15 23:44:18 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Add Xilinx ZynqMP ZCU 102 target
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Mar 15 16:34:22 UTC 2018 - agraf@suse.com
|
Thu Mar 15 16:34:22 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
@ -54,6 +54,8 @@ Patch0005: 0005-rpi3-Enable-lan78xx-driver.patch
|
|||||||
Patch0006: 0006-net-Only-access-network-devices-aft.patch
|
Patch0006: 0006-net-Only-access-network-devices-aft.patch
|
||||||
Patch0007: 0007-rpi-Add-identifier-for-the-new-RPi3.patch
|
Patch0007: 0007-rpi-Add-identifier-for-the-new-RPi3.patch
|
||||||
Patch0008: 0008-efi_loader-Fix-network-DP-with-DM_E.patch
|
Patch0008: 0008-efi_loader-Fix-network-DP-with-DM_E.patch
|
||||||
|
Patch0009: 0009-rpi-Allow-to-boot-without-serial.patch
|
||||||
|
Patch0010: 0010-mmc-use-core-clock-frequency-in-bcm.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
%if 0
|
%if 0
|
||||||
BuildRequires: arm-trusted-firmware-pine64
|
BuildRequires: arm-trusted-firmware-pine64
|
||||||
@ -106,6 +108,8 @@ This package contains documentation for U-Boot firmware.
|
|||||||
%patch0006 -p1
|
%patch0006 -p1
|
||||||
%patch0007 -p1
|
%patch0007 -p1
|
||||||
%patch0008 -p1
|
%patch0008 -p1
|
||||||
|
%patch0009 -p1
|
||||||
|
%patch0010 -p1
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
|
@ -1,3 +1,23 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 5 11:25:47 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
|
||||||
|
* Patches added:
|
||||||
|
0010-mmc-use-core-clock-frequency-in-bcm.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 5 09:54:56 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Fix rainbow screen on 32bit RPis (boo#1086757)
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
|
||||||
|
* Patches added:
|
||||||
|
0009-rpi-Allow-to-boot-without-serial.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Mar 15 23:44:18 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Add Xilinx ZynqMP ZCU 102 target
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Mar 15 16:34:22 UTC 2018 - agraf@suse.com
|
Thu Mar 15 16:34:22 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
@ -54,6 +54,8 @@ Patch0005: 0005-rpi3-Enable-lan78xx-driver.patch
|
|||||||
Patch0006: 0006-net-Only-access-network-devices-aft.patch
|
Patch0006: 0006-net-Only-access-network-devices-aft.patch
|
||||||
Patch0007: 0007-rpi-Add-identifier-for-the-new-RPi3.patch
|
Patch0007: 0007-rpi-Add-identifier-for-the-new-RPi3.patch
|
||||||
Patch0008: 0008-efi_loader-Fix-network-DP-with-DM_E.patch
|
Patch0008: 0008-efi_loader-Fix-network-DP-with-DM_E.patch
|
||||||
|
Patch0009: 0009-rpi-Allow-to-boot-without-serial.patch
|
||||||
|
Patch0010: 0010-mmc-use-core-clock-frequency-in-bcm.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
%if 0
|
%if 0
|
||||||
BuildRequires: arm-trusted-firmware-pine64
|
BuildRequires: arm-trusted-firmware-pine64
|
||||||
@ -106,6 +108,8 @@ This package contains documentation for U-Boot firmware.
|
|||||||
%patch0006 -p1
|
%patch0006 -p1
|
||||||
%patch0007 -p1
|
%patch0007 -p1
|
||||||
%patch0008 -p1
|
%patch0008 -p1
|
||||||
|
%patch0009 -p1
|
||||||
|
%patch0010 -p1
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
|
@ -1,3 +1,23 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 5 11:25:47 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
|
||||||
|
* Patches added:
|
||||||
|
0010-mmc-use-core-clock-frequency-in-bcm.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 5 09:54:56 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Fix rainbow screen on 32bit RPis (boo#1086757)
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
|
||||||
|
* Patches added:
|
||||||
|
0009-rpi-Allow-to-boot-without-serial.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Mar 15 23:44:18 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Add Xilinx ZynqMP ZCU 102 target
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Mar 15 16:34:22 UTC 2018 - agraf@suse.com
|
Thu Mar 15 16:34:22 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
@ -54,6 +54,8 @@ Patch0005: 0005-rpi3-Enable-lan78xx-driver.patch
|
|||||||
Patch0006: 0006-net-Only-access-network-devices-aft.patch
|
Patch0006: 0006-net-Only-access-network-devices-aft.patch
|
||||||
Patch0007: 0007-rpi-Add-identifier-for-the-new-RPi3.patch
|
Patch0007: 0007-rpi-Add-identifier-for-the-new-RPi3.patch
|
||||||
Patch0008: 0008-efi_loader-Fix-network-DP-with-DM_E.patch
|
Patch0008: 0008-efi_loader-Fix-network-DP-with-DM_E.patch
|
||||||
|
Patch0009: 0009-rpi-Allow-to-boot-without-serial.patch
|
||||||
|
Patch0010: 0010-mmc-use-core-clock-frequency-in-bcm.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
%if 0
|
%if 0
|
||||||
BuildRequires: arm-trusted-firmware-pine64
|
BuildRequires: arm-trusted-firmware-pine64
|
||||||
@ -106,6 +108,8 @@ This package contains documentation for U-Boot firmware.
|
|||||||
%patch0006 -p1
|
%patch0006 -p1
|
||||||
%patch0007 -p1
|
%patch0007 -p1
|
||||||
%patch0008 -p1
|
%patch0008 -p1
|
||||||
|
%patch0009 -p1
|
||||||
|
%patch0010 -p1
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
|
@ -1,3 +1,23 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 5 11:25:47 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
|
||||||
|
* Patches added:
|
||||||
|
0010-mmc-use-core-clock-frequency-in-bcm.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 5 09:54:56 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Fix rainbow screen on 32bit RPis (boo#1086757)
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
|
||||||
|
* Patches added:
|
||||||
|
0009-rpi-Allow-to-boot-without-serial.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Mar 15 23:44:18 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Add Xilinx ZynqMP ZCU 102 target
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Mar 15 16:34:22 UTC 2018 - agraf@suse.com
|
Thu Mar 15 16:34:22 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
@ -54,6 +54,8 @@ Patch0005: 0005-rpi3-Enable-lan78xx-driver.patch
|
|||||||
Patch0006: 0006-net-Only-access-network-devices-aft.patch
|
Patch0006: 0006-net-Only-access-network-devices-aft.patch
|
||||||
Patch0007: 0007-rpi-Add-identifier-for-the-new-RPi3.patch
|
Patch0007: 0007-rpi-Add-identifier-for-the-new-RPi3.patch
|
||||||
Patch0008: 0008-efi_loader-Fix-network-DP-with-DM_E.patch
|
Patch0008: 0008-efi_loader-Fix-network-DP-with-DM_E.patch
|
||||||
|
Patch0009: 0009-rpi-Allow-to-boot-without-serial.patch
|
||||||
|
Patch0010: 0010-mmc-use-core-clock-frequency-in-bcm.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
%if 0
|
%if 0
|
||||||
BuildRequires: arm-trusted-firmware-pine64
|
BuildRequires: arm-trusted-firmware-pine64
|
||||||
@ -106,6 +108,8 @@ This package contains documentation for U-Boot firmware.
|
|||||||
%patch0006 -p1
|
%patch0006 -p1
|
||||||
%patch0007 -p1
|
%patch0007 -p1
|
||||||
%patch0008 -p1
|
%patch0008 -p1
|
||||||
|
%patch0009 -p1
|
||||||
|
%patch0010 -p1
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
|
@ -1,3 +1,23 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 5 11:25:47 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
|
||||||
|
* Patches added:
|
||||||
|
0010-mmc-use-core-clock-frequency-in-bcm.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 5 09:54:56 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Fix rainbow screen on 32bit RPis (boo#1086757)
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
|
||||||
|
* Patches added:
|
||||||
|
0009-rpi-Allow-to-boot-without-serial.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Mar 15 23:44:18 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Add Xilinx ZynqMP ZCU 102 target
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Mar 15 16:34:22 UTC 2018 - agraf@suse.com
|
Thu Mar 15 16:34:22 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
@ -54,6 +54,8 @@ Patch0005: 0005-rpi3-Enable-lan78xx-driver.patch
|
|||||||
Patch0006: 0006-net-Only-access-network-devices-aft.patch
|
Patch0006: 0006-net-Only-access-network-devices-aft.patch
|
||||||
Patch0007: 0007-rpi-Add-identifier-for-the-new-RPi3.patch
|
Patch0007: 0007-rpi-Add-identifier-for-the-new-RPi3.patch
|
||||||
Patch0008: 0008-efi_loader-Fix-network-DP-with-DM_E.patch
|
Patch0008: 0008-efi_loader-Fix-network-DP-with-DM_E.patch
|
||||||
|
Patch0009: 0009-rpi-Allow-to-boot-without-serial.patch
|
||||||
|
Patch0010: 0010-mmc-use-core-clock-frequency-in-bcm.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
%if 0
|
%if 0
|
||||||
BuildRequires: arm-trusted-firmware-pine64
|
BuildRequires: arm-trusted-firmware-pine64
|
||||||
@ -106,6 +108,8 @@ This package contains documentation for U-Boot firmware.
|
|||||||
%patch0006 -p1
|
%patch0006 -p1
|
||||||
%patch0007 -p1
|
%patch0007 -p1
|
||||||
%patch0008 -p1
|
%patch0008 -p1
|
||||||
|
%patch0009 -p1
|
||||||
|
%patch0010 -p1
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
|
@ -1,3 +1,23 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 5 11:25:47 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
|
||||||
|
* Patches added:
|
||||||
|
0010-mmc-use-core-clock-frequency-in-bcm.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 5 09:54:56 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Fix rainbow screen on 32bit RPis (boo#1086757)
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
|
||||||
|
* Patches added:
|
||||||
|
0009-rpi-Allow-to-boot-without-serial.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Mar 15 23:44:18 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Add Xilinx ZynqMP ZCU 102 target
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Mar 15 16:34:22 UTC 2018 - agraf@suse.com
|
Thu Mar 15 16:34:22 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
@ -54,6 +54,8 @@ Patch0005: 0005-rpi3-Enable-lan78xx-driver.patch
|
|||||||
Patch0006: 0006-net-Only-access-network-devices-aft.patch
|
Patch0006: 0006-net-Only-access-network-devices-aft.patch
|
||||||
Patch0007: 0007-rpi-Add-identifier-for-the-new-RPi3.patch
|
Patch0007: 0007-rpi-Add-identifier-for-the-new-RPi3.patch
|
||||||
Patch0008: 0008-efi_loader-Fix-network-DP-with-DM_E.patch
|
Patch0008: 0008-efi_loader-Fix-network-DP-with-DM_E.patch
|
||||||
|
Patch0009: 0009-rpi-Allow-to-boot-without-serial.patch
|
||||||
|
Patch0010: 0010-mmc-use-core-clock-frequency-in-bcm.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
%if 0
|
%if 0
|
||||||
BuildRequires: arm-trusted-firmware-pine64
|
BuildRequires: arm-trusted-firmware-pine64
|
||||||
@ -106,6 +108,8 @@ This package contains documentation for U-Boot firmware.
|
|||||||
%patch0006 -p1
|
%patch0006 -p1
|
||||||
%patch0007 -p1
|
%patch0007 -p1
|
||||||
%patch0008 -p1
|
%patch0008 -p1
|
||||||
|
%patch0009 -p1
|
||||||
|
%patch0010 -p1
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
|
@ -1,3 +1,23 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 5 11:25:47 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
|
||||||
|
* Patches added:
|
||||||
|
0010-mmc-use-core-clock-frequency-in-bcm.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 5 09:54:56 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Fix rainbow screen on 32bit RPis (boo#1086757)
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
|
||||||
|
* Patches added:
|
||||||
|
0009-rpi-Allow-to-boot-without-serial.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Mar 15 23:44:18 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Add Xilinx ZynqMP ZCU 102 target
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Mar 15 16:34:22 UTC 2018 - agraf@suse.com
|
Thu Mar 15 16:34:22 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
@ -54,6 +54,8 @@ Patch0005: 0005-rpi3-Enable-lan78xx-driver.patch
|
|||||||
Patch0006: 0006-net-Only-access-network-devices-aft.patch
|
Patch0006: 0006-net-Only-access-network-devices-aft.patch
|
||||||
Patch0007: 0007-rpi-Add-identifier-for-the-new-RPi3.patch
|
Patch0007: 0007-rpi-Add-identifier-for-the-new-RPi3.patch
|
||||||
Patch0008: 0008-efi_loader-Fix-network-DP-with-DM_E.patch
|
Patch0008: 0008-efi_loader-Fix-network-DP-with-DM_E.patch
|
||||||
|
Patch0009: 0009-rpi-Allow-to-boot-without-serial.patch
|
||||||
|
Patch0010: 0010-mmc-use-core-clock-frequency-in-bcm.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
%if 0
|
%if 0
|
||||||
BuildRequires: arm-trusted-firmware-pine64
|
BuildRequires: arm-trusted-firmware-pine64
|
||||||
@ -106,6 +108,8 @@ This package contains documentation for U-Boot firmware.
|
|||||||
%patch0006 -p1
|
%patch0006 -p1
|
||||||
%patch0007 -p1
|
%patch0007 -p1
|
||||||
%patch0008 -p1
|
%patch0008 -p1
|
||||||
|
%patch0009 -p1
|
||||||
|
%patch0010 -p1
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
|
@ -1,3 +1,23 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 5 11:25:47 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
|
||||||
|
* Patches added:
|
||||||
|
0010-mmc-use-core-clock-frequency-in-bcm.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 5 09:54:56 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Fix rainbow screen on 32bit RPis (boo#1086757)
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
|
||||||
|
* Patches added:
|
||||||
|
0009-rpi-Allow-to-boot-without-serial.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Mar 15 23:44:18 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Add Xilinx ZynqMP ZCU 102 target
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Mar 15 16:34:22 UTC 2018 - agraf@suse.com
|
Thu Mar 15 16:34:22 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
@ -54,6 +54,8 @@ Patch0005: 0005-rpi3-Enable-lan78xx-driver.patch
|
|||||||
Patch0006: 0006-net-Only-access-network-devices-aft.patch
|
Patch0006: 0006-net-Only-access-network-devices-aft.patch
|
||||||
Patch0007: 0007-rpi-Add-identifier-for-the-new-RPi3.patch
|
Patch0007: 0007-rpi-Add-identifier-for-the-new-RPi3.patch
|
||||||
Patch0008: 0008-efi_loader-Fix-network-DP-with-DM_E.patch
|
Patch0008: 0008-efi_loader-Fix-network-DP-with-DM_E.patch
|
||||||
|
Patch0009: 0009-rpi-Allow-to-boot-without-serial.patch
|
||||||
|
Patch0010: 0010-mmc-use-core-clock-frequency-in-bcm.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
%if 0
|
%if 0
|
||||||
BuildRequires: arm-trusted-firmware-pine64
|
BuildRequires: arm-trusted-firmware-pine64
|
||||||
@ -106,6 +108,8 @@ This package contains documentation for U-Boot firmware.
|
|||||||
%patch0006 -p1
|
%patch0006 -p1
|
||||||
%patch0007 -p1
|
%patch0007 -p1
|
||||||
%patch0008 -p1
|
%patch0008 -p1
|
||||||
|
%patch0009 -p1
|
||||||
|
%patch0010 -p1
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
|
@ -1,3 +1,23 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 5 11:25:47 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
|
||||||
|
* Patches added:
|
||||||
|
0010-mmc-use-core-clock-frequency-in-bcm.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 5 09:54:56 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Fix rainbow screen on 32bit RPis (boo#1086757)
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
|
||||||
|
* Patches added:
|
||||||
|
0009-rpi-Allow-to-boot-without-serial.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Mar 15 23:44:18 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Add Xilinx ZynqMP ZCU 102 target
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Mar 15 16:34:22 UTC 2018 - agraf@suse.com
|
Thu Mar 15 16:34:22 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
@ -54,6 +54,8 @@ Patch0005: 0005-rpi3-Enable-lan78xx-driver.patch
|
|||||||
Patch0006: 0006-net-Only-access-network-devices-aft.patch
|
Patch0006: 0006-net-Only-access-network-devices-aft.patch
|
||||||
Patch0007: 0007-rpi-Add-identifier-for-the-new-RPi3.patch
|
Patch0007: 0007-rpi-Add-identifier-for-the-new-RPi3.patch
|
||||||
Patch0008: 0008-efi_loader-Fix-network-DP-with-DM_E.patch
|
Patch0008: 0008-efi_loader-Fix-network-DP-with-DM_E.patch
|
||||||
|
Patch0009: 0009-rpi-Allow-to-boot-without-serial.patch
|
||||||
|
Patch0010: 0010-mmc-use-core-clock-frequency-in-bcm.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
%if 0
|
%if 0
|
||||||
BuildRequires: arm-trusted-firmware-pine64
|
BuildRequires: arm-trusted-firmware-pine64
|
||||||
@ -106,6 +108,8 @@ This package contains documentation for U-Boot firmware.
|
|||||||
%patch0006 -p1
|
%patch0006 -p1
|
||||||
%patch0007 -p1
|
%patch0007 -p1
|
||||||
%patch0008 -p1
|
%patch0008 -p1
|
||||||
|
%patch0009 -p1
|
||||||
|
%patch0010 -p1
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
|
@ -1,3 +1,23 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 5 11:25:47 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
|
||||||
|
* Patches added:
|
||||||
|
0010-mmc-use-core-clock-frequency-in-bcm.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 5 09:54:56 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Fix rainbow screen on 32bit RPis (boo#1086757)
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
|
||||||
|
* Patches added:
|
||||||
|
0009-rpi-Allow-to-boot-without-serial.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Mar 15 23:44:18 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Add Xilinx ZynqMP ZCU 102 target
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Mar 15 16:34:22 UTC 2018 - agraf@suse.com
|
Thu Mar 15 16:34:22 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
@ -54,6 +54,8 @@ Patch0005: 0005-rpi3-Enable-lan78xx-driver.patch
|
|||||||
Patch0006: 0006-net-Only-access-network-devices-aft.patch
|
Patch0006: 0006-net-Only-access-network-devices-aft.patch
|
||||||
Patch0007: 0007-rpi-Add-identifier-for-the-new-RPi3.patch
|
Patch0007: 0007-rpi-Add-identifier-for-the-new-RPi3.patch
|
||||||
Patch0008: 0008-efi_loader-Fix-network-DP-with-DM_E.patch
|
Patch0008: 0008-efi_loader-Fix-network-DP-with-DM_E.patch
|
||||||
|
Patch0009: 0009-rpi-Allow-to-boot-without-serial.patch
|
||||||
|
Patch0010: 0010-mmc-use-core-clock-frequency-in-bcm.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
%if 0
|
%if 0
|
||||||
BuildRequires: arm-trusted-firmware-pine64
|
BuildRequires: arm-trusted-firmware-pine64
|
||||||
@ -106,6 +108,8 @@ This package contains documentation for U-Boot firmware.
|
|||||||
%patch0006 -p1
|
%patch0006 -p1
|
||||||
%patch0007 -p1
|
%patch0007 -p1
|
||||||
%patch0008 -p1
|
%patch0008 -p1
|
||||||
|
%patch0009 -p1
|
||||||
|
%patch0010 -p1
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
|
@ -1,3 +1,23 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 5 11:25:47 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
|
||||||
|
* Patches added:
|
||||||
|
0010-mmc-use-core-clock-frequency-in-bcm.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 5 09:54:56 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Fix rainbow screen on 32bit RPis (boo#1086757)
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
|
||||||
|
* Patches added:
|
||||||
|
0009-rpi-Allow-to-boot-without-serial.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Mar 15 23:44:18 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Add Xilinx ZynqMP ZCU 102 target
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Mar 15 16:34:22 UTC 2018 - agraf@suse.com
|
Thu Mar 15 16:34:22 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
@ -54,6 +54,8 @@ Patch0005: 0005-rpi3-Enable-lan78xx-driver.patch
|
|||||||
Patch0006: 0006-net-Only-access-network-devices-aft.patch
|
Patch0006: 0006-net-Only-access-network-devices-aft.patch
|
||||||
Patch0007: 0007-rpi-Add-identifier-for-the-new-RPi3.patch
|
Patch0007: 0007-rpi-Add-identifier-for-the-new-RPi3.patch
|
||||||
Patch0008: 0008-efi_loader-Fix-network-DP-with-DM_E.patch
|
Patch0008: 0008-efi_loader-Fix-network-DP-with-DM_E.patch
|
||||||
|
Patch0009: 0009-rpi-Allow-to-boot-without-serial.patch
|
||||||
|
Patch0010: 0010-mmc-use-core-clock-frequency-in-bcm.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
%if 0
|
%if 0
|
||||||
BuildRequires: arm-trusted-firmware-pine64
|
BuildRequires: arm-trusted-firmware-pine64
|
||||||
@ -106,6 +108,8 @@ This package contains documentation for U-Boot firmware.
|
|||||||
%patch0006 -p1
|
%patch0006 -p1
|
||||||
%patch0007 -p1
|
%patch0007 -p1
|
||||||
%patch0008 -p1
|
%patch0008 -p1
|
||||||
|
%patch0009 -p1
|
||||||
|
%patch0010 -p1
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
|
@ -1,3 +1,23 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 5 11:25:47 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
|
||||||
|
* Patches added:
|
||||||
|
0010-mmc-use-core-clock-frequency-in-bcm.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 5 09:54:56 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Fix rainbow screen on 32bit RPis (boo#1086757)
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
|
||||||
|
* Patches added:
|
||||||
|
0009-rpi-Allow-to-boot-without-serial.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Mar 15 23:44:18 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Add Xilinx ZynqMP ZCU 102 target
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Mar 15 16:34:22 UTC 2018 - agraf@suse.com
|
Thu Mar 15 16:34:22 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
@ -54,6 +54,8 @@ Patch0005: 0005-rpi3-Enable-lan78xx-driver.patch
|
|||||||
Patch0006: 0006-net-Only-access-network-devices-aft.patch
|
Patch0006: 0006-net-Only-access-network-devices-aft.patch
|
||||||
Patch0007: 0007-rpi-Add-identifier-for-the-new-RPi3.patch
|
Patch0007: 0007-rpi-Add-identifier-for-the-new-RPi3.patch
|
||||||
Patch0008: 0008-efi_loader-Fix-network-DP-with-DM_E.patch
|
Patch0008: 0008-efi_loader-Fix-network-DP-with-DM_E.patch
|
||||||
|
Patch0009: 0009-rpi-Allow-to-boot-without-serial.patch
|
||||||
|
Patch0010: 0010-mmc-use-core-clock-frequency-in-bcm.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
%if 0
|
%if 0
|
||||||
BuildRequires: arm-trusted-firmware-pine64
|
BuildRequires: arm-trusted-firmware-pine64
|
||||||
@ -106,6 +108,8 @@ This package contains documentation for U-Boot firmware.
|
|||||||
%patch0006 -p1
|
%patch0006 -p1
|
||||||
%patch0007 -p1
|
%patch0007 -p1
|
||||||
%patch0008 -p1
|
%patch0008 -p1
|
||||||
|
%patch0009 -p1
|
||||||
|
%patch0010 -p1
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
|
@ -1,3 +1,23 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 5 11:25:47 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
|
||||||
|
* Patches added:
|
||||||
|
0010-mmc-use-core-clock-frequency-in-bcm.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 5 09:54:56 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Fix rainbow screen on 32bit RPis (boo#1086757)
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
|
||||||
|
* Patches added:
|
||||||
|
0009-rpi-Allow-to-boot-without-serial.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Mar 15 23:44:18 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Add Xilinx ZynqMP ZCU 102 target
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Mar 15 16:34:22 UTC 2018 - agraf@suse.com
|
Thu Mar 15 16:34:22 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
@ -54,6 +54,8 @@ Patch0005: 0005-rpi3-Enable-lan78xx-driver.patch
|
|||||||
Patch0006: 0006-net-Only-access-network-devices-aft.patch
|
Patch0006: 0006-net-Only-access-network-devices-aft.patch
|
||||||
Patch0007: 0007-rpi-Add-identifier-for-the-new-RPi3.patch
|
Patch0007: 0007-rpi-Add-identifier-for-the-new-RPi3.patch
|
||||||
Patch0008: 0008-efi_loader-Fix-network-DP-with-DM_E.patch
|
Patch0008: 0008-efi_loader-Fix-network-DP-with-DM_E.patch
|
||||||
|
Patch0009: 0009-rpi-Allow-to-boot-without-serial.patch
|
||||||
|
Patch0010: 0010-mmc-use-core-clock-frequency-in-bcm.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
%if 0
|
%if 0
|
||||||
BuildRequires: arm-trusted-firmware-pine64
|
BuildRequires: arm-trusted-firmware-pine64
|
||||||
@ -106,6 +108,8 @@ This package contains documentation for U-Boot firmware.
|
|||||||
%patch0006 -p1
|
%patch0006 -p1
|
||||||
%patch0007 -p1
|
%patch0007 -p1
|
||||||
%patch0008 -p1
|
%patch0008 -p1
|
||||||
|
%patch0009 -p1
|
||||||
|
%patch0010 -p1
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
|
@ -1,3 +1,23 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 5 11:25:47 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
|
||||||
|
* Patches added:
|
||||||
|
0010-mmc-use-core-clock-frequency-in-bcm.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 5 09:54:56 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Fix rainbow screen on 32bit RPis (boo#1086757)
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
|
||||||
|
* Patches added:
|
||||||
|
0009-rpi-Allow-to-boot-without-serial.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Mar 15 23:44:18 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Add Xilinx ZynqMP ZCU 102 target
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Mar 15 16:34:22 UTC 2018 - agraf@suse.com
|
Thu Mar 15 16:34:22 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
@ -54,6 +54,8 @@ Patch0005: 0005-rpi3-Enable-lan78xx-driver.patch
|
|||||||
Patch0006: 0006-net-Only-access-network-devices-aft.patch
|
Patch0006: 0006-net-Only-access-network-devices-aft.patch
|
||||||
Patch0007: 0007-rpi-Add-identifier-for-the-new-RPi3.patch
|
Patch0007: 0007-rpi-Add-identifier-for-the-new-RPi3.patch
|
||||||
Patch0008: 0008-efi_loader-Fix-network-DP-with-DM_E.patch
|
Patch0008: 0008-efi_loader-Fix-network-DP-with-DM_E.patch
|
||||||
|
Patch0009: 0009-rpi-Allow-to-boot-without-serial.patch
|
||||||
|
Patch0010: 0010-mmc-use-core-clock-frequency-in-bcm.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
%if 0
|
%if 0
|
||||||
BuildRequires: arm-trusted-firmware-pine64
|
BuildRequires: arm-trusted-firmware-pine64
|
||||||
@ -106,6 +108,8 @@ This package contains documentation for U-Boot firmware.
|
|||||||
%patch0006 -p1
|
%patch0006 -p1
|
||||||
%patch0007 -p1
|
%patch0007 -p1
|
||||||
%patch0008 -p1
|
%patch0008 -p1
|
||||||
|
%patch0009 -p1
|
||||||
|
%patch0010 -p1
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
|
@ -1,3 +1,23 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 5 11:25:47 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
|
||||||
|
* Patches added:
|
||||||
|
0010-mmc-use-core-clock-frequency-in-bcm.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 5 09:54:56 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Fix rainbow screen on 32bit RPis (boo#1086757)
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
|
||||||
|
* Patches added:
|
||||||
|
0009-rpi-Allow-to-boot-without-serial.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Mar 15 23:44:18 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Add Xilinx ZynqMP ZCU 102 target
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Mar 15 16:34:22 UTC 2018 - agraf@suse.com
|
Thu Mar 15 16:34:22 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
@ -54,6 +54,8 @@ Patch0005: 0005-rpi3-Enable-lan78xx-driver.patch
|
|||||||
Patch0006: 0006-net-Only-access-network-devices-aft.patch
|
Patch0006: 0006-net-Only-access-network-devices-aft.patch
|
||||||
Patch0007: 0007-rpi-Add-identifier-for-the-new-RPi3.patch
|
Patch0007: 0007-rpi-Add-identifier-for-the-new-RPi3.patch
|
||||||
Patch0008: 0008-efi_loader-Fix-network-DP-with-DM_E.patch
|
Patch0008: 0008-efi_loader-Fix-network-DP-with-DM_E.patch
|
||||||
|
Patch0009: 0009-rpi-Allow-to-boot-without-serial.patch
|
||||||
|
Patch0010: 0010-mmc-use-core-clock-frequency-in-bcm.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
%if 0
|
%if 0
|
||||||
BuildRequires: arm-trusted-firmware-pine64
|
BuildRequires: arm-trusted-firmware-pine64
|
||||||
@ -106,6 +108,8 @@ This package contains documentation for U-Boot firmware.
|
|||||||
%patch0006 -p1
|
%patch0006 -p1
|
||||||
%patch0007 -p1
|
%patch0007 -p1
|
||||||
%patch0008 -p1
|
%patch0008 -p1
|
||||||
|
%patch0009 -p1
|
||||||
|
%patch0010 -p1
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
|
@ -1,3 +1,23 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 5 11:25:47 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
|
||||||
|
* Patches added:
|
||||||
|
0010-mmc-use-core-clock-frequency-in-bcm.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 5 09:54:56 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Fix rainbow screen on 32bit RPis (boo#1086757)
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
|
||||||
|
* Patches added:
|
||||||
|
0009-rpi-Allow-to-boot-without-serial.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Mar 15 23:44:18 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Add Xilinx ZynqMP ZCU 102 target
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Mar 15 16:34:22 UTC 2018 - agraf@suse.com
|
Thu Mar 15 16:34:22 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
@ -54,6 +54,8 @@ Patch0005: 0005-rpi3-Enable-lan78xx-driver.patch
|
|||||||
Patch0006: 0006-net-Only-access-network-devices-aft.patch
|
Patch0006: 0006-net-Only-access-network-devices-aft.patch
|
||||||
Patch0007: 0007-rpi-Add-identifier-for-the-new-RPi3.patch
|
Patch0007: 0007-rpi-Add-identifier-for-the-new-RPi3.patch
|
||||||
Patch0008: 0008-efi_loader-Fix-network-DP-with-DM_E.patch
|
Patch0008: 0008-efi_loader-Fix-network-DP-with-DM_E.patch
|
||||||
|
Patch0009: 0009-rpi-Allow-to-boot-without-serial.patch
|
||||||
|
Patch0010: 0010-mmc-use-core-clock-frequency-in-bcm.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
%if 0
|
%if 0
|
||||||
BuildRequires: arm-trusted-firmware-pine64
|
BuildRequires: arm-trusted-firmware-pine64
|
||||||
@ -106,6 +108,8 @@ This package contains documentation for U-Boot firmware.
|
|||||||
%patch0006 -p1
|
%patch0006 -p1
|
||||||
%patch0007 -p1
|
%patch0007 -p1
|
||||||
%patch0008 -p1
|
%patch0008 -p1
|
||||||
|
%patch0009 -p1
|
||||||
|
%patch0010 -p1
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
|
@ -1,3 +1,23 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 5 11:25:47 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
|
||||||
|
* Patches added:
|
||||||
|
0010-mmc-use-core-clock-frequency-in-bcm.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 5 09:54:56 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Fix rainbow screen on 32bit RPis (boo#1086757)
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
|
||||||
|
* Patches added:
|
||||||
|
0009-rpi-Allow-to-boot-without-serial.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Mar 15 23:44:18 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Add Xilinx ZynqMP ZCU 102 target
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Mar 15 16:34:22 UTC 2018 - agraf@suse.com
|
Thu Mar 15 16:34:22 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
@ -54,6 +54,8 @@ Patch0005: 0005-rpi3-Enable-lan78xx-driver.patch
|
|||||||
Patch0006: 0006-net-Only-access-network-devices-aft.patch
|
Patch0006: 0006-net-Only-access-network-devices-aft.patch
|
||||||
Patch0007: 0007-rpi-Add-identifier-for-the-new-RPi3.patch
|
Patch0007: 0007-rpi-Add-identifier-for-the-new-RPi3.patch
|
||||||
Patch0008: 0008-efi_loader-Fix-network-DP-with-DM_E.patch
|
Patch0008: 0008-efi_loader-Fix-network-DP-with-DM_E.patch
|
||||||
|
Patch0009: 0009-rpi-Allow-to-boot-without-serial.patch
|
||||||
|
Patch0010: 0010-mmc-use-core-clock-frequency-in-bcm.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
%if 0
|
%if 0
|
||||||
BuildRequires: arm-trusted-firmware-pine64
|
BuildRequires: arm-trusted-firmware-pine64
|
||||||
@ -106,6 +108,8 @@ This package contains documentation for U-Boot firmware.
|
|||||||
%patch0006 -p1
|
%patch0006 -p1
|
||||||
%patch0007 -p1
|
%patch0007 -p1
|
||||||
%patch0008 -p1
|
%patch0008 -p1
|
||||||
|
%patch0009 -p1
|
||||||
|
%patch0010 -p1
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
|
@ -1,3 +1,23 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 5 11:25:47 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
|
||||||
|
* Patches added:
|
||||||
|
0010-mmc-use-core-clock-frequency-in-bcm.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 5 09:54:56 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Fix rainbow screen on 32bit RPis (boo#1086757)
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
|
||||||
|
* Patches added:
|
||||||
|
0009-rpi-Allow-to-boot-without-serial.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Mar 15 23:44:18 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Add Xilinx ZynqMP ZCU 102 target
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Mar 15 16:34:22 UTC 2018 - agraf@suse.com
|
Thu Mar 15 16:34:22 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
@ -54,6 +54,8 @@ Patch0005: 0005-rpi3-Enable-lan78xx-driver.patch
|
|||||||
Patch0006: 0006-net-Only-access-network-devices-aft.patch
|
Patch0006: 0006-net-Only-access-network-devices-aft.patch
|
||||||
Patch0007: 0007-rpi-Add-identifier-for-the-new-RPi3.patch
|
Patch0007: 0007-rpi-Add-identifier-for-the-new-RPi3.patch
|
||||||
Patch0008: 0008-efi_loader-Fix-network-DP-with-DM_E.patch
|
Patch0008: 0008-efi_loader-Fix-network-DP-with-DM_E.patch
|
||||||
|
Patch0009: 0009-rpi-Allow-to-boot-without-serial.patch
|
||||||
|
Patch0010: 0010-mmc-use-core-clock-frequency-in-bcm.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
%if 0
|
%if 0
|
||||||
BuildRequires: arm-trusted-firmware-pine64
|
BuildRequires: arm-trusted-firmware-pine64
|
||||||
@ -106,6 +108,8 @@ This package contains documentation for U-Boot firmware.
|
|||||||
%patch0006 -p1
|
%patch0006 -p1
|
||||||
%patch0007 -p1
|
%patch0007 -p1
|
||||||
%patch0008 -p1
|
%patch0008 -p1
|
||||||
|
%patch0009 -p1
|
||||||
|
%patch0010 -p1
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
|
@ -1,3 +1,23 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 5 11:25:47 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
|
||||||
|
* Patches added:
|
||||||
|
0010-mmc-use-core-clock-frequency-in-bcm.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 5 09:54:56 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Fix rainbow screen on 32bit RPis (boo#1086757)
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
|
||||||
|
* Patches added:
|
||||||
|
0009-rpi-Allow-to-boot-without-serial.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Mar 15 23:44:18 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Add Xilinx ZynqMP ZCU 102 target
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Mar 15 16:34:22 UTC 2018 - agraf@suse.com
|
Thu Mar 15 16:34:22 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
@ -54,6 +54,8 @@ Patch0005: 0005-rpi3-Enable-lan78xx-driver.patch
|
|||||||
Patch0006: 0006-net-Only-access-network-devices-aft.patch
|
Patch0006: 0006-net-Only-access-network-devices-aft.patch
|
||||||
Patch0007: 0007-rpi-Add-identifier-for-the-new-RPi3.patch
|
Patch0007: 0007-rpi-Add-identifier-for-the-new-RPi3.patch
|
||||||
Patch0008: 0008-efi_loader-Fix-network-DP-with-DM_E.patch
|
Patch0008: 0008-efi_loader-Fix-network-DP-with-DM_E.patch
|
||||||
|
Patch0009: 0009-rpi-Allow-to-boot-without-serial.patch
|
||||||
|
Patch0010: 0010-mmc-use-core-clock-frequency-in-bcm.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
%if 0
|
%if 0
|
||||||
BuildRequires: arm-trusted-firmware-pine64
|
BuildRequires: arm-trusted-firmware-pine64
|
||||||
@ -106,6 +108,8 @@ This package contains documentation for U-Boot firmware.
|
|||||||
%patch0006 -p1
|
%patch0006 -p1
|
||||||
%patch0007 -p1
|
%patch0007 -p1
|
||||||
%patch0008 -p1
|
%patch0008 -p1
|
||||||
|
%patch0009 -p1
|
||||||
|
%patch0010 -p1
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
|
@ -1,3 +1,23 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 5 11:25:47 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
|
||||||
|
* Patches added:
|
||||||
|
0010-mmc-use-core-clock-frequency-in-bcm.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 5 09:54:56 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Fix rainbow screen on 32bit RPis (boo#1086757)
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
|
||||||
|
* Patches added:
|
||||||
|
0009-rpi-Allow-to-boot-without-serial.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Mar 15 23:44:18 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Add Xilinx ZynqMP ZCU 102 target
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Mar 15 16:34:22 UTC 2018 - agraf@suse.com
|
Thu Mar 15 16:34:22 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
@ -54,6 +54,8 @@ Patch0005: 0005-rpi3-Enable-lan78xx-driver.patch
|
|||||||
Patch0006: 0006-net-Only-access-network-devices-aft.patch
|
Patch0006: 0006-net-Only-access-network-devices-aft.patch
|
||||||
Patch0007: 0007-rpi-Add-identifier-for-the-new-RPi3.patch
|
Patch0007: 0007-rpi-Add-identifier-for-the-new-RPi3.patch
|
||||||
Patch0008: 0008-efi_loader-Fix-network-DP-with-DM_E.patch
|
Patch0008: 0008-efi_loader-Fix-network-DP-with-DM_E.patch
|
||||||
|
Patch0009: 0009-rpi-Allow-to-boot-without-serial.patch
|
||||||
|
Patch0010: 0010-mmc-use-core-clock-frequency-in-bcm.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
%if 0
|
%if 0
|
||||||
BuildRequires: arm-trusted-firmware-pine64
|
BuildRequires: arm-trusted-firmware-pine64
|
||||||
@ -106,6 +108,8 @@ This package contains documentation for U-Boot firmware.
|
|||||||
%patch0006 -p1
|
%patch0006 -p1
|
||||||
%patch0007 -p1
|
%patch0007 -p1
|
||||||
%patch0008 -p1
|
%patch0008 -p1
|
||||||
|
%patch0009 -p1
|
||||||
|
%patch0010 -p1
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
|
@ -1,3 +1,23 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 5 11:25:47 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
|
||||||
|
* Patches added:
|
||||||
|
0010-mmc-use-core-clock-frequency-in-bcm.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 5 09:54:56 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Fix rainbow screen on 32bit RPis (boo#1086757)
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
|
||||||
|
* Patches added:
|
||||||
|
0009-rpi-Allow-to-boot-without-serial.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Mar 15 23:44:18 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Add Xilinx ZynqMP ZCU 102 target
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Mar 15 16:34:22 UTC 2018 - agraf@suse.com
|
Thu Mar 15 16:34:22 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
@ -54,6 +54,8 @@ Patch0005: 0005-rpi3-Enable-lan78xx-driver.patch
|
|||||||
Patch0006: 0006-net-Only-access-network-devices-aft.patch
|
Patch0006: 0006-net-Only-access-network-devices-aft.patch
|
||||||
Patch0007: 0007-rpi-Add-identifier-for-the-new-RPi3.patch
|
Patch0007: 0007-rpi-Add-identifier-for-the-new-RPi3.patch
|
||||||
Patch0008: 0008-efi_loader-Fix-network-DP-with-DM_E.patch
|
Patch0008: 0008-efi_loader-Fix-network-DP-with-DM_E.patch
|
||||||
|
Patch0009: 0009-rpi-Allow-to-boot-without-serial.patch
|
||||||
|
Patch0010: 0010-mmc-use-core-clock-frequency-in-bcm.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
%if 0
|
%if 0
|
||||||
BuildRequires: arm-trusted-firmware-pine64
|
BuildRequires: arm-trusted-firmware-pine64
|
||||||
@ -106,6 +108,8 @@ This package contains documentation for U-Boot firmware.
|
|||||||
%patch0006 -p1
|
%patch0006 -p1
|
||||||
%patch0007 -p1
|
%patch0007 -p1
|
||||||
%patch0008 -p1
|
%patch0008 -p1
|
||||||
|
%patch0009 -p1
|
||||||
|
%patch0010 -p1
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
|
@ -1,3 +1,23 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 5 11:25:47 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
|
||||||
|
* Patches added:
|
||||||
|
0010-mmc-use-core-clock-frequency-in-bcm.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 5 09:54:56 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Fix rainbow screen on 32bit RPis (boo#1086757)
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
|
||||||
|
* Patches added:
|
||||||
|
0009-rpi-Allow-to-boot-without-serial.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Mar 15 23:44:18 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Add Xilinx ZynqMP ZCU 102 target
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Mar 15 16:34:22 UTC 2018 - agraf@suse.com
|
Thu Mar 15 16:34:22 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
@ -54,6 +54,8 @@ Patch0005: 0005-rpi3-Enable-lan78xx-driver.patch
|
|||||||
Patch0006: 0006-net-Only-access-network-devices-aft.patch
|
Patch0006: 0006-net-Only-access-network-devices-aft.patch
|
||||||
Patch0007: 0007-rpi-Add-identifier-for-the-new-RPi3.patch
|
Patch0007: 0007-rpi-Add-identifier-for-the-new-RPi3.patch
|
||||||
Patch0008: 0008-efi_loader-Fix-network-DP-with-DM_E.patch
|
Patch0008: 0008-efi_loader-Fix-network-DP-with-DM_E.patch
|
||||||
|
Patch0009: 0009-rpi-Allow-to-boot-without-serial.patch
|
||||||
|
Patch0010: 0010-mmc-use-core-clock-frequency-in-bcm.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
%if 0
|
%if 0
|
||||||
BuildRequires: arm-trusted-firmware-pine64
|
BuildRequires: arm-trusted-firmware-pine64
|
||||||
@ -106,6 +108,8 @@ This package contains documentation for U-Boot firmware.
|
|||||||
%patch0006 -p1
|
%patch0006 -p1
|
||||||
%patch0007 -p1
|
%patch0007 -p1
|
||||||
%patch0008 -p1
|
%patch0008 -p1
|
||||||
|
%patch0009 -p1
|
||||||
|
%patch0010 -p1
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
|
@ -1,3 +1,23 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 5 11:25:47 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
|
||||||
|
* Patches added:
|
||||||
|
0010-mmc-use-core-clock-frequency-in-bcm.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 5 09:54:56 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Fix rainbow screen on 32bit RPis (boo#1086757)
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
|
||||||
|
* Patches added:
|
||||||
|
0009-rpi-Allow-to-boot-without-serial.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Mar 15 23:44:18 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Add Xilinx ZynqMP ZCU 102 target
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Mar 15 16:34:22 UTC 2018 - agraf@suse.com
|
Thu Mar 15 16:34:22 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
@ -54,6 +54,8 @@ Patch0005: 0005-rpi3-Enable-lan78xx-driver.patch
|
|||||||
Patch0006: 0006-net-Only-access-network-devices-aft.patch
|
Patch0006: 0006-net-Only-access-network-devices-aft.patch
|
||||||
Patch0007: 0007-rpi-Add-identifier-for-the-new-RPi3.patch
|
Patch0007: 0007-rpi-Add-identifier-for-the-new-RPi3.patch
|
||||||
Patch0008: 0008-efi_loader-Fix-network-DP-with-DM_E.patch
|
Patch0008: 0008-efi_loader-Fix-network-DP-with-DM_E.patch
|
||||||
|
Patch0009: 0009-rpi-Allow-to-boot-without-serial.patch
|
||||||
|
Patch0010: 0010-mmc-use-core-clock-frequency-in-bcm.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
%if 0
|
%if 0
|
||||||
BuildRequires: arm-trusted-firmware-pine64
|
BuildRequires: arm-trusted-firmware-pine64
|
||||||
@ -106,6 +108,8 @@ This package contains documentation for U-Boot firmware.
|
|||||||
%patch0006 -p1
|
%patch0006 -p1
|
||||||
%patch0007 -p1
|
%patch0007 -p1
|
||||||
%patch0008 -p1
|
%patch0008 -p1
|
||||||
|
%patch0009 -p1
|
||||||
|
%patch0010 -p1
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
|
@ -1,3 +1,23 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 5 11:25:47 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
|
||||||
|
* Patches added:
|
||||||
|
0010-mmc-use-core-clock-frequency-in-bcm.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 5 09:54:56 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Fix rainbow screen on 32bit RPis (boo#1086757)
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
|
||||||
|
* Patches added:
|
||||||
|
0009-rpi-Allow-to-boot-without-serial.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Mar 15 23:44:18 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Add Xilinx ZynqMP ZCU 102 target
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Mar 15 16:34:22 UTC 2018 - agraf@suse.com
|
Thu Mar 15 16:34:22 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
@ -54,6 +54,8 @@ Patch0005: 0005-rpi3-Enable-lan78xx-driver.patch
|
|||||||
Patch0006: 0006-net-Only-access-network-devices-aft.patch
|
Patch0006: 0006-net-Only-access-network-devices-aft.patch
|
||||||
Patch0007: 0007-rpi-Add-identifier-for-the-new-RPi3.patch
|
Patch0007: 0007-rpi-Add-identifier-for-the-new-RPi3.patch
|
||||||
Patch0008: 0008-efi_loader-Fix-network-DP-with-DM_E.patch
|
Patch0008: 0008-efi_loader-Fix-network-DP-with-DM_E.patch
|
||||||
|
Patch0009: 0009-rpi-Allow-to-boot-without-serial.patch
|
||||||
|
Patch0010: 0010-mmc-use-core-clock-frequency-in-bcm.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
%if 0
|
%if 0
|
||||||
BuildRequires: arm-trusted-firmware-pine64
|
BuildRequires: arm-trusted-firmware-pine64
|
||||||
@ -106,6 +108,8 @@ This package contains documentation for U-Boot firmware.
|
|||||||
%patch0006 -p1
|
%patch0006 -p1
|
||||||
%patch0007 -p1
|
%patch0007 -p1
|
||||||
%patch0008 -p1
|
%patch0008 -p1
|
||||||
|
%patch0009 -p1
|
||||||
|
%patch0010 -p1
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
|
@ -1,3 +1,23 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 5 11:25:47 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
|
||||||
|
* Patches added:
|
||||||
|
0010-mmc-use-core-clock-frequency-in-bcm.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 5 09:54:56 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Fix rainbow screen on 32bit RPis (boo#1086757)
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
|
||||||
|
* Patches added:
|
||||||
|
0009-rpi-Allow-to-boot-without-serial.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Mar 15 23:44:18 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Add Xilinx ZynqMP ZCU 102 target
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Mar 15 16:34:22 UTC 2018 - agraf@suse.com
|
Thu Mar 15 16:34:22 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
@ -54,6 +54,8 @@ Patch0005: 0005-rpi3-Enable-lan78xx-driver.patch
|
|||||||
Patch0006: 0006-net-Only-access-network-devices-aft.patch
|
Patch0006: 0006-net-Only-access-network-devices-aft.patch
|
||||||
Patch0007: 0007-rpi-Add-identifier-for-the-new-RPi3.patch
|
Patch0007: 0007-rpi-Add-identifier-for-the-new-RPi3.patch
|
||||||
Patch0008: 0008-efi_loader-Fix-network-DP-with-DM_E.patch
|
Patch0008: 0008-efi_loader-Fix-network-DP-with-DM_E.patch
|
||||||
|
Patch0009: 0009-rpi-Allow-to-boot-without-serial.patch
|
||||||
|
Patch0010: 0010-mmc-use-core-clock-frequency-in-bcm.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
%if 0
|
%if 0
|
||||||
BuildRequires: arm-trusted-firmware-pine64
|
BuildRequires: arm-trusted-firmware-pine64
|
||||||
@ -106,6 +108,8 @@ This package contains documentation for U-Boot firmware.
|
|||||||
%patch0006 -p1
|
%patch0006 -p1
|
||||||
%patch0007 -p1
|
%patch0007 -p1
|
||||||
%patch0008 -p1
|
%patch0008 -p1
|
||||||
|
%patch0009 -p1
|
||||||
|
%patch0010 -p1
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
|
@ -1,3 +1,23 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 5 11:25:47 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
|
||||||
|
* Patches added:
|
||||||
|
0010-mmc-use-core-clock-frequency-in-bcm.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 5 09:54:56 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Fix rainbow screen on 32bit RPis (boo#1086757)
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
|
||||||
|
* Patches added:
|
||||||
|
0009-rpi-Allow-to-boot-without-serial.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Mar 15 23:44:18 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Add Xilinx ZynqMP ZCU 102 target
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Mar 15 16:34:22 UTC 2018 - agraf@suse.com
|
Thu Mar 15 16:34:22 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
@ -54,6 +54,8 @@ Patch0005: 0005-rpi3-Enable-lan78xx-driver.patch
|
|||||||
Patch0006: 0006-net-Only-access-network-devices-aft.patch
|
Patch0006: 0006-net-Only-access-network-devices-aft.patch
|
||||||
Patch0007: 0007-rpi-Add-identifier-for-the-new-RPi3.patch
|
Patch0007: 0007-rpi-Add-identifier-for-the-new-RPi3.patch
|
||||||
Patch0008: 0008-efi_loader-Fix-network-DP-with-DM_E.patch
|
Patch0008: 0008-efi_loader-Fix-network-DP-with-DM_E.patch
|
||||||
|
Patch0009: 0009-rpi-Allow-to-boot-without-serial.patch
|
||||||
|
Patch0010: 0010-mmc-use-core-clock-frequency-in-bcm.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
%if 0
|
%if 0
|
||||||
BuildRequires: arm-trusted-firmware-pine64
|
BuildRequires: arm-trusted-firmware-pine64
|
||||||
@ -106,6 +108,8 @@ This package contains documentation for U-Boot firmware.
|
|||||||
%patch0006 -p1
|
%patch0006 -p1
|
||||||
%patch0007 -p1
|
%patch0007 -p1
|
||||||
%patch0008 -p1
|
%patch0008 -p1
|
||||||
|
%patch0009 -p1
|
||||||
|
%patch0010 -p1
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
|
@ -1,3 +1,23 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 5 11:25:47 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
|
||||||
|
* Patches added:
|
||||||
|
0010-mmc-use-core-clock-frequency-in-bcm.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 5 09:54:56 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Fix rainbow screen on 32bit RPis (boo#1086757)
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
|
||||||
|
* Patches added:
|
||||||
|
0009-rpi-Allow-to-boot-without-serial.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Mar 15 23:44:18 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
- Add Xilinx ZynqMP ZCU 102 target
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Mar 15 16:34:22 UTC 2018 - agraf@suse.com
|
Thu Mar 15 16:34:22 UTC 2018 - agraf@suse.com
|
||||||
|
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user