Name Date Size #Lines LOC

..--

patches/H05-Jun-2025-9676

extlinux.confH A D05-Jun-2025206 54

flash.shH A D05-Jun-2025415 1914

flash_xip.shH A D05-Jun-2025583 2116

genimage.cfgH A D05-Jun-2025303 2823

linux-xip.configH A D05-Jun-20253.3 KiB121120

linux.fragmentH A D05-Jun-2025164 87

post-build.shH A D05-Jun-2025118 52

readme.txtH A D05-Jun-20251.2 KiB4630

readme_xip.txtH A D05-Jun-2025555 2516

readme.txt

1STM32F469 Discovery
2===================
3
4This tutorial describes how to use the predefined Buildroot
5configuration for the STM32F469 Discovery evaluation platform.
6
7Building
8--------
9
10  make stm32f469_disco_defconfig
11  make
12
13Flashing
14--------
15
16  ./board/stmicroelectronics/stm32f469-disco/flash.sh output/
17
18It will flash the U-boot bootloader.
19
20Creating SD card
21----------------
22
23Buildroot prepares an"sdcard.img" image in the output/images/ directory,
24ready to be dumped on a SD card. Launch the following command as root:
25
26  dd if=output/images/sdcard.img of=/dev/<your-sd-device>
27
28*** WARNING! This will destroy all the card content. Use with care! ***
29
30For details about the medium image layout and its content, see the
31definition in board/stmicroelectronics/stm32f469-disco/genimage.cfg.
32
33Framebuffer
34-----------
35After Linux boots, /dev/fb0 will be accessible. You can control the
36brightness of the display after enabling the framebuffer by running the
37following commands:
38
39   # echo 0 0 > /sys/class/graphics/fb0/pan
40   # echo 255 >/sys/class/backlight/40016c00.dsi.0/brightness
41
42The brightness ranges from 0 to 255, as you can see running the
43command:
44
45   # cat /sys/class/backlight/40016c00.dsi.0/max_brightness
46

readme_xip.txt

1STM32F469 Discovery
2===================
3
4This tutorial describes how to use the predefined Buildroot
5configuration for the STM32F469 Discovery evaluation platform.
6
7Internal flash memory stores simple afboot-stm32 bootloader, device tree and
8in place (XIP) kernel with built-in initramfs. No external flash or SD card
9is needed.
10
11Kernel is based on tinyconfig.
12
13Building
14--------
15
16  make stm32f469_disco_xip_defconfig
17  make
18
19Flashing
20--------
21
22  ./board/stmicroelectronics/stm32f469-disco/flash.sh output/
23
24It will flash binary to internal flash memory.
25