Accepting request 587439 from hardware👢staging

- Updated to 2018.03
- Updated to 2018.03-rc4
- Updated to 2018.03-rc3
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
* Patches added:
  0004-rpi-Use-firmware-provided-device-tr.patch
- Updated to 2018.03-rc2
- Updated to 2018.03-rc1
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
* Patches dropped:
  0004-Fix-MMC1-external-SD-slot-on-Samsun.patch (Fixed upstream)

OBS-URL: https://build.opensuse.org/request/show/587439
OBS-URL: https://build.opensuse.org/package/show/hardware:boot/u-boot?expand=0&rev=4
This commit is contained in:
Guillaume GARDET 2018-03-15 12:26:00 +00:00 committed by Git OBS Bridge
parent 6208842b7a
commit 93adba56bb
139 changed files with 2551 additions and 227 deletions

View File

@ -1,4 +1,4 @@
From 39b8c870cb0fe26a155f667e9f3244bcb9ad4370 Mon Sep 17 00:00:00 2001
From f9856b798578670b682889a05a9e4df078a53dd6 Mon Sep 17 00:00:00 2001
From: Alexander Graf <agraf@suse.de>
Date: Wed, 13 Apr 2016 13:44:29 +0200
Subject: [PATCH] XXX openSUSE XXX: Load dtb from partition 2
@ -16,10 +16,10 @@ Signed-off-by: Alexander Graf <agraf@suse.de>
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/include/config_distro_bootcmd.h b/include/config_distro_bootcmd.h
index 5c469a23fa..ee286f04ca 100644
index f567cebd381..96b05aeeed4 100644
--- a/include/config_distro_bootcmd.h
+++ b/include/config_distro_bootcmd.h
@@ -130,16 +130,16 @@
@@ -135,16 +135,16 @@
"fi\0" \
\
"load_efi_dtb=" \

View File

@ -1,4 +1,4 @@
From 32137ec9752a551769d465a214b1e6a3940365cb Mon Sep 17 00:00:00 2001
From ac419f82c82becdd6ee09bd3c5574a181deff939 Mon Sep 17 00:00:00 2001
From: Alexander Graf <agraf@suse.de>
Date: Mon, 2 May 2016 23:25:07 +0200
Subject: [PATCH] Revert "Revert "omap3: Use raw SPL by default for mmc1""
@ -9,7 +9,7 @@ This reverts commit 7fa75d0ac5502db813d109c1df7bd0da34688685.
1 file changed, 2 deletions(-)
diff --git a/arch/arm/mach-omap2/boot-common.c b/arch/arm/mach-omap2/boot-common.c
index 26245aa169..15a78b8cf7 100644
index db68a9d7e21..d246ebc12d3 100644
--- a/arch/arm/mach-omap2/boot-common.c
+++ b/arch/arm/mach-omap2/boot-common.c
@@ -134,8 +134,6 @@ void save_omap_boot_params(void)

View File

@ -1,4 +1,4 @@
From 56a11c1430c4057f207cacad283eece724e7f587 Mon Sep 17 00:00:00 2001
From f45226d20a4bcdeedc3226f272ecd07ed9fa743c Mon Sep 17 00:00:00 2001
From: Guillaume GARDET <guillaume.gardet@free.fr>
Date: Thu, 22 Jun 2017 10:04:06 +0200
Subject: [PATCH] Revert 'rockchip: mkimage: remove placeholder functions from
@ -18,7 +18,7 @@ Cc: Tom Rini <trini@konsulko.com>
1 file changed, 18 insertions(+), 3 deletions(-)
diff --git a/tools/rkimage.c b/tools/rkimage.c
index 9880b1569f..44d098c775 100644
index 9880b1569f1..44d098c7757 100644
--- a/tools/rkimage.c
+++ b/tools/rkimage.c
@@ -13,6 +13,16 @@

View File

@ -1,23 +0,0 @@
From f25b8843eca3b018aacef8ba266d946bb158d7c9 Mon Sep 17 00:00:00 2001
From: Guillaume GARDET <guillaume.gardet@free.fr>
Date: Thu, 16 Nov 2017 13:20:12 +0100
Subject: [PATCH] Fix MMC1 (external SD slot) on Samsung Snow (Chromebook ARM)
---
drivers/mmc/dw_mmc.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/drivers/mmc/dw_mmc.c b/drivers/mmc/dw_mmc.c
index 23f642980b..a6a0934eef 100644
--- a/drivers/mmc/dw_mmc.c
+++ b/drivers/mmc/dw_mmc.c
@@ -508,7 +508,8 @@ void dwmci_setup_cfg(struct mmc_config *cfg, struct dwmci_host *host,
cfg->host_caps |= MMC_MODE_4BIT;
cfg->host_caps &= ~MMC_MODE_8BIT;
}
- cfg->host_caps |= MMC_MODE_HS | MMC_MODE_HS_52MHz;
+ /* MMC_MODE_HS_52MHz is broken (at least) on Samsung Snow, so disbale it for now */
+ cfg->host_caps |= MMC_MODE_HS;
cfg->b_max = CONFIG_SYS_MMC_MAX_BLK_COUNT;
}

View File

@ -0,0 +1,107 @@
From 9bdcbebe4b666a372d86a9832db4aca036fa6423 Mon Sep 17 00:00:00 2001
From: Alexander Graf <agraf@suse.de>
Date: Wed, 21 Feb 2018 17:41:13 +0100
Subject: [PATCH] rpi: Use firmware provided device tree
Currently the firmware generates a device tree for us that we could
just use to adjust ourselves. We then on boot throw that away and
use our own built-in device tree to configure device access.
This is bad for a multitude of reasons. For starters, it breaks
overlay support in config.txt, confusing users. Much worse however
is that we are stuck with individual U-Boot builds per board.
The firmware can easily give us the right DT depending on the
target board and revision though.
So let's use the firmware provided device tree instead. That way
U-Boot as well as payloads loaded by it can automatically adapt
to variants of RPi hardware.
Signed-off-by: Alexander Graf <agraf@suse.de>
---
configs/rpi_0_w_defconfig | 2 +-
configs/rpi_2_defconfig | 2 +-
configs/rpi_3_32b_defconfig | 2 +-
configs/rpi_3_defconfig | 2 +-
configs/rpi_defconfig | 2 +-
include/configs/rpi.h | 2 +-
6 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/configs/rpi_0_w_defconfig b/configs/rpi_0_w_defconfig
index 04717d5e503..3b7e4f7ad9f 100644
--- a/configs/rpi_0_w_defconfig
+++ b/configs/rpi_0_w_defconfig
@@ -12,7 +12,7 @@ CONFIG_SYS_PROMPT="U-Boot> "
CONFIG_CMD_GPIO=y
CONFIG_CMD_MMC=y
CONFIG_CMD_USB=y
-CONFIG_OF_EMBED=y
+CONFIG_OF_BOARD=y
CONFIG_ENV_FAT_INTERFACE="mmc"
CONFIG_ENV_FAT_DEVICE_AND_PART="0:1"
CONFIG_DM_KEYBOARD=y
diff --git a/configs/rpi_2_defconfig b/configs/rpi_2_defconfig
index f8203c9d474..de9c0e19372 100644
--- a/configs/rpi_2_defconfig
+++ b/configs/rpi_2_defconfig
@@ -12,7 +12,7 @@ CONFIG_SYS_PROMPT="U-Boot> "
CONFIG_CMD_GPIO=y
CONFIG_CMD_MMC=y
CONFIG_CMD_USB=y
-CONFIG_OF_EMBED=y
+CONFIG_OF_BOARD=y
CONFIG_ENV_FAT_INTERFACE="mmc"
CONFIG_ENV_FAT_DEVICE_AND_PART="0:1"
CONFIG_DM_KEYBOARD=y
diff --git a/configs/rpi_3_32b_defconfig b/configs/rpi_3_32b_defconfig
index 317fc28f711..2bbe6873598 100644
--- a/configs/rpi_3_32b_defconfig
+++ b/configs/rpi_3_32b_defconfig
@@ -13,7 +13,7 @@ CONFIG_SYS_PROMPT="U-Boot> "
CONFIG_CMD_GPIO=y
CONFIG_CMD_MMC=y
CONFIG_CMD_USB=y
-CONFIG_OF_EMBED=y
+CONFIG_OF_BOARD=y
CONFIG_ENV_FAT_INTERFACE="mmc"
CONFIG_ENV_FAT_DEVICE_AND_PART="0:1"
CONFIG_DM_KEYBOARD=y
diff --git a/configs/rpi_3_defconfig b/configs/rpi_3_defconfig
index 0f3a54ec9a4..ca55f8dc661 100644
--- a/configs/rpi_3_defconfig
+++ b/configs/rpi_3_defconfig
@@ -13,7 +13,7 @@ CONFIG_SYS_PROMPT="U-Boot> "
CONFIG_CMD_GPIO=y
CONFIG_CMD_MMC=y
CONFIG_CMD_USB=y
-CONFIG_OF_EMBED=y
+CONFIG_OF_BOARD=y
CONFIG_ENV_FAT_INTERFACE="mmc"
CONFIG_ENV_FAT_DEVICE_AND_PART="0:1"
CONFIG_DM_KEYBOARD=y
diff --git a/configs/rpi_defconfig b/configs/rpi_defconfig
index d13d3d3e2e1..d75032c4206 100644
--- a/configs/rpi_defconfig
+++ b/configs/rpi_defconfig
@@ -12,7 +12,7 @@ CONFIG_SYS_PROMPT="U-Boot> "
CONFIG_CMD_GPIO=y
CONFIG_CMD_MMC=y
CONFIG_CMD_USB=y
-CONFIG_OF_EMBED=y
+CONFIG_OF_BOARD=y
CONFIG_ENV_FAT_INTERFACE="mmc"
CONFIG_ENV_FAT_DEVICE_AND_PART="0:1"
CONFIG_DM_KEYBOARD=y
diff --git a/include/configs/rpi.h b/include/configs/rpi.h
index 17cdecd1c34..bea4ab1b9a9 100644
--- a/include/configs/rpi.h
+++ b/include/configs/rpi.h
@@ -125,7 +125,7 @@
#define ENV_MEM_LAYOUT_SETTINGS \
"fdt_high=ffffffff\0" \
"initrd_high=ffffffff\0" \
- "fdt_addr_r=0x00000100\0" \
+ "fdt_addr_r=0x01f00000\0" \
"pxefile_addr_r=0x00100000\0" \
"kernel_addr_r=0x01000000\0" \
"scriptaddr=0x02000000\0" \

View File

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

Binary file not shown.

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

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

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

Binary file not shown.

View File

