2018.03 RC1, initial rebase, most patches disabled for vanilla testing
This commit is contained in:
parent
ffcdd29013
commit
ad338c0588
@ -48,117 +48,3 @@ index c226913f9e..e9bfbb0203 100644
|
||||
priv->spmi_obs == FDT_ADDR_T_NONE)
|
||||
--
|
||||
2.14.3
|
||||
|
||||
From e254dae128f67bf46fd651570edd2d139306e0af Mon Sep 17 00:00:00 2001
|
||||
From: Jorge Ramirez-Ortiz <jorge.ramirez-ortiz@linaro.org>
|
||||
Date: Tue, 19 Dec 2017 10:17:31 +0100
|
||||
Subject: [PATCH 02/15] poplar: configs: increase gunzip buffer size for the
|
||||
kernel
|
||||
|
||||
Signed-off-by: Jorge Ramirez-Ortiz <jorge.ramirez-ortiz@linaro.org>
|
||||
---
|
||||
include/configs/poplar.h | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/include/configs/poplar.h b/include/configs/poplar.h
|
||||
index 1c39ed153f..8a12b526a8 100644
|
||||
--- a/include/configs/poplar.h
|
||||
+++ b/include/configs/poplar.h
|
||||
@@ -18,7 +18,7 @@
|
||||
#define CONFIG_NR_DRAM_BANKS 2
|
||||
|
||||
/* SYS */
|
||||
-#define CONFIG_SYS_BOOTM_LEN 0x1400000
|
||||
+#define CONFIG_SYS_BOOTM_LEN SZ_64M
|
||||
#define CONFIG_SYS_INIT_SP_ADDR 0x200000
|
||||
#define CONFIG_SYS_LOAD_ADDR 0x800000
|
||||
#define CONFIG_SYS_MALLOC_LEN SZ_32M
|
||||
--
|
||||
2.14.3
|
||||
|
||||
From 85f2939d2130decf299bceb94086eb3fcbb2a5f1 Mon Sep 17 00:00:00 2001
|
||||
From: Rob Clark <robdclark@gmail.com>
|
||||
Date: Fri, 23 Jun 2017 15:36:33 -0400
|
||||
Subject: [PATCH 03/15] dm: core: parse chosen node
|
||||
|
||||
This is the node that would contain, for example, the framebuffer setup
|
||||
by an earlier stage.
|
||||
|
||||
Signed-off-by: Rob Clark <robdclark@gmail.com>
|
||||
---
|
||||
arch/sandbox/dts/test.dts | 7 +++++++
|
||||
drivers/core/root.c | 12 ++++++++++++
|
||||
test/dm/bus.c | 2 +-
|
||||
test/dm/test-fdt.c | 2 +-
|
||||
4 files changed, 21 insertions(+), 2 deletions(-)
|
||||
|
||||
diff --git a/arch/sandbox/dts/test.dts b/arch/sandbox/dts/test.dts
|
||||
index e67d428eb2..3f9e788e6c 100644
|
||||
--- a/arch/sandbox/dts/test.dts
|
||||
+++ b/arch/sandbox/dts/test.dts
|
||||
@@ -478,6 +478,13 @@
|
||||
wdt0: wdt@0 {
|
||||
compatible = "sandbox,wdt";
|
||||
};
|
||||
+
|
||||
+ chosen {
|
||||
+ chosen-test {
|
||||
+ compatible = "denx,u-boot-fdt-test";
|
||||
+ reg = <9 1>;
|
||||
+ };
|
||||
+ };
|
||||
};
|
||||
|
||||
#include "sandbox_pmic.dtsi"
|
||||
diff --git a/drivers/core/root.c b/drivers/core/root.c
|
||||
index 976e2c4fdd..5a1c5994f6 100644
|
||||
--- a/drivers/core/root.c
|
||||
+++ b/drivers/core/root.c
|
||||
@@ -266,6 +266,18 @@ static int dm_scan_fdt_node(struct udevice *parent, const void *blob,
|
||||
for (offset = fdt_first_subnode(blob, offset);
|
||||
offset > 0;
|
||||
offset = fdt_next_subnode(blob, offset)) {
|
||||
+
|
||||
+ /* "chosen" node isn't a device itself but may contain some: */
|
||||
+ if (!strcmp(fdt_get_name(blob, offset, NULL), "chosen")) {
|
||||
+ pr_debug("parsing subnodes of \"chosen\"\n");
|
||||
+
|
||||
+ err = dm_scan_fdt_node(parent, blob, offset,
|
||||
+ pre_reloc_only);
|
||||
+ if (err && !ret)
|
||||
+ ret = err;
|
||||
+ continue;
|
||||
+ }
|
||||
+
|
||||
if (pre_reloc_only &&
|
||||
!dm_fdt_pre_reloc(blob, offset))
|
||||
continue;
|
||||
diff --git a/test/dm/bus.c b/test/dm/bus.c
|
||||
index 7006d4163d..1da398ae3a 100644
|
||||
--- a/test/dm/bus.c
|
||||
+++ b/test/dm/bus.c
|
||||
@@ -105,7 +105,7 @@ UCLASS_DRIVER(testbus) = {
|
||||
/* Test that we can probe for children */
|
||||
static int dm_test_bus_children(struct unit_test_state *uts)
|
||||
{
|
||||
- int num_devices = 6;
|
||||
+ int num_devices = 7;
|
||||
struct udevice *bus;
|
||||
struct uclass *uc;
|
||||
|
||||
diff --git a/test/dm/test-fdt.c b/test/dm/test-fdt.c
|
||||
index dcc2ef8b65..920ccbf016 100644
|
||||
--- a/test/dm/test-fdt.c
|
||||
+++ b/test/dm/test-fdt.c
|
||||
@@ -167,7 +167,7 @@ int dm_check_devices(struct unit_test_state *uts, int num_devices)
|
||||
/* Test that FDT-based binding works correctly */
|
||||
static int dm_test_fdt(struct unit_test_state *uts)
|
||||
{
|
||||
- const int num_devices = 6;
|
||||
+ const int num_devices = 7;
|
||||
struct udevice *dev;
|
||||
struct uclass *uc;
|
||||
int ret;
|
||||
--
|
||||
2.14.3
|
||||
|
||||
|
2
sources
2
sources
@ -1 +1 @@
|
||||
SHA512 (u-boot-2018.01.tar.bz2) = d5be907c2b7c54083ce5ce26d005d356355d2ad4dabcde7432eff8e90a6750dcd7a4b1eeafae52c79187defcf555f9e08b91b0085dc2245e86bc62696b44c5f2
|
||||
SHA512 (u-boot-2018.03-rc1.tar.bz2) = b200f0d3313a601187a890035625b72bcbe82f87e800dd26a22ccd1dd8fb5d4c148b05eb9a889f619cfdeda551649e5357b7d96aed5542ba258bfdc0828df4e2
|
||||
|
@ -1,8 +1,8 @@
|
||||
#global candidate rc3
|
||||
%global candidate rc1
|
||||
|
||||
Name: uboot-tools
|
||||
Version: 2018.01
|
||||
Release: 1%{?candidate:.%{candidate}}%{?dist}
|
||||
Version: 2018.03
|
||||
Release: 0.1%{?candidate:.%{candidate}}%{?dist}
|
||||
Summary: U-Boot utilities
|
||||
License: GPLv2+ BSD LGPL-2.1+ LGPL-2.0+
|
||||
URL: http://www.denx.de/wiki/U-Boot
|
||||
@ -15,17 +15,19 @@ Source4: aarch64-chromebooks
|
||||
Source5: 10-devicetree.install
|
||||
|
||||
# Fedoraisms patches
|
||||
Patch1: uefi-use-Fedora-specific-path-name.patch
|
||||
#Patch1: uefi-use-Fedora-specific-path-name.patch
|
||||
|
||||
# general fixes
|
||||
Patch2: uefi-distro-load-FDT-from-any-partition-on-boot-device.patch
|
||||
#Patch2: uefi-distro-load-FDT-from-any-partition-on-boot-device.patch
|
||||
Patch3: usb-kbd-fixes.patch
|
||||
|
||||
# Board fixes and enablement
|
||||
Patch10: db-generic-fixes.patch
|
||||
Patch11: db410c-fixes.patch
|
||||
Patch12: db820c-support.patch
|
||||
Patch13: dragonboard-fixes.patch
|
||||
#Patch10: db-generic-fixes.patch
|
||||
#Patch11: db410c-fixes.patch
|
||||
#Patch12: db820c-support.patch
|
||||
#Patch13: dragonboard-fixes.patch
|
||||
#Patch14: Rpi-Add-support-for-second-sd-host-controller.patch
|
||||
#Patch15: RPi-Properly-handle-dynamic-serial-configuration.patch
|
||||
# Patch14: mvebu-enable-generic-distro-boot-config.patch
|
||||
# Patch15: mx6-Initial-Hummingboard-2-support.patch
|
||||
|
||||
@ -285,6 +287,9 @@ cp -p board/warp7/README builds/docs/README.warp7
|
||||
%endif
|
||||
|
||||
%changelog
|
||||
* Tue Jan 30 2018 Peter Robinson <pbrobinson@fedoraproject.org> 2018.03-0.1.rc1
|
||||
- 2018.03 RC1
|
||||
|
||||
* Tue Jan 9 2018 Peter Robinson <pbrobinson@fedoraproject.org> 2018.01-1
|
||||
- 2018.01
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user