498797acce
BSH SMM S2 PRO (SystemMaster S2 Pro) Board is an add-on board which provide input and output interfaces to a dedicated carrier board. It is designed mainly to provide graphical/video and connectivity interfaces to the appliance. Board support package includes the following components: - mainline Linux kernel 6.1.6 - mainline U-Boot 2022-07 - Default packages from buildroot https://www.apertis.org/reference_hardware/imx8mn_bsh_smm_s2pro_setup/ Add Ariel D'Alessandro and Dario Binacchi as co-maintainer, we work together on platform mainline Build and tested using: docker pull registry.gitlab.com/buildroot.org/buildroot/base:20220105.2314 Cc: Ariel D'Alessandro <ariel.dalessandro@collabora.com> Cc: Jagan Teki <jagan@amarulasolutions.com> Cc: Heiko Thiery <heiko.thiery@gmail.com> Cc: Giulio Benetti <giulio.benetti@benettiengineering.com> Reviewed-by: Giulio Benetti <giulio.benetti@benettiengineering.com> Reviewed-by: Heiko Thiery <heiko.thiery@gmail.com> Signed-off-by: Michael Trimarchi <michael@amarulasolutions.com> Tested-by: Ariel D'Alessandro <ariel.dalessandro@collabora.com> Signed-off-by: Dario Binacchi <dario.binacchi@amarulasolutions.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
24 lines
444 B
Bash
Executable File
24 lines
444 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ $# -eq 0 ]; then
|
|
OUTPUT_DIR=output
|
|
else
|
|
OUTPUT_DIR=$1
|
|
fi
|
|
|
|
if ! test -d "${OUTPUT_DIR}" ; then
|
|
echo "ERROR: no output directory specified."
|
|
echo "Usage: $0 OUTPUT_DIR"
|
|
echo ""
|
|
echo "Arguments:"
|
|
echo " OUTPUT_DIR The Buildroot output directory."
|
|
exit 1
|
|
fi
|
|
|
|
IMAGES_DIR=${OUTPUT_DIR}/images
|
|
|
|
${OUTPUT_DIR}/host/bin/uuu -v -b emmc_all \
|
|
${IMAGES_DIR}/flash.bin \
|
|
${IMAGES_DIR}/sdcard.img
|
|
|