1a1239fd28
Board support package includes the following components: - mainline Linux kernel 5.15.108 - mainline U-Boot 2023.04 - default packages from buildroot Note: There is a problem in u-boot display management. It should display the ST microelectronics logo but "noise" is displayed (like when running the command dd if=/dev/urandom of=/dev/fb0 in Linux). I also tried to change version (even the first version in which this feature was introduced), but without success. Despite this I decided not to disable the video management configuration to remind us that it needs to be fixed :). Cc: Giulio Benetti <giulio.benetti@benettiengineering.com> Link: https://www.st.com/en/evaluation-tools/32f769idiscovery.html Signed-off-by: Dario Binacchi <dario.binacchi@amarulasolutions.com> Reviewed-by: Giulio Benetti <giulio.benetti@benettiengineering.com> Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
8 lines
216 B
Bash
Executable File
8 lines
216 B
Bash
Executable File
#!/bin/sh
|
|
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 "${BINARIES_DIR}"/extlinux/extlinux.conf
|