mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-09-19 16:40:46 -09:00
Support STM32h747i-disco board. It includes an STM32H747XI SoC with the following resources: - 2 Mbytes Flash - 1 Mbyte SRAM - LCD-TFT controller - MIPI-DSI interface - FD-CAN - USB 2.0 high-speed/full-speed - Ethernet MAC - camera interface Detailed information can be found at: https://www.st.com/en/evaluation-tools/stm32h747i-disco.html Signed-off-by: Dario Binacchi <dario.binacchi@amarulasolutions.com> Signed-off-by: Julien Olivain <ju.o@free.fr>
10 lines
228 B
Bash
Executable File
10 lines
228 B
Bash
Executable File
#!/bin/sh
|
|
set -eu
|
|
|
|
BOARD_DIR="$(dirname "$0")"
|
|
|
|
# Kernel is built without devpts support
|
|
sed -i '/^devpts/d' "${TARGET_DIR}"/etc/fstab
|
|
|
|
install -m 0644 -D "${BOARD_DIR}"/extlinux.conf "${TARGET_DIR}"/boot/extlinux/extlinux.conf
|