Build Xilnix ZynqMP zcu100 (96boards Ultra96)

This commit is contained in:
Peter Robinson 2018-05-02 11:04:07 +01:00
parent 18c86f4d2a
commit faff36ceac
3 changed files with 36 additions and 1 deletions

View File

@ -27,3 +27,4 @@ sopine_baseboard
vexpress_aemv8a_dram
vexpress_aemv8a_juno
vexpress_aemv8a_semi
xilinx_zynqmp_zcu100_revC

View File

@ -0,0 +1,30 @@
From e366fc5f30e23cff40e25c9160dd46d07f921cd9 Mon Sep 17 00:00:00 2001
From: Peter Robinson <pbrobinson@gmail.com>
Date: Wed, 2 May 2018 10:32:27 +0100
Subject: [PATCH] add common.h include to stdio_dev.h
stdio_dev.h references uchar which is defined in common.h and causes build
failures on toolchains which have tightened build flags such as Fedora 28. This
was causing build failures on devices such as Xilinx zynqmp targets which
include stdio_dev.h via FPGA drivers.
Signed-off-by: Peter Robinson <pbrobinson@gmail.com>
---
include/stdio_dev.h | 1 +
1 file changed, 1 insertion(+)
diff --git a/include/stdio_dev.h b/include/stdio_dev.h
index 3164fa2a55..eed4385100 100644
--- a/include/stdio_dev.h
+++ b/include/stdio_dev.h
@@ -8,6 +8,7 @@
#ifndef _STDIO_DEV_H_
#define _STDIO_DEV_H_
+#include <common.h>
#include <linux/list.h>
/*
--
2.17.0

View File

@ -2,7 +2,7 @@
Name: uboot-tools
Version: 2018.05
Release: 0.4%{?candidate:.%{candidate}}%{?dist}
Release: 0.5%{?candidate:.%{candidate}}%{?dist}
Summary: U-Boot utilities
License: GPLv2+ BSD LGPL-2.1+ LGPL-2.0+
URL: http://www.denx.de/wiki/U-Boot
@ -20,6 +20,7 @@ Patch1: uefi-use-Fedora-specific-path-name.patch
# general fixes
Patch2: uefi-distro-load-FDT-from-any-partition-on-boot-device.patch
Patch3: usb-kbd-fixes.patch
Patch4: add-common.h-include-to-stdio_dev.h.patch
# Board fixes and enablement
Patch11: mx6cuboxi-add-support-for-detecting-Revision-1.5-SoM.patch
@ -289,6 +290,9 @@ cp -p board/warp7/README builds/docs/README.warp7
%endif
%changelog
* Wed May 2 2018 Peter Robinson <pbrobinson@fedoraproject.org> 2018.05-0.5-rc3
- Build Xilnix ZynqMP zcu100 (96boards Ultra96)
* Tue May 1 2018 Peter Robinson <pbrobinson@fedoraproject.org> 2018.05-0.4-rc3
- 2018.05 RC3