2022-12-16 18:45:54 +00:00
|
|
|
#!/usr/bin/env sh
|
2021-05-18 12:56:12 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# helper script: build coreboot images with various payloads
|
|
|
|
#
|
2023-05-10 01:48:34 +00:00
|
|
|
# Copyright (C) 2014,2015,2016,2020,2021,2023 Leah Rowe
|
|
|
|
# <info@minifree.org>
|
2021-05-18 12:56:12 +00:00
|
|
|
# Copyright (C) 2015 Klemens Nanni <contact@autoboot.org>
|
2022-11-14 00:51:12 +00:00
|
|
|
# Copyright (C) 2022 Caleb La Grange <thonkpeasant@protonmail.com>
|
2022-12-16 18:45:54 +00:00
|
|
|
# Copyright (C) 2022 Ferass El Hafidi <vitali64pmemail@protonmail.com>
|
2021-05-18 12:56:12 +00:00
|
|
|
#
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
#
|
|
|
|
|
|
|
|
# This script assumes that the working directory is the root
|
|
|
|
# of git or release archive
|
|
|
|
|
|
|
|
[ "x${DEBUG+set}" = 'xset' ] && set -v
|
|
|
|
set -u -e
|
|
|
|
|
|
|
|
projectname="$(cat projectname)"
|
2023-03-25 16:43:24 +00:00
|
|
|
opts=""
|
2023-05-10 04:39:11 +00:00
|
|
|
boards=
|
|
|
|
firstoption="${1}"
|
|
|
|
|
|
|
|
main()
|
|
|
|
{
|
2023-05-12 23:13:54 +00:00
|
|
|
if [ $# -lt 1 ]; then
|
|
|
|
usage
|
|
|
|
exit 1
|
|
|
|
fi
|
2023-05-10 04:39:11 +00:00
|
|
|
|
2023-05-12 23:13:54 +00:00
|
|
|
if [ "${firstoption}" = "help" ]; then
|
|
|
|
usage
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
if [ "${firstoption}" = "list" ]; then
|
|
|
|
listboards
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
|
|
|
while [ $# -gt 0 ]; do
|
|
|
|
case ${1} in
|
|
|
|
-d)
|
|
|
|
opts="${opts} -d ${2}"
|
|
|
|
shift ;;
|
|
|
|
-p)
|
|
|
|
opts="${opts} -p ${2}"
|
|
|
|
shift ;;
|
|
|
|
-k)
|
|
|
|
opts="${opts} -k ${2}"
|
|
|
|
shift ;;
|
|
|
|
*)
|
|
|
|
boards="${boards} ${1} " ;;
|
|
|
|
esac
|
|
|
|
shift
|
|
|
|
done
|
2021-05-18 12:56:12 +00:00
|
|
|
|
2023-05-10 04:39:11 +00:00
|
|
|
if [ -z ${opts+x} ]; then
|
|
|
|
opts=""
|
|
|
|
fi
|
|
|
|
|
2023-05-12 23:13:54 +00:00
|
|
|
printf "Building %s ROM images\n" "${projectname}"
|
2023-05-10 04:39:11 +00:00
|
|
|
|
2023-05-12 23:13:54 +00:00
|
|
|
if [ "${firstoption}" = "all" ]; then
|
|
|
|
for boardname in $(listboards); do
|
|
|
|
buildrom "${boardname}" \
|
|
|
|
|| die "build/roms: error"
|
|
|
|
done
|
2023-05-10 04:39:11 +00:00
|
|
|
else
|
2023-05-12 23:13:54 +00:00
|
|
|
for board in ${boards}; do
|
|
|
|
buildrom "${board}" \
|
|
|
|
|| die "build/roms: error"
|
|
|
|
done
|
2023-05-10 04:39:11 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
printf "\n\nDone! Your ROMs are in bin/\n\n"
|
2021-05-18 12:56:12 +00:00
|
|
|
}
|
|
|
|
|
2023-05-10 04:39:11 +00:00
|
|
|
usage()
|
|
|
|
{
|
2021-05-18 12:56:12 +00:00
|
|
|
cat <<- EOF
|
|
|
|
USAGE: ./build boot roms boardname
|
|
|
|
To build *all* boards, do this: ./build boot roms all
|
|
|
|
To list *all* boards, do this: ./build boot roms list
|
2022-11-14 00:51:12 +00:00
|
|
|
|
|
|
|
Optional Flags:
|
|
|
|
-d: displaymode
|
|
|
|
-p: payload
|
|
|
|
-k: keyboard layout
|
2021-05-18 12:56:12 +00:00
|
|
|
|
2023-05-10 01:48:34 +00:00
|
|
|
Example commands:
|
|
|
|
./build boot roms x60
|
|
|
|
./build boot roms x200_8mb x60
|
|
|
|
./build boot roms x60 -p grub -d corebootfb -k usqwerty
|
2022-11-14 00:51:12 +00:00
|
|
|
|
|
|
|
possible values for 'boardname':
|
|
|
|
$(listboards)
|
2021-05-18 12:56:12 +00:00
|
|
|
|
|
|
|
Refer to the ${projectname} documentation for more information.
|
|
|
|
EOF
|
|
|
|
}
|
|
|
|
|
2023-05-10 04:39:11 +00:00
|
|
|
listboards()
|
|
|
|
{
|
|
|
|
for boarddir in resources/coreboot/*; do
|
|
|
|
if [ ! -d "${boarddir}" ]; then
|
|
|
|
continue
|
|
|
|
fi
|
|
|
|
board="${boarddir##resources/coreboot/}"
|
|
|
|
board="${board%/}"
|
|
|
|
printf '%s\n' "${board##*/}"
|
|
|
|
done
|
2021-05-18 12:56:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
# Build ROM images for supported boards
|
|
|
|
buildrom() {
|
|
|
|
board="$1"
|
2022-11-14 00:51:12 +00:00
|
|
|
|
2023-05-10 01:48:34 +00:00
|
|
|
# Start by building blobs and placing them in the
|
|
|
|
# coreboot tree only for boards that need them
|
2022-11-14 00:51:12 +00:00
|
|
|
./blobutil download ${board} || exit 1
|
|
|
|
|
|
|
|
if [ -d "resources/coreboot/${board}/" ]; then
|
|
|
|
./build boot roms_helper "${board}${opts}"
|
|
|
|
else
|
2023-05-10 01:48:34 +00:00
|
|
|
printf "\nbuild/roms: target not defined: %s\n" ${board}
|
|
|
|
die "Run: ./build boot roms list"
|
2022-11-14 00:51:12 +00:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2023-05-10 04:39:11 +00:00
|
|
|
die() {
|
|
|
|
printf 'Error: %s\n' "${@}" 1>&2
|
2021-05-18 12:56:12 +00:00
|
|
|
exit 1
|
2023-05-10 04:39:11 +00:00
|
|
|
}
|
2021-05-18 12:56:12 +00:00
|
|
|
|
2023-05-10 04:39:11 +00:00
|
|
|
main $@
|