mbox series

[U-Boot] Please pull u-boot-x86

Message ID CAEUhbmXv8ERnA6TVv=6ZMfSVpBYgTY3yzch0ZK_QYXw9i79-Sg@mail.gmail.com
State Accepted
Delegated to: Tom Rini
Headers show
Series [U-Boot] Please pull u-boot-x86 | expand

Pull-request

https://gitlab.denx.de/u-boot/custodians/u-boot-x86

Message

Bin Meng Aug. 19, 2019, 1:07 a.m. UTC
Hi Tom,

This PR includes the following changes in x86:
- QEMU build warning fix when CONFIG_DISTRO_DEFAULTS=n
- Small fixes on x86 reST docs
- Allow CBFS to be used in SPL
- Remove x86 specific GD flags

The following changes since commit 81fed78c0a59af0d5698b13608eb4d26be84f397:

  Merge tag 'efi-2019-10-rc3' of
https://gitlab.denx.de/u-boot/custodians/u-boot-efi (2019-08-17
10:31:25 -0400)

are available in the git repository at:

  https://gitlab.denx.de/u-boot/custodians/u-boot-x86

for you to fetch changes up to d117f917bfd2ccf4eaf90bddfa256501a554b1a4:

  global_data: Remove comment of reserved arch-specific GD flags
(2019-08-18 21:54:10 +0800)

----------------------------------------------------------------
Bin Meng (1):
      x86: qemu: Fix build warnings with CONFIG_DISTRO_DEFAULTS=n

Heinrich Schuchardt (2):
      doc: formatting slimbootloader.rst
      doc: arch: correct links in x86.rst

Simon Glass (6):
      cbfs: Allow CBFS to be used in SPL
      cbfs: Move declarations above functions
      cbfs: Move static variables into a struct
      cbfs: Move result variable into the struct
      cbfs: Add functions to support multiple CBFSs
      cbfs: Rename camel-case variables

Stefan Roese (2):
      x86: Remove x86 specific GD flags as they are not referenced at all
      global_data: Remove comment of reserved arch-specific GD flags

 arch/x86/cpu/coreboot/coreboot.c   |   3 --
 arch/x86/cpu/start.S               |   9 +----
 arch/x86/cpu/start16.S             |   3 --
 arch/x86/include/asm/global_data.h |   6 ----
 cmd/cbfs.c                         |   4 +--
 doc/arch/x86.rst                   |   3 +-
 doc/board/intel/slimbootloader.rst |   2 +-
 fs/Makefile                        |   1 +
 fs/cbfs/Kconfig                    |  12 +++++++
 fs/cbfs/cbfs.c                     | 231
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++------------------------------------------
 include/asm-generic/global_data.h  |   2 +-
 include/cbfs.h                     |  29 ++++++++++++++++
 include/configs/x86-common.h       |  11 +++---
 13 files changed, 210 insertions(+), 106 deletions(-)

Regards,
Bin

Comments

Tom Rini Aug. 19, 2019, 7:05 p.m. UTC | #1
On Mon, Aug 19, 2019 at 09:07:00AM +0800, Bin Meng wrote:

> Hi Tom,
> 
> This PR includes the following changes in x86:
> - QEMU build warning fix when CONFIG_DISTRO_DEFAULTS=n
> - Small fixes on x86 reST docs
> - Allow CBFS to be used in SPL
> - Remove x86 specific GD flags
> 
> The following changes since commit 81fed78c0a59af0d5698b13608eb4d26be84f397:
> 
>   Merge tag 'efi-2019-10-rc3' of
> https://gitlab.denx.de/u-boot/custodians/u-boot-efi (2019-08-17
> 10:31:25 -0400)
> 
> are available in the git repository at:
> 
>   https://gitlab.denx.de/u-boot/custodians/u-boot-x86
> 
> for you to fetch changes up to d117f917bfd2ccf4eaf90bddfa256501a554b1a4:
> 
>   global_data: Remove comment of reserved arch-specific GD flags
> (2019-08-18 21:54:10 +0800)
> 

Applied to u-boot/master, thanks!