Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH v4 0/2] Initial LX2160A-RDB support
@ 2025-08-30 17:33 Vladimir Oltean
  2025-08-30 17:33 ` [Buildroot] [PATCH v4 1/2] package/qoriq-restool: new package Vladimir Oltean
                   ` (5 more replies)
  0 siblings, 6 replies; 13+ messages in thread
From: Vladimir Oltean @ 2025-08-30 17:33 UTC (permalink / raw)
  To: buildroot
  Cc: Brandon Maier, Ioana Ciornei, Romain Naour, Vincent Jardin,
	Julien Olivain, Akhilesh Nema

Hello,

This is logically a continuation of "[PATCH v2 00/11] Initial support
for SolidRun LX2160A-CEX7":
https://lore.kernel.org/buildroot/20241208143802.1048266-1-olteanv@gmail.com/

where I was requested to split out the Layerscape BSP uprev and initial
LX2160A support from the more problematic Solidrun board support.
But as with any splitting of a larger series, the version counter reset
at v1 (which can be found here):
https://lore.kernel.org/buildroot/20250302215219.1276480-1-olteanv@gmail.com/

Major v3->v4 change log:
- add BR2_TARGET_UBOOT_NEEDS_GNUTLS=y to lx2160ardb_defconfig
- make sure the qoriq-restool package passes utils/test-pkg

v3 at:
https://lore.kernel.org/buildroot/20250811165531.1533913-1-olteanv@gmail.com/

v2 at:
https://lore.kernel.org/buildroot/20250328180427.3434693-1-olteanv@gmail.com/

Disclaimer copied from original cover letter:
Although I also work at NXP, I am submitting this in a personal
capacity, and for personal use.

Vladimir Oltean (2):
  package/qoriq-restool: new package
  board/lx2160ardb: new platform

 DEVELOPERS                                    |   1 +
 .../common/env-distro-boot-layerscape.txt     |  33 +++++
 board/freescale/common/env-dpaa2.txt          |   6 +
 .../udev/rules.d/74-dpaa2-networking.rules    |  29 ++++
 board/freescale/lx2160ardb/extlinux.conf      |   4 +
 board/freescale/lx2160ardb/genimage.cfg       |  47 +++++++
 .../arm-trusted-firmware.hash                 |   2 +
 .../patches/linux-headers/linux-headers.hash  |   1 +
 .../lx2160ardb/patches/linux/linux.hash       |   2 +
 .../lx2160ardb/patches/uboot/uboot.hash       |   2 +
 board/freescale/lx2160ardb/post-build.sh      |  11 ++
 .../rcw_2200_750_3200_19_5_2_sd.rcw           |  67 +++++++++
 board/freescale/lx2160ardb/readme.txt         | 129 ++++++++++++++++++
 board/freescale/lx2160ardb/uboot-env.txt      |  36 +++++
 configs/lx2160ardb_defconfig                  |  58 ++++++++
 package/Config.in                             |   1 +
 package/qoriq-restool/Config.in               |  22 +++
 package/qoriq-restool/qoriq-restool.hash      |   3 +
 package/qoriq-restool/qoriq-restool.mk        |  25 ++++
 19 files changed, 479 insertions(+)
 create mode 100644 board/freescale/common/env-distro-boot-layerscape.txt
 create mode 100644 board/freescale/common/env-dpaa2.txt
 create mode 100644 board/freescale/common/rootfs_overlay/etc/udev/rules.d/74-dpaa2-networking.rules
 create mode 100644 board/freescale/lx2160ardb/extlinux.conf
 create mode 100644 board/freescale/lx2160ardb/genimage.cfg
 create mode 100644 board/freescale/lx2160ardb/patches/arm-trusted-firmware/arm-trusted-firmware.hash
 create mode 120000 board/freescale/lx2160ardb/patches/linux-headers/linux-headers.hash
 create mode 100644 board/freescale/lx2160ardb/patches/linux/linux.hash
 create mode 100644 board/freescale/lx2160ardb/patches/uboot/uboot.hash
 create mode 100755 board/freescale/lx2160ardb/post-build.sh
 create mode 100644 board/freescale/lx2160ardb/rcw_2200_750_3200_19_5_2_sd.rcw
 create mode 100644 board/freescale/lx2160ardb/readme.txt
 create mode 100644 board/freescale/lx2160ardb/uboot-env.txt
 create mode 100644 configs/lx2160ardb_defconfig
 create mode 100644 package/qoriq-restool/Config.in
 create mode 100644 package/qoriq-restool/qoriq-restool.hash
 create mode 100644 package/qoriq-restool/qoriq-restool.mk

-- 
2.43.0

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

end of thread, other threads:[~2026-02-02 14:45 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-08-30 17:33 [Buildroot] [PATCH v4 0/2] Initial LX2160A-RDB support Vladimir Oltean
2025-08-30 17:33 ` [Buildroot] [PATCH v4 1/2] package/qoriq-restool: new package Vladimir Oltean
2025-09-10 14:03   ` Romain Naour via buildroot
2026-01-02 22:27   ` Thomas Petazzoni via buildroot
2025-08-30 17:33 ` [Buildroot] [PATCH v4 2/2] board/lx2160ardb: new platform Vladimir Oltean
2026-01-02 22:33   ` Thomas Petazzoni via buildroot
2026-02-02 11:42 ` [Buildroot] [PATCH v5 0/3] Initial LX2160A-RDB support Maxime Leroy
2026-02-02 11:42 ` [Buildroot] [PATCH v5 1/3] package/qoriq-restool: add runtime dependencies Maxime Leroy
2026-02-02 14:36   ` Vladimir Oltean
2026-02-02 11:42 ` [Buildroot] [PATCH v5 2/3] package/qoriq-restool: bump to lf-6.12.34-2.1.0 Maxime Leroy
2026-02-02 14:36   ` Vladimir Oltean
2026-02-02 11:42 ` [Buildroot] [PATCH v5 3/3] board/lx2160ardb: new platform Maxime Leroy
2026-02-02 14:45   ` Vladimir Oltean

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox