751206949d
- The "Tegra SPL" is not an SPL but a differently named u-boot.bin file. Fix up the generation scripts. - Include Tegra SPL for Colibri T20 OBS-URL: https://build.opensuse.org/request/show/214504 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/u-boot?expand=0&rev=20
44 lines
1.1 KiB
Bash
44 lines
1.1 KiB
Bash
#!/bin/bash -e
|
|
|
|
BOARDNAME="$1"
|
|
BOARDCONFIG="$2"
|
|
|
|
if [ ! "$1" -o ! "$2" ]; then
|
|
for BOARDCONFIG in omap3_beagle omap4_panda am335x_evm arndale highbank mx53loco rpi_b cubieboard hyundai_a7hd mele_a1000 colibri_t20_iris paz00; do
|
|
BOARDNAME="$(echo $BOARDCONFIG | tr -d '_')"
|
|
BOARDCONFIG=${BOARDCONFIG}_config
|
|
bash $0 $BOARDNAME $BOARDCONFIG
|
|
done
|
|
exit 0
|
|
fi
|
|
|
|
XLOADER=0
|
|
ORIGEN_SPL=0
|
|
SUNXI_SPL=0
|
|
ARNDALE_SPL=0
|
|
case "$BOARDCONFIG" in
|
|
mx*|efika*) BINEND=imx ;;
|
|
*omap*|*am335x*) BINEND=bin
|
|
XLOADER=1 ;;
|
|
*arndale*) BINEND=bin
|
|
ARNDALE_SPL=1 ;;
|
|
*cubieboard*) BINEND=bin
|
|
SUNXI_SPL=1 ;;
|
|
*mele_a1000*) BINEND=bin
|
|
SUNXI_SPL=1 ;;
|
|
*hyundai_a7hd*) BINEND=bin
|
|
SUNXI_SPL=1 ;;
|
|
*) BINEND=bin ;;
|
|
esac
|
|
|
|
sed "s/BOARDCONFIG/$BOARDCONFIG/g
|
|
s/BOARDNAME/$BOARDNAME/g
|
|
s/BINEND/$BINEND/g
|
|
s/ORIGEN_SPL/$ORIGEN_SPL/g
|
|
s/ARNDALE_SPL/$ARNDALE_SPL/g
|
|
s/SUNXI_SPL/$SUNXI_SPL/g
|
|
s/TEGRA_SPL/$TEGRA_SPL/g
|
|
s/XLOADER/$XLOADER/g" < u-boot.spec.in > u-boot-$BOARDNAME.spec
|
|
|
|
cp u-boot.changes u-boot-$BOARDNAME.changes
|