@ -1,3 +1,38 @@
-------------------------------------------------------------------
Wed Mar 14 15:13:44 UTC 2018 - guillaume.gardet@opensuse.org
- Updated to 2018.03
-------------------------------------------------------------------
Tue Mar 6 13:26:21 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc4
-------------------------------------------------------------------
Thu Feb 22 08:43:30 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc3
-------------------------------------------------------------------
Wed Feb 21 16:48:20 UTC 2018 - agraf@suse.com
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
* Patches added:
0004-rpi-Use-firmware-provided-device-tr.patch
-------------------------------------------------------------------
Tue Feb 13 12:26:59 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc2
-------------------------------------------------------------------
Tue Jan 30 07:48:10 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc1
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
* Patches dropped:
0004-Fix-MMC1-external-SD-slot-on-Samsun.patch (Fixed upstream)
-------------------------------------------------------------------
Wed Jan 17 17:11:04 UTC 2018 - afaerber@suse.de

View File

@ -32,10 +32,10 @@
%endif
# archive_version differs from version for RC version only
%define archive_version 2018.01
%define archive_version 2018.03
Name: u-boot-a10-olinuxino-lime
Version: 2018.01
Version: 2018.03
Release: 0
Summary: The U-Boot firmware for the a10-olinuxino-lime platform
License: GPL-2.0
@ -49,7 +49,7 @@ Source300: u-boot-rpmlintrc
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
Patch0003: 0003-Revert-rockchip-mkimage-remove-plac.patch
Patch0004: 0004-Fix-MMC1-external-SD-slot-on-Samsun.patch
Patch0004: 0004-rpi-Use-firmware-provided-device-tr.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if 0
BuildRequires: arm-trusted-firmware-pine64

View File

@ -1,3 +1,38 @@
-------------------------------------------------------------------
Wed Mar 14 15:13:44 UTC 2018 - guillaume.gardet@opensuse.org
- Updated to 2018.03
-------------------------------------------------------------------
Tue Mar 6 13:26:21 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc4
-------------------------------------------------------------------
Thu Feb 22 08:43:30 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc3
-------------------------------------------------------------------
Wed Feb 21 16:48:20 UTC 2018 - agraf@suse.com
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
* Patches added:
0004-rpi-Use-firmware-provided-device-tr.patch
-------------------------------------------------------------------
Tue Feb 13 12:26:59 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc2
-------------------------------------------------------------------
Tue Jan 30 07:48:10 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc1
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
* Patches dropped:
0004-Fix-MMC1-external-SD-slot-on-Samsun.patch (Fixed upstream)
-------------------------------------------------------------------
Wed Jan 17 17:11:04 UTC 2018 - afaerber@suse.de

View File

@ -32,10 +32,10 @@
%endif
# archive_version differs from version for RC version only
%define archive_version 2018.01
%define archive_version 2018.03
Name: u-boot-a13-olinuxino
Version: 2018.01
Version: 2018.03
Release: 0
Summary: The U-Boot firmware for the a13-olinuxino platform
License: GPL-2.0
@ -49,7 +49,7 @@ Source300: u-boot-rpmlintrc
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
Patch0003: 0003-Revert-rockchip-mkimage-remove-plac.patch
Patch0004: 0004-Fix-MMC1-external-SD-slot-on-Samsun.patch
Patch0004: 0004-rpi-Use-firmware-provided-device-tr.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if 0
BuildRequires: arm-trusted-firmware-pine64

View File

@ -1,3 +1,38 @@
-------------------------------------------------------------------
Wed Mar 14 15:13:44 UTC 2018 - guillaume.gardet@opensuse.org
- Updated to 2018.03
-------------------------------------------------------------------
Tue Mar 6 13:26:21 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc4
-------------------------------------------------------------------
Thu Feb 22 08:43:30 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc3
-------------------------------------------------------------------
Wed Feb 21 16:48:20 UTC 2018 - agraf@suse.com
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
* Patches added:
0004-rpi-Use-firmware-provided-device-tr.patch
-------------------------------------------------------------------
Tue Feb 13 12:26:59 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc2
-------------------------------------------------------------------
Tue Jan 30 07:48:10 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc1
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
* Patches dropped:
0004-Fix-MMC1-external-SD-slot-on-Samsun.patch (Fixed upstream)
-------------------------------------------------------------------
Wed Jan 17 17:11:04 UTC 2018 - afaerber@suse.de

View File

@ -32,10 +32,10 @@
%endif
# archive_version differs from version for RC version only
%define archive_version 2018.01
%define archive_version 2018.03
Name: u-boot-a13-olinuxinom
Version: 2018.01
Version: 2018.03
Release: 0
Summary: The U-Boot firmware for the a13-olinuxinom platform
License: GPL-2.0
@ -49,7 +49,7 @@ Source300: u-boot-rpmlintrc
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
Patch0003: 0003-Revert-rockchip-mkimage-remove-plac.patch
Patch0004: 0004-Fix-MMC1-external-SD-slot-on-Samsun.patch
Patch0004: 0004-rpi-Use-firmware-provided-device-tr.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if 0
BuildRequires: arm-trusted-firmware-pine64

View File

@ -1,3 +1,38 @@
-------------------------------------------------------------------
Wed Mar 14 15:13:44 UTC 2018 - guillaume.gardet@opensuse.org
- Updated to 2018.03
-------------------------------------------------------------------
Tue Mar 6 13:26:21 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc4
-------------------------------------------------------------------
Thu Feb 22 08:43:30 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc3
-------------------------------------------------------------------
Wed Feb 21 16:48:20 UTC 2018 - agraf@suse.com
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
* Patches added:
0004-rpi-Use-firmware-provided-device-tr.patch
-------------------------------------------------------------------
Tue Feb 13 12:26:59 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc2
-------------------------------------------------------------------
Tue Jan 30 07:48:10 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc1
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
* Patches dropped:
0004-Fix-MMC1-external-SD-slot-on-Samsun.patch (Fixed upstream)
-------------------------------------------------------------------
Wed Jan 17 17:11:04 UTC 2018 - afaerber@suse.de

View File

@ -32,10 +32,10 @@
%endif
# archive_version differs from version for RC version only
%define archive_version 2018.01
%define archive_version 2018.03
Name: u-boot-a20-olinuxino-lime
Version: 2018.01
Version: 2018.03
Release: 0
Summary: The U-Boot firmware for the a20-olinuxino-lime platform
License: GPL-2.0
@ -49,7 +49,7 @@ Source300: u-boot-rpmlintrc
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
Patch0003: 0003-Revert-rockchip-mkimage-remove-plac.patch
Patch0004: 0004-Fix-MMC1-external-SD-slot-on-Samsun.patch
Patch0004: 0004-rpi-Use-firmware-provided-device-tr.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if 0
BuildRequires: arm-trusted-firmware-pine64

View File

@ -1,3 +1,38 @@
-------------------------------------------------------------------
Wed Mar 14 15:13:44 UTC 2018 - guillaume.gardet@opensuse.org
- Updated to 2018.03
-------------------------------------------------------------------
Tue Mar 6 13:26:21 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc4
-------------------------------------------------------------------
Thu Feb 22 08:43:30 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc3
-------------------------------------------------------------------
Wed Feb 21 16:48:20 UTC 2018 - agraf@suse.com
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
* Patches added:
0004-rpi-Use-firmware-provided-device-tr.patch
-------------------------------------------------------------------
Tue Feb 13 12:26:59 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc2
-------------------------------------------------------------------
Tue Jan 30 07:48:10 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc1
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
* Patches dropped:
0004-Fix-MMC1-external-SD-slot-on-Samsun.patch (Fixed upstream)
-------------------------------------------------------------------
Wed Jan 17 17:11:04 UTC 2018 - afaerber@suse.de

View File

@ -32,10 +32,10 @@
%endif
# archive_version differs from version for RC version only
%define archive_version 2018.01
%define archive_version 2018.03
Name: u-boot-a20-olinuxino-lime2
Version: 2018.01
Version: 2018.03
Release: 0
Summary: The U-Boot firmware for the a20-olinuxino-lime2 platform
License: GPL-2.0
@ -49,7 +49,7 @@ Source300: u-boot-rpmlintrc
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
Patch0003: 0003-Revert-rockchip-mkimage-remove-plac.patch
Patch0004: 0004-Fix-MMC1-external-SD-slot-on-Samsun.patch
Patch0004: 0004-rpi-Use-firmware-provided-device-tr.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if 0
BuildRequires: arm-trusted-firmware-pine64

View File

@ -1,3 +1,38 @@
-------------------------------------------------------------------
Wed Mar 14 15:13:44 UTC 2018 - guillaume.gardet@opensuse.org
- Updated to 2018.03
-------------------------------------------------------------------
Tue Mar 6 13:26:21 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc4
-------------------------------------------------------------------
Thu Feb 22 08:43:30 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc3
-------------------------------------------------------------------
Wed Feb 21 16:48:20 UTC 2018 - agraf@suse.com
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
* Patches added:
0004-rpi-Use-firmware-provided-device-tr.patch
-------------------------------------------------------------------
Tue Feb 13 12:26:59 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc2
-------------------------------------------------------------------
Tue Jan 30 07:48:10 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc1
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
* Patches dropped:
0004-Fix-MMC1-external-SD-slot-on-Samsun.patch (Fixed upstream)
-------------------------------------------------------------------
Wed Jan 17 17:11:04 UTC 2018 - afaerber@suse.de

View File

@ -32,10 +32,10 @@
%endif
# archive_version differs from version for RC version only
%define archive_version 2018.01
%define archive_version 2018.03
Name: u-boot-a20-olinuxinomicro
Version: 2018.01
Version: 2018.03
Release: 0
Summary: The U-Boot firmware for the a20-olinuxinomicro platform
License: GPL-2.0
@ -49,7 +49,7 @@ Source300: u-boot-rpmlintrc
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
Patch0003: 0003-Revert-rockchip-mkimage-remove-plac.patch
Patch0004: 0004-Fix-MMC1-external-SD-slot-on-Samsun.patch
Patch0004: 0004-rpi-Use-firmware-provided-device-tr.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if 0
BuildRequires: arm-trusted-firmware-pine64

View File

@ -1,3 +1,38 @@
-------------------------------------------------------------------
Wed Mar 14 15:13:44 UTC 2018 - guillaume.gardet@opensuse.org
- Updated to 2018.03
-------------------------------------------------------------------
Tue Mar 6 13:26:21 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc4
-------------------------------------------------------------------
Thu Feb 22 08:43:30 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc3
-------------------------------------------------------------------
Wed Feb 21 16:48:20 UTC 2018 - agraf@suse.com
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
* Patches added:
0004-rpi-Use-firmware-provided-device-tr.patch
-------------------------------------------------------------------
Tue Feb 13 12:26:59 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc2
-------------------------------------------------------------------
Tue Jan 30 07:48:10 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc1
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
* Patches dropped:
0004-Fix-MMC1-external-SD-slot-on-Samsun.patch (Fixed upstream)
-------------------------------------------------------------------
Wed Jan 17 17:11:04 UTC 2018 - afaerber@suse.de

View File

@ -32,10 +32,10 @@
%endif
# archive_version differs from version for RC version only
%define archive_version 2018.01
%define archive_version 2018.03
Name: u-boot-am335xboneblack
Version: 2018.01
Version: 2018.03
Release: 0
Summary: The U-Boot firmware for the am335xboneblack platform
License: GPL-2.0
@ -49,7 +49,7 @@ Source300: u-boot-rpmlintrc
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
Patch0003: 0003-Revert-rockchip-mkimage-remove-plac.patch
Patch0004: 0004-Fix-MMC1-external-SD-slot-on-Samsun.patch
Patch0004: 0004-rpi-Use-firmware-provided-device-tr.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if 0
BuildRequires: arm-trusted-firmware-pine64

View File

@ -1,3 +1,38 @@
-------------------------------------------------------------------
Wed Mar 14 15:13:44 UTC 2018 - guillaume.gardet@opensuse.org
- Updated to 2018.03
-------------------------------------------------------------------
Tue Mar 6 13:26:21 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc4
-------------------------------------------------------------------
Thu Feb 22 08:43:30 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc3
-------------------------------------------------------------------
Wed Feb 21 16:48:20 UTC 2018 - agraf@suse.com
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
* Patches added:
0004-rpi-Use-firmware-provided-device-tr.patch
-------------------------------------------------------------------
Tue Feb 13 12:26:59 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc2
-------------------------------------------------------------------
Tue Jan 30 07:48:10 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc1
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
* Patches dropped:
0004-Fix-MMC1-external-SD-slot-on-Samsun.patch (Fixed upstream)
-------------------------------------------------------------------
Wed Jan 17 17:11:04 UTC 2018 - afaerber@suse.de

View File

@ -32,10 +32,10 @@
%endif
# archive_version differs from version for RC version only
%define archive_version 2018.01
%define archive_version 2018.03
Name: u-boot-am335xevm
Version: 2018.01
Version: 2018.03
Release: 0
Summary: The U-Boot firmware for the am335xevm platform
License: GPL-2.0
@ -49,7 +49,7 @@ Source300: u-boot-rpmlintrc
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
Patch0003: 0003-Revert-rockchip-mkimage-remove-plac.patch
Patch0004: 0004-Fix-MMC1-external-SD-slot-on-Samsun.patch
Patch0004: 0004-rpi-Use-firmware-provided-device-tr.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if 0
BuildRequires: arm-trusted-firmware-pine64

View File

@ -1,3 +1,38 @@
-------------------------------------------------------------------
Wed Mar 14 15:13:44 UTC 2018 - guillaume.gardet@opensuse.org
- Updated to 2018.03
-------------------------------------------------------------------
Tue Mar 6 13:26:21 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc4
-------------------------------------------------------------------
Thu Feb 22 08:43:30 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc3
-------------------------------------------------------------------
Wed Feb 21 16:48:20 UTC 2018 - agraf@suse.com
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
* Patches added:
0004-rpi-Use-firmware-provided-device-tr.patch
-------------------------------------------------------------------
Tue Feb 13 12:26:59 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc2
-------------------------------------------------------------------
Tue Jan 30 07:48:10 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc1
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
* Patches dropped:
0004-Fix-MMC1-external-SD-slot-on-Samsun.patch (Fixed upstream)
-------------------------------------------------------------------
Wed Jan 17 17:11:04 UTC 2018 - afaerber@suse.de

View File

@ -32,10 +32,10 @@
%endif
# archive_version differs from version for RC version only
%define archive_version 2018.01
%define archive_version 2018.03
Name: u-boot-am57xxevm
Version: 2018.01
Version: 2018.03
Release: 0
Summary: The U-Boot firmware for the am57xxevm platform
License: GPL-2.0
@ -49,7 +49,7 @@ Source300: u-boot-rpmlintrc
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
Patch0003: 0003-Revert-rockchip-mkimage-remove-plac.patch
Patch0004: 0004-Fix-MMC1-external-SD-slot-on-Samsun.patch
Patch0004: 0004-rpi-Use-firmware-provided-device-tr.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if 0
BuildRequires: arm-trusted-firmware-pine64

View File

@ -1,3 +1,38 @@
-------------------------------------------------------------------
Wed Mar 14 15:13:44 UTC 2018 - guillaume.gardet@opensuse.org
- Updated to 2018.03
-------------------------------------------------------------------
Tue Mar 6 13:26:21 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc4
-------------------------------------------------------------------
Thu Feb 22 08:43:30 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc3
-------------------------------------------------------------------
Wed Feb 21 16:48:20 UTC 2018 - agraf@suse.com
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
* Patches added:
0004-rpi-Use-firmware-provided-device-tr.patch
-------------------------------------------------------------------
Tue Feb 13 12:26:59 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc2
-------------------------------------------------------------------
Tue Jan 30 07:48:10 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc1
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
* Patches dropped:
0004-Fix-MMC1-external-SD-slot-on-Samsun.patch (Fixed upstream)
-------------------------------------------------------------------
Wed Jan 17 17:11:04 UTC 2018 - afaerber@suse.de

View File

@ -32,10 +32,10 @@
%endif
# archive_version differs from version for RC version only
%define archive_version 2018.01
%define archive_version 2018.03
Name: u-boot-arndale
Version: 2018.01
Version: 2018.03
Release: 0
Summary: The U-Boot firmware for the arndale platform
License: GPL-2.0
@ -49,7 +49,7 @@ Source300: u-boot-rpmlintrc
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
Patch0003: 0003-Revert-rockchip-mkimage-remove-plac.patch
Patch0004: 0004-Fix-MMC1-external-SD-slot-on-Samsun.patch
Patch0004: 0004-rpi-Use-firmware-provided-device-tr.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if 0
BuildRequires: arm-trusted-firmware-pine64

View File

@ -1,3 +1,38 @@
-------------------------------------------------------------------
Wed Mar 14 15:13:44 UTC 2018 - guillaume.gardet@opensuse.org
- Updated to 2018.03
-------------------------------------------------------------------
Tue Mar 6 13:26:21 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc4
-------------------------------------------------------------------
Thu Feb 22 08:43:30 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc3
-------------------------------------------------------------------
Wed Feb 21 16:48:20 UTC 2018 - agraf@suse.com
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
* Patches added:
0004-rpi-Use-firmware-provided-device-tr.patch
-------------------------------------------------------------------
Tue Feb 13 12:26:59 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc2
-------------------------------------------------------------------
Tue Jan 30 07:48:10 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc1
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
* Patches dropped:
0004-Fix-MMC1-external-SD-slot-on-Samsun.patch (Fixed upstream)
-------------------------------------------------------------------
Wed Jan 17 17:11:04 UTC 2018 - afaerber@suse.de

View File

@ -32,10 +32,10 @@
%endif
# archive_version differs from version for RC version only
%define archive_version 2018.01
%define archive_version 2018.03
Name: u-boot-bananapi
Version: 2018.01
Version: 2018.03
Release: 0
Summary: The U-Boot firmware for the bananapi platform
License: GPL-2.0
@ -49,7 +49,7 @@ Source300: u-boot-rpmlintrc
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
Patch0003: 0003-Revert-rockchip-mkimage-remove-plac.patch
Patch0004: 0004-Fix-MMC1-external-SD-slot-on-Samsun.patch
Patch0004: 0004-rpi-Use-firmware-provided-device-tr.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if 0
BuildRequires: arm-trusted-firmware-pine64

View File

@ -1,3 +1,38 @@
-------------------------------------------------------------------
Wed Mar 14 15:13:44 UTC 2018 - guillaume.gardet@opensuse.org
- Updated to 2018.03
-------------------------------------------------------------------
Tue Mar 6 13:26:21 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc4
-------------------------------------------------------------------
Thu Feb 22 08:43:30 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc3
-------------------------------------------------------------------
Wed Feb 21 16:48:20 UTC 2018 - agraf@suse.com
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
* Patches added:
0004-rpi-Use-firmware-provided-device-tr.patch
-------------------------------------------------------------------
Tue Feb 13 12:26:59 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc2
-------------------------------------------------------------------
Tue Jan 30 07:48:10 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc1
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
* Patches dropped:
0004-Fix-MMC1-external-SD-slot-on-Samsun.patch (Fixed upstream)
-------------------------------------------------------------------
Wed Jan 17 17:11:04 UTC 2018 - afaerber@suse.de

View File

@ -32,10 +32,10 @@
%endif
# archive_version differs from version for RC version only
%define archive_version 2018.01
%define archive_version 2018.03
Name: u-boot-clearfog
Version: 2018.01
Version: 2018.03
Release: 0
Summary: The U-Boot firmware for the clearfog platform
License: GPL-2.0
@ -49,7 +49,7 @@ Source300: u-boot-rpmlintrc
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
Patch0003: 0003-Revert-rockchip-mkimage-remove-plac.patch
Patch0004: 0004-Fix-MMC1-external-SD-slot-on-Samsun.patch
Patch0004: 0004-rpi-Use-firmware-provided-device-tr.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if 0
BuildRequires: arm-trusted-firmware-pine64

View File

@ -1,3 +1,38 @@
-------------------------------------------------------------------
Wed Mar 14 15:13:44 UTC 2018 - guillaume.gardet@opensuse.org
- Updated to 2018.03
-------------------------------------------------------------------
Tue Mar 6 13:26:21 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc4
-------------------------------------------------------------------
Thu Feb 22 08:43:30 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc3
-------------------------------------------------------------------
Wed Feb 21 16:48:20 UTC 2018 - agraf@suse.com
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
* Patches added:
0004-rpi-Use-firmware-provided-device-tr.patch
-------------------------------------------------------------------
Tue Feb 13 12:26:59 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc2
-------------------------------------------------------------------
Tue Jan 30 07:48:10 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc1
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
* Patches dropped:
0004-Fix-MMC1-external-SD-slot-on-Samsun.patch (Fixed upstream)
-------------------------------------------------------------------
Wed Jan 17 17:11:04 UTC 2018 - afaerber@suse.de

View File

@ -32,10 +32,10 @@
%endif
# archive_version differs from version for RC version only
%define archive_version 2018.01
%define archive_version 2018.03
Name: u-boot-colibrit20
Version: 2018.01
Version: 2018.03
Release: 0
Summary: The U-Boot firmware for the colibrit20 platform
License: GPL-2.0
@ -49,7 +49,7 @@ Source300: u-boot-rpmlintrc
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
Patch0003: 0003-Revert-rockchip-mkimage-remove-plac.patch
Patch0004: 0004-Fix-MMC1-external-SD-slot-on-Samsun.patch
Patch0004: 0004-rpi-Use-firmware-provided-device-tr.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if 0
BuildRequires: arm-trusted-firmware-pine64

View File

