Accepting request 686176 from home:mbrugger:branches:hardware:boot

- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2019.01
* Fix bsc#1124137 by:
* Patches dropped:
  0008-Revert-efi_loader-query-serial-cons.patch
  0009-zynqmp-generic-fix-compilation.patch
* Patches added:
  0008-zynqmp-generic-fix-compilation.patch
  0009-efi_loader-Fix-serial-console-size-.patch

OBS-URL: https://build.opensuse.org/request/show/686176
OBS-URL: https://build.opensuse.org/package/show/hardware:boot/u-boot?expand=0&rev=44
This commit is contained in:
Guillaume GARDET 2019-03-18 16:53:16 +00:00 committed by Git OBS Bridge
parent b13bd1fe37
commit 68026c8172
153 changed files with 1180 additions and 240 deletions

View File

@ -1,89 +0,0 @@
From 79fba75529a98f31c0a8988419172103b40262ad Mon Sep 17 00:00:00 2001
From: Matthias Brugger <mbrugger@suse.com>
Date: Wed, 13 Feb 2019 12:52:11 +0100
Subject: [PATCH] Revert "efi_loader: query serial console size reliably"
When an usb keyboard is connected to the RPi3, the console size
detection hangs until a key is pressed. Revert the commit which
introduced the bug.
This reverts commit 6bb591f7041fdd201814b8866c1a55775662ab7f.
Signed-off-by: Matthias Brugger <mbrugger@suse.com>
---
lib/efi_loader/efi_console.c | 50 ++++++++++--------------------------
1 file changed, 13 insertions(+), 37 deletions(-)
diff --git a/lib/efi_loader/efi_console.c b/lib/efi_loader/efi_console.c
index 66c33a551d..b5930aee59 100644
--- a/lib/efi_loader/efi_console.c
+++ b/lib/efi_loader/efi_console.c
@@ -185,56 +185,32 @@ static bool cout_mode_matches(struct cout_mode *mode, int rows, int cols)
return (mode->rows == rows) && (mode->columns == cols);
}
-/**
- * query_console_serial() - query console size
- *
- * @rows pointer to return number of rows
- * @columns pointer to return number of columns
- * Returns 0 on success
- */
static int query_console_serial(int *rows, int *cols)
{
- int ret = 0;
- int n[2];
+ /* Ask the terminal about its size */
+ int n[3];
u64 timeout;
/* Empty input buffer */
while (tstc())
getc();
- /*
- * Not all terminals understand CSI [18t for querying the console size.
- * We should adhere to escape sequences documented in the console_codes
- * man page and the ECMA-48 standard.
- *
- * So here we follow a different approach. We position the cursor to the
- * bottom right and query its position. Before leaving the function we
- * restore the original cursor position.
- */
- printf(ESC "7" /* Save cursor position */
- ESC "[r" /* Set scrolling region to full window */
- ESC "[999;999H" /* Move to bottom right corner */
- ESC "[6n"); /* Query cursor position */
+ printf(ESC"[18t");
- /* Allow up to one second for a response */
+ /* Check if we have a terminal that understands */
timeout = timer_get_us() + 1000000;
while (!tstc())
- if (timer_get_us() > timeout) {
- ret = -1;
- goto out;
- }
+ if (timer_get_us() > timeout)
+ return -1;
- /* Read {rows,cols} */
- if (term_read_reply(n, 2, 'R')) {
- ret = 1;
- goto out;
- }
+ /* Read {depth,rows,cols} */
+ if (term_read_reply(n, 3, 't'))
+ return -1;
- *cols = n[1];
- *rows = n[0];
-out:
- printf(ESC "8"); /* Restore cursor position */
- return ret;
+ *cols = n[2];
+ *rows = n[1];
+
+ return 0;
}
/*

View File

@ -1,4 +1,4 @@
From 3adeb58c84419891c0127b9ce45d155f76b8437f Mon Sep 17 00:00:00 2001
From 95e373ddde5bce44e3681810a521b134ea873e1b Mon Sep 17 00:00:00 2001
From: Matthias Brugger <mbrugger@suse.com>
Date: Tue, 5 Mar 2019 18:09:04 +0100
Subject: [PATCH] zynqmp: generic: fix compilation

View File

@ -0,0 +1,129 @@
From 029eed9c0d3d43cfa043913254aa0aa904c92f13 Mon Sep 17 00:00:00 2001
From: Matthias Brugger <mbrugger@suse.com>
Date: Tue, 5 Mar 2019 12:50:18 +0100
Subject: [PATCH] efi_loader: Fix serial console size detection
Function term_read_reply tries to read from the serial console until
the end_char was read. This can hang forever if we are, for some reason,
not able to read the full response (e.g. serial buffer too small,
frame error). This patch moves the timeout detection into
term_read_reply() to assure we will make progress.
Fixes: 6bb591f704 ("efi_loader: query serial console size reliably")
Signed-off-by: Matthias Brugger <mbrugger@suse.com>
Throw missing error when an incomplete reply for the cursor position is
received.
Change type of argument of term_get_char() *s32. This renders the function
reusable in efi_cin_read_key().
Reviewed-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
---
lib/efi_loader/efi_console.c | 62 ++++++++++++++++++++----------------
1 file changed, 35 insertions(+), 27 deletions(-)
diff --git a/lib/efi_loader/efi_console.c b/lib/efi_loader/efi_console.c
index 66c33a551d..8e0965bfc8 100644
--- a/lib/efi_loader/efi_console.c
+++ b/lib/efi_loader/efi_console.c
@@ -62,6 +62,21 @@ static struct simple_text_output_mode efi_con_mode = {
.cursor_visible = 1,
};
+static int term_get_char(s32 *c)
+{
+ u64 timeout;
+
+ /* Wait up to 100 ms for a character */
+ timeout = timer_get_us() + 100000;
+
+ while (!tstc())
+ if (timer_get_us() > timeout)
+ return 1;
+
+ *c = getc();
+ return 0;
+}
+
/*
* Receive and parse a reply from the terminal.
*
@@ -72,34 +87,36 @@ static struct simple_text_output_mode efi_con_mode = {
*/
static int term_read_reply(int *n, int num, char end_char)
{
- char c;
+ s32 c;
int i = 0;
- c = getc();
- if (c != cESC)
+ if (term_get_char(&c) || c != cESC)
return -1;
- c = getc();
- if (c != '[')
+
+ if (term_get_char(&c) || c != '[')
return -1;
n[0] = 0;
while (1) {
- c = getc();
- if (c == ';') {
- i++;
- if (i >= num)
+ if (!term_get_char(&c)) {
+ if (c == ';') {
+ i++;
+ if (i >= num)
+ return -1;
+ n[i] = 0;
+ continue;
+ } else if (c == end_char) {
+ break;
+ } else if (c > '9' || c < '0') {
return -1;
- n[i] = 0;
- continue;
- } else if (c == end_char) {
- break;
- } else if (c > '9' || c < '0') {
+ }
+
+ /* Read one more decimal position */
+ n[i] *= 10;
+ n[i] += c - '0';
+ } else {
return -1;
}
-
- /* Read one more decimal position */
- n[i] *= 10;
- n[i] += c - '0';
}
if (i != num - 1)
return -1;
@@ -196,7 +213,6 @@ static int query_console_serial(int *rows, int *cols)
{
int ret = 0;
int n[2];
- u64 timeout;
/* Empty input buffer */
while (tstc())
@@ -216,14 +232,6 @@ static int query_console_serial(int *rows, int *cols)
ESC "[999;999H" /* Move to bottom right corner */
ESC "[6n"); /* Query cursor position */
- /* Allow up to one second for a response */
- timeout = timer_get_us() + 1000000;
- while (!tstc())
- if (timer_get_us() > timeout) {
- ret = -1;
- goto out;
- }
-
/* Read {rows,cols} */
if (term_read_reply(n, 2, 'R')) {
ret = 1;

View File

@ -1,3 +1,15 @@
-------------------------------------------------------------------
Mon Mar 18 11:17:54 UTC 2019 - Matthias Brugger <mbrugger@suse.com>
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2019.01
* Fix bsc#1124137 by:
* Patches dropped:
0008-Revert-efi_loader-query-serial-cons.patch
0009-zynqmp-generic-fix-compilation.patch
* Patches added:
0008-zynqmp-generic-fix-compilation.patch
0009-efi_loader-Fix-serial-console-size-.patch
-------------------------------------------------------------------
Wed Mar 6 11:30:44 UTC 2019 - Matthias Brugger <mbrugger@suse.com>

View File

@ -68,8 +68,8 @@ Patch0004: 0004-Temp-workaround-for-Chromebook-snow.patch
Patch0005: 0005-zynqmp-Add-generic-target.patch
Patch0006: 0006-tools-zynqmpbif-Add-support-for-loa.patch
Patch0007: 0007-boo-1123170-Remove-ubifs-support-fr.patch
Patch0008: 0008-Revert-efi_loader-query-serial-cons.patch
Patch0009: 0009-zynqmp-generic-fix-compilation.patch
Patch0008: 0008-zynqmp-generic-fix-compilation.patch
Patch0009: 0009-efi_loader-Fix-serial-console-size-.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if 0%{?is_rk3399} && %{with uboot_atf}
BuildRequires: arm-trusted-firmware-rk3399

View File

@ -1,3 +1,15 @@
-------------------------------------------------------------------
Mon Mar 18 11:17:54 UTC 2019 - Matthias Brugger <mbrugger@suse.com>
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2019.01
* Fix bsc#1124137 by:
* Patches dropped:
0008-Revert-efi_loader-query-serial-cons.patch
0009-zynqmp-generic-fix-compilation.patch
* Patches added:
0008-zynqmp-generic-fix-compilation.patch
0009-efi_loader-Fix-serial-console-size-.patch
-------------------------------------------------------------------
Wed Mar 6 11:30:44 UTC 2019 - Matthias Brugger <mbrugger@suse.com>

View File

@ -68,8 +68,8 @@ Patch0004: 0004-Temp-workaround-for-Chromebook-snow.patch
Patch0005: 0005-zynqmp-Add-generic-target.patch
Patch0006: 0006-tools-zynqmpbif-Add-support-for-loa.patch
Patch0007: 0007-boo-1123170-Remove-ubifs-support-fr.patch
Patch0008: 0008-Revert-efi_loader-query-serial-cons.patch
Patch0009: 0009-zynqmp-generic-fix-compilation.patch
Patch0008: 0008-zynqmp-generic-fix-compilation.patch
Patch0009: 0009-efi_loader-Fix-serial-console-size-.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if 0%{?is_rk3399} && %{with uboot_atf}
BuildRequires: arm-trusted-firmware-rk3399

View File

@ -1,3 +1,15 @@
-------------------------------------------------------------------
Mon Mar 18 11:17:54 UTC 2019 - Matthias Brugger <mbrugger@suse.com>
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2019.01
* Fix bsc#1124137 by:
* Patches dropped:
0008-Revert-efi_loader-query-serial-cons.patch
0009-zynqmp-generic-fix-compilation.patch
* Patches added:
0008-zynqmp-generic-fix-compilation.patch
0009-efi_loader-Fix-serial-console-size-.patch
-------------------------------------------------------------------
Wed Mar 6 11:30:44 UTC 2019 - Matthias Brugger <mbrugger@suse.com>

View File

@ -68,8 +68,8 @@ Patch0004: 0004-Temp-workaround-for-Chromebook-snow.patch
Patch0005: 0005-zynqmp-Add-generic-target.patch
Patch0006: 0006-tools-zynqmpbif-Add-support-for-loa.patch
Patch0007: 0007-boo-1123170-Remove-ubifs-support-fr.patch
Patch0008: 0008-Revert-efi_loader-query-serial-cons.patch
Patch0009: 0009-zynqmp-generic-fix-compilation.patch
Patch0008: 0008-zynqmp-generic-fix-compilation.patch
Patch0009: 0009-efi_loader-Fix-serial-console-size-.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if 0%{?is_rk3399} && %{with uboot_atf}
BuildRequires: arm-trusted-firmware-rk3399

View File

@ -1,3 +1,15 @@
-------------------------------------------------------------------
Mon Mar 18 11:17:54 UTC 2019 - Matthias Brugger <mbrugger@suse.com>
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2019.01
* Fix bsc#1124137 by:
* Patches dropped:
0008-Revert-efi_loader-query-serial-cons.patch
0009-zynqmp-generic-fix-compilation.patch
* Patches added:
0008-zynqmp-generic-fix-compilation.patch
0009-efi_loader-Fix-serial-console-size-.patch
-------------------------------------------------------------------
Wed Mar 6 11:30:44 UTC 2019 - Matthias Brugger <mbrugger@suse.com>

View File

@ -68,8 +68,8 @@ Patch0004: 0004-Temp-workaround-for-Chromebook-snow.patch
Patch0005: 0005-zynqmp-Add-generic-target.patch
Patch0006: 0006-tools-zynqmpbif-Add-support-for-loa.patch
Patch0007: 0007-boo-1123170-Remove-ubifs-support-fr.patch
Patch0008: 0008-Revert-efi_loader-query-serial-cons.patch
Patch0009: 0009-zynqmp-generic-fix-compilation.patch
Patch0008: 0008-zynqmp-generic-fix-compilation.patch
Patch0009: 0009-efi_loader-Fix-serial-console-size-.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if 0%{?is_rk3399} && %{with uboot_atf}
BuildRequires: arm-trusted-firmware-rk3399

View File

@ -1,3 +1,15 @@
-------------------------------------------------------------------
Mon Mar 18 11:17:54 UTC 2019 - Matthias Brugger <mbrugger@suse.com>
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2019.01
* Fix bsc#1124137 by:
* Patches dropped:
0008-Revert-efi_loader-query-serial-cons.patch
0009-zynqmp-generic-fix-compilation.patch
* Patches added:
0008-zynqmp-generic-fix-compilation.patch
0009-efi_loader-Fix-serial-console-size-.patch
-------------------------------------------------------------------
Wed Mar 6 11:30:44 UTC 2019 - Matthias Brugger <mbrugger@suse.com>

View File

@ -68,8 +68,8 @@ Patch0004: 0004-Temp-workaround-for-Chromebook-snow.patch
Patch0005: 0005-zynqmp-Add-generic-target.patch
Patch0006: 0006-tools-zynqmpbif-Add-support-for-loa.patch
Patch0007: 0007-boo-1123170-Remove-ubifs-support-fr.patch
Patch0008: 0008-Revert-efi_loader-query-serial-cons.patch
Patch0009: 0009-zynqmp-generic-fix-compilation.patch
Patch0008: 0008-zynqmp-generic-fix-compilation.patch
Patch0009: 0009-efi_loader-Fix-serial-console-size-.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if 0%{?is_rk3399} && %{with uboot_atf}
BuildRequires: arm-trusted-firmware-rk3399

View File

@ -1,3 +1,15 @@
-------------------------------------------------------------------
Mon Mar 18 11:17:54 UTC 2019 - Matthias Brugger <mbrugger@suse.com>
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2019.01
* Fix bsc#1124137 by:
* Patches dropped:
0008-Revert-efi_loader-query-serial-cons.patch
0009-zynqmp-generic-fix-compilation.patch
* Patches added:
0008-zynqmp-generic-fix-compilation.patch
0009-efi_loader-Fix-serial-console-size-.patch
-------------------------------------------------------------------
Wed Mar 6 11:30:44 UTC 2019 - Matthias Brugger <mbrugger@suse.com>

View File

@ -68,8 +68,8 @@ Patch0004: 0004-Temp-workaround-for-Chromebook-snow.patch
Patch0005: 0005-zynqmp-Add-generic-target.patch
Patch0006: 0006-tools-zynqmpbif-Add-support-for-loa.patch
Patch0007: 0007-boo-1123170-Remove-ubifs-support-fr.patch
Patch0008: 0008-Revert-efi_loader-query-serial-cons.patch
Patch0009: 0009-zynqmp-generic-fix-compilation.patch
Patch0008: 0008-zynqmp-generic-fix-compilation.patch
Patch0009: 0009-efi_loader-Fix-serial-console-size-.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if 0%{?is_rk3399} && %{with uboot_atf}
BuildRequires: arm-trusted-firmware-rk3399

View File

@ -1,3 +1,15 @@
-------------------------------------------------------------------
Mon Mar 18 11:17:54 UTC 2019 - Matthias Brugger <mbrugger@suse.com>
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2019.01
* Fix bsc#1124137 by:
* Patches dropped:
0008-Revert-efi_loader-query-serial-cons.patch
0009-zynqmp-generic-fix-compilation.patch
* Patches added:
0008-zynqmp-generic-fix-compilation.patch
0009-efi_loader-Fix-serial-console-size-.patch
-------------------------------------------------------------------
Wed Mar 6 11:30:44 UTC 2019 - Matthias Brugger <mbrugger@suse.com>

View File

@ -68,8 +68,8 @@ Patch0004: 0004-Temp-workaround-for-Chromebook-snow.patch
Patch0005: 0005-zynqmp-Add-generic-target.patch
Patch0006: 0006-tools-zynqmpbif-Add-support-for-loa.patch
Patch0007: 0007-boo-1123170-Remove-ubifs-support-fr.patch
Patch0008: 0008-Revert-efi_loader-query-serial-cons.patch
Patch0009: 0009-zynqmp-generic-fix-compilation.patch
Patch0008: 0008-zynqmp-generic-fix-compilation.patch
Patch0009: 0009-efi_loader-Fix-serial-console-size-.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if 0%{?is_rk3399} && %{with uboot_atf}
BuildRequires: arm-trusted-firmware-rk3399

View File

@ -1,3 +1,15 @@
-------------------------------------------------------------------
Mon Mar 18 11:17:54 UTC 2019 - Matthias Brugger <mbrugger@suse.com>
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2019.01
* Fix bsc#1124137 by:
* Patches dropped:
0008-Revert-efi_loader-query-serial-cons.patch
0009-zynqmp-generic-fix-compilation.patch
* Patches added:
0008-zynqmp-generic-fix-compilation.patch
0009-efi_loader-Fix-serial-console-size-.patch
-------------------------------------------------------------------
Wed Mar 6 11:30:44 UTC 2019 - Matthias Brugger <mbrugger@suse.com>

View File

@ -68,8 +68,8 @@ Patch0004: 0004-Temp-workaround-for-Chromebook-snow.patch
Patch0005: 0005-zynqmp-Add-generic-target.patch
Patch0006: 0006-tools-zynqmpbif-Add-support-for-loa.patch
Patch0007: 0007-boo-1123170-Remove-ubifs-support-fr.patch
Patch0008: 0008-Revert-efi_loader-query-serial-cons.patch
Patch0009: 0009-zynqmp-generic-fix-compilation.patch
Patch0008: 0008-zynqmp-generic-fix-compilation.patch
Patch0009: 0009-efi_loader-Fix-serial-console-size-.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if 0%{?is_rk3399} && %{with uboot_atf}
BuildRequires: arm-trusted-firmware-rk3399

View File

@ -1,3 +1,15 @@
-------------------------------------------------------------------
Mon Mar 18 11:17:54 UTC 2019 - Matthias Brugger <mbrugger@suse.com>
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2019.01
* Fix bsc#1124137 by:
* Patches dropped:
0008-Revert-efi_loader-query-serial-cons.patch
0009-zynqmp-generic-fix-compilation.patch
* Patches added:
0008-zynqmp-generic-fix-compilation.patch
0009-efi_loader-Fix-serial-console-size-.patch
-------------------------------------------------------------------
Wed Mar 6 11:30:44 UTC 2019 - Matthias Brugger <mbrugger@suse.com>

View File

@ -68,8 +68,8 @@ Patch0004: 0004-Temp-workaround-for-Chromebook-snow.patch
Patch0005: 0005-zynqmp-Add-generic-target.patch
Patch0006: 0006-tools-zynqmpbif-Add-support-for-loa.patch
Patch0007: 0007-boo-1123170-Remove-ubifs-support-fr.patch
Patch0008: 0008-Revert-efi_loader-query-serial-cons.patch
Patch0009: 0009-zynqmp-generic-fix-compilation.patch
Patch0008: 0008-zynqmp-generic-fix-compilation.patch
Patch0009: 0009-efi_loader-Fix-serial-console-size-.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if 0%{?is_rk3399} && %{with uboot_atf}
BuildRequires: arm-trusted-firmware-rk3399

View File

@ -1,3 +1,15 @@
-------------------------------------------------------------------
Mon Mar 18 11:17:54 UTC 2019 - Matthias Brugger <mbrugger@suse.com>
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2019.01
* Fix bsc#1124137 by:
* Patches dropped:
0008-Revert-efi_loader-query-serial-cons.patch
0009-zynqmp-generic-fix-compilation.patch
* Patches added:
0008-zynqmp-generic-fix-compilation.patch
0009-efi_loader-Fix-serial-console-size-.patch
-------------------------------------------------------------------
Wed Mar 6 11:30:44 UTC 2019 - Matthias Brugger <mbrugger@suse.com>

View File

@ -68,8 +68,8 @@ Patch0004: 0004-Temp-workaround-for-Chromebook-snow.patch
Patch0005: 0005-zynqmp-Add-generic-target.patch
Patch0006: 0006-tools-zynqmpbif-Add-support-for-loa.patch
Patch0007: 0007-boo-1123170-Remove-ubifs-support-fr.patch
Patch0008: 0008-Revert-efi_loader-query-serial-cons.patch
Patch0009: 0009-zynqmp-generic-fix-compilation.patch
Patch0008: 0008-zynqmp-generic-fix-compilation.patch
Patch0009: 0009-efi_loader-Fix-serial-console-size-.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if 0%{?is_rk3399} && %{with uboot_atf}
BuildRequires: arm-trusted-firmware-rk3399

View File

@ -1,3 +1,15 @@
-------------------------------------------------------------------
Mon Mar 18 11:17:54 UTC 2019 - Matthias Brugger <mbrugger@suse.com>
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2019.01
* Fix bsc#1124137 by:
* Patches dropped:
0008-Revert-efi_loader-query-serial-cons.patch
0009-zynqmp-generic-fix-compilation.patch
* Patches added:
0008-zynqmp-generic-fix-compilation.patch
0009-efi_loader-Fix-serial-console-size-.patch
-------------------------------------------------------------------
Wed Mar 6 11:30:44 UTC 2019 - Matthias Brugger <mbrugger@suse.com>

View File

@ -68,8 +68,8 @@ Patch0004: 0004-Temp-workaround-for-Chromebook-snow.patch
Patch0005: 0005-zynqmp-Add-generic-target.patch
Patch0006: 0006-tools-zynqmpbif-Add-support-for-loa.patch
Patch0007: 0007-boo-1123170-Remove-ubifs-support-fr.patch
Patch0008: 0008-Revert-efi_loader-query-serial-cons.patch
Patch0009: 0009-zynqmp-generic-fix-compilation.patch
Patch0008: 0008-zynqmp-generic-fix-compilation.patch
Patch0009: 0009-efi_loader-Fix-serial-console-size-.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if 0%{?is_rk3399} && %{with uboot_atf}
BuildRequires: arm-trusted-firmware-rk3399

View File

@ -1,3 +1,15 @@
-------------------------------------------------------------------
Mon Mar 18 11:17:54 UTC 2019 - Matthias Brugger <mbrugger@suse.com>
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2019.01
* Fix bsc#1124137 by:
* Patches dropped:
0008-Revert-efi_loader-query-serial-cons.patch
0009-zynqmp-generic-fix-compilation.patch
* Patches added:
0008-zynqmp-generic-fix-compilation.patch
0009-efi_loader-Fix-serial-console-size-.patch
-------------------------------------------------------------------
Wed Mar 6 11:30:44 UTC 2019 - Matthias Brugger <mbrugger@suse.com>

View File

@ -68,8 +68,8 @@ Patch0004: 0004-Temp-workaround-for-Chromebook-snow.patch
Patch0005: 0005-zynqmp-Add-generic-target.patch
Patch0006: 0006-tools-zynqmpbif-Add-support-for-loa.patch
Patch0007: 0007-boo-1123170-Remove-ubifs-support-fr.patch
Patch0008: 0008-Revert-efi_loader-query-serial-cons.patch
Patch0009: 0009-zynqmp-generic-fix-compilation.patch
Patch0008: 0008-zynqmp-generic-fix-compilation.patch
Patch0009: 0009-efi_loader-Fix-serial-console-size-.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if 0%{?is_rk3399} && %{with uboot_atf}
BuildRequires: arm-trusted-firmware-rk3399

View File

@ -1,3 +1,15 @@
-------------------------------------------------------------------
Mon Mar 18 11:17:54 UTC 2019 - Matthias Brugger <mbrugger@suse.com>
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2019.01
* Fix bsc#1124137 by:
* Patches dropped:
0008-Revert-efi_loader-query-serial-cons.patch
0009-zynqmp-generic-fix-compilation.patch
* Patches added:
0008-zynqmp-generic-fix-compilation.patch
0009-efi_loader-Fix-serial-console-size-.patch
-------------------------------------------------------------------
Wed Mar 6 11:30:44 UTC 2019 - Matthias Brugger <mbrugger@suse.com>

View File

@ -68,8 +68,8 @@ Patch0004: 0004-Temp-workaround-for-Chromebook-snow.patch
Patch0005: 0005-zynqmp-Add-generic-target.patch
Patch0006: 0006-tools-zynqmpbif-Add-support-for-loa.patch
Patch0007: 0007-boo-1123170-Remove-ubifs-support-fr.patch
Patch0008: 0008-Revert-efi_loader-query-serial-cons.patch
Patch0009: 0009-zynqmp-generic-fix-compilation.patch
Patch0008: 0008-zynqmp-generic-fix-compilation.patch
Patch0009: 0009-efi_loader-Fix-serial-console-size-.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if 0%{?is_rk3399} && %{with uboot_atf}
BuildRequires: arm-trusted-firmware-rk3399

View File

@ -1,3 +1,15 @@
-------------------------------------------------------------------
Mon Mar 18 11:17:54 UTC 2019 - Matthias Brugger <mbrugger@suse.com>
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2019.01
* Fix bsc#1124137 by:
* Patches dropped:
0008-Revert-efi_loader-query-serial-cons.patch
0009-zynqmp-generic-fix-compilation.patch
* Patches added:
0008-zynqmp-generic-fix-compilation.patch
0009-efi_loader-Fix-serial-console-size-.patch
-------------------------------------------------------------------
Wed Mar 6 11:30:44 UTC 2019 - Matthias Brugger <mbrugger@suse.com>

View File

@ -68,8 +68,8 @@ Patch0004: 0004-Temp-workaround-for-Chromebook-snow.patch
Patch0005: 0005-zynqmp-Add-generic-target.patch
Patch0006: 0006-tools-zynqmpbif-Add-support-for-loa.patch
Patch0007: 0007-boo-1123170-Remove-ubifs-support-fr.patch
Patch0008: 0008-Revert-efi_loader-query-serial-cons.patch
Patch0009: 0009-zynqmp-generic-fix-compilation.patch
Patch0008: 0008-zynqmp-generic-fix-compilation.patch
Patch0009: 0009-efi_loader-Fix-serial-console-size-.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if 0%{?is_rk3399} && %{with uboot_atf}
BuildRequires: arm-trusted-firmware-rk3399

View File

@ -1,3 +1,15 @@
-------------------------------------------------------------------
Mon Mar 18 11:17:54 UTC 2019 - Matthias Brugger <mbrugger@suse.com>
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2019.01
* Fix bsc#1124137 by:
* Patches dropped:
0008-Revert-efi_loader-query-serial-cons.patch
0009-zynqmp-generic-fix-compilation.patch
* Patches added:
0008-zynqmp-generic-fix-compilation.patch
0009-efi_loader-Fix-serial-console-size-.patch
-------------------------------------------------------------------
Wed Mar 6 11:30:44 UTC 2019 - Matthias Brugger <mbrugger@suse.com>

View File

@ -68,8 +68,8 @@ Patch0004: 0004-Temp-workaround-for-Chromebook-snow.patch
Patch0005: 0005-zynqmp-Add-generic-target.patch
Patch0006: 0006-tools-zynqmpbif-Add-support-for-loa.patch
Patch0007: 0007-boo-1123170-Remove-ubifs-support-fr.patch
Patch0008: 0008-Revert-efi_loader-query-serial-cons.patch
Patch0009: 0009-zynqmp-generic-fix-compilation.patch
Patch0008: 0008-zynqmp-generic-fix-compilation.patch
Patch0009: 0009-efi_loader-Fix-serial-console-size-.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if 0%{?is_rk3399} && %{with uboot_atf}
BuildRequires: arm-trusted-firmware-rk3399

View File

@ -1,3 +1,15 @@
-------------------------------------------------------------------
Mon Mar 18 11:17:54 UTC 2019 - Matthias Brugger <mbrugger@suse.com>
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2019.01
* Fix bsc#1124137 by:
* Patches dropped:
0008-Revert-efi_loader-query-serial-cons.patch
0009-zynqmp-generic-fix-compilation.patch
* Patches added:
0008-zynqmp-generic-fix-compilation.patch
0009-efi_loader-Fix-serial-console-size-.patch
-------------------------------------------------------------------
Wed Mar 6 11:30:44 UTC 2019 - Matthias Brugger <mbrugger@suse.com>

View File

@ -68,8 +68,8 @@ Patch0004: 0004-Temp-workaround-for-Chromebook-snow.patch
Patch0005: 0005-zynqmp-Add-generic-target.patch
Patch0006: 0006-tools-zynqmpbif-Add-support-for-loa.patch
Patch0007: 0007-boo-1123170-Remove-ubifs-support-fr.patch
Patch0008: 0008-Revert-efi_loader-query-serial-cons.patch
Patch0009: 0009-zynqmp-generic-fix-compilation.patch
Patch0008: 0008-zynqmp-generic-fix-compilation.patch
Patch0009: 0009-efi_loader-Fix-serial-console-size-.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if 0%{?is_rk3399} && %{with uboot_atf}
BuildRequires: arm-trusted-firmware-rk3399

View File

@ -1,3 +1,15 @@
-------------------------------------------------------------------
Mon Mar 18 11:17:54 UTC 2019 - Matthias Brugger <mbrugger@suse.com>
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2019.01
* Fix bsc#1124137 by:
* Patches dropped:
0008-Revert-efi_loader-query-serial-cons.patch
0009-zynqmp-generic-fix-compilation.patch
* Patches added:
0008-zynqmp-generic-fix-compilation.patch
0009-efi_loader-Fix-serial-console-size-.patch
-------------------------------------------------------------------
Wed Mar 6 11:30:44 UTC 2019 - Matthias Brugger <mbrugger@suse.com>

View File

@ -68,8 +68,8 @@ Patch0004: 0004-Temp-workaround-for-Chromebook-snow.patch
Patch0005: 0005-zynqmp-Add-generic-target.patch
Patch0006: 0006-tools-zynqmpbif-Add-support-for-loa.patch
Patch0007: 0007-boo-1123170-Remove-ubifs-support-fr.patch
Patch0008: 0008-Revert-efi_loader-query-serial-cons.patch
Patch0009: 0009-zynqmp-generic-fix-compilation.patch
Patch0008: 0008-zynqmp-generic-fix-compilation.patch
Patch0009: 0009-efi_loader-Fix-serial-console-size-.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if 0%{?is_rk3399} && %{with uboot_atf}
BuildRequires: arm-trusted-firmware-rk3399

View File

@ -1,3 +1,15 @@
-------------------------------------------------------------------
Mon Mar 18 11:17:54 UTC 2019 - Matthias Brugger <mbrugger@suse.com>
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2019.01
* Fix bsc#1124137 by:
* Patches dropped:
0008-Revert-efi_loader-query-serial-cons.patch
0009-zynqmp-generic-fix-compilation.patch
* Patches added:
0008-zynqmp-generic-fix-compilation.patch
0009-efi_loader-Fix-serial-console-size-.patch
-------------------------------------------------------------------
Wed Mar 6 11:30:44 UTC 2019 - Matthias Brugger <mbrugger@suse.com>

View File

@ -68,8 +68,8 @@ Patch0004: 0004-Temp-workaround-for-Chromebook-snow.patch
Patch0005: 0005-zynqmp-Add-generic-target.patch
Patch0006: 0006-tools-zynqmpbif-Add-support-for-loa.patch
Patch0007: 0007-boo-1123170-Remove-ubifs-support-fr.patch
Patch0008: 0008-Revert-efi_loader-query-serial-cons.patch
Patch0009: 0009-zynqmp-generic-fix-compilation.patch
Patch0008: 0008-zynqmp-generic-fix-compilation.patch
Patch0009: 0009-efi_loader-Fix-serial-console-size-.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if 0%{?is_rk3399} && %{with uboot_atf}
BuildRequires: arm-trusted-firmware-rk3399

View File

@ -1,3 +1,15 @@
-------------------------------------------------------------------
Mon Mar 18 11:17:54 UTC 2019 - Matthias Brugger <mbrugger@suse.com>
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2019.01
* Fix bsc#1124137 by:
* Patches dropped:
0008-Revert-efi_loader-query-serial-cons.patch
0009-zynqmp-generic-fix-compilation.patch
* Patches added:
0008-zynqmp-generic-fix-compilation.patch
0009-efi_loader-Fix-serial-console-size-.patch
-------------------------------------------------------------------
Wed Mar 6 11:30:44 UTC 2019 - Matthias Brugger <mbrugger@suse.com>

View File

@ -68,8 +68,8 @@ Patch0004: 0004-Temp-workaround-for-Chromebook-snow.patch
Patch0005: 0005-zynqmp-Add-generic-target.patch
Patch0006: 0006-tools-zynqmpbif-Add-support-for-loa.patch
Patch0007: 0007-boo-1123170-Remove-ubifs-support-fr.patch
Patch0008: 0008-Revert-efi_loader-query-serial-cons.patch
Patch0009: 0009-zynqmp-generic-fix-compilation.patch
Patch0008: 0008-zynqmp-generic-fix-compilation.patch
Patch0009: 0009-efi_loader-Fix-serial-console-size-.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if 0%{?is_rk3399} && %{with uboot_atf}
BuildRequires: arm-trusted-firmware-rk3399

View File

@ -1,3 +1,15 @@
-------------------------------------------------------------------
Mon Mar 18 11:17:54 UTC 2019 - Matthias Brugger <mbrugger@suse.com>
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2019.01
* Fix bsc#1124137 by:
* Patches dropped:
0008-Revert-efi_loader-query-serial-cons.patch
0009-zynqmp-generic-fix-compilation.patch
* Patches added:
0008-zynqmp-generic-fix-compilation.patch
0009-efi_loader-Fix-serial-console-size-.patch
-------------------------------------------------------------------
Wed Mar 6 11:30:44 UTC 2019 - Matthias Brugger <mbrugger@suse.com>

View File

@ -68,8 +68,8 @@ Patch0004: 0004-Temp-workaround-for-Chromebook-snow.patch
Patch0005: 0005-zynqmp-Add-generic-target.patch
Patch0006: 0006-tools-zynqmpbif-Add-support-for-loa.patch
Patch0007: 0007-boo-1123170-Remove-ubifs-support-fr.patch
Patch0008: 0008-Revert-efi_loader-query-serial-cons.patch
Patch0009: 0009-zynqmp-generic-fix-compilation.patch
Patch0008: 0008-zynqmp-generic-fix-compilation.patch
Patch0009: 0009-efi_loader-Fix-serial-console-size-.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if 0%{?is_rk3399} && %{with uboot_atf}
BuildRequires: arm-trusted-firmware-rk3399

View File

@ -1,3 +1,15 @@
-------------------------------------------------------------------
Mon Mar 18 11:17:54 UTC 2019 - Matthias Brugger <mbrugger@suse.com>
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2019.01
* Fix bsc#1124137 by:
* Patches dropped:
0008-Revert-efi_loader-query-serial-cons.patch
0009-zynqmp-generic-fix-compilation.patch
* Patches added:
0008-zynqmp-generic-fix-compilation.patch
0009-efi_loader-Fix-serial-console-size-.patch
-------------------------------------------------------------------
Wed Mar 6 11:30:44 UTC 2019 - Matthias Brugger <mbrugger@suse.com>

View File

@ -68,8 +68,8 @@ Patch0004: 0004-Temp-workaround-for-Chromebook-snow.patch
Patch0005: 0005-zynqmp-Add-generic-target.patch
Patch0006: 0006-tools-zynqmpbif-Add-support-for-loa.patch
Patch0007: 0007-boo-1123170-Remove-ubifs-support-fr.patch
Patch0008: 0008-Revert-efi_loader-query-serial-cons.patch
Patch0009: 0009-zynqmp-generic-fix-compilation.patch
Patch0008: 0008-zynqmp-generic-fix-compilation.patch
Patch0009: 0009-efi_loader-Fix-serial-console-size-.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if 0%{?is_rk3399} && %{with uboot_atf}
BuildRequires: arm-trusted-firmware-rk3399

View File

@ -1,3 +1,15 @@
-------------------------------------------------------------------
Mon Mar 18 11:17:54 UTC 2019 - Matthias Brugger <mbrugger@suse.com>
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2019.01
* Fix bsc#1124137 by:
* Patches dropped:
0008-Revert-efi_loader-query-serial-cons.patch
0009-zynqmp-generic-fix-compilation.patch
* Patches added:
0008-zynqmp-generic-fix-compilation.patch
0009-efi_loader-Fix-serial-console-size-.patch
-------------------------------------------------------------------
Wed Mar 6 11:30:44 UTC 2019 - Matthias Brugger <mbrugger@suse.com>

View File

@ -68,8 +68,8 @@ Patch0004: 0004-Temp-workaround-for-Chromebook-snow.patch
Patch0005: 0005-zynqmp-Add-generic-target.patch
Patch0006: 0006-tools-zynqmpbif-Add-support-for-loa.patch
Patch0007: 0007-boo-1123170-Remove-ubifs-support-fr.patch
Patch0008: 0008-Revert-efi_loader-query-serial-cons.patch
Patch0009: 0009-zynqmp-generic-fix-compilation.patch
Patch0008: 0008-zynqmp-generic-fix-compilation.patch
Patch0009: 0009-efi_loader-Fix-serial-console-size-.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if 0%{?is_rk3399} && %{with uboot_atf}
BuildRequires: arm-trusted-firmware-rk3399

View File

@ -1,3 +1,15 @@
-------------------------------------------------------------------
Mon Mar 18 11:17:54 UTC 2019 - Matthias Brugger <mbrugger@suse.com>
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2019.01
* Fix bsc#1124137 by:
* Patches dropped:
0008-Revert-efi_loader-query-serial-cons.patch
0009-zynqmp-generic-fix-compilation.patch
* Patches added:
0008-zynqmp-generic-fix-compilation.patch
0009-efi_loader-Fix-serial-console-size-.patch
-------------------------------------------------------------------
Wed Mar 6 11:30:44 UTC 2019 - Matthias Brugger <mbrugger@suse.com>

View File

@ -68,8 +68,8 @@ Patch0004: 0004-Temp-workaround-for-Chromebook-snow.patch
Patch0005: 0005-zynqmp-Add-generic-target.patch
Patch0006: 0006-tools-zynqmpbif-Add-support-for-loa.patch
Patch0007: 0007-boo-1123170-Remove-ubifs-support-fr.patch
Patch0008: 0008-Revert-efi_loader-query-serial-cons.patch
Patch0009: 0009-zynqmp-generic-fix-compilation.patch
Patch0008: 0008-zynqmp-generic-fix-compilation.patch
Patch0009: 0009-efi_loader-Fix-serial-console-size-.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if 0%{?is_rk3399} && %{with uboot_atf}
BuildRequires: arm-trusted-firmware-rk3399

View File

@ -1,3 +1,15 @@
-------------------------------------------------------------------
Mon Mar 18 11:17:54 UTC 2019 - Matthias Brugger <mbrugger@suse.com>
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2019.01
* Fix bsc#1124137 by:
* Patches dropped:
0008-Revert-efi_loader-query-serial-cons.patch
0009-zynqmp-generic-fix-compilation.patch
* Patches added:
0008-zynqmp-generic-fix-compilation.patch
0009-efi_loader-Fix-serial-console-size-.patch
-------------------------------------------------------------------
Wed Mar 6 11:30:44 UTC 2019 - Matthias Brugger <mbrugger@suse.com>

View File

@ -68,8 +68,8 @@ Patch0004: 0004-Temp-workaround-for-Chromebook-snow.patch
Patch0005: 0005-zynqmp-Add-generic-target.patch
Patch0006: 0006-tools-zynqmpbif-Add-support-for-loa.patch
Patch0007: 0007-boo-1123170-Remove-ubifs-support-fr.patch
Patch0008: 0008-Revert-efi_loader-query-serial-cons.patch
Patch0009: 0009-zynqmp-generic-fix-compilation.patch
Patch0008: 0008-zynqmp-generic-fix-compilation.patch
Patch0009: 0009-efi_loader-Fix-serial-console-size-.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if 0%{?is_rk3399} && %{with uboot_atf}
BuildRequires: arm-trusted-firmware-rk3399

View File

@ -1,3 +1,15 @@
-------------------------------------------------------------------
Mon Mar 18 11:17:54 UTC 2019 - Matthias Brugger <mbrugger@suse.com>
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2019.01
* Fix bsc#1124137 by:
* Patches dropped:
0008-Revert-efi_loader-query-serial-cons.patch
0009-zynqmp-generic-fix-compilation.patch
* Patches added:
0008-zynqmp-generic-fix-compilation.patch
0009-efi_loader-Fix-serial-console-size-.patch
-------------------------------------------------------------------
Wed Mar 6 11:30:44 UTC 2019 - Matthias Brugger <mbrugger@suse.com>

View File

@ -68,8 +68,8 @@ Patch0004: 0004-Temp-workaround-for-Chromebook-snow.patch
Patch0005: 0005-zynqmp-Add-generic-target.patch
Patch0006: 0006-tools-zynqmpbif-Add-support-for-loa.patch
Patch0007: 0007-boo-1123170-Remove-ubifs-support-fr.patch
Patch0008: 0008-Revert-efi_loader-query-serial-cons.patch
Patch0009: 0009-zynqmp-generic-fix-compilation.patch
Patch0008: 0008-zynqmp-generic-fix-compilation.patch
Patch0009: 0009-efi_loader-Fix-serial-console-size-.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if 0%{?is_rk3399} && %{with uboot_atf}
BuildRequires: arm-trusted-firmware-rk3399

View File

@ -1,3 +1,15 @@
-------------------------------------------------------------------
Mon Mar 18 11:17:54 UTC 2019 - Matthias Brugger <mbrugger@suse.com>
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2019.01
* Fix bsc#1124137 by:
* Patches dropped:
0008-Revert-efi_loader-query-serial-cons.patch
0009-zynqmp-generic-fix-compilation.patch
* Patches added:
0008-zynqmp-generic-fix-compilation.patch
0009-efi_loader-Fix-serial-console-size-.patch
-------------------------------------------------------------------
Wed Mar 6 11:30:44 UTC 2019 - Matthias Brugger <mbrugger@suse.com>

View File

@ -68,8 +68,8 @@ Patch0004: 0004-Temp-workaround-for-Chromebook-snow.patch
Patch0005: 0005-zynqmp-Add-generic-target.patch
Patch0006: 0006-tools-zynqmpbif-Add-support-for-loa.patch
Patch0007: 0007-boo-1123170-Remove-ubifs-support-fr.patch
Patch0008: 0008-Revert-efi_loader-query-serial-cons.patch
Patch0009: 0009-zynqmp-generic-fix-compilation.patch
Patch0008: 0008-zynqmp-generic-fix-compilation.patch
Patch0009: 0009-efi_loader-Fix-serial-console-size-.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if 0%{?is_rk3399} && %{with uboot_atf}
BuildRequires: arm-trusted-firmware-rk3399

View File

@ -1,3 +1,15 @@
-------------------------------------------------------------------
Mon Mar 18 11:17:54 UTC 2019 - Matthias Brugger <mbrugger@suse.com>
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2019.01
* Fix bsc#1124137 by:
* Patches dropped:
0008-Revert-efi_loader-query-serial-cons.patch
0009-zynqmp-generic-fix-compilation.patch
* Patches added:
0008-zynqmp-generic-fix-compilation.patch
0009-efi_loader-Fix-serial-console-size-.patch
-------------------------------------------------------------------
Wed Mar 6 11:30:44 UTC 2019 - Matthias Brugger <mbrugger@suse.com>

View File

@ -68,8 +68,8 @@ Patch0004: 0004-Temp-workaround-for-Chromebook-snow.patch
Patch0005: 0005-zynqmp-Add-generic-target.patch
Patch0006: 0006-tools-zynqmpbif-Add-support-for-loa.patch
Patch0007: 0007-boo-1123170-Remove-ubifs-support-fr.patch
Patch0008: 0008-Revert-efi_loader-query-serial-cons.patch
Patch0009: 0009-zynqmp-generic-fix-compilation.patch
Patch0008: 0008-zynqmp-generic-fix-compilation.patch
Patch0009: 0009-efi_loader-Fix-serial-console-size-.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if 0%{?is_rk3399} && %{with uboot_atf}
BuildRequires: arm-trusted-firmware-rk3399

View File

@ -1,3 +1,15 @@
-------------------------------------------------------------------
Mon Mar 18 11:17:54 UTC 2019 - Matthias Brugger <mbrugger@suse.com>
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2019.01
* Fix bsc#1124137 by:
* Patches dropped:
0008-Revert-efi_loader-query-serial-cons.patch
0009-zynqmp-generic-fix-compilation.patch
* Patches added:
0008-zynqmp-generic-fix-compilation.patch
0009-efi_loader-Fix-serial-console-size-.patch
-------------------------------------------------------------------
Wed Mar 6 11:30:44 UTC 2019 - Matthias Brugger <mbrugger@suse.com>

View File

@ -68,8 +68,8 @@ Patch0004: 0004-Temp-workaround-for-Chromebook-snow.patch
Patch0005: 0005-zynqmp-Add-generic-target.patch
Patch0006: 0006-tools-zynqmpbif-Add-support-for-loa.patch
Patch0007: 0007-boo-1123170-Remove-ubifs-support-fr.patch
Patch0008: 0008-Revert-efi_loader-query-serial-cons.patch
Patch0009: 0009-zynqmp-generic-fix-compilation.patch
Patch0008: 0008-zynqmp-generic-fix-compilation.patch
Patch0009: 0009-efi_loader-Fix-serial-console-size-.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if 0%{?is_rk3399} && %{with uboot_atf}
BuildRequires: arm-trusted-firmware-rk3399

View File

@ -1,3 +1,15 @@
-------------------------------------------------------------------
Mon Mar 18 11:17:54 UTC 2019 - Matthias Brugger <mbrugger@suse.com>
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2019.01
* Fix bsc#1124137 by:
* Patches dropped:
0008-Revert-efi_loader-query-serial-cons.patch
0009-zynqmp-generic-fix-compilation.patch
* Patches added:
0008-zynqmp-generic-fix-compilation.patch
0009-efi_loader-Fix-serial-console-size-.patch
-------------------------------------------------------------------
Wed Mar 6 11:30:44 UTC 2019 - Matthias Brugger <mbrugger@suse.com>

View File

@ -68,8 +68,8 @@ Patch0004: 0004-Temp-workaround-for-Chromebook-snow.patch
Patch0005: 0005-zynqmp-Add-generic-target.patch
Patch0006: 0006-tools-zynqmpbif-Add-support-for-loa.patch
Patch0007: 0007-boo-1123170-Remove-ubifs-support-fr.patch
Patch0008: 0008-Revert-efi_loader-query-serial-cons.patch
Patch0009: 0009-zynqmp-generic-fix-compilation.patch
Patch0008: 0008-zynqmp-generic-fix-compilation.patch
Patch0009: 0009-efi_loader-Fix-serial-console-size-.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if 0%{?is_rk3399} && %{with uboot_atf}
BuildRequires: arm-trusted-firmware-rk3399

View File

@ -1,3 +1,15 @@
-------------------------------------------------------------------
Mon Mar 18 11:17:54 UTC 2019 - Matthias Brugger <mbrugger@suse.com>
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2019.01
* Fix bsc#1124137 by:
* Patches dropped:
0008-Revert-efi_loader-query-serial-cons.patch
0009-zynqmp-generic-fix-compilation.patch
* Patches added:
0008-zynqmp-generic-fix-compilation.patch
0009-efi_loader-Fix-serial-console-size-.patch
-------------------------------------------------------------------
Wed Mar 6 11:30:44 UTC 2019 - Matthias Brugger <mbrugger@suse.com>

View File

@ -68,8 +68,8 @@ Patch0004: 0004-Temp-workaround-for-Chromebook-snow.patch
Patch0005: 0005-zynqmp-Add-generic-target.patch
Patch0006: 0006-tools-zynqmpbif-Add-support-for-loa.patch
Patch0007: 0007-boo-1123170-Remove-ubifs-support-fr.patch
Patch0008: 0008-Revert-efi_loader-query-serial-cons.patch
Patch0009: 0009-zynqmp-generic-fix-compilation.patch
Patch0008: 0008-zynqmp-generic-fix-compilation.patch
Patch0009: 0009-efi_loader-Fix-serial-console-size-.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if 0%{?is_rk3399} && %{with uboot_atf}
BuildRequires: arm-trusted-firmware-rk3399

View File

@ -1,3 +1,15 @@
-------------------------------------------------------------------
Mon Mar 18 11:17:54 UTC 2019 - Matthias Brugger <mbrugger@suse.com>
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2019.01
* Fix bsc#1124137 by:
* Patches dropped:
0008-Revert-efi_loader-query-serial-cons.patch
0009-zynqmp-generic-fix-compilation.patch
* Patches added:
0008-zynqmp-generic-fix-compilation.patch
0009-efi_loader-Fix-serial-console-size-.patch
-------------------------------------------------------------------
Wed Mar 6 11:30:44 UTC 2019 - Matthias Brugger <mbrugger@suse.com>

View File

@ -68,8 +68,8 @@ Patch0004: 0004-Temp-workaround-for-Chromebook-snow.patch
Patch0005: 0005-zynqmp-Add-generic-target.patch
Patch0006: 0006-tools-zynqmpbif-Add-support-for-loa.patch
Patch0007: 0007-boo-1123170-Remove-ubifs-support-fr.patch
Patch0008: 0008-Revert-efi_loader-query-serial-cons.patch
Patch0009: 0009-zynqmp-generic-fix-compilation.patch
Patch0008: 0008-zynqmp-generic-fix-compilation.patch
Patch0009: 0009-efi_loader-Fix-serial-console-size-.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if 0%{?is_rk3399} && %{with uboot_atf}
BuildRequires: arm-trusted-firmware-rk3399

View File

@ -1,3 +1,15 @@
-------------------------------------------------------------------
Mon Mar 18 11:17:54 UTC 2019 - Matthias Brugger <mbrugger@suse.com>
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2019.01
* Fix bsc#1124137 by:
* Patches dropped:
0008-Revert-efi_loader-query-serial-cons.patch
0009-zynqmp-generic-fix-compilation.patch
* Patches added:
0008-zynqmp-generic-fix-compilation.patch
0009-efi_loader-Fix-serial-console-size-.patch
-------------------------------------------------------------------
Wed Mar 6 11:30:44 UTC 2019 - Matthias Brugger <mbrugger@suse.com>

View File

@ -68,8 +68,8 @@ Patch0004: 0004-Temp-workaround-for-Chromebook-snow.patch
Patch0005: 0005-zynqmp-Add-generic-target.patch
Patch0006: 0006-tools-zynqmpbif-Add-support-for-loa.patch
Patch0007: 0007-boo-1123170-Remove-ubifs-support-fr.patch
Patch0008: 0008-Revert-efi_loader-query-serial-cons.patch
Patch0009: 0009-zynqmp-generic-fix-compilation.patch
Patch0008: 0008-zynqmp-generic-fix-compilation.patch
Patch0009: 0009-efi_loader-Fix-serial-console-size-.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if 0%{?is_rk3399} && %{with uboot_atf}
BuildRequires: arm-trusted-firmware-rk3399

View File

@ -1,3 +1,15 @@
-------------------------------------------------------------------
Mon Mar 18 11:17:54 UTC 2019 - Matthias Brugger <mbrugger@suse.com>
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2019.01
* Fix bsc#1124137 by:
* Patches dropped:
0008-Revert-efi_loader-query-serial-cons.patch
0009-zynqmp-generic-fix-compilation.patch
* Patches added:
0008-zynqmp-generic-fix-compilation.patch
0009-efi_loader-Fix-serial-console-size-.patch
-------------------------------------------------------------------
Wed Mar 6 11:30:44 UTC 2019 - Matthias Brugger <mbrugger@suse.com>

View File

@ -68,8 +68,8 @@ Patch0004: 0004-Temp-workaround-for-Chromebook-snow.patch
Patch0005: 0005-zynqmp-Add-generic-target.patch
Patch0006: 0006-tools-zynqmpbif-Add-support-for-loa.patch
Patch0007: 0007-boo-1123170-Remove-ubifs-support-fr.patch
Patch0008: 0008-Revert-efi_loader-query-serial-cons.patch
Patch0009: 0009-zynqmp-generic-fix-compilation.patch
Patch0008: 0008-zynqmp-generic-fix-compilation.patch
Patch0009: 0009-efi_loader-Fix-serial-console-size-.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if 0%{?is_rk3399} && %{with uboot_atf}
BuildRequires: arm-trusted-firmware-rk3399

View File

@ -1,3 +1,15 @@
-------------------------------------------------------------------
Mon Mar 18 11:17:54 UTC 2019 - Matthias Brugger <mbrugger@suse.com>
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2019.01
* Fix bsc#1124137 by:
* Patches dropped:
0008-Revert-efi_loader-query-serial-cons.patch
0009-zynqmp-generic-fix-compilation.patch
* Patches added:
0008-zynqmp-generic-fix-compilation.patch
0009-efi_loader-Fix-serial-console-size-.patch
-------------------------------------------------------------------
Wed Mar 6 11:30:44 UTC 2019 - Matthias Brugger <mbrugger@suse.com>

View File

@ -68,8 +68,8 @@ Patch0004: 0004-Temp-workaround-for-Chromebook-snow.patch
Patch0005: 0005-zynqmp-Add-generic-target.patch
Patch0006: 0006-tools-zynqmpbif-Add-support-for-loa.patch
Patch0007: 0007-boo-1123170-Remove-ubifs-support-fr.patch
Patch0008: 0008-Revert-efi_loader-query-serial-cons.patch
Patch0009: 0009-zynqmp-generic-fix-compilation.patch
Patch0008: 0008-zynqmp-generic-fix-compilation.patch
Patch0009: 0009-efi_loader-Fix-serial-console-size-.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if 0%{?is_rk3399} && %{with uboot_atf}
BuildRequires: arm-trusted-firmware-rk3399

View File

@ -1,3 +1,15 @@
-------------------------------------------------------------------
Mon Mar 18 11:17:54 UTC 2019 - Matthias Brugger <mbrugger@suse.com>
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2019.01
* Fix bsc#1124137 by:
* Patches dropped:
0008-Revert-efi_loader-query-serial-cons.patch
0009-zynqmp-generic-fix-compilation.patch
* Patches added:
0008-zynqmp-generic-fix-compilation.patch
0009-efi_loader-Fix-serial-console-size-.patch
-------------------------------------------------------------------
Wed Mar 6 11:30:44 UTC 2019 - Matthias Brugger <mbrugger@suse.com>

View File

@ -68,8 +68,8 @@ Patch0004: 0004-Temp-workaround-for-Chromebook-snow.patch
Patch0005: 0005-zynqmp-Add-generic-target.patch
Patch0006: 0006-tools-zynqmpbif-Add-support-for-loa.patch
Patch0007: 0007-boo-1123170-Remove-ubifs-support-fr.patch
Patch0008: 0008-Revert-efi_loader-query-serial-cons.patch
Patch0009: 0009-zynqmp-generic-fix-compilation.patch
Patch0008: 0008-zynqmp-generic-fix-compilation.patch
Patch0009: 0009-efi_loader-Fix-serial-console-size-.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if 0%{?is_rk3399} && %{with uboot_atf}
BuildRequires: arm-trusted-firmware-rk3399

View File

@ -1,3 +1,15 @@
-------------------------------------------------------------------
Mon Mar 18 11:17:54 UTC 2019 - Matthias Brugger <mbrugger@suse.com>
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2019.01
* Fix bsc#1124137 by:
* Patches dropped:
0008-Revert-efi_loader-query-serial-cons.patch
0009-zynqmp-generic-fix-compilation.patch
* Patches added:
0008-zynqmp-generic-fix-compilation.patch
0009-efi_loader-Fix-serial-console-size-.patch
-------------------------------------------------------------------
Wed Mar 6 11:30:44 UTC 2019 - Matthias Brugger <mbrugger@suse.com>

View File

@ -68,8 +68,8 @@ Patch0004: 0004-Temp-workaround-for-Chromebook-snow.patch
Patch0005: 0005-zynqmp-Add-generic-target.patch
Patch0006: 0006-tools-zynqmpbif-Add-support-for-loa.patch
Patch0007: 0007-boo-1123170-Remove-ubifs-support-fr.patch
Patch0008: 0008-Revert-efi_loader-query-serial-cons.patch
Patch0009: 0009-zynqmp-generic-fix-compilation.patch
Patch0008: 0008-zynqmp-generic-fix-compilation.patch
Patch0009: 0009-efi_loader-Fix-serial-console-size-.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if 0%{?is_rk3399} && %{with uboot_atf}
BuildRequires: arm-trusted-firmware-rk3399

View File

@ -1,3 +1,15 @@
-------------------------------------------------------------------
Mon Mar 18 11:17:54 UTC 2019 - Matthias Brugger <mbrugger@suse.com>
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2019.01
* Fix bsc#1124137 by:
* Patches dropped:
0008-Revert-efi_loader-query-serial-cons.patch
0009-zynqmp-generic-fix-compilation.patch
* Patches added:
0008-zynqmp-generic-fix-compilation.patch
0009-efi_loader-Fix-serial-console-size-.patch
-------------------------------------------------------------------
Wed Mar 6 11:30:44 UTC 2019 - Matthias Brugger <mbrugger@suse.com>

View File

@ -68,8 +68,8 @@ Patch0004: 0004-Temp-workaround-for-Chromebook-snow.patch
Patch0005: 0005-zynqmp-Add-generic-target.patch
Patch0006: 0006-tools-zynqmpbif-Add-support-for-loa.patch
Patch0007: 0007-boo-1123170-Remove-ubifs-support-fr.patch
Patch0008: 0008-Revert-efi_loader-query-serial-cons.patch
Patch0009: 0009-zynqmp-generic-fix-compilation.patch
Patch0008: 0008-zynqmp-generic-fix-compilation.patch
Patch0009: 0009-efi_loader-Fix-serial-console-size-.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if 0%{?is_rk3399} && %{with uboot_atf}
BuildRequires: arm-trusted-firmware-rk3399

View File

@ -1,3 +1,15 @@
-------------------------------------------------------------------
Mon Mar 18 11:17:54 UTC 2019 - Matthias Brugger <mbrugger@suse.com>
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2019.01
* Fix bsc#1124137 by:
* Patches dropped:
0008-Revert-efi_loader-query-serial-cons.patch
0009-zynqmp-generic-fix-compilation.patch
* Patches added:
0008-zynqmp-generic-fix-compilation.patch
0009-efi_loader-Fix-serial-console-size-.patch
-------------------------------------------------------------------
Wed Mar 6 11:30:44 UTC 2019 - Matthias Brugger <mbrugger@suse.com>

View File

@ -68,8 +68,8 @@ Patch0004: 0004-Temp-workaround-for-Chromebook-snow.patch
Patch0005: 0005-zynqmp-Add-generic-target.patch
Patch0006: 0006-tools-zynqmpbif-Add-support-for-loa.patch
Patch0007: 0007-boo-1123170-Remove-ubifs-support-fr.patch
Patch0008: 0008-Revert-efi_loader-query-serial-cons.patch
Patch0009: 0009-zynqmp-generic-fix-compilation.patch
Patch0008: 0008-zynqmp-generic-fix-compilation.patch
Patch0009: 0009-efi_loader-Fix-serial-console-size-.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if 0%{?is_rk3399} && %{with uboot_atf}
BuildRequires: arm-trusted-firmware-rk3399

View File

@ -1,3 +1,15 @@
-------------------------------------------------------------------
Mon Mar 18 11:17:54 UTC 2019 - Matthias Brugger <mbrugger@suse.com>
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2019.01
* Fix bsc#1124137 by:
* Patches dropped:
0008-Revert-efi_loader-query-serial-cons.patch
0009-zynqmp-generic-fix-compilation.patch
* Patches added:
0008-zynqmp-generic-fix-compilation.patch
0009-efi_loader-Fix-serial-console-size-.patch
-------------------------------------------------------------------
Wed Mar 6 11:30:44 UTC 2019 - Matthias Brugger <mbrugger@suse.com>

View File

@ -68,8 +68,8 @@ Patch0004: 0004-Temp-workaround-for-Chromebook-snow.patch
Patch0005: 0005-zynqmp-Add-generic-target.patch
Patch0006: 0006-tools-zynqmpbif-Add-support-for-loa.patch
Patch0007: 0007-boo-1123170-Remove-ubifs-support-fr.patch
Patch0008: 0008-Revert-efi_loader-query-serial-cons.patch
Patch0009: 0009-zynqmp-generic-fix-compilation.patch
Patch0008: 0008-zynqmp-generic-fix-compilation.patch
Patch0009: 0009-efi_loader-Fix-serial-console-size-.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if 0%{?is_rk3399} && %{with uboot_atf}
BuildRequires: arm-trusted-firmware-rk3399

View File

@ -1,3 +1,15 @@
-------------------------------------------------------------------
Mon Mar 18 11:17:54 UTC 2019 - Matthias Brugger <mbrugger@suse.com>
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2019.01
* Fix bsc#1124137 by:
* Patches dropped:
0008-Revert-efi_loader-query-serial-cons.patch
0009-zynqmp-generic-fix-compilation.patch
* Patches added:
0008-zynqmp-generic-fix-compilation.patch
0009-efi_loader-Fix-serial-console-size-.patch
-------------------------------------------------------------------
Wed Mar 6 11:30:44 UTC 2019 - Matthias Brugger <mbrugger@suse.com>

View File

@ -68,8 +68,8 @@ Patch0004: 0004-Temp-workaround-for-Chromebook-snow.patch
Patch0005: 0005-zynqmp-Add-generic-target.patch
Patch0006: 0006-tools-zynqmpbif-Add-support-for-loa.patch
Patch0007: 0007-boo-1123170-Remove-ubifs-support-fr.patch
Patch0008: 0008-Revert-efi_loader-query-serial-cons.patch
Patch0009: 0009-zynqmp-generic-fix-compilation.patch
Patch0008: 0008-zynqmp-generic-fix-compilation.patch
Patch0009: 0009-efi_loader-Fix-serial-console-size-.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if 0%{?is_rk3399} && %{with uboot_atf}
BuildRequires: arm-trusted-firmware-rk3399

View File

@ -1,3 +1,15 @@
-------------------------------------------------------------------
Mon Mar 18 11:17:54 UTC 2019 - Matthias Brugger <mbrugger@suse.com>
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2019.01
* Fix bsc#1124137 by:
* Patches dropped:
0008-Revert-efi_loader-query-serial-cons.patch
0009-zynqmp-generic-fix-compilation.patch
* Patches added:
0008-zynqmp-generic-fix-compilation.patch
0009-efi_loader-Fix-serial-console-size-.patch
-------------------------------------------------------------------
Wed Mar 6 11:30:44 UTC 2019 - Matthias Brugger <mbrugger@suse.com>

View File

@ -68,8 +68,8 @@ Patch0004: 0004-Temp-workaround-for-Chromebook-snow.patch
Patch0005: 0005-zynqmp-Add-generic-target.patch
Patch0006: 0006-tools-zynqmpbif-Add-support-for-loa.patch
Patch0007: 0007-boo-1123170-Remove-ubifs-support-fr.patch
Patch0008: 0008-Revert-efi_loader-query-serial-cons.patch
Patch0009: 0009-zynqmp-generic-fix-compilation.patch
Patch0008: 0008-zynqmp-generic-fix-compilation.patch
Patch0009: 0009-efi_loader-Fix-serial-console-size-.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if 0%{?is_rk3399} && %{with uboot_atf}
BuildRequires: arm-trusted-firmware-rk3399

View File

@ -1,3 +1,15 @@
-------------------------------------------------------------------
Mon Mar 18 11:17:54 UTC 2019 - Matthias Brugger <mbrugger@suse.com>
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2019.01
* Fix bsc#1124137 by:
* Patches dropped:
0008-Revert-efi_loader-query-serial-cons.patch
0009-zynqmp-generic-fix-compilation.patch
* Patches added:
0008-zynqmp-generic-fix-compilation.patch
0009-efi_loader-Fix-serial-console-size-.patch
-------------------------------------------------------------------
Wed Mar 6 11:30:44 UTC 2019 - Matthias Brugger <mbrugger@suse.com>

View File

@ -68,8 +68,8 @@ Patch0004: 0004-Temp-workaround-for-Chromebook-snow.patch
Patch0005: 0005-zynqmp-Add-generic-target.patch
Patch0006: 0006-tools-zynqmpbif-Add-support-for-loa.patch
Patch0007: 0007-boo-1123170-Remove-ubifs-support-fr.patch
Patch0008: 0008-Revert-efi_loader-query-serial-cons.patch
Patch0009: 0009-zynqmp-generic-fix-compilation.patch
Patch0008: 0008-zynqmp-generic-fix-compilation.patch
Patch0009: 0009-efi_loader-Fix-serial-console-size-.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if 0%{?is_rk3399} && %{with uboot_atf}
BuildRequires: arm-trusted-firmware-rk3399

View File

@ -1,3 +1,15 @@
-------------------------------------------------------------------
Mon Mar 18 11:17:54 UTC 2019 - Matthias Brugger <mbrugger@suse.com>
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2019.01
* Fix bsc#1124137 by:
* Patches dropped:
0008-Revert-efi_loader-query-serial-cons.patch
0009-zynqmp-generic-fix-compilation.patch
* Patches added:
0008-zynqmp-generic-fix-compilation.patch
0009-efi_loader-Fix-serial-console-size-.patch
-------------------------------------------------------------------
Wed Mar 6 11:30:44 UTC 2019 - Matthias Brugger <mbrugger@suse.com>

View File

@ -68,8 +68,8 @@ Patch0004: 0004-Temp-workaround-for-Chromebook-snow.patch
Patch0005: 0005-zynqmp-Add-generic-target.patch
Patch0006: 0006-tools-zynqmpbif-Add-support-for-loa.patch
Patch0007: 0007-boo-1123170-Remove-ubifs-support-fr.patch
Patch0008: 0008-Revert-efi_loader-query-serial-cons.patch
Patch0009: 0009-zynqmp-generic-fix-compilation.patch
Patch0008: 0008-zynqmp-generic-fix-compilation.patch
Patch0009: 0009-efi_loader-Fix-serial-console-size-.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if 0%{?is_rk3399} && %{with uboot_atf}
BuildRequires: arm-trusted-firmware-rk3399

View File

@ -1,3 +1,15 @@
-------------------------------------------------------------------
Mon Mar 18 11:17:54 UTC 2019 - Matthias Brugger <mbrugger@suse.com>
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2019.01
* Fix bsc#1124137 by:
* Patches dropped:
0008-Revert-efi_loader-query-serial-cons.patch
0009-zynqmp-generic-fix-compilation.patch
* Patches added:
0008-zynqmp-generic-fix-compilation.patch
0009-efi_loader-Fix-serial-console-size-.patch
-------------------------------------------------------------------
Wed Mar 6 11:30:44 UTC 2019 - Matthias Brugger <mbrugger@suse.com>

View File

@ -68,8 +68,8 @@ Patch0004: 0004-Temp-workaround-for-Chromebook-snow.patch
Patch0005: 0005-zynqmp-Add-generic-target.patch
Patch0006: 0006-tools-zynqmpbif-Add-support-for-loa.patch
Patch0007: 0007-boo-1123170-Remove-ubifs-support-fr.patch
Patch0008: 0008-Revert-efi_loader-query-serial-cons.patch
Patch0009: 0009-zynqmp-generic-fix-compilation.patch
Patch0008: 0008-zynqmp-generic-fix-compilation.patch
Patch0009: 0009-efi_loader-Fix-serial-console-size-.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if 0%{?is_rk3399} && %{with uboot_atf}
BuildRequires: arm-trusted-firmware-rk3399

View File

@ -1,3 +1,15 @@
-------------------------------------------------------------------
Mon Mar 18 11:17:54 UTC 2019 - Matthias Brugger <mbrugger@suse.com>
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2019.01
* Fix bsc#1124137 by:
* Patches dropped:
0008-Revert-efi_loader-query-serial-cons.patch
0009-zynqmp-generic-fix-compilation.patch
* Patches added:
0008-zynqmp-generic-fix-compilation.patch
0009-efi_loader-Fix-serial-console-size-.patch
-------------------------------------------------------------------
Wed Mar 6 11:30:44 UTC 2019 - Matthias Brugger <mbrugger@suse.com>

View File

@ -68,8 +68,8 @@ Patch0004: 0004-Temp-workaround-for-Chromebook-snow.patch
Patch0005: 0005-zynqmp-Add-generic-target.patch
Patch0006: 0006-tools-zynqmpbif-Add-support-for-loa.patch
Patch0007: 0007-boo-1123170-Remove-ubifs-support-fr.patch
Patch0008: 0008-Revert-efi_loader-query-serial-cons.patch
Patch0009: 0009-zynqmp-generic-fix-compilation.patch
Patch0008: 0008-zynqmp-generic-fix-compilation.patch
Patch0009: 0009-efi_loader-Fix-serial-console-size-.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if 0%{?is_rk3399} && %{with uboot_atf}
BuildRequires: arm-trusted-firmware-rk3399

View File

@ -1,3 +1,15 @@
-------------------------------------------------------------------
Mon Mar 18 11:17:54 UTC 2019 - Matthias Brugger <mbrugger@suse.com>
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2019.01
* Fix bsc#1124137 by:
* Patches dropped:
0008-Revert-efi_loader-query-serial-cons.patch
0009-zynqmp-generic-fix-compilation.patch
* Patches added:
0008-zynqmp-generic-fix-compilation.patch
0009-efi_loader-Fix-serial-console-size-.patch
-------------------------------------------------------------------
Wed Mar 6 11:30:44 UTC 2019 - Matthias Brugger <mbrugger@suse.com>

View File

@ -68,8 +68,8 @@ Patch0004: 0004-Temp-workaround-for-Chromebook-snow.patch
Patch0005: 0005-zynqmp-Add-generic-target.patch
Patch0006: 0006-tools-zynqmpbif-Add-support-for-loa.patch
Patch0007: 0007-boo-1123170-Remove-ubifs-support-fr.patch
Patch0008: 0008-Revert-efi_loader-query-serial-cons.patch
Patch0009: 0009-zynqmp-generic-fix-compilation.patch
Patch0008: 0008-zynqmp-generic-fix-compilation.patch
Patch0009: 0009-efi_loader-Fix-serial-console-size-.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if 0%{?is_rk3399} && %{with uboot_atf}
BuildRequires: arm-trusted-firmware-rk3399

View File

@ -1,3 +1,15 @@
-------------------------------------------------------------------
Mon Mar 18 11:17:54 UTC 2019 - Matthias Brugger <mbrugger@suse.com>
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2019.01
* Fix bsc#1124137 by:
* Patches dropped:
0008-Revert-efi_loader-query-serial-cons.patch
0009-zynqmp-generic-fix-compilation.patch
* Patches added:
0008-zynqmp-generic-fix-compilation.patch
0009-efi_loader-Fix-serial-console-size-.patch
-------------------------------------------------------------------
Wed Mar 6 11:30:44 UTC 2019 - Matthias Brugger <mbrugger@suse.com>

View File

@ -68,8 +68,8 @@ Patch0004: 0004-Temp-workaround-for-Chromebook-snow.patch
Patch0005: 0005-zynqmp-Add-generic-target.patch
Patch0006: 0006-tools-zynqmpbif-Add-support-for-loa.patch
Patch0007: 0007-boo-1123170-Remove-ubifs-support-fr.patch
Patch0008: 0008-Revert-efi_loader-query-serial-cons.patch
Patch0009: 0009-zynqmp-generic-fix-compilation.patch
Patch0008: 0008-zynqmp-generic-fix-compilation.patch
Patch0009: 0009-efi_loader-Fix-serial-console-size-.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if 0%{?is_rk3399} && %{with uboot_atf}
BuildRequires: arm-trusted-firmware-rk3399

View File

@ -1,3 +1,15 @@
-------------------------------------------------------------------
Mon Mar 18 11:17:54 UTC 2019 - Matthias Brugger <mbrugger@suse.com>
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2019.01
* Fix bsc#1124137 by:
* Patches dropped:
0008-Revert-efi_loader-query-serial-cons.patch
0009-zynqmp-generic-fix-compilation.patch
* Patches added:
0008-zynqmp-generic-fix-compilation.patch
0009-efi_loader-Fix-serial-console-size-.patch
-------------------------------------------------------------------
Wed Mar 6 11:30:44 UTC 2019 - Matthias Brugger <mbrugger@suse.com>

View File

@ -68,8 +68,8 @@ Patch0004: 0004-Temp-workaround-for-Chromebook-snow.patch
Patch0005: 0005-zynqmp-Add-generic-target.patch
Patch0006: 0006-tools-zynqmpbif-Add-support-for-loa.patch
Patch0007: 0007-boo-1123170-Remove-ubifs-support-fr.patch
Patch0008: 0008-Revert-efi_loader-query-serial-cons.patch
Patch0009: 0009-zynqmp-generic-fix-compilation.patch
Patch0008: 0008-zynqmp-generic-fix-compilation.patch
Patch0009: 0009-efi_loader-Fix-serial-console-size-.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if 0%{?is_rk3399} && %{with uboot_atf}
BuildRequires: arm-trusted-firmware-rk3399

View File

@ -1,3 +1,15 @@
-------------------------------------------------------------------
Mon Mar 18 11:17:54 UTC 2019 - Matthias Brugger <mbrugger@suse.com>
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2019.01
* Fix bsc#1124137 by:
* Patches dropped:
0008-Revert-efi_loader-query-serial-cons.patch
0009-zynqmp-generic-fix-compilation.patch
* Patches added:
0008-zynqmp-generic-fix-compilation.patch
0009-efi_loader-Fix-serial-console-size-.patch
-------------------------------------------------------------------
Wed Mar 6 11:30:44 UTC 2019 - Matthias Brugger <mbrugger@suse.com>

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