All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 00/12] nxp: fix dhcp and efi boot support for various socs
@ 2019-01-29 15:38 Mian Yousaf Kaukab
  2019-01-29 15:38 ` [U-Boot] [PATCH 01/12] nxp: ls1088a: fix dppa exit when using efi boot Mian Yousaf Kaukab
                   ` (12 more replies)
  0 siblings, 13 replies; 16+ messages in thread
From: Mian Yousaf Kaukab @ 2019-01-29 15:38 UTC (permalink / raw)
  To: u-boot

This patch series fixes dhcp and efi boot support for
nxp ls1043a, ls1046a, ls1088a and ls208xa platforms.

Patches are independent and can be cherry-picked individually.

Thank you,

Best regards,
Yousaf

Mian Yousaf Kaukab (12):
  nxp: ls1088a: fix dppa exit when using efi boot
  nxp: ls1088a: fix fsl-mc search path
  Revert "ls1088a: remove dhcp function from u-boot env as boot source"
  nxp: ls1088a: use default scan_dev_for_boot
  Revert "ls2080ardb: remove dhcp function from env as boot source"
  nxp: ls2080a: use default scan_dev_for_boot
  nxp: ls1046a: enable EFI_LOADER_BOUNCE_BUFFER
  nxp: ls1046a: enable dhcp boot
  nxp: ls1046a: use default scan_dev_for_boot
  nxp: ls1043a: enable EFI_LOADER_BOUNCE_BUFFER
  nxp: ls1043a: enable dhcp boot
  nxp: ls1043a: use default scan_dev_for_boot

 board/freescale/ls1088a/ls1088a.c               | 12 +++++++-----
 configs/ls1043aqds_defconfig                    |  1 +
 configs/ls1043aqds_lpuart_defconfig             |  1 +
 configs/ls1043aqds_nand_defconfig               |  1 +
 configs/ls1043aqds_nor_ddr3_defconfig           |  1 +
 configs/ls1043aqds_qspi_defconfig               |  1 +
 configs/ls1043aqds_sdcard_ifc_defconfig         |  1 +
 configs/ls1043aqds_sdcard_qspi_defconfig        |  1 +
 configs/ls1043aqds_tfa_SECURE_BOOT_defconfig    |  1 +
 configs/ls1043aqds_tfa_defconfig                |  1 +
 configs/ls1043ardb_SECURE_BOOT_defconfig        |  1 +
 configs/ls1043ardb_defconfig                    |  1 +
 configs/ls1043ardb_nand_SECURE_BOOT_defconfig   |  1 +
 configs/ls1043ardb_nand_defconfig               |  1 +
 configs/ls1043ardb_sdcard_SECURE_BOOT_defconfig |  1 +
 configs/ls1043ardb_sdcard_defconfig             |  1 +
 configs/ls1043ardb_tfa_SECURE_BOOT_defconfig    |  1 +
 configs/ls1043ardb_tfa_defconfig                |  1 +
 configs/ls1046aqds_SECURE_BOOT_defconfig        |  1 +
 configs/ls1046aqds_defconfig                    |  1 +
 configs/ls1046aqds_lpuart_defconfig             |  1 +
 configs/ls1046aqds_nand_defconfig               |  1 +
 configs/ls1046aqds_qspi_defconfig               |  1 +
 configs/ls1046aqds_sdcard_ifc_defconfig         |  1 +
 configs/ls1046aqds_sdcard_qspi_defconfig        |  1 +
 configs/ls1046aqds_tfa_SECURE_BOOT_defconfig    |  1 +
 configs/ls1046aqds_tfa_defconfig                |  1 +
 configs/ls1046ardb_emmc_defconfig               |  1 +
 configs/ls1046ardb_qspi_SECURE_BOOT_defconfig   |  1 +
 configs/ls1046ardb_qspi_defconfig               |  1 +
 configs/ls1046ardb_qspi_spl_defconfig           |  1 +
 configs/ls1046ardb_sdcard_SECURE_BOOT_defconfig |  1 +
 configs/ls1046ardb_sdcard_defconfig             |  1 +
 configs/ls1046ardb_tfa_SECURE_BOOT_defconfig    |  1 +
 configs/ls1046ardb_tfa_defconfig                |  1 +
 include/configs/ls1043a_common.h                |  9 ++-------
 include/configs/ls1046a_common.h                | 10 ++--------
 include/configs/ls1088ardb.h                    | 15 ++-------------
 include/configs/ls2080ardb.h                    | 15 ++-------------
 39 files changed, 49 insertions(+), 46 deletions(-)

-- 
2.11.0

^ permalink raw reply	[flat|nested] 16+ messages in thread

end of thread, other threads:[~2019-03-04  8:52 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-01-29 15:38 [U-Boot] [PATCH 00/12] nxp: fix dhcp and efi boot support for various socs Mian Yousaf Kaukab
2019-01-29 15:38 ` [U-Boot] [PATCH 01/12] nxp: ls1088a: fix dppa exit when using efi boot Mian Yousaf Kaukab
2019-02-26  8:52   ` Ashish Kumar
2019-01-29 15:38 ` [U-Boot] [PATCH 02/12] nxp: ls1088a: fix fsl-mc search path Mian Yousaf Kaukab
2019-01-29 15:38 ` [U-Boot] [PATCH 03/12] Revert "ls1088a: remove dhcp function from u-boot env as boot source" Mian Yousaf Kaukab
2019-01-29 15:38 ` [U-Boot] [PATCH 04/12] nxp: ls1088a: use default scan_dev_for_boot Mian Yousaf Kaukab
2019-01-29 15:38 ` [U-Boot] [PATCH 05/12] Revert "ls2080ardb: remove dhcp function from env as boot source" Mian Yousaf Kaukab
2019-01-29 15:38 ` [U-Boot] [PATCH 06/12] nxp: ls2080a: use default scan_dev_for_boot Mian Yousaf Kaukab
2019-01-29 15:38 ` [U-Boot] [PATCH 07/12] nxp: ls1046a: enable EFI_LOADER_BOUNCE_BUFFER Mian Yousaf Kaukab
2019-01-29 15:38 ` [U-Boot] [PATCH 08/12] nxp: ls1046a: enable dhcp boot Mian Yousaf Kaukab
2019-01-29 15:38 ` [U-Boot] [PATCH 09/12] nxp: ls1046a: use default scan_dev_for_boot Mian Yousaf Kaukab
2019-01-29 15:38 ` [U-Boot] [PATCH 10/12] nxp: ls1043a: enable EFI_LOADER_BOUNCE_BUFFER Mian Yousaf Kaukab
2019-01-29 15:38 ` [U-Boot] [PATCH 11/12] nxp: ls1043a: enable dhcp boot Mian Yousaf Kaukab
2019-01-29 15:38 ` [U-Boot] [PATCH 12/12] nxp: ls1043a: use default scan_dev_for_boot Mian Yousaf Kaukab
2019-02-26  9:06   ` Ashish Kumar
2019-03-04  8:52 ` [U-Boot] [PATCH 00/12] nxp: fix dhcp and efi boot support for various socs Prabhakar Kushwaha

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.