mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-28 01:28:59 +00:00
851e7f77e4
New stm32 target introduces support for stm32mp1 based devices. For now it includes an initial support of the STM32MP135F-DK device. The specifications bellow only list supported features. Specifications -------------- SOC: STM32MP135FAF7 RAM: 512 MiB Storage: SD Card Ethernet: 2x 100 Mbps Wireless: 2.4GHz Cypress CYW43455 (802.11b/g/n) LEDs: Heartbeat (Blue) Buttons: 1x Reset, 1x User (USER2) USB: 4x 2.0 Type-A Signed-off-by: Thomas Richard <thomas.richard@bootlin.com> Link: https://github.com/openwrt/openwrt/pull/16716 Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
36 lines
1.1 KiB
Bash
Executable File
36 lines
1.1 KiB
Bash
Executable File
#!/bin/sh
|
|
# Copyright (C) 2024 Bootlin
|
|
|
|
set -ex
|
|
[ $# -eq 8 ] || {
|
|
echo "SYNTAX: $0 <file> <fsbl> <fip> <bootfs image> <rootfs image> <env size> <bootfs size> <rootfs size>"
|
|
exit 1
|
|
}
|
|
|
|
OUTPUT="${1}"
|
|
FSBL="${2}"
|
|
FIP="${3}"
|
|
BOOTFS="${4}"
|
|
ROOTFS="${5}"
|
|
ENVSIZE="$((${6} / 1024))"
|
|
BOOTFSSIZE="${7}"
|
|
ROOTFSSIZE="${8}"
|
|
|
|
set $(ptgen -o "${OUTPUT}" -g -a 4 -l 2048 -G ${GUID} -N fsbla -p 2M -N fip -p 3M -N u-boot-env -p "${ENVSIZE}" -N boot -p${BOOTFSSIZE}M -N rootfs -p ${ROOTFSSIZE}M)
|
|
FSBLAOFFSET="$((${1} / 512))"
|
|
FSBLASIZE="$((${2} / 512))"
|
|
FIPOFFSET="$((${3} / 512))"
|
|
FIPSIZE="$((${4} / 512))"
|
|
ENVOFFSET="$((${5} / 512))"
|
|
ENVSIZE="$((${6} / 512))"
|
|
BOOTFSOFFSET="$((${7} / 512))"
|
|
BOOTFSSIZE="$((${8} / 512))"
|
|
ROOTFSOFFSET="$((${9} / 512))"
|
|
ROOTFSSIZE="$((${10} / 512))"
|
|
|
|
dd bs=512 if="${FSBL}" of="${OUTPUT}" seek="${FSBLAOFFSET}" conv=notrunc
|
|
dd bs=512 if="${FIP}" of="${OUTPUT}" seek="${FIPOFFSET}" conv=notrunc
|
|
dd bs=512 if=/dev/zero of="${OUTPUT}" seek="${ENVOFFSET}" count="${ENVSIZE}" conv=notrunc
|
|
dd bs=512 if="${BOOTFS}" of="${OUTPUT}" seek="${BOOTFSOFFSET}" conv=notrunc
|
|
dd bs=512 if="${ROOTFS}" of="${OUTPUT}" seek="${ROOTFSOFFSET}" conv=notrunc
|