Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH v2 00/15] Add support for STM32F469-DISCO & STM32F469-DISCO boards
@ 2016-02-22 18:59 Lee Jones
  2016-02-22 18:59 ` [Buildroot] [PATCH v2 01/15] boot: Add new bootloader afboot-stm32 Lee Jones
                   ` (15 more replies)
  0 siblings, 16 replies; 19+ messages in thread
From: Lee Jones @ 2016-02-22 18:59 UTC (permalink / raw)
  To: buildroot

After this set is applied and you have the correct toolchain installed it
should be trivial to configure, build and flash the; bootloader, DTB and
kernel (with CPIO rootfs attached) to the board(s).

Lee Jones (15):
  boot: Add new bootloader afboot-stm32
  boards: stm32f469-disco: Add kernel patch to provide top compatible
    string
  boards: stm32f469-disco: Add kernel patch to provide top compatible
    string
  boards: stm32f469-disco: Add kernel patch to provide DTS file
  boards: stm32f469-disco: Add kernel patch to provide DTS file
  boards: stm32f469-disco: Add kernel patch to set RAM address to 0
  boards: stm32f469-disco: Add kernel patch to set RAM address to 0
  boards: stm32f469-disco: Add OpenOCD patch to supply a new config
  boards: stm32f469-disco: Add OpenOCD patch to support on-board flash
    chip
  boards: stm32f469-disco: Add a helper script to flash images
  boards: stm32f429-disco: Add a readme.txt
  boards: stm32f429-disco: Add a helper script to flash images
  boards: stm32f469-disco: Add a readme.txt
  configs: Add a tested working STM32F469-DISCO defconfig
  configs: Add a tested working STM32F429-DISCO defconfig

 .../stm32/stm32f429-disco/flash.sh                 |  12 +++
 .../stm32/stm32f429-disco/readme.txt               |  10 ++
 .../stm32/stm32f469-disco/flash.sh                 |  12 +++
 .../linux/0001-kernel-add-top-compatible.patch     |  25 +++++
 .../patches/linux/0002-kernel-new-dts-file.patch   | 112 +++++++++++++++++++++
 .../linux/0003-kernel-config-frag-ram.patch        |  28 ++++++
 .../patches/openocd/0.9.0/0001-add-config.patch    |  37 +++++++
 .../patches/openocd/0.9.0/0002-flash-nor.patch     |  37 +++++++
 .../stm32/stm32f469-disco/readme.txt               |  10 ++
 boot/Config.in                                     |   1 +
 boot/afboot-stm32/Config.in                        |   6 ++
 boot/afboot-stm32/afboot-stm32.hash                |   2 +
 boot/afboot-stm32/afboot-stm32.mk                  |  18 ++++
 configs/stm32f429_disco_defconfig                  |  16 +++
 configs/stm32f469_disco_defconfig                  |  18 ++++
 15 files changed, 344 insertions(+)
 create mode 100755 board/stmicroelectronics/stm32/stm32f429-disco/flash.sh
 create mode 100644 board/stmicroelectronics/stm32/stm32f429-disco/readme.txt
 create mode 100755 board/stmicroelectronics/stm32/stm32f469-disco/flash.sh
 create mode 100644 board/stmicroelectronics/stm32/stm32f469-disco/patches/linux/0001-kernel-add-top-compatible.patch
 create mode 100644 board/stmicroelectronics/stm32/stm32f469-disco/patches/linux/0002-kernel-new-dts-file.patch
 create mode 100644 board/stmicroelectronics/stm32/stm32f469-disco/patches/linux/0003-kernel-config-frag-ram.patch
 create mode 100644 board/stmicroelectronics/stm32/stm32f469-disco/patches/openocd/0.9.0/0001-add-config.patch
 create mode 100644 board/stmicroelectronics/stm32/stm32f469-disco/patches/openocd/0.9.0/0002-flash-nor.patch
 create mode 100644 board/stmicroelectronics/stm32/stm32f469-disco/readme.txt
 create mode 100644 boot/afboot-stm32/Config.in
 create mode 100644 boot/afboot-stm32/afboot-stm32.hash
 create mode 100644 boot/afboot-stm32/afboot-stm32.mk
 create mode 100644 configs/stm32f429_disco_defconfig
 create mode 100644 configs/stm32f469_disco_defconfig

-- 
1.9.1

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

end of thread, other threads:[~2016-02-22 22:33 UTC | newest]

Thread overview: 19+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-02-22 18:59 [Buildroot] [PATCH v2 00/15] Add support for STM32F469-DISCO & STM32F469-DISCO boards Lee Jones
2016-02-22 18:59 ` [Buildroot] [PATCH v2 01/15] boot: Add new bootloader afboot-stm32 Lee Jones
2016-02-22 21:51   ` Thomas Petazzoni
2016-02-22 22:33   ` Thomas Petazzoni
2016-02-22 18:59 ` [Buildroot] [PATCH v2 02/15] boards: stm32f469-disco: Add kernel patch to provide top compatible string Lee Jones
2016-02-22 18:59 ` [Buildroot] [PATCH v2 03/15] " Lee Jones
2016-02-22 18:59 ` [Buildroot] [PATCH v2 04/15] boards: stm32f469-disco: Add kernel patch to provide DTS file Lee Jones
2016-02-22 18:59 ` [Buildroot] [PATCH v2 05/15] " Lee Jones
2016-02-22 18:59 ` [Buildroot] [PATCH v2 06/15] boards: stm32f469-disco: Add kernel patch to set RAM address to 0 Lee Jones
2016-02-22 18:59 ` [Buildroot] [PATCH v2 07/15] " Lee Jones
2016-02-22 18:59 ` [Buildroot] [PATCH v2 08/15] boards: stm32f469-disco: Add OpenOCD patch to supply a new config Lee Jones
2016-02-22 18:59 ` [Buildroot] [PATCH v2 09/15] boards: stm32f469-disco: Add OpenOCD patch to support on-board flash chip Lee Jones
2016-02-22 18:59 ` [Buildroot] [PATCH v2 10/15] boards: stm32f469-disco: Add a helper script to flash images Lee Jones
2016-02-22 18:59 ` [Buildroot] [PATCH v2 11/15] boards: stm32f429-disco: Add a readme.txt Lee Jones
2016-02-22 18:59 ` [Buildroot] [PATCH v2 12/15] boards: stm32f429-disco: Add a helper script to flash images Lee Jones
2016-02-22 18:59 ` [Buildroot] [PATCH v2 13/15] boards: stm32f469-disco: Add a readme.txt Lee Jones
2016-02-22 18:59 ` [Buildroot] [PATCH v2 14/15] configs: Add a tested working STM32F469-DISCO defconfig Lee Jones
2016-02-22 18:59 ` [Buildroot] [PATCH v2 15/15] configs: Add a tested working STM32F429-DISCO defconfig Lee Jones
2016-02-22 21:54 ` [Buildroot] [PATCH v2 00/15] Add support for STM32F469-DISCO & STM32F469-DISCO boards Thomas Petazzoni

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