@ -1,3 +1,38 @@
-------------------------------------------------------------------
Wed Mar 14 15:13:44 UTC 2018 - guillaume.gardet@opensuse.org
- Updated to 2018.03
-------------------------------------------------------------------
Tue Mar 6 13:26:21 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc4
-------------------------------------------------------------------
Thu Feb 22 08:43:30 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc3
-------------------------------------------------------------------
Wed Feb 21 16:48:20 UTC 2018 - agraf@suse.com
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
* Patches added:
0004-rpi-Use-firmware-provided-device-tr.patch
-------------------------------------------------------------------
Tue Feb 13 12:26:59 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc2
-------------------------------------------------------------------
Tue Jan 30 07:48:10 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc1
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
* Patches dropped:
0004-Fix-MMC1-external-SD-slot-on-Samsun.patch (Fixed upstream)
-------------------------------------------------------------------
Wed Jan 17 17:11:04 UTC 2018 - afaerber@suse.de

View File

@ -32,10 +32,10 @@
%endif
# archive_version differs from version for RC version only
%define archive_version 2018.01
%define archive_version 2018.03
Name: u-boot-cubieboard
Version: 2018.01
Version: 2018.03
Release: 0
Summary: The U-Boot firmware for the cubieboard platform
License: GPL-2.0
@ -49,7 +49,7 @@ Source300: u-boot-rpmlintrc
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
Patch0003: 0003-Revert-rockchip-mkimage-remove-plac.patch
Patch0004: 0004-Fix-MMC1-external-SD-slot-on-Samsun.patch
Patch0004: 0004-rpi-Use-firmware-provided-device-tr.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if 0
BuildRequires: arm-trusted-firmware-pine64

View File

@ -1,3 +1,38 @@
-------------------------------------------------------------------
Wed Mar 14 15:13:44 UTC 2018 - guillaume.gardet@opensuse.org
- Updated to 2018.03
-------------------------------------------------------------------
Tue Mar 6 13:26:21 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc4
-------------------------------------------------------------------
Thu Feb 22 08:43:30 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc3
-------------------------------------------------------------------
Wed Feb 21 16:48:20 UTC 2018 - agraf@suse.com
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
* Patches added:
0004-rpi-Use-firmware-provided-device-tr.patch
-------------------------------------------------------------------
Tue Feb 13 12:26:59 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc2
-------------------------------------------------------------------
Tue Jan 30 07:48:10 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc1
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
* Patches dropped:
0004-Fix-MMC1-external-SD-slot-on-Samsun.patch (Fixed upstream)
-------------------------------------------------------------------
Wed Jan 17 17:11:04 UTC 2018 - afaerber@suse.de

View File

@ -32,10 +32,10 @@
%endif
# archive_version differs from version for RC version only
%define archive_version 2018.01
%define archive_version 2018.03
Name: u-boot-cubieboard2
Version: 2018.01
Version: 2018.03
Release: 0
Summary: The U-Boot firmware for the cubieboard2 platform
License: GPL-2.0
@ -49,7 +49,7 @@ Source300: u-boot-rpmlintrc
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
Patch0003: 0003-Revert-rockchip-mkimage-remove-plac.patch
Patch0004: 0004-Fix-MMC1-external-SD-slot-on-Samsun.patch
Patch0004: 0004-rpi-Use-firmware-provided-device-tr.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if 0
BuildRequires: arm-trusted-firmware-pine64

View File

@ -1,3 +1,38 @@
-------------------------------------------------------------------
Wed Mar 14 15:13:44 UTC 2018 - guillaume.gardet@opensuse.org
- Updated to 2018.03
-------------------------------------------------------------------
Tue Mar 6 13:26:21 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc4
-------------------------------------------------------------------
Thu Feb 22 08:43:30 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc3
-------------------------------------------------------------------
Wed Feb 21 16:48:20 UTC 2018 - agraf@suse.com
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
* Patches added:
0004-rpi-Use-firmware-provided-device-tr.patch
-------------------------------------------------------------------
Tue Feb 13 12:26:59 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc2
-------------------------------------------------------------------
Tue Jan 30 07:48:10 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc1
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
* Patches dropped:
0004-Fix-MMC1-external-SD-slot-on-Samsun.patch (Fixed upstream)
-------------------------------------------------------------------
Wed Jan 17 17:11:04 UTC 2018 - afaerber@suse.de

View File

@ -32,10 +32,10 @@
%endif
# archive_version differs from version for RC version only
%define archive_version 2018.01
%define archive_version 2018.03
Name: u-boot-cubietruck
Version: 2018.01
Version: 2018.03
Release: 0
Summary: The U-Boot firmware for the cubietruck platform
License: GPL-2.0
@ -49,7 +49,7 @@ Source300: u-boot-rpmlintrc
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
Patch0003: 0003-Revert-rockchip-mkimage-remove-plac.patch
Patch0004: 0004-Fix-MMC1-external-SD-slot-on-Samsun.patch
Patch0004: 0004-rpi-Use-firmware-provided-device-tr.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if 0
BuildRequires: arm-trusted-firmware-pine64

View File

@ -1,3 +1,38 @@
-------------------------------------------------------------------
Wed Mar 14 15:13:44 UTC 2018 - guillaume.gardet@opensuse.org
- Updated to 2018.03
-------------------------------------------------------------------
Tue Mar 6 13:26:21 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc4
-------------------------------------------------------------------
Thu Feb 22 08:43:30 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc3
-------------------------------------------------------------------
Wed Feb 21 16:48:20 UTC 2018 - agraf@suse.com
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
* Patches added:
0004-rpi-Use-firmware-provided-device-tr.patch
-------------------------------------------------------------------
Tue Feb 13 12:26:59 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc2
-------------------------------------------------------------------
Tue Jan 30 07:48:10 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc1
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
* Patches dropped:
0004-Fix-MMC1-external-SD-slot-on-Samsun.patch (Fixed upstream)
-------------------------------------------------------------------
Wed Jan 17 17:11:04 UTC 2018 - afaerber@suse.de

View File

@ -32,10 +32,10 @@
%endif
# archive_version differs from version for RC version only
%define archive_version 2018.01
%define archive_version 2018.03
Name: u-boot-dragonboard410c
Version: 2018.01
Version: 2018.03
Release: 0
Summary: The U-Boot firmware for the dragonboard410c platform
License: GPL-2.0
@ -49,7 +49,7 @@ Source300: u-boot-rpmlintrc
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
Patch0003: 0003-Revert-rockchip-mkimage-remove-plac.patch
Patch0004: 0004-Fix-MMC1-external-SD-slot-on-Samsun.patch
Patch0004: 0004-rpi-Use-firmware-provided-device-tr.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if 0
BuildRequires: arm-trusted-firmware-pine64

View File

@ -1,3 +1,38 @@
-------------------------------------------------------------------
Wed Mar 14 15:13:44 UTC 2018 - guillaume.gardet@opensuse.org
- Updated to 2018.03
-------------------------------------------------------------------
Tue Mar 6 13:26:21 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc4
-------------------------------------------------------------------
Thu Feb 22 08:43:30 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc3
-------------------------------------------------------------------
Wed Feb 21 16:48:20 UTC 2018 - agraf@suse.com
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
* Patches added:
0004-rpi-Use-firmware-provided-device-tr.patch
-------------------------------------------------------------------
Tue Feb 13 12:26:59 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc2
-------------------------------------------------------------------
Tue Jan 30 07:48:10 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc1
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
* Patches dropped:
0004-Fix-MMC1-external-SD-slot-on-Samsun.patch (Fixed upstream)
-------------------------------------------------------------------
Wed Jan 17 17:11:04 UTC 2018 - afaerber@suse.de

View File

@ -32,10 +32,10 @@
%endif
# archive_version differs from version for RC version only
%define archive_version 2018.01
%define archive_version 2018.03
Name: u-boot-evb-rk3399
Version: 2018.01
Version: 2018.03
Release: 0
Summary: The U-Boot firmware for the evb-rk3399 platform
License: GPL-2.0
@ -49,7 +49,7 @@ Source300: u-boot-rpmlintrc
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
Patch0003: 0003-Revert-rockchip-mkimage-remove-plac.patch
Patch0004: 0004-Fix-MMC1-external-SD-slot-on-Samsun.patch
Patch0004: 0004-rpi-Use-firmware-provided-device-tr.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if 0
BuildRequires: arm-trusted-firmware-pine64

View File

@ -1,3 +1,38 @@
-------------------------------------------------------------------
Wed Mar 14 15:13:44 UTC 2018 - guillaume.gardet@opensuse.org
- Updated to 2018.03
-------------------------------------------------------------------
Tue Mar 6 13:26:21 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc4
-------------------------------------------------------------------
Thu Feb 22 08:43:30 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc3
-------------------------------------------------------------------
Wed Feb 21 16:48:20 UTC 2018 - agraf@suse.com
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
* Patches added:
0004-rpi-Use-firmware-provided-device-tr.patch
-------------------------------------------------------------------
Tue Feb 13 12:26:59 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc2
-------------------------------------------------------------------
Tue Jan 30 07:48:10 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc1
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
* Patches dropped:
0004-Fix-MMC1-external-SD-slot-on-Samsun.patch (Fixed upstream)
-------------------------------------------------------------------
Wed Jan 17 17:11:04 UTC 2018 - afaerber@suse.de

View File

@ -32,10 +32,10 @@
%endif
# archive_version differs from version for RC version only
%define archive_version 2018.01
%define archive_version 2018.03
Name: u-boot-firefly-rk3288
Version: 2018.01
Version: 2018.03
Release: 0
Summary: The U-Boot firmware for the firefly-rk3288 platform
License: GPL-2.0
@ -49,7 +49,7 @@ Source300: u-boot-rpmlintrc
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
Patch0003: 0003-Revert-rockchip-mkimage-remove-plac.patch
Patch0004: 0004-Fix-MMC1-external-SD-slot-on-Samsun.patch
Patch0004: 0004-rpi-Use-firmware-provided-device-tr.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if 0
BuildRequires: arm-trusted-firmware-pine64

View File

@ -1,3 +1,38 @@
-------------------------------------------------------------------
Wed Mar 14 15:13:44 UTC 2018 - guillaume.gardet@opensuse.org
- Updated to 2018.03
-------------------------------------------------------------------
Tue Mar 6 13:26:21 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc4
-------------------------------------------------------------------
Thu Feb 22 08:43:30 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc3
-------------------------------------------------------------------
Wed Feb 21 16:48:20 UTC 2018 - agraf@suse.com
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
* Patches added:
0004-rpi-Use-firmware-provided-device-tr.patch
-------------------------------------------------------------------
Tue Feb 13 12:26:59 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc2
-------------------------------------------------------------------
Tue Jan 30 07:48:10 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc1
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
* Patches dropped:
0004-Fix-MMC1-external-SD-slot-on-Samsun.patch (Fixed upstream)
-------------------------------------------------------------------
Wed Jan 17 17:11:04 UTC 2018 - afaerber@suse.de

View File

