Update to 2016.01 RC1
This commit is contained in:
parent
db70ea6ed1
commit
e0c22461ba
40
0009-ARM-fix-pandaboard-es-and-a4-revision-ID.patch
Normal file
40
0009-ARM-fix-pandaboard-es-and-a4-revision-ID.patch
Normal file
@ -0,0 +1,40 @@
|
||||
From 52c90ebd27e0a30e8a225e42499522aeb52510d0 Mon Sep 17 00:00:00 2001
|
||||
From: "dbatzle@dcbcyber.com" <dbatzle@dcbcyber.com>
|
||||
Date: Wed, 26 Aug 2015 00:45:58 +0100
|
||||
Subject: [PATCH 9/9] ARM fix pandaboard es and a4 revision ID
|
||||
|
||||
board_name environment variable was not getting set correctly for
|
||||
Pandaboard A4 and ES
|
||||
|
||||
Signed-off-by: David Batzle <dbatzle@dcbcyber.com>
|
||||
CC:Albert Aribaud <albert.u.boot@aribaud.net>
|
||||
CC: Tom Rini <trini@ti.com>
|
||||
---
|
||||
board/ti/panda/panda.c | 4 ++--
|
||||
1 file changed, 2 insertions(+), 2 deletions(-)
|
||||
|
||||
diff --git a/board/ti/panda/panda.c b/board/ti/panda/panda.c
|
||||
index 783ba35..92e1b63 100644
|
||||
--- a/board/ti/panda/panda.c
|
||||
+++ b/board/ti/panda/panda.c
|
||||
@@ -101,7 +101,7 @@ int get_board_revision(void)
|
||||
board_id4 = gpio_get_value(PANDA_ES_BOARD_ID_4_GPIO);
|
||||
|
||||
#ifdef CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG
|
||||
- setenv("board_name", strcat(CONFIG_SYS_BOARD, "-es"));
|
||||
+ setenv("board_name", "panda-es");
|
||||
#endif
|
||||
board_id = ((board_id4 << 4) | (board_id3 << 3) |
|
||||
(board_id2 << 2) | (board_id1 << 1) | (board_id0));
|
||||
@@ -115,7 +115,7 @@ int get_board_revision(void)
|
||||
|
||||
#ifdef CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG
|
||||
if ((board_id >= 0x3) && (processor_rev == OMAP4430_ES2_3))
|
||||
- setenv("board_name", strcat(CONFIG_SYS_BOARD, "-a4"));
|
||||
+ setenv("board_name", "panda-a4");
|
||||
#endif
|
||||
}
|
||||
|
||||
--
|
||||
2.5.0
|
||||
|
2
sources
2
sources
@ -1 +1 @@
|
||||
7c203b0fc3390a122d8e8b75f147eac5 u-boot-2015.10.tar.bz2
|
||||
16240974a8ba9babf1f65c1a70375c9b u-boot-2016.01-rc1.tar.bz2
|
||||
|
@ -1,8 +1,8 @@
|
||||
#global candidate rc5
|
||||
%global candidate rc1
|
||||
|
||||
Name: uboot-tools
|
||||
Version: 2015.10
|
||||
Release: 3%{?candidate:.%{candidate}}%{?dist}
|
||||
Version: 2016.01
|
||||
Release: 0.1%{?candidate:.%{candidate}}%{?dist}
|
||||
Summary: U-Boot utilities
|
||||
|
||||
Group: Development/Tools
|
||||
@ -11,22 +11,9 @@ URL: http://www.denx.de/wiki/U-Boot
|
||||
Source0: ftp://ftp.denx.de/pub/u-boot/u-boot-%{version}%{?candidate:-%{candidate}}.tar.bz2
|
||||
Source1: armv7-boards
|
||||
|
||||
Patch1: 0001-arm-imx-Switch-Wandboard-to-use-config_distro_bootcm.patch
|
||||
Patch2: 0002-am33xx-add-support-for-generic-distro-boot.patch
|
||||
Patch3: 0003-Switch-omap4-boards-to-use-config_distro_defaults-an.patch
|
||||
Patch4: 0004-Add-BOOTENV_INIT_COMMAND-for-commands-that-may-be-ne.patch
|
||||
Patch5: 0005-port-utilite-to-distro-generic-boot-commands.patch
|
||||
Patch6: fix-beaglex15-usb-xhci.patch
|
||||
Patch7: 0001-image.c-Fix-non-Android-booting-with-ramdisk-and-or-.patch
|
||||
Patch8: U-Boot-board-ti-am335x-add-support-for-BeagleBone-Green.patch
|
||||
|
||||
Patch10: 0002-fastboot-Implement-OEM-format-only-when-we-have-MMC-.patch
|
||||
Patch11: 0003-mmc-Add-generic-Kconfig-option.patch
|
||||
Patch12: 0004-sunxi-board-Only-try-to-use-the-MMC-related-function.patch
|
||||
Patch14: 0006-sun5i-Sync-the-DTSI-with-the-kernel.patch
|
||||
Patch15: 0007-axp209-Sync-the-DTSI-with-the-kernel.patch
|
||||
Patch13: 0005-sunxi-Use-Kconfig-CONFIG_MMC.patch
|
||||
Patch18: 0008-sunxi-Add-CHIP-support.patch
|
||||
Patch1: 0004-Add-BOOTENV_INIT_COMMAND-for-commands-that-may-be-ne.patch
|
||||
Patch2: 0005-port-utilite-to-distro-generic-boot-commands.patch
|
||||
Patch3: U-Boot-board-ti-am335x-add-support-for-BeagleBone-Green.patch
|
||||
|
||||
BuildRequires: bc
|
||||
BuildRequires: dtc
|
||||
@ -73,7 +60,7 @@ git commit -a -q -m "%{version} baseline"
|
||||
git am %{patches} </dev/null
|
||||
git config --unset user.email
|
||||
git config --unset user.name
|
||||
|
||||
sleep 10
|
||||
rm -rf .git
|
||||
|
||||
%build
|
||||
@ -176,6 +163,9 @@ install -p -m 0644 tools/env/fw_env.config $RPM_BUILD_ROOT%{_sysconfdir}
|
||||
%endif
|
||||
|
||||
%changelog
|
||||
* Tue Nov 17 2015 Peter Robinson <pbrobinson@fedoraproject.org> 2016.01-0.1rc1
|
||||
- Update to 2016.01 RC1
|
||||
|
||||
* Sat Nov 14 2015 Peter Robinson <pbrobinson@fedoraproject.org> 2015.10-3
|
||||
- Use upstream Wanboard distro boot patch
|
||||
- Add support for BeagleBone Green
|
||||
|
Loading…
Reference in New Issue
Block a user