All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH v3 0/9] add ARM FDPIC support
@ 2024-09-29 20:14 Dario Binacchi
  2024-09-29 20:14 ` [Buildroot] [PATCH v3 1/9] Revert: "arch: drop now useless support for FDPIC" Dario Binacchi
                   ` (9 more replies)
  0 siblings, 10 replies; 11+ messages in thread
From: Dario Binacchi @ 2024-09-29 20:14 UTC (permalink / raw)
  To: buildroot; +Cc: Giulio Benetti, Dario Binacchi, Romain Naour, Thomas Petazzoni

I resumed the series [1] submitted by Waldemar Brodkorb, where I made
some changes to the patch [9/9] "configs/stm32f746_disco_sd: new defconfig"
based on the suggestions provided by Thomas Petazzoni during the review
of a previous series [2].

Like Waldemar, I also did not encounter any issues during testing on the
board.

[1] https://patchwork.ozlabs.org/project/buildroot/cover/20240919035308.2622723-1-wbx@openadk.org/
[2] https://patchwork.ozlabs.org/project/buildroot/patch/20240822183742.3550055-3-dario.binacchi@amarulasolutions.com/

Ben Wolsieffer (6):
  Revert: "arch: drop now useless support for FDPIC"
  arch: don't enable FDPIC binaries by default
  arch/arm: add support for FDPIC
  boot/uboot: pass -mno-fdpic if FDPIC is enabled
  linux: pass -mno-fdpic if FDPIC is enabled
  package/uclibc: enable NPTL on no-MMU ARM w/ FDPIC

Dario Binacchi (2):
  Add the right dependencies on BR2_BINFMT_* to the toolchains
  configs/stm32f746_disco_sd: new defconfig

Waldemar Brodkorb (1):
  package/busybox: remove STATIC from busybox-minimal.config

 DEVELOPERS                                    |   4 +
 arch/Config.in                                |  14 ++
 .../stm32f746-disco/extlinux.conf             |   4 +
 .../stm32f746-disco/flash_sd.sh               |  22 ++
 .../stm32f746-disco/genimage.cfg              |  10 +
 .../stm32f746-disco/linux.fragment            |  13 ++
 .../patches/linux-headers/linux-headers.hash  |   1 +
 .../stm32f746-disco/patches/linux/linux.hash  |   2 +
 .../stm32f746-disco/patches/uboot/uboot.hash  |   2 +
 .../stm32f746-disco/post-build.sh             |   4 +
 .../stm32f746-disco/readme.txt                |  31 +++
 boot/uboot/uboot.mk                           |   5 +
 configs/stm32f746_disco_sd_defconfig          |  31 +++
 linux/linux.mk                                |   8 +-
 package/Makefile.in                           |   6 +
 package/busybox/busybox-minimal.config        |   2 +-
 package/glibc/Config.in                       |   1 +
 package/musl/Config.in                        |   1 +
 package/uclibc/Config.in                      |   2 +-
 package/uclibc/uclibc.mk                      |   7 +
 .../Config.in                                 |   1 +
 .../toolchain-external-arm-aarch64/Config.in  |   1 +
 .../Config.in.options                         | 194 ++++++++++++++++++
 .../Config.in                                 |   1 +
 .../Config.in                                 |   1 +
 .../Config.in                                 |   1 +
 .../toolchain-external-linaro-arm/Config.in   |   1 +
 .../toolchain-external-linaro-armeb/Config.in |   1 +
 .../toolchain-external-synopsys-arc/Config.in |   1 +
 29 files changed, 369 insertions(+), 3 deletions(-)
 create mode 100644 board/stmicroelectronics/stm32f746-disco/extlinux.conf
 create mode 100755 board/stmicroelectronics/stm32f746-disco/flash_sd.sh
 create mode 100644 board/stmicroelectronics/stm32f746-disco/genimage.cfg
 create mode 100644 board/stmicroelectronics/stm32f746-disco/linux.fragment
 create mode 120000 board/stmicroelectronics/stm32f746-disco/patches/linux-headers/linux-headers.hash
 create mode 100644 board/stmicroelectronics/stm32f746-disco/patches/linux/linux.hash
 create mode 100644 board/stmicroelectronics/stm32f746-disco/patches/uboot/uboot.hash
 create mode 100755 board/stmicroelectronics/stm32f746-disco/post-build.sh
 create mode 100644 board/stmicroelectronics/stm32f746-disco/readme.txt
 create mode 100644 configs/stm32f746_disco_sd_defconfig

-- 
2.43.0

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

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

end of thread, other threads:[~2024-10-02 20:39 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-09-29 20:14 [Buildroot] [PATCH v3 0/9] add ARM FDPIC support Dario Binacchi
2024-09-29 20:14 ` [Buildroot] [PATCH v3 1/9] Revert: "arch: drop now useless support for FDPIC" Dario Binacchi
2024-09-29 20:14 ` [Buildroot] [PATCH v3 2/9] arch: don't enable FDPIC binaries by default Dario Binacchi
2024-09-29 20:14 ` [Buildroot] [RFC PATCH v3 3/9] Add the right dependencies on BR2_BINFMT_* to the toolchains Dario Binacchi
2024-09-29 20:14 ` [Buildroot] [PATCH v3 4/9] arch/arm: add support for FDPIC Dario Binacchi
2024-09-29 20:14 ` [Buildroot] [PATCH v3 5/9] boot/uboot: pass -mno-fdpic if FDPIC is enabled Dario Binacchi
2024-09-29 20:14 ` [Buildroot] [PATCH v3 6/9] linux: " Dario Binacchi
2024-09-29 20:14 ` [Buildroot] [PATCH v3 7/9] package/uclibc: enable NPTL on no-MMU ARM w/ FDPIC Dario Binacchi
2024-09-29 20:14 ` [Buildroot] [PATCH v3 8/9] package/busybox: remove STATIC from busybox-minimal.config Dario Binacchi
2024-09-29 20:14 ` [Buildroot] [PATCH v3 9/9] configs/stm32f746_disco_sd: new defconfig Dario Binacchi
2024-10-02 20:39 ` [Buildroot] [PATCH v3 0/9] add ARM FDPIC support Thomas Petazzoni via buildroot

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.