@ -32,10 +32,10 @@
%endif
# archive_version differs from version for RC version only
%define archive_version 2018.01
%define archive_version 2018.03
Name: u-boot-firefly-rk3399
Version: 2018.01
Version: 2018.03
Release: 0
Summary: The U-Boot firmware for the firefly-rk3399 platform
License: GPL-2.0
@ -49,7 +49,7 @@ Source300: u-boot-rpmlintrc
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
Patch0003: 0003-Revert-rockchip-mkimage-remove-plac.patch
Patch0004: 0004-Fix-MMC1-external-SD-slot-on-Samsun.patch
Patch0004: 0004-rpi-Use-firmware-provided-device-tr.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if 0
BuildRequires: arm-trusted-firmware-pine64

View File

@ -1,3 +1,38 @@
-------------------------------------------------------------------
Wed Mar 14 15:13:44 UTC 2018 - guillaume.gardet@opensuse.org
- Updated to 2018.03
-------------------------------------------------------------------
Tue Mar 6 13:26:21 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc4
-------------------------------------------------------------------
Thu Feb 22 08:43:30 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc3
-------------------------------------------------------------------
Wed Feb 21 16:48:20 UTC 2018 - agraf@suse.com
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
* Patches added:
0004-rpi-Use-firmware-provided-device-tr.patch
-------------------------------------------------------------------
Tue Feb 13 12:26:59 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc2
-------------------------------------------------------------------
Tue Jan 30 07:48:10 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc1
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
* Patches dropped:
0004-Fix-MMC1-external-SD-slot-on-Samsun.patch (Fixed upstream)
-------------------------------------------------------------------
Wed Jan 17 17:11:04 UTC 2018 - afaerber@suse.de

View File

@ -32,10 +32,10 @@
%endif
# archive_version differs from version for RC version only
%define archive_version 2018.01
%define archive_version 2018.03
Name: u-boot-geekbox
Version: 2018.01
Version: 2018.03
Release: 0
Summary: The U-Boot firmware for the geekbox platform
License: GPL-2.0
@ -49,7 +49,7 @@ Source300: u-boot-rpmlintrc
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
Patch0003: 0003-Revert-rockchip-mkimage-remove-plac.patch
Patch0004: 0004-Fix-MMC1-external-SD-slot-on-Samsun.patch
Patch0004: 0004-rpi-Use-firmware-provided-device-tr.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if 0
BuildRequires: arm-trusted-firmware-pine64

View File

@ -1,3 +1,38 @@
-------------------------------------------------------------------
Wed Mar 14 15:13:44 UTC 2018 - guillaume.gardet@opensuse.org
- Updated to 2018.03
-------------------------------------------------------------------
Tue Mar 6 13:26:21 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc4
-------------------------------------------------------------------
Thu Feb 22 08:43:30 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc3
-------------------------------------------------------------------
Wed Feb 21 16:48:20 UTC 2018 - agraf@suse.com
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
* Patches added:
0004-rpi-Use-firmware-provided-device-tr.patch
-------------------------------------------------------------------
Tue Feb 13 12:26:59 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc2
-------------------------------------------------------------------
Tue Jan 30 07:48:10 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc1
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
* Patches dropped:
0004-Fix-MMC1-external-SD-slot-on-Samsun.patch (Fixed upstream)
-------------------------------------------------------------------
Wed Jan 17 17:11:04 UTC 2018 - afaerber@suse.de

View File

@ -32,10 +32,10 @@
%endif
# archive_version differs from version for RC version only
%define archive_version 2018.01
%define archive_version 2018.03
Name: u-boot-highbank
Version: 2018.01
Version: 2018.03
Release: 0
Summary: The U-Boot firmware for the highbank platform
License: GPL-2.0
@ -49,7 +49,7 @@ Source300: u-boot-rpmlintrc
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
Patch0003: 0003-Revert-rockchip-mkimage-remove-plac.patch
Patch0004: 0004-Fix-MMC1-external-SD-slot-on-Samsun.patch
Patch0004: 0004-rpi-Use-firmware-provided-device-tr.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if 0
BuildRequires: arm-trusted-firmware-pine64

View File

@ -1,3 +1,38 @@
-------------------------------------------------------------------
Wed Mar 14 15:13:44 UTC 2018 - guillaume.gardet@opensuse.org
- Updated to 2018.03
-------------------------------------------------------------------
Tue Mar 6 13:26:21 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc4
-------------------------------------------------------------------
Thu Feb 22 08:43:30 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc3
-------------------------------------------------------------------
Wed Feb 21 16:48:20 UTC 2018 - agraf@suse.com
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
* Patches added:
0004-rpi-Use-firmware-provided-device-tr.patch
-------------------------------------------------------------------
Tue Feb 13 12:26:59 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc2
-------------------------------------------------------------------
Tue Jan 30 07:48:10 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc1
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
* Patches dropped:
0004-Fix-MMC1-external-SD-slot-on-Samsun.patch (Fixed upstream)
-------------------------------------------------------------------
Wed Jan 17 17:11:04 UTC 2018 - afaerber@suse.de

View File

@ -32,10 +32,10 @@
%endif
# archive_version differs from version for RC version only
%define archive_version 2018.01
%define archive_version 2018.03
Name: u-boot-hikey
Version: 2018.01
Version: 2018.03
Release: 0
Summary: The U-Boot firmware for the hikey platform
License: GPL-2.0
@ -49,7 +49,7 @@ Source300: u-boot-rpmlintrc
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
Patch0003: 0003-Revert-rockchip-mkimage-remove-plac.patch
Patch0004: 0004-Fix-MMC1-external-SD-slot-on-Samsun.patch
Patch0004: 0004-rpi-Use-firmware-provided-device-tr.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if 0
BuildRequires: arm-trusted-firmware-pine64

View File

@ -1,3 +1,38 @@
-------------------------------------------------------------------
Wed Mar 14 15:13:44 UTC 2018 - guillaume.gardet@opensuse.org
- Updated to 2018.03
-------------------------------------------------------------------
Tue Mar 6 13:26:21 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc4
-------------------------------------------------------------------
Thu Feb 22 08:43:30 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc3
-------------------------------------------------------------------
Wed Feb 21 16:48:20 UTC 2018 - agraf@suse.com
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
* Patches added:
0004-rpi-Use-firmware-provided-device-tr.patch
-------------------------------------------------------------------
Tue Feb 13 12:26:59 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc2
-------------------------------------------------------------------
Tue Jan 30 07:48:10 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc1
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
* Patches dropped:
0004-Fix-MMC1-external-SD-slot-on-Samsun.patch (Fixed upstream)
-------------------------------------------------------------------
Wed Jan 17 17:11:04 UTC 2018 - afaerber@suse.de

View File

@ -32,10 +32,10 @@
%endif
# archive_version differs from version for RC version only
%define archive_version 2018.01
%define archive_version 2018.03
Name: u-boot-hyundaia7hd
Version: 2018.01
Version: 2018.03
Release: 0
Summary: The U-Boot firmware for the hyundaia7hd platform
License: GPL-2.0
@ -49,7 +49,7 @@ Source300: u-boot-rpmlintrc
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
Patch0003: 0003-Revert-rockchip-mkimage-remove-plac.patch
Patch0004: 0004-Fix-MMC1-external-SD-slot-on-Samsun.patch
Patch0004: 0004-rpi-Use-firmware-provided-device-tr.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if 0
BuildRequires: arm-trusted-firmware-pine64

View File

@ -1,3 +1,38 @@
-------------------------------------------------------------------
Wed Mar 14 15:13:44 UTC 2018 - guillaume.gardet@opensuse.org
- Updated to 2018.03
-------------------------------------------------------------------
Tue Mar 6 13:26:21 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc4
-------------------------------------------------------------------
Thu Feb 22 08:43:30 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc3
-------------------------------------------------------------------
Wed Feb 21 16:48:20 UTC 2018 - agraf@suse.com
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
* Patches added:
0004-rpi-Use-firmware-provided-device-tr.patch
-------------------------------------------------------------------
Tue Feb 13 12:26:59 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc2
-------------------------------------------------------------------
Tue Jan 30 07:48:10 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc1
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
* Patches dropped:
0004-Fix-MMC1-external-SD-slot-on-Samsun.patch (Fixed upstream)
-------------------------------------------------------------------
Wed Jan 17 17:11:04 UTC 2018 - afaerber@suse.de

View File

@ -32,10 +32,10 @@
%endif
# archive_version differs from version for RC version only
%define archive_version 2018.01
%define archive_version 2018.03
Name: u-boot-jetson-tk1
Version: 2018.01
Version: 2018.03
Release: 0
Summary: The U-Boot firmware for the jetson-tk1 platform
License: GPL-2.0
@ -49,7 +49,7 @@ Source300: u-boot-rpmlintrc
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
Patch0003: 0003-Revert-rockchip-mkimage-remove-plac.patch
Patch0004: 0004-Fix-MMC1-external-SD-slot-on-Samsun.patch
Patch0004: 0004-rpi-Use-firmware-provided-device-tr.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if 0
BuildRequires: arm-trusted-firmware-pine64

View File

@ -1,3 +1,38 @@
-------------------------------------------------------------------
Wed Mar 14 15:13:44 UTC 2018 - guillaume.gardet@opensuse.org
- Updated to 2018.03
-------------------------------------------------------------------
Tue Mar 6 13:26:21 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc4
-------------------------------------------------------------------
Thu Feb 22 08:43:30 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc3
-------------------------------------------------------------------
Wed Feb 21 16:48:20 UTC 2018 - agraf@suse.com
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
* Patches added:
0004-rpi-Use-firmware-provided-device-tr.patch
-------------------------------------------------------------------
Tue Feb 13 12:26:59 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc2
-------------------------------------------------------------------
Tue Jan 30 07:48:10 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc1
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
* Patches dropped:
0004-Fix-MMC1-external-SD-slot-on-Samsun.patch (Fixed upstream)
-------------------------------------------------------------------
Wed Jan 17 17:11:04 UTC 2018 - afaerber@suse.de

View File

@ -32,10 +32,10 @@
%endif
# archive_version differs from version for RC version only
%define archive_version 2018.01
%define archive_version 2018.03
Name: u-boot-lamobor1
Version: 2018.01
Version: 2018.03
Release: 0
Summary: The U-Boot firmware for the lamobor1 platform
License: GPL-2.0
@ -49,7 +49,7 @@ Source300: u-boot-rpmlintrc
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
Patch0003: 0003-Revert-rockchip-mkimage-remove-plac.patch
Patch0004: 0004-Fix-MMC1-external-SD-slot-on-Samsun.patch
Patch0004: 0004-rpi-Use-firmware-provided-device-tr.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if 0
BuildRequires: arm-trusted-firmware-pine64

View File

@ -1,3 +1,38 @@
-------------------------------------------------------------------
Wed Mar 14 15:13:44 UTC 2018 - guillaume.gardet@opensuse.org
- Updated to 2018.03
-------------------------------------------------------------------
Tue Mar 6 13:26:21 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc4
-------------------------------------------------------------------
Thu Feb 22 08:43:30 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc3
-------------------------------------------------------------------
Wed Feb 21 16:48:20 UTC 2018 - agraf@suse.com
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
* Patches added:
0004-rpi-Use-firmware-provided-device-tr.patch
-------------------------------------------------------------------
Tue Feb 13 12:26:59 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc2
-------------------------------------------------------------------
Tue Jan 30 07:48:10 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc1
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
* Patches dropped:
0004-Fix-MMC1-external-SD-slot-on-Samsun.patch (Fixed upstream)
-------------------------------------------------------------------
Wed Jan 17 17:11:04 UTC 2018 - afaerber@suse.de

View File

@ -32,10 +32,10 @@
%endif
# archive_version differs from version for RC version only
%define archive_version 2018.01
%define archive_version 2018.03
Name: u-boot-ls1012afrdmqspi
Version: 2018.01
Version: 2018.03
Release: 0
Summary: The U-Boot firmware for the ls1012afrdmqspi platform
License: GPL-2.0
@ -49,7 +49,7 @@ Source300: u-boot-rpmlintrc
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
Patch0003: 0003-Revert-rockchip-mkimage-remove-plac.patch
Patch0004: 0004-Fix-MMC1-external-SD-slot-on-Samsun.patch
Patch0004: 0004-rpi-Use-firmware-provided-device-tr.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if 0
BuildRequires: arm-trusted-firmware-pine64

View File

@ -1,3 +1,38 @@
-------------------------------------------------------------------
Wed Mar 14 15:13:44 UTC 2018 - guillaume.gardet@opensuse.org
- Updated to 2018.03
-------------------------------------------------------------------
Tue Mar 6 13:26:21 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc4
-------------------------------------------------------------------
Thu Feb 22 08:43:30 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc3
-------------------------------------------------------------------
Wed Feb 21 16:48:20 UTC 2018 - agraf@suse.com
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
* Patches added:
0004-rpi-Use-firmware-provided-device-tr.patch
-------------------------------------------------------------------
Tue Feb 13 12:26:59 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc2
-------------------------------------------------------------------
Tue Jan 30 07:48:10 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc1
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
* Patches dropped:
0004-Fix-MMC1-external-SD-slot-on-Samsun.patch (Fixed upstream)
-------------------------------------------------------------------
Wed Jan 17 17:11:04 UTC 2018 - afaerber@suse.de

View File

@ -32,10 +32,10 @@
%endif
# archive_version differs from version for RC version only
%define archive_version 2018.01
%define archive_version 2018.03
Name: u-boot-melea1000
Version: 2018.01
Version: 2018.03
Release: 0
Summary: The U-Boot firmware for the melea1000 platform
License: GPL-2.0
@ -49,7 +49,7 @@ Source300: u-boot-rpmlintrc
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
Patch0003: 0003-Revert-rockchip-mkimage-remove-plac.patch
Patch0004: 0004-Fix-MMC1-external-SD-slot-on-Samsun.patch
Patch0004: 0004-rpi-Use-firmware-provided-device-tr.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if 0
BuildRequires: arm-trusted-firmware-pine64

View File

@ -1,3 +1,38 @@
-------------------------------------------------------------------
Wed Mar 14 15:13:44 UTC 2018 - guillaume.gardet@opensuse.org
- Updated to 2018.03
-------------------------------------------------------------------
Tue Mar 6 13:26:21 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc4
-------------------------------------------------------------------
Thu Feb 22 08:43:30 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc3
-------------------------------------------------------------------
Wed Feb 21 16:48:20 UTC 2018 - agraf@suse.com
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
* Patches added:
0004-rpi-Use-firmware-provided-device-tr.patch
-------------------------------------------------------------------
Tue Feb 13 12:26:59 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc2
-------------------------------------------------------------------
Tue Jan 30 07:48:10 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc1
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
* Patches dropped:
0004-Fix-MMC1-external-SD-slot-on-Samsun.patch (Fixed upstream)
-------------------------------------------------------------------
Wed Jan 17 17:11:04 UTC 2018 - afaerber@suse.de

View File

@ -32,10 +32,10 @@
%endif
# archive_version differs from version for RC version only
%define archive_version 2018.01
%define archive_version 2018.03
Name: u-boot-merriia80optimus
Version: 2018.01
Version: 2018.03
Release: 0
Summary: The U-Boot firmware for the merriia80optimus platform
License: GPL-2.0
@ -49,7 +49,7 @@ Source300: u-boot-rpmlintrc
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
Patch0003: 0003-Revert-rockchip-mkimage-remove-plac.patch
Patch0004: 0004-Fix-MMC1-external-SD-slot-on-Samsun.patch
Patch0004: 0004-rpi-Use-firmware-provided-device-tr.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if 0
BuildRequires: arm-trusted-firmware-pine64

View File

@ -1,3 +1,38 @@
-------------------------------------------------------------------
Wed Mar 14 15:13:44 UTC 2018 - guillaume.gardet@opensuse.org
- Updated to 2018.03
-------------------------------------------------------------------
Tue Mar 6 13:26:21 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc4
-------------------------------------------------------------------
Thu Feb 22 08:43:30 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc3
-------------------------------------------------------------------
Wed Feb 21 16:48:20 UTC 2018 - agraf@suse.com
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
* Patches added:
0004-rpi-Use-firmware-provided-device-tr.patch
-------------------------------------------------------------------
Tue Feb 13 12:26:59 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc2
-------------------------------------------------------------------
Tue Jan 30 07:48:10 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc1
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
* Patches dropped:
0004-Fix-MMC1-external-SD-slot-on-Samsun.patch (Fixed upstream)
-------------------------------------------------------------------
Wed Jan 17 17:11:04 UTC 2018 - afaerber@suse.de

View File

@ -32,10 +32,10 @@
%endif
# archive_version differs from version for RC version only
%define archive_version 2018.01
%define archive_version 2018.03
Name: u-boot-mvebudb-88f3720
Version: 2018.01
Version: 2018.03
Release: 0
Summary: The U-Boot firmware for the mvebudb-88f3720 platform
License: GPL-2.0
@ -49,7 +49,7 @@ Source300: u-boot-rpmlintrc
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
Patch0003: 0003-Revert-rockchip-mkimage-remove-plac.patch
Patch0004: 0004-Fix-MMC1-external-SD-slot-on-Samsun.patch
Patch0004: 0004-rpi-Use-firmware-provided-device-tr.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if 0
BuildRequires: arm-trusted-firmware-pine64

View File

@ -1,3 +1,38 @@
-------------------------------------------------------------------
Wed Mar 14 15:13:44 UTC 2018 - guillaume.gardet@opensuse.org
- Updated to 2018.03
-------------------------------------------------------------------
Tue Mar 6 13:26:21 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc4
-------------------------------------------------------------------
Thu Feb 22 08:43:30 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc3
-------------------------------------------------------------------
Wed Feb 21 16:48:20 UTC 2018 - agraf@suse.com
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
* Patches added:
0004-rpi-Use-firmware-provided-device-tr.patch
-------------------------------------------------------------------
Tue Feb 13 12:26:59 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc2
-------------------------------------------------------------------
Tue Jan 30 07:48:10 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc1
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
* Patches dropped:
0004-Fix-MMC1-external-SD-slot-on-Samsun.patch (Fixed upstream)
-------------------------------------------------------------------
Wed Jan 17 17:11:04 UTC 2018 - afaerber@suse.de

View File

@ -32,10 +32,10 @@
%endif
# archive_version differs from version for RC version only
%define archive_version 2018.01
%define archive_version 2018.03
Name: u-boot-mvebudbarmada8k
Version: 2018.01
Version: 2018.03
Release: 0
Summary: The U-Boot firmware for the mvebudbarmada8k platform
License: GPL-2.0
@ -49,7 +49,7 @@ Source300: u-boot-rpmlintrc
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
Patch0003: 0003-Revert-rockchip-mkimage-remove-plac.patch
Patch0004: 0004-Fix-MMC1-external-SD-slot-on-Samsun.patch
Patch0004: 0004-rpi-Use-firmware-provided-device-tr.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if 0
BuildRequires: arm-trusted-firmware-pine64

View File

@ -1,3 +1,38 @@
-------------------------------------------------------------------
Wed Mar 14 15:13:44 UTC 2018 - guillaume.gardet@opensuse.org
- Updated to 2018.03
-------------------------------------------------------------------
Tue Mar 6 13:26:21 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc4
-------------------------------------------------------------------
Thu Feb 22 08:43:30 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc3
-------------------------------------------------------------------
Wed Feb 21 16:48:20 UTC 2018 - agraf@suse.com
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
* Patches added:
0004-rpi-Use-firmware-provided-device-tr.patch
-------------------------------------------------------------------
Tue Feb 13 12:26:59 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc2
-------------------------------------------------------------------
Tue Jan 30 07:48:10 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc1
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
* Patches dropped:
0004-Fix-MMC1-external-SD-slot-on-Samsun.patch (Fixed upstream)
-------------------------------------------------------------------
Wed Jan 17 17:11:04 UTC 2018 - afaerber@suse.de

View File

@ -32,10 +32,10 @@
%endif
# archive_version differs from version for RC version only
%define archive_version 2018.01
%define archive_version 2018.03
Name: u-boot-mvebuespressobin-88f3720
Version: 2018.01
Version: 2018.03
Release: 0
Summary: The U-Boot firmware for the mvebuespressobin-88f3720 platform
License: GPL-2.0
@ -49,7 +49,7 @@ Source300: u-boot-rpmlintrc
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
Patch0003: 0003-Revert-rockchip-mkimage-remove-plac.patch
Patch0004: 0004-Fix-MMC1-external-SD-slot-on-Samsun.patch
Patch0004: 0004-rpi-Use-firmware-provided-device-tr.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if 0
BuildRequires: arm-trusted-firmware-pine64

View File

@ -1,3 +1,38 @@
-------------------------------------------------------------------
Wed Mar 14 15:13:44 UTC 2018 - guillaume.gardet@opensuse.org
- Updated to 2018.03
-------------------------------------------------------------------
Tue Mar 6 13:26:21 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc4
-------------------------------------------------------------------
Thu Feb 22 08:43:30 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc3
-------------------------------------------------------------------
Wed Feb 21 16:48:20 UTC 2018 - agraf@suse.com
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
* Patches added:
0004-rpi-Use-firmware-provided-device-tr.patch
-------------------------------------------------------------------
Tue Feb 13 12:26:59 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc2
-------------------------------------------------------------------
Tue Jan 30 07:48:10 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc1
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
* Patches dropped:
0004-Fix-MMC1-external-SD-slot-on-Samsun.patch (Fixed upstream)
-------------------------------------------------------------------
Wed Jan 17 17:11:04 UTC 2018 - afaerber@suse.de

View File

@ -32,10 +32,10 @@
%endif
# archive_version differs from version for RC version only
%define archive_version 2018.01
%define archive_version 2018.03
Name: u-boot-mvebumcbin-88f8040
Version: 2018.01
Version: 2018.03
Release: 0
Summary: The U-Boot firmware for the mvebumcbin-88f8040 platform
License: GPL-2.0
@ -49,7 +49,7 @@ Source300: u-boot-rpmlintrc
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
Patch0003: 0003-Revert-rockchip-mkimage-remove-plac.patch
Patch0004: 0004-Fix-MMC1-external-SD-slot-on-Samsun.patch
Patch0004: 0004-rpi-Use-firmware-provided-device-tr.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if 0
BuildRequires: arm-trusted-firmware-pine64

View File

@ -1,3 +1,38 @@
-------------------------------------------------------------------
Wed Mar 14 15:13:44 UTC 2018 - guillaume.gardet@opensuse.org
- Updated to 2018.03
-------------------------------------------------------------------
Tue Mar 6 13:26:21 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc4
-------------------------------------------------------------------
Thu Feb 22 08:43:30 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc3
-------------------------------------------------------------------
Wed Feb 21 16:48:20 UTC 2018 - agraf@suse.com
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
* Patches added:
0004-rpi-Use-firmware-provided-device-tr.patch
-------------------------------------------------------------------
Tue Feb 13 12:26:59 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc2
-------------------------------------------------------------------
Tue Jan 30 07:48:10 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc1
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
* Patches dropped:
0004-Fix-MMC1-external-SD-slot-on-Samsun.patch (Fixed upstream)
-------------------------------------------------------------------
Wed Jan 17 17:11:04 UTC 2018 - afaerber@suse.de

View File

@ -32,10 +32,10 @@
%endif
# archive_version differs from version for RC version only
%define archive_version 2018.01
%define archive_version 2018.03
Name: u-boot-mx53loco
Version: 2018.01
Version: 2018.03
Release: 0
Summary: The U-Boot firmware for the mx53loco platform
License: GPL-2.0
@ -49,7 +49,7 @@ Source300: u-boot-rpmlintrc
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
Patch0003: 0003-Revert-rockchip-mkimage-remove-plac.patch
Patch0004: 0004-Fix-MMC1-external-SD-slot-on-Samsun.patch
Patch0004: 0004-rpi-Use-firmware-provided-device-tr.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if 0
BuildRequires: arm-trusted-firmware-pine64

View File

@ -1,3 +1,38 @@
-------------------------------------------------------------------
Wed Mar 14 15:13:44 UTC 2018 - guillaume.gardet@opensuse.org
- Updated to 2018.03
-------------------------------------------------------------------
Tue Mar 6 13:26:21 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc4
-------------------------------------------------------------------
Thu Feb 22 08:43:30 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc3
-------------------------------------------------------------------
Wed Feb 21 16:48:20 UTC 2018 - agraf@suse.com
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
* Patches added:
0004-rpi-Use-firmware-provided-device-tr.patch
-------------------------------------------------------------------
Tue Feb 13 12:26:59 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc2
-------------------------------------------------------------------
Tue Jan 30 07:48:10 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc1
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
* Patches dropped:
0004-Fix-MMC1-external-SD-slot-on-Samsun.patch (Fixed upstream)
-------------------------------------------------------------------
Wed Jan 17 17:11:04 UTC 2018 - afaerber@suse.de

View File

@ -32,10 +32,10 @@
%endif
# archive_version differs from version for RC version only
%define archive_version 2018.01
%define archive_version 2018.03
Name: u-boot-mx6cuboxi
Version: 2018.01
Version: 2018.03
Release: 0
Summary: The U-Boot firmware for the mx6cuboxi platform
License: GPL-2.0
@ -49,7 +49,7 @@ Source300: u-boot-rpmlintrc
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
Patch0003: 0003-Revert-rockchip-mkimage-remove-plac.patch
Patch0004: 0004-Fix-MMC1-external-SD-slot-on-Samsun.patch
Patch0004: 0004-rpi-Use-firmware-provided-device-tr.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if 0
BuildRequires: arm-trusted-firmware-pine64

View File

@ -1,3 +1,38 @@
-------------------------------------------------------------------
Wed Mar 14 15:13:44 UTC 2018 - guillaume.gardet@opensuse.org
- Updated to 2018.03
-------------------------------------------------------------------
Tue Mar 6 13:26:21 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc4
-------------------------------------------------------------------
Thu Feb 22 08:43:30 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc3
-------------------------------------------------------------------
Wed Feb 21 16:48:20 UTC 2018 - agraf@suse.com
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
* Patches added:
0004-rpi-Use-firmware-provided-device-tr.patch
-------------------------------------------------------------------
Tue Feb 13 12:26:59 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc2
-------------------------------------------------------------------
Tue Jan 30 07:48:10 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc1
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
* Patches dropped:
0004-Fix-MMC1-external-SD-slot-on-Samsun.patch (Fixed upstream)
-------------------------------------------------------------------
Wed Jan 17 17:11:04 UTC 2018 - afaerber@suse.de

View File

@ -32,10 +32,10 @@
%endif
# archive_version differs from version for RC version only
%define archive_version 2018.01
%define archive_version 2018.03
Name: u-boot-mx6qsabrelite
Version: 2018.01
Version: 2018.03
Release: 0
Summary: The U-Boot firmware for the mx6qsabrelite platform
License: GPL-2.0
@ -49,7 +49,7 @@ Source300: u-boot-rpmlintrc
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
Patch0003: 0003-Revert-rockchip-mkimage-remove-plac.patch
Patch0004: 0004-Fix-MMC1-external-SD-slot-on-Samsun.patch
Patch0004: 0004-rpi-Use-firmware-provided-device-tr.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if 0
BuildRequires: arm-trusted-firmware-pine64

View File

@ -1,3 +1,38 @@
-------------------------------------------------------------------
Wed Mar 14 15:13:44 UTC 2018 - guillaume.gardet@opensuse.org
- Updated to 2018.03
-------------------------------------------------------------------
Tue Mar 6 13:26:21 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc4
-------------------------------------------------------------------
Thu Feb 22 08:43:30 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc3
-------------------------------------------------------------------
Wed Feb 21 16:48:20 UTC 2018 - agraf@suse.com
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
* Patches added:
0004-rpi-Use-firmware-provided-device-tr.patch
-------------------------------------------------------------------
Tue Feb 13 12:26:59 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc2
-------------------------------------------------------------------
Tue Jan 30 07:48:10 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc1
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
* Patches dropped:
0004-Fix-MMC1-external-SD-slot-on-Samsun.patch (Fixed upstream)
-------------------------------------------------------------------
Wed Jan 17 17:11:04 UTC 2018 - afaerber@suse.de

View File

@ -32,10 +32,10 @@
%endif
# archive_version differs from version for RC version only
%define archive_version 2018.01
%define archive_version 2018.03
Name: u-boot-nanopia64
Version: 2018.01
Version: 2018.03
Release: 0
Summary: The U-Boot firmware for the nanopia64 platform
License: GPL-2.0
@ -49,7 +49,7 @@ Source300: u-boot-rpmlintrc
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
Patch0003: 0003-Revert-rockchip-mkimage-remove-plac.patch
Patch0004: 0004-Fix-MMC1-external-SD-slot-on-Samsun.patch
Patch0004: 0004-rpi-Use-firmware-provided-device-tr.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if 0
BuildRequires: arm-trusted-firmware-pine64

View File

@ -1,3 +1,38 @@
-------------------------------------------------------------------
Wed Mar 14 15:13:44 UTC 2018 - guillaume.gardet@opensuse.org
- Updated to 2018.03
-------------------------------------------------------------------
Tue Mar 6 13:26:21 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc4
-------------------------------------------------------------------
Thu Feb 22 08:43:30 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc3
-------------------------------------------------------------------
Wed Feb 21 16:48:20 UTC 2018 - agraf@suse.com
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
* Patches added:
0004-rpi-Use-firmware-provided-device-tr.patch
-------------------------------------------------------------------
Tue Feb 13 12:26:59 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc2
-------------------------------------------------------------------
Tue Jan 30 07:48:10 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc1
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
* Patches dropped:
0004-Fix-MMC1-external-SD-slot-on-Samsun.patch (Fixed upstream)
-------------------------------------------------------------------
Wed Jan 17 17:11:04 UTC 2018 - afaerber@suse.de

View File

@ -32,10 +32,10 @@
%endif
# archive_version differs from version for RC version only
%define archive_version 2018.01
%define archive_version 2018.03
Name: u-boot-nanopineo
Version: 2018.01
Version: 2018.03
Release: 0
Summary: The U-Boot firmware for the nanopineo platform
License: GPL-2.0
@ -49,7 +49,7 @@ Source300: u-boot-rpmlintrc
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
Patch0003: 0003-Revert-rockchip-mkimage-remove-plac.patch
Patch0004: 0004-Fix-MMC1-external-SD-slot-on-Samsun.patch
Patch0004: 0004-rpi-Use-firmware-provided-device-tr.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if 0
BuildRequires: arm-trusted-firmware-pine64

View File

@ -1,3 +1,38 @@
-------------------------------------------------------------------
Wed Mar 14 15:13:44 UTC 2018 - guillaume.gardet@opensuse.org
- Updated to 2018.03
-------------------------------------------------------------------
Tue Mar 6 13:26:21 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc4
-------------------------------------------------------------------
Thu Feb 22 08:43:30 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc3
-------------------------------------------------------------------
Wed Feb 21 16:48:20 UTC 2018 - agraf@suse.com
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
* Patches added:
0004-rpi-Use-firmware-provided-device-tr.patch
-------------------------------------------------------------------
Tue Feb 13 12:26:59 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc2
-------------------------------------------------------------------
Tue Jan 30 07:48:10 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc1
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
* Patches dropped:
0004-Fix-MMC1-external-SD-slot-on-Samsun.patch (Fixed upstream)
-------------------------------------------------------------------
Wed Jan 17 17:11:04 UTC 2018 - afaerber@suse.de

View File

@ -32,10 +32,10 @@
%endif
# archive_version differs from version for RC version only
%define archive_version 2018.01
%define archive_version 2018.03
Name: u-boot-nanopineoair
Version: 2018.01
Version: 2018.03
Release: 0
Summary: The U-Boot firmware for the nanopineoair platform
License: GPL-2.0
@ -49,7 +49,7 @@ Source300: u-boot-rpmlintrc
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
Patch0003: 0003-Revert-rockchip-mkimage-remove-plac.patch
Patch0004: 0004-Fix-MMC1-external-SD-slot-on-Samsun.patch
Patch0004: 0004-rpi-Use-firmware-provided-device-tr.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if 0
BuildRequires: arm-trusted-firmware-pine64

View File

@ -1,3 +1,38 @@
-------------------------------------------------------------------
Wed Mar 14 15:13:44 UTC 2018 - guillaume.gardet@opensuse.org
- Updated to 2018.03
-------------------------------------------------------------------
Tue Mar 6 13:26:21 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc4
-------------------------------------------------------------------
Thu Feb 22 08:43:30 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc3
-------------------------------------------------------------------
Wed Feb 21 16:48:20 UTC 2018 - agraf@suse.com
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
* Patches added:
0004-rpi-Use-firmware-provided-device-tr.patch
-------------------------------------------------------------------
Tue Feb 13 12:26:59 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc2
-------------------------------------------------------------------
Tue Jan 30 07:48:10 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc1
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
* Patches dropped:
0004-Fix-MMC1-external-SD-slot-on-Samsun.patch (Fixed upstream)
-------------------------------------------------------------------
Wed Jan 17 17:11:04 UTC 2018 - afaerber@suse.de

View File

@ -32,10 +32,10 @@
%endif
# archive_version differs from version for RC version only
%define archive_version 2018.01
%define archive_version 2018.03
Name: u-boot-odroid-c2
Version: 2018.01
Version: 2018.03
Release: 0
Summary: The U-Boot firmware for the odroid-c2 platform
License: GPL-2.0
@ -49,7 +49,7 @@ Source300: u-boot-rpmlintrc
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
Patch0003: 0003-Revert-rockchip-mkimage-remove-plac.patch
Patch0004: 0004-Fix-MMC1-external-SD-slot-on-Samsun.patch
Patch0004: 0004-rpi-Use-firmware-provided-device-tr.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if 0
BuildRequires: arm-trusted-firmware-pine64

View File

@ -1,3 +1,38 @@
-------------------------------------------------------------------
Wed Mar 14 15:13:44 UTC 2018 - guillaume.gardet@opensuse.org
- Updated to 2018.03
-------------------------------------------------------------------
Tue Mar 6 13:26:21 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc4
-------------------------------------------------------------------
Thu Feb 22 08:43:30 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc3
-------------------------------------------------------------------
Wed Feb 21 16:48:20 UTC 2018 - agraf@suse.com
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
* Patches added:
0004-rpi-Use-firmware-provided-device-tr.patch
-------------------------------------------------------------------
Tue Feb 13 12:26:59 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc2
-------------------------------------------------------------------
Tue Jan 30 07:48:10 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc1
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
* Patches dropped:
0004-Fix-MMC1-external-SD-slot-on-Samsun.patch (Fixed upstream)
-------------------------------------------------------------------
Wed Jan 17 17:11:04 UTC 2018 - afaerber@suse.de

View File

@ -32,10 +32,10 @@
%endif
# archive_version differs from version for RC version only
%define archive_version 2018.01
%define archive_version 2018.03
Name: u-boot-odroid-xu3
Version: 2018.01
Version: 2018.03
Release: 0
Summary: The U-Boot firmware for the odroid-xu3 platform
License: GPL-2.0
@ -49,7 +49,7 @@ Source300: u-boot-rpmlintrc
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
Patch0003: 0003-Revert-rockchip-mkimage-remove-plac.patch
Patch0004: 0004-Fix-MMC1-external-SD-slot-on-Samsun.patch
Patch0004: 0004-rpi-Use-firmware-provided-device-tr.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if 0
BuildRequires: arm-trusted-firmware-pine64

View File

@ -1,3 +1,38 @@
-------------------------------------------------------------------
Wed Mar 14 15:13:44 UTC 2018 - guillaume.gardet@opensuse.org
- Updated to 2018.03
-------------------------------------------------------------------
Tue Mar 6 13:26:21 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc4
-------------------------------------------------------------------
Thu Feb 22 08:43:30 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc3
-------------------------------------------------------------------
Wed Feb 21 16:48:20 UTC 2018 - agraf@suse.com
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
* Patches added:
0004-rpi-Use-firmware-provided-device-tr.patch
-------------------------------------------------------------------
Tue Feb 13 12:26:59 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc2
-------------------------------------------------------------------
Tue Jan 30 07:48:10 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc1
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
* Patches dropped:
0004-Fix-MMC1-external-SD-slot-on-Samsun.patch (Fixed upstream)
-------------------------------------------------------------------
Wed Jan 17 17:11:04 UTC 2018 - afaerber@suse.de

View File

@ -32,10 +32,10 @@
%endif
# archive_version differs from version for RC version only
%define archive_version 2018.01
%define archive_version 2018.03
Name: u-boot-odroid
Version: 2018.01
Version: 2018.03
Release: 0
Summary: The U-Boot firmware for the odroid platform
License: GPL-2.0
@ -49,7 +49,7 @@ Source300: u-boot-rpmlintrc
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
Patch0003: 0003-Revert-rockchip-mkimage-remove-plac.patch
Patch0004: 0004-Fix-MMC1-external-SD-slot-on-Samsun.patch
Patch0004: 0004-rpi-Use-firmware-provided-device-tr.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if 0
BuildRequires: arm-trusted-firmware-pine64

View File

@ -1,3 +1,38 @@
-------------------------------------------------------------------
Wed Mar 14 15:13:44 UTC 2018 - guillaume.gardet@opensuse.org
- Updated to 2018.03
-------------------------------------------------------------------
Tue Mar 6 13:26:21 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc4
-------------------------------------------------------------------
Thu Feb 22 08:43:30 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc3
-------------------------------------------------------------------
Wed Feb 21 16:48:20 UTC 2018 - agraf@suse.com
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
* Patches added:
0004-rpi-Use-firmware-provided-device-tr.patch
-------------------------------------------------------------------
Tue Feb 13 12:26:59 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc2
-------------------------------------------------------------------
Tue Jan 30 07:48:10 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc1
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
* Patches dropped:
0004-Fix-MMC1-external-SD-slot-on-Samsun.patch (Fixed upstream)
-------------------------------------------------------------------
Wed Jan 17 17:11:04 UTC 2018 - afaerber@suse.de

View File

@ -32,10 +32,10 @@
%endif
# archive_version differs from version for RC version only
%define archive_version 2018.01
%define archive_version 2018.03
Name: u-boot-omap3beagle
Version: 2018.01
Version: 2018.03
Release: 0
Summary: The U-Boot firmware for the omap3beagle platform
License: GPL-2.0
@ -49,7 +49,7 @@ Source300: u-boot-rpmlintrc
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
Patch0003: 0003-Revert-rockchip-mkimage-remove-plac.patch
Patch0004: 0004-Fix-MMC1-external-SD-slot-on-Samsun.patch
Patch0004: 0004-rpi-Use-firmware-provided-device-tr.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if 0
BuildRequires: arm-trusted-firmware-pine64

View File

@ -1,3 +1,38 @@
-------------------------------------------------------------------
Wed Mar 14 15:13:44 UTC 2018 - guillaume.gardet@opensuse.org
- Updated to 2018.03
-------------------------------------------------------------------
Tue Mar 6 13:26:21 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc4
-------------------------------------------------------------------
Thu Feb 22 08:43:30 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc3
-------------------------------------------------------------------
Wed Feb 21 16:48:20 UTC 2018 - agraf@suse.com
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
* Patches added:
0004-rpi-Use-firmware-provided-device-tr.patch
-------------------------------------------------------------------
Tue Feb 13 12:26:59 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc2
-------------------------------------------------------------------
Tue Jan 30 07:48:10 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc1
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
* Patches dropped:
0004-Fix-MMC1-external-SD-slot-on-Samsun.patch (Fixed upstream)
-------------------------------------------------------------------
Wed Jan 17 17:11:04 UTC 2018 - afaerber@suse.de

View File

@ -32,10 +32,10 @@
%endif
# archive_version differs from version for RC version only
%define archive_version 2018.01
%define archive_version 2018.03
Name: u-boot-omap4panda
Version: 2018.01
Version: 2018.03
Release: 0
Summary: The U-Boot firmware for the omap4panda platform
License: GPL-2.0
@ -49,7 +49,7 @@ Source300: u-boot-rpmlintrc
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
Patch0003: 0003-Revert-rockchip-mkimage-remove-plac.patch
Patch0004: 0004-Fix-MMC1-external-SD-slot-on-Samsun.patch
Patch0004: 0004-rpi-Use-firmware-provided-device-tr.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if 0
BuildRequires: arm-trusted-firmware-pine64

View File

@ -1,3 +1,38 @@
-------------------------------------------------------------------
Wed Mar 14 15:13:44 UTC 2018 - guillaume.gardet@opensuse.org
- Updated to 2018.03
-------------------------------------------------------------------
Tue Mar 6 13:26:21 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc4
-------------------------------------------------------------------
Thu Feb 22 08:43:30 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc3
-------------------------------------------------------------------
Wed Feb 21 16:48:20 UTC 2018 - agraf@suse.com
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
* Patches added:
0004-rpi-Use-firmware-provided-device-tr.patch
-------------------------------------------------------------------
Tue Feb 13 12:26:59 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc2
-------------------------------------------------------------------
Tue Jan 30 07:48:10 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc1
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
* Patches dropped:
0004-Fix-MMC1-external-SD-slot-on-Samsun.patch (Fixed upstream)
-------------------------------------------------------------------
Wed Jan 17 17:11:04 UTC 2018 - afaerber@suse.de

View File

@ -32,10 +32,10 @@
%endif
# archive_version differs from version for RC version only
%define archive_version 2018.01
%define archive_version 2018.03
Name: u-boot-orangepipc
Version: 2018.01
Version: 2018.03
Release: 0
Summary: The U-Boot firmware for the orangepipc platform
License: GPL-2.0
@ -49,7 +49,7 @@ Source300: u-boot-rpmlintrc
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
Patch0003: 0003-Revert-rockchip-mkimage-remove-plac.patch
Patch0004: 0004-Fix-MMC1-external-SD-slot-on-Samsun.patch
Patch0004: 0004-rpi-Use-firmware-provided-device-tr.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if 0
BuildRequires: arm-trusted-firmware-pine64

View File

@ -1,3 +1,38 @@
-------------------------------------------------------------------
Wed Mar 14 15:13:44 UTC 2018 - guillaume.gardet@opensuse.org
- Updated to 2018.03
-------------------------------------------------------------------
Tue Mar 6 13:26:21 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc4
-------------------------------------------------------------------
Thu Feb 22 08:43:30 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc3
-------------------------------------------------------------------
Wed Feb 21 16:48:20 UTC 2018 - agraf@suse.com
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
* Patches added:
0004-rpi-Use-firmware-provided-device-tr.patch
-------------------------------------------------------------------
Tue Feb 13 12:26:59 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc2
-------------------------------------------------------------------
Tue Jan 30 07:48:10 UTC 2018 - guillaume@opensuse.org
- Updated to 2018.03-rc1
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03
* Patches dropped:
0004-Fix-MMC1-external-SD-slot-on-Samsun.patch (Fixed upstream)
-------------------------------------------------------------------
Wed Jan 17 17:11:04 UTC 2018 - afaerber@suse.de

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