diff --git a/0001-wandboard-fix-variable-name-so-PXE-boot-works.patch b/0001-wandboard-fix-variable-name-so-PXE-boot-works.patch new file mode 100644 index 0000000..239d122 --- /dev/null +++ b/0001-wandboard-fix-variable-name-so-PXE-boot-works.patch @@ -0,0 +1,30 @@ +From 157e782c643ee8359086e355a78104149395a1b0 Mon Sep 17 00:00:00 2001 +From: Peter Robinson +Date: Wed, 20 Jan 2016 01:26:16 +0000 +Subject: [PATCH] wandboard: fix variable name so PXE boot works + +All boards that support PXE booting use the pxefile_addr_r variable. Standardise +wandboard with this variable as pxe_addr_r isn't used anywhere else so it's a +typo. + +Signed-off-by: Peter Robinson +--- + include/configs/wandboard.h | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/include/configs/wandboard.h b/include/configs/wandboard.h +index 4c8e9e9..8fb0abc 100644 +--- a/include/configs/wandboard.h ++++ b/include/configs/wandboard.h +@@ -150,7 +150,7 @@ + "if test $fdtfile = undefined; then " \ + "echo WARNING: Could not determine dtb to use; fi; \0" \ + "kernel_addr_r=" __stringify(CONFIG_LOADADDR) "\0" \ +- "pxe_addr_r=" __stringify(CONFIG_LOADADDR) "\0" \ ++ "pxefile_addr_r=" __stringify(CONFIG_LOADADDR) "\0" \ + "ramdisk_addr_r=0x13000000\0" \ + "ramdiskaddr=0x13000000\0" \ + "scriptaddr=" __stringify(CONFIG_LOADADDR) "\0" \ +-- +2.5.0 + diff --git a/uboot-tools.spec b/uboot-tools.spec index 073dfb6..0beea28 100644 --- a/uboot-tools.spec +++ b/uboot-tools.spec @@ -2,7 +2,7 @@ Name: uboot-tools Version: 2016.01 -Release: 2%{?candidate:.%{candidate}}%{?dist} +Release: 3%{?candidate:.%{candidate}}%{?dist} Summary: U-Boot utilities Group: Development/Tools @@ -15,6 +15,7 @@ Patch1: 0004-Add-BOOTENV_INIT_COMMAND-for-commands-that-may-be-ne.patch Patch2: 0005-port-utilite-to-distro-generic-boot-commands.patch Patch3: 0001-am335x-BeagleBones-enable-CONFIG_AUTOBOOT_KEYED.patch Patch4: 0001-ARM-tegra-rm-Jetson-TK1-PMIC-GPIO-programming.patch +Patch5: 0001-wandboard-fix-variable-name-so-PXE-boot-works.patch BuildRequires: bc BuildRequires: dtc @@ -164,6 +165,9 @@ install -p -m 0644 tools/env/fw_env.config $RPM_BUILD_ROOT%{_sysconfdir} %endif %changelog +* Wed Jan 20 2016 Peter Robinson 2016.01-3 +- Fix PXE boot on Wandboard (rhbz #1299957) + * Tue Jan 19 2016 Peter Robinson 2016.01-2 - Add patch to fix PCI-e on Jetson TK1 - Add patch fo serial junk on BeagleBone