coreboot-builder/coreboot-sdk.sh

36 lines
856 B
Bash
Raw Normal View History

2022-08-29 15:57:30 +02:00
#!/bin/sh
while :; do
case "$1" in
--config)
CONFIG="$2"
shift 2;;
--sdk-version)
SDK_VERSION="$2"
shift 2;;
--bootorder)
BOOTORDER="$2"
shift 2;;
--bootsplash)
BOOTSPLASH="$2"
shift 2;;
*)
break;;
esac
done
uid=$(id -u)
gid=$(id -g)
docker run --rm -it \
--user "$uid:$gid" \
--workdir "/home/coreboot/cb_build" \
-v "$(pwd)/coreboot:/home/coreboot/cb_build" \
-v "$(pwd)/build:/home/coreboot/cb_build/build" \
-v "$(pwd)/${CONFIG}:/home/coreboot/cb_build/configs/defconfig:ro" \
-v "$(pwd)/${BOOTSPLASH}:/home/coreboot/cb_build/bootsplash.jpg:ro" \
coreboot/coreboot-sdk:"$SDK_VERSION" \
"$@"
# -v "$(pwd)/${BOOTORDER}:/home/coreboot/cb_build/bootorder:ro" \