From d7ce26dc23ccd797bd4cb904c378ee6dc701f42b Mon Sep 17 00:00:00 2001 From: Leah Rowe Date: Sat, 11 May 2024 06:22:56 +0100 Subject: move script/*/* to script/ there are only two scripts under script/ now, and there probably won't be many more. lbmk's design has simplified to such a degree that the two-level directory structure is no longer necessary. the existing command structure has not changed. for example: ./build roms list ./update trees -f coreboot default these will still work, but the symlinks to "build" are now strictly for backwards compatibility; they may be removed at a later date, but i'll keep the current design for now. this also leads to a quirk, for example: ./build roms all ./update roms all these now do the exact same thing, whereas "./update roms all" would have previously been an invalid command. Signed-off-by: Leah Rowe --- script/build/roms | 582 ---------------------------------------------------- script/roms | 582 ++++++++++++++++++++++++++++++++++++++++++++++++++++ script/trees | 264 ++++++++++++++++++++++++ script/update/trees | 264 ------------------------ 4 files changed, 846 insertions(+), 846 deletions(-) delete mode 100755 script/build/roms create mode 100755 script/roms create mode 100755 script/trees delete mode 100755 script/update/trees (limited to 'script') diff --git a/script/build/roms b/script/build/roms deleted file mode 100755 index 0525091b..00000000 --- a/script/build/roms +++ /dev/null @@ -1,582 +0,0 @@ -#!/usr/bin/env sh -# SPDX-License-Identifier: GPL-3.0-or-later -# SPDX-FileCopyrightText: 2014-2016,2020,2021,2023,2024 Leah Rowe -# SPDX-FileCopyrightText: 2021,2022 Ferass El Hafidi -# SPDX-FileCopyrightText: 2022 Caleb La Grange -# SPDX-FileCopyrightText: 2022-2023 Alper Nebi Yasak -# SPDX-FileCopyrightText: 2023 Riku Viitanen - -set -u -e - -. "include/option.sh" - -serprog_usage="usage: ./build roms serprog [board]" -seavgabiosrom="elf/seabios/default/libgfxinit/vgabios.bin" -grub_background="background1280x800.png" -grubelf="elf/grub/grub.elf" -cfgsdir="config/coreboot" -pico_src_dir="src/pico-serprog" -pico_sdk_dir="src/pico-sdk" -stm32_src_dir="src/stm32-vserprog" - -# Disable all payloads by default. -# target.cfg files have to specifically enable [a] payload(s) -pv="payload_grub payload_grub_withseabios payload_seabios payload_memtest t" -pv="${pv} payload_seabios_withgrub payload_seabios_grubonly payload_uboot memtest_bin" -v="romdir cbrom initmode displaymode cbcfg targetdir tree keymaps release" -v="${v} grub_timeout ubdir board grub_scan_disk uboot_config status" -eval "$(setvars "n" ${pv} serprog)" -eval "$(setvars "" ${v} boards _displaymode _payload _keyboard all targets \ - skipped listboards list_type serprog_boards_dir)" - -main() -{ - check_project - - while [ $# -gt 0 ]; do - if [ "$listboards" = "y" ]; then - list_type="$list_type $1" - list_type="${list_type# }" - shift 1; continue - fi - - case ${1} in - help) - usage - exit 0 ;; - list) - boards=$(items config/coreboot) || \ - $err "Cannot generate list of boards for list" - listboards="y" - shift 1; continue ;; - serprog) - serprog="y" - shift 1; break ;; - -d) _displaymode="${2}" ;; - -p) _payload="${2}" ;; - -k) _keyboard="${2}" ;; - *) - [ "${1}" = "all" ] && all="y" - boards="${1} ${boards}" - shift && continue ;; - esac - shift 2 - done - - if [ "$serprog" = "y" ]; then - handle_serprog $@ - return 0 - else - [ "${all}" != "y" ] || boards=$(items config/coreboot) || \ - $err "Cannot generate list of boards for building" - for x in ${boards}; do - handle_coreboot_target "$x" - done - fi - - [ "$listboards" = "y" ] && return 0 - - if [ -n "$skipped" ]; then - printf "\nThese targets were skipped:\n" - eval "printf \"${skipped}\"" - printf "^^ These targets were skipped.\n\n" - fi - - [ -z "${targets}" ] && $err "No ROM images were compiled" - printf "\nROM images available in these directories:\n" - eval "printf \"${targets}\"" - printf "^^ ROM images available in these directories.\n\n" - - printf "DO NOT flash images from elf/ - please use bin/ instead.\n" -} - -handle_serprog() -{ - [ -z "${1+x}" ] && $err "${serprog_usage}" - [ "$1" != "rp2040" ] && [ "$1" != "stm32" ] && $err "$serprog_usage" - if [ "${1}" = "rp2040" ]; then - serprog_boards_dir=${pico_sdk_dir}/src/boards/include/boards - [ -d "$pico_src_dir" ] || x_ ./update trees -f "pico-serprog" - elif [ "${1}" = "stm32" ]; then - serprog_boards_dir=${stm32_src_dir}/boards - [ -d "$stm32_src_dir" ] || x_ ./update trees -f "stm32-vserprog" - fi - x_ mkdir -p "bin/serprog_${1}" - - if [ $# -gt 1 ] && [ "${2}" = "list" ]; then - print_serprog_boards ${serprog_boards_dir} - elif [ $# -gt 1 ]; then - build_${1}_rom "${2}" - else - printf "Building all serprog targets\n" - list_serprog_boards "${serprog_boards_dir}" | \ - while read -r board; do - build_${1}_rom "${board}" - done - fi -} - -build_rp2040_rom() -{ - board=${1} - printf "Building pico-serprog for %s\n" "${board}" - x_ cmake -DPICO_BOARD="$board" -DPICO_SDK_PATH="$pico_sdk_dir" \ - -B "${pico_src_dir}/build" "${pico_src_dir}" - x_ cmake --build "${pico_src_dir}/build" - x_ mv ${pico_src_dir}/build/pico_serprog.uf2 \ - bin/serprog_rp2040/serprog_${board}.uf2 - printf "output to bin/serprog_rp2040/serprog_%s.uf2\n" "$board" -} - -build_stm32_rom() -{ - board=${1} - printf "Building stm32-vserprog for %s\n" "${board}" - x_ make -C $stm32_src_dir libopencm3-just-make BOARD=$board - x_ make -C ${stm32_src_dir} BOARD=${board} - x_ mv ${stm32_src_dir}/stm32-vserprog.hex \ - bin/serprog_stm32/serprog_${board}.hex - printf "output to bin/serprog_stm32/serprog_%s.hex\n" "$board" -} - -print_serprog_boards() -{ - printf "Available boards:\n" - list_serprog_boards "${1}" -} - -list_serprog_boards() -{ - basename -a -s .h "${1}/"*.h || $err "list_boards $1: can't list boards" -} - -handle_coreboot_target() -{ - eval "$(setvars "n" ${pv}) $(setvars "" ${v})" - grub_background="background1280x800.png" - board="$1" - status="unknown" - - configure_target - [ "$board" = "$tree" ] && \ - return 0 - - print_target_name && return 0 - - # exclude certain targets from the release - if skip_board; then - printf "Skip target %s(%s)\n" "$board" "$status" - skipped="* $board($status)\n$skipped" - return 0 - fi - - build_payloads - build_target_mainboard - - [ -d "bin/${board}" ] || return 0 - targets="* bin/${board}\n${targets}" -} - -configure_target() -{ - targetdir="${cfgsdir}/${board}" - [ -f "${targetdir}/target.cfg" ] || \ - $err "Missing target.cfg for target: ${board}" - - # Override the above defaults using target.cfg - . "${targetdir}/target.cfg" - - [ -z "${grub_scan_disk}" ] && grub_scan_disk="both" - [ "$grub_scan_disk" != "both" ] && [ "$grub_scan_disk" != "ata" ] \ - && [ "${grub_scan_disk}" != "ahci" ] && \ - grub_scan_disk="both" - - [ -z "$tree" ] && $err "$board: tree not defined" - - [ "${payload_memtest}" != "y" ] && payload_memtest="n" - [ "${payload_grub_withseabios}" = "y" ] && payload_grub="y" - [ "${payload_grub_withseabios}" = "y" ] && \ - eval "$(setvars "y" payload_seabios payload_seabios_withgrub)" - [ "$payload_seabios_withgrub" = "y" ] && payload_seabios="y" - [ "$payload_seabios_grubonly" = "y" ] && payload_seabios="y" - [ "$payload_seabios_grubonly" = "y" ] && payload_seabios_withgrub="y" - - # The reverse logic must not be applied. If SeaBIOS-with-GRUB works, - # that doesn't mean GRUB-withSeaBIOS will. For example, the board - # might have a graphics card whose vga rom coreboot doesn't execute - [ "$payload_grub" != "y" ] && [ "$payload_seabios" != "y" ] && \ - [ "${payload_uboot}" != "y" ] && \ - for configfile in "${targetdir}/config/"*; do - [ -e "${configfile}" ] || continue - $err "target '${board}' defines no payload" - done - - [ "$payload_uboot" != "n" ] && [ "$payload_uboot" != "y" ] && \ - payload_uboot="n" - [ "$payload_uboot" = "y" ] && [ -z "$uboot_config" ] && \ - uboot_config="default" - - # Override all payload directives with cmdline args - [ -z "${_payload}" ] && return 0 - printf "setting payload to: %s\n" "${_payload}" - eval "$(setvars "n" payload_grub payload_memtest payload_seabios \ - payload_seabios_withgrub payload_uboot payload_grub_withseabios \ - payload_seabios_grubonly)" - eval "payload_${_payload}=y" -} - -print_target_name() -{ - [ "$listboards" = "y" ] || return 1 - - [ -z "$list_type" ] && printf "%s\n" "$board" - - for _list_type in $list_type; do - if [ "${_list_type#_}" = "$_list_type" ]; then - [ "$status" != "$_list_type" ] && \ - continue - printf "%s\n" "$board" - break - elif [ "$status" != "${_list_type#_}" ]; then - printf "%s\n" "$board" - break - fi - done -} - -skip_board() -{ - if [ "$listboards" != "y" ] && [ "$status" != "stable" ]; then - printf "\n\n\t!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n" - printf "\t__WARNING: %s has status '%s'__\n" \ - "$board" "$status" - printf "\t!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n\n" - fi - - if [ -f "$targetdir/warn.txt" ] && [ "$listboards" != "y" ]; then - printf "Regarding target '%s' (status '%s'):\n\n" \ - "$board" "$status" - cat -u "$targetdir/warn.txt" || \ - $err "!cat $targetdir/warn.txt" - fi - - [ "$lbmk_release" = "y" ] && [ "$release" = "n" ] && return 0 - [ "$lbmk_release" = "y" ] && [ "$status" != "broken" ] && return 1 - [ "$lbmk_status" = "y" ] || return 1 - [ "$status" = "stable" ] && return 1 - - printf "\nTo disable this dialog when building, do:\n" - printf "export LBMK_STATUS=n\n\n" - while true; do - printf "Board %s has status '%s'. Skip? [y/n] " \ - "$board" "$status" - read -r skip - [ "$skip" = "y" ] && return 0 - [ "$skip" = "n" ] && return 1; continue - done -} - -build_payloads() -{ - romdir="bin/${board}" - cbdir="src/coreboot/${board}" - [ "${board}" = "${tree}" ] || cbdir="src/coreboot/${tree}" - cbfstool="cbutils/${tree}/cbfstool" - cbrom="${cbdir}/build/coreboot.rom" - - [ -f "$cbfstool" ] || x_ ./update trees -b coreboot utils $tree - - memtest_bin="memtest86plus/build64/memtest.bin" - [ "${payload_memtest}" != "y" ] || [ -f "src/${memtest_bin}" ] || \ - x_ ./update trees -b memtest86plus - - [ "$payload_seabios" = "y" ] && x_ ./update trees -b seabios - if [ "$payload_grub" = "y" ] || [ "$payload_seabios_withgrub" = "y" ] \ - || [ "$payload_seabios_grubonly" = "y" ]; then build_grub_payload - fi - [ "${payload_uboot}" = "y" ] && build_uboot_payload; return 0 -} - -build_grub_payload() -{ - x_ mkdir -p elf/grub - - for keymapfile in config/grub/keymap/*.gkb; do - [ -f "${keymapfile}" ] || continue - - keymaps="${keymaps} ${keymapfile}" - done - [ -z "$_keyboard" ] || [ -f "$grubcfgsdir/keymap/$_keyboard.gkb" ] || \ - $err "build_grub_payload: $_keyboard layout not defined" - [ -n "$_keyboard" ] && keymaps="${grubcfgsdir}/keymap/${_keyboard}.gkb" - [ -f "$grubelf" ] && return 0 - [ -f "src/grub/grub-mkstandalone" ] || x_ ./update trees -b grub - - ./src/grub/grub-mkstandalone \ - --grub-mkimage="src/grub/grub-mkimage" \ - -O i386-coreboot \ - -o "elf/grub/grub.elf" \ - -d "src/grub/grub-core/" \ - --fonts= --themes= --locales= \ - --modules="${grub_modules}" \ - --install-modules="${grub_install_modules}" \ - "/boot/grub/grub.cfg=${grubcfgsdir}/config/grub_memdisk.cfg" \ - "/boot/grub/grub_default.cfg=${grubcfgsdir}/config/grub.cfg" || \ - $err "could not generate grub.elf" -} - -build_uboot_payload() -{ - x_ ./update trees -b u-boot ${board} - ubdir="elf/u-boot/${board}/${uboot_config}" - ubootelf="${ubdir}/u-boot.elf" - [ ! -f "${ubootelf}" ] && [ -f "${ubdir}/u-boot" ] && \ - ubootelf="${ubdir}/u-boot" - [ -f "${ubootelf}" ] && return 0 - $err "Can't find u-boot build for board, $board"; -} - -build_target_mainboard() -{ - rm -f "${romdir}/"* || $err "!prepare, rm files, ${romdir}" - - for x in "normal" "vgarom" "libgfxinit"; do - initmode="${x}" - hmode="vesafb" - [ "${initmode}" = "vgarom" ] || hmode="corebootfb" - modes="${hmode} txtmode" - [ -z "${_displaymode}" ] || modes="${_displaymode}" - for y in ${modes}; do - displaymode="${y}" - [ "${initmode}" = "normal" ] && \ - [ "$displaymode" != "txtmode" ] && continue - cbcfg="${targetdir}/config/${initmode}_${displaymode}" - [ "${initmode}" = "normal" ] && cbcfg="${cbcfg%_*}" - build_roms "${cbcfg}" - x_ rm -f "$cbrom" - done - done -} - -# Main ROM building function. This calls all other functions below -build_roms() -{ - cbcfg="${1}" - if [ ! -f "${cbcfg}" ]; then - printf "'%s' does not exist. Skipping build for %s %s %s\n" \ - "$cbcfg" "$board" "$displaymode" "$initmode" 1>&2 - return 0 - fi - - x_ ./update trees -b coreboot ${board} - - _cbrom="elf/coreboot_nopayload_DO_NOT_FLASH" - _cbrom="${_cbrom}/${board}/${initmode}_${displaymode}" - [ "${initmode}" = "normal" ] && \ - _cbrom="${_cbrom%"_${displaymode}"}" - _cbrom="${_cbrom}/coreboot.rom" - cbrom="$(mktemp -t coreboot_rom.XXXXXXXXXX)" - x_ cp "${_cbrom}" "${cbrom}" - - [ "${payload_memtest}" != "y" ] || \ - x_ "${cbfstool}" "${cbrom}" add-payload \ - -f "src/${memtest_bin}" -n img/memtest -c lzma - [ "${payload_seabios}" = "y" ] && build_seabios_roms - [ "$payload_grub" != "y" ] || x_ build_grub_roms "$cbrom" "grub" - [ "${payload_uboot}" = "y" ] || return 0 - x_ cp "${_cbrom}" "${cbrom}" - build_uboot_roms -} - -build_seabios_roms() -{ - if [ "${payload_seabios_withgrub}" = "y" ]; then - t=$(mktemp -t coreboot_rom.XXXXXXXXXX) - x_ cp "${cbrom}" "${t}" - x_ build_grub_roms "${t}" "seabios_withgrub" - else - t=$(mkSeabiosRom "${cbrom}" "fallback/payload") || \ - $err "build_seabios_roms: cannot build tmprom" - newrom="${romdir}/seabios_${board}_${initmode}_${displaymode}" - [ "${initmode}" = "normal" ] && newrom="${romdir}/seabios" \ - && newrom="${newrom}_${board}_${initmode}" - x_ moverom "${t}" "${newrom}.rom" - fi - x_ rm -f "${t}" -} - -# Make separate ROM images with GRUB payload, for each supported keymap -build_grub_roms() -{ - tmprom="${1}" - payload1="${2}" # allow values: grub, seabios, seabios_withgrub - - grub_cbfs="fallback/payload" - if [ "$payload1" = "grub" ] && [ "$payload_grub_withseabios" = "y" ] - then - _tmpmvrom=$(mkSeabiosRom "$tmprom" "seabios.elf") || \ - $err "build_grub_roms 1 $board: can't build tmprom" - x_ mv "$_tmpmvrom" "$tmprom" - elif [ "$payload1" != "grub" ] && [ "$payload_seabios_withgrub" = "y" ] - then - grub_cbfs="img/grub2" - _tmpmvrom=$(mkSeabiosRom "$tmprom" fallback/payload) || \ - $err "build_grub_roms 2 $board: can't build tmprom" - x_ mv "$_tmpmvrom" "$tmprom" - fi - - # we only need insert grub.elf once, for each coreboot config: - x_ "${cbfstool}" "${tmprom}" add-payload -f "${grubelf}" \ - -n ${grub_cbfs} -c lzma - - # we only need insert background.png once, for each coreboot config: - if [ "${displaymode}" = "vesafb" ] || \ - [ "${displaymode}" = "corebootfb" ]; then - backgroundfile="config/grub/background/${grub_background}" - "${cbfstool}" "${tmprom}" add -f ${backgroundfile} \ - -n background.png -t raw || \ - $err "insert background, ${backgroundfile}" - fi - - tmpcfg=$(mktemp -t coreboot_rom.XXXXXXXXXX) - printf "set grub_scan_disk=\"%s\"\n" "$grub_scan_disk" >"$tmpcfg" \ - || $err "set grub_scandisk, $grub_scan_disk, $tmpcfg" - [ "${grub_scan_disk}" = "both" ] || \ - x_ "$cbfstool" "$tmprom" add -f "$tmpcfg" -n scan.cfg -t raw - printf "set timeout=%s\n" "${grub_timeout}" > "${tmpcfg}" || \ - $err "set timeout, ${grub_timeout}, ${tmpcfg}" - [ -z "${grub_timeout}" ] || x_ "${cbfstool}" "${tmprom}" add \ - -f "${tmpcfg}" -n timeout.cfg -t raw - x_ rm -f "${tmpcfg}" - - for keymapfile in ${keymaps}; do - [ -f "${keymapfile}" ] || continue - keymap="${keymapfile##*/}" - keymap="${keymap%.gkb}" - - tmpgrubrom="$(mktemp -t coreboot_rom.XXXXXXXXXX)" - x_ cp "${tmprom}" "${tmpgrubrom}" - x_ "$cbfstool" "$tmpgrubrom" add -f "$keymapfile" \ - -n keymap.gkb -t raw - - newrom="${romdir}/${payload1}_${board}_${initmode}_" - newrom="${newrom}${displaymode}_${keymap}.rom" - [ "${initmode}" = "normal" ] && \ - newrom="${romdir}/${payload1}_${board}_" && \ - newrom="${newrom}${initmode}_${keymap}.rom" - x_ moverom "${tmpgrubrom}" "${newrom}" - if [ "${payload_seabios_grubonly}" = "y" ]; then - x_ "$cbfstool" "$tmpgrubrom" add \ - -f "config/grub/bootorder" -n bootorder -t raw - x_ moverom "$tmpgrubrom" "${newrom%.rom}_grubfirst.rom" - x_ "$cbfstool" "$tmpgrubrom" add-int -i 0 \ - -n etc/show-boot-menu - x_ moverom "$tmpgrubrom" "${newrom%.rom}_grubonly.rom" - fi - x_ rm -f "${tmpgrubrom}" - done -} - -# make a rom in /tmp/ and then print the path of that ROM -mkSeabiosRom() { - _cbrom="${1}" # rom to insert seabios in. will not be touched - # (a tmpfile will be made instead) - _seabios_cbfs_path="${2}" # e.g. fallback/payload - _seabioself="elf/seabios/default/${initmode}/bios.bin.elf" - tmprom=$(mktemp -t coreboot_rom.XXXXXXXXXX) - - x_ cp "${_cbrom}" "${tmprom}" - x_ "$cbfstool" "$tmprom" add-payload -f "$_seabioself" \ - -n "${_seabios_cbfs_path}" -c lzma - x_ "$cbfstool" "$tmprom" add-int -i 3000 -n etc/ps2-keyboard-spinup - - z="2"; [ "$initmode" = "vgarom" ] && z="0" - x_ "$cbfstool" "$tmprom" add-int -i $z -n etc/pci-optionrom-exec - x_ "$cbfstool" "$tmprom" add-int -i 0 -n etc/optionroms-checksum - [ "$initmode" != "libgfxinit" ] || \ - x_ "$cbfstool" "$tmprom" add -f "$seavgabiosrom" \ - -n vgaroms/seavgabios.bin -t raw - - printf "%s\n" "${tmprom}" -} - -build_uboot_roms() -{ - tmprom=$(mkUbootRom "${cbrom}" "fallback/payload") || \ - $err "build_uboot_roms $board: could not create tmprom" - newrom="${romdir}/uboot_payload_${board}_${initmode}_${displaymode}.rom" - x_ moverom "${tmprom}" "${newrom}" - x_ rm -f "${tmprom}" -} - -# make a rom in /tmp/ and then print the path of that ROM -mkUbootRom() { - _cbrom="${1}" - _uboot_cbfs_path="${2}" - - _ubdir="elf/u-boot/${board}/${uboot_config}" - _ubootelf="${_ubdir}/u-boot.elf" - [ -f "${_ubootelf}" ] || _ubootelf="${_ubdir}/u-boot" - [ -f "$_ubootelf" ] || $err "mkUbootRom: $board: cant find u-boot" - - tmprom=$(mktemp -t coreboot_rom.XXXXXXXXXX) - - x_ cp "${_cbrom}" "${tmprom}" - x_ "$cbfstool" "$tmprom" add-payload -f "$_ubootelf" \ - -n "${_uboot_cbfs_path}" -c lzma - - printf "%s\n" "${tmprom}" -} - -moverom() -{ - printf "Creating target image: %s\n" "$2" - - x_ mkdir -p "${2%/*}" - x_ cp "$1" "$2" -} - -usage() -{ - cat <<- EOF - USAGE: ./build roms targetname - To build *all* boards, do this: ./build roms all - To list *all* boards, do this: ./build roms list - - Optional Flags: - -d: displaymode - -p: payload - -k: keyboard layout - - Example commands: - - ./build roms x60 - ./build roms x200_8mb x60 - ./build roms x60 -p grub -d corebootfb -k usqwerty - - to see possible values for 'target': - - ./build roms list - - Can also build serprog images: - ${serprog_usage} - - to see targets of only a given status (stable, unstable, - broken, untested and unknown), try e.g. - - ./build roms list stable - ./build roms list unstable untested - ./build roms list unknown - ./build roms list broken - ./build roms list broken stable - - the value is set in target.cfg for each board. if status - is unitialised, it defaults to "unknown". only stable/unstable - targets are permitted in releases; broken, untested and - unknown are not allowed, but are accessible via normal building - - Refer to the ${projectname} documentation for more information. - EOF -} - -main $@ diff --git a/script/roms b/script/roms new file mode 100755 index 00000000..0525091b --- /dev/null +++ b/script/roms @@ -0,0 +1,582 @@ +#!/usr/bin/env sh +# SPDX-License-Identifier: GPL-3.0-or-later +# SPDX-FileCopyrightText: 2014-2016,2020,2021,2023,2024 Leah Rowe +# SPDX-FileCopyrightText: 2021,2022 Ferass El Hafidi +# SPDX-FileCopyrightText: 2022 Caleb La Grange +# SPDX-FileCopyrightText: 2022-2023 Alper Nebi Yasak +# SPDX-FileCopyrightText: 2023 Riku Viitanen + +set -u -e + +. "include/option.sh" + +serprog_usage="usage: ./build roms serprog [board]" +seavgabiosrom="elf/seabios/default/libgfxinit/vgabios.bin" +grub_background="background1280x800.png" +grubelf="elf/grub/grub.elf" +cfgsdir="config/coreboot" +pico_src_dir="src/pico-serprog" +pico_sdk_dir="src/pico-sdk" +stm32_src_dir="src/stm32-vserprog" + +# Disable all payloads by default. +# target.cfg files have to specifically enable [a] payload(s) +pv="payload_grub payload_grub_withseabios payload_seabios payload_memtest t" +pv="${pv} payload_seabios_withgrub payload_seabios_grubonly payload_uboot memtest_bin" +v="romdir cbrom initmode displaymode cbcfg targetdir tree keymaps release" +v="${v} grub_timeout ubdir board grub_scan_disk uboot_config status" +eval "$(setvars "n" ${pv} serprog)" +eval "$(setvars "" ${v} boards _displaymode _payload _keyboard all targets \ + skipped listboards list_type serprog_boards_dir)" + +main() +{ + check_project + + while [ $# -gt 0 ]; do + if [ "$listboards" = "y" ]; then + list_type="$list_type $1" + list_type="${list_type# }" + shift 1; continue + fi + + case ${1} in + help) + usage + exit 0 ;; + list) + boards=$(items config/coreboot) || \ + $err "Cannot generate list of boards for list" + listboards="y" + shift 1; continue ;; + serprog) + serprog="y" + shift 1; break ;; + -d) _displaymode="${2}" ;; + -p) _payload="${2}" ;; + -k) _keyboard="${2}" ;; + *) + [ "${1}" = "all" ] && all="y" + boards="${1} ${boards}" + shift && continue ;; + esac + shift 2 + done + + if [ "$serprog" = "y" ]; then + handle_serprog $@ + return 0 + else + [ "${all}" != "y" ] || boards=$(items config/coreboot) || \ + $err "Cannot generate list of boards for building" + for x in ${boards}; do + handle_coreboot_target "$x" + done + fi + + [ "$listboards" = "y" ] && return 0 + + if [ -n "$skipped" ]; then + printf "\nThese targets were skipped:\n" + eval "printf \"${skipped}\"" + printf "^^ These targets were skipped.\n\n" + fi + + [ -z "${targets}" ] && $err "No ROM images were compiled" + printf "\nROM images available in these directories:\n" + eval "printf \"${targets}\"" + printf "^^ ROM images available in these directories.\n\n" + + printf "DO NOT flash images from elf/ - please use bin/ instead.\n" +} + +handle_serprog() +{ + [ -z "${1+x}" ] && $err "${serprog_usage}" + [ "$1" != "rp2040" ] && [ "$1" != "stm32" ] && $err "$serprog_usage" + if [ "${1}" = "rp2040" ]; then + serprog_boards_dir=${pico_sdk_dir}/src/boards/include/boards + [ -d "$pico_src_dir" ] || x_ ./update trees -f "pico-serprog" + elif [ "${1}" = "stm32" ]; then + serprog_boards_dir=${stm32_src_dir}/boards + [ -d "$stm32_src_dir" ] || x_ ./update trees -f "stm32-vserprog" + fi + x_ mkdir -p "bin/serprog_${1}" + + if [ $# -gt 1 ] && [ "${2}" = "list" ]; then + print_serprog_boards ${serprog_boards_dir} + elif [ $# -gt 1 ]; then + build_${1}_rom "${2}" + else + printf "Building all serprog targets\n" + list_serprog_boards "${serprog_boards_dir}" | \ + while read -r board; do + build_${1}_rom "${board}" + done + fi +} + +build_rp2040_rom() +{ + board=${1} + printf "Building pico-serprog for %s\n" "${board}" + x_ cmake -DPICO_BOARD="$board" -DPICO_SDK_PATH="$pico_sdk_dir" \ + -B "${pico_src_dir}/build" "${pico_src_dir}" + x_ cmake --build "${pico_src_dir}/build" + x_ mv ${pico_src_dir}/build/pico_serprog.uf2 \ + bin/serprog_rp2040/serprog_${board}.uf2 + printf "output to bin/serprog_rp2040/serprog_%s.uf2\n" "$board" +} + +build_stm32_rom() +{ + board=${1} + printf "Building stm32-vserprog for %s\n" "${board}" + x_ make -C $stm32_src_dir libopencm3-just-make BOARD=$board + x_ make -C ${stm32_src_dir} BOARD=${board} + x_ mv ${stm32_src_dir}/stm32-vserprog.hex \ + bin/serprog_stm32/serprog_${board}.hex + printf "output to bin/serprog_stm32/serprog_%s.hex\n" "$board" +} + +print_serprog_boards() +{ + printf "Available boards:\n" + list_serprog_boards "${1}" +} + +list_serprog_boards() +{ + basename -a -s .h "${1}/"*.h || $err "list_boards $1: can't list boards" +} + +handle_coreboot_target() +{ + eval "$(setvars "n" ${pv}) $(setvars "" ${v})" + grub_background="background1280x800.png" + board="$1" + status="unknown" + + configure_target + [ "$board" = "$tree" ] && \ + return 0 + + print_target_name && return 0 + + # exclude certain targets from the release + if skip_board; then + printf "Skip target %s(%s)\n" "$board" "$status" + skipped="* $board($status)\n$skipped" + return 0 + fi + + build_payloads + build_target_mainboard + + [ -d "bin/${board}" ] || return 0 + targets="* bin/${board}\n${targets}" +} + +configure_target() +{ + targetdir="${cfgsdir}/${board}" + [ -f "${targetdir}/target.cfg" ] || \ + $err "Missing target.cfg for target: ${board}" + + # Override the above defaults using target.cfg + . "${targetdir}/target.cfg" + + [ -z "${grub_scan_disk}" ] && grub_scan_disk="both" + [ "$grub_scan_disk" != "both" ] && [ "$grub_scan_disk" != "ata" ] \ + && [ "${grub_scan_disk}" != "ahci" ] && \ + grub_scan_disk="both" + + [ -z "$tree" ] && $err "$board: tree not defined" + + [ "${payload_memtest}" != "y" ] && payload_memtest="n" + [ "${payload_grub_withseabios}" = "y" ] && payload_grub="y" + [ "${payload_grub_withseabios}" = "y" ] && \ + eval "$(setvars "y" payload_seabios payload_seabios_withgrub)" + [ "$payload_seabios_withgrub" = "y" ] && payload_seabios="y" + [ "$payload_seabios_grubonly" = "y" ] && payload_seabios="y" + [ "$payload_seabios_grubonly" = "y" ] && payload_seabios_withgrub="y" + + # The reverse logic must not be applied. If SeaBIOS-with-GRUB works, + # that doesn't mean GRUB-withSeaBIOS will. For example, the board + # might have a graphics card whose vga rom coreboot doesn't execute + [ "$payload_grub" != "y" ] && [ "$payload_seabios" != "y" ] && \ + [ "${payload_uboot}" != "y" ] && \ + for configfile in "${targetdir}/config/"*; do + [ -e "${configfile}" ] || continue + $err "target '${board}' defines no payload" + done + + [ "$payload_uboot" != "n" ] && [ "$payload_uboot" != "y" ] && \ + payload_uboot="n" + [ "$payload_uboot" = "y" ] && [ -z "$uboot_config" ] && \ + uboot_config="default" + + # Override all payload directives with cmdline args + [ -z "${_payload}" ] && return 0 + printf "setting payload to: %s\n" "${_payload}" + eval "$(setvars "n" payload_grub payload_memtest payload_seabios \ + payload_seabios_withgrub payload_uboot payload_grub_withseabios \ + payload_seabios_grubonly)" + eval "payload_${_payload}=y" +} + +print_target_name() +{ + [ "$listboards" = "y" ] || return 1 + + [ -z "$list_type" ] && printf "%s\n" "$board" + + for _list_type in $list_type; do + if [ "${_list_type#_}" = "$_list_type" ]; then + [ "$status" != "$_list_type" ] && \ + continue + printf "%s\n" "$board" + break + elif [ "$status" != "${_list_type#_}" ]; then + printf "%s\n" "$board" + break + fi + done +} + +skip_board() +{ + if [ "$listboards" != "y" ] && [ "$status" != "stable" ]; then + printf "\n\n\t!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n" + printf "\t__WARNING: %s has status '%s'__\n" \ + "$board" "$status" + printf "\t!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n\n" + fi + + if [ -f "$targetdir/warn.txt" ] && [ "$listboards" != "y" ]; then + printf "Regarding target '%s' (status '%s'):\n\n" \ + "$board" "$status" + cat -u "$targetdir/warn.txt" || \ + $err "!cat $targetdir/warn.txt" + fi + + [ "$lbmk_release" = "y" ] && [ "$release" = "n" ] && return 0 + [ "$lbmk_release" = "y" ] && [ "$status" != "broken" ] && return 1 + [ "$lbmk_status" = "y" ] || return 1 + [ "$status" = "stable" ] && return 1 + + printf "\nTo disable this dialog when building, do:\n" + printf "export LBMK_STATUS=n\n\n" + while true; do + printf "Board %s has status '%s'. Skip? [y/n] " \ + "$board" "$status" + read -r skip + [ "$skip" = "y" ] && return 0 + [ "$skip" = "n" ] && return 1; continue + done +} + +build_payloads() +{ + romdir="bin/${board}" + cbdir="src/coreboot/${board}" + [ "${board}" = "${tree}" ] || cbdir="src/coreboot/${tree}" + cbfstool="cbutils/${tree}/cbfstool" + cbrom="${cbdir}/build/coreboot.rom" + + [ -f "$cbfstool" ] || x_ ./update trees -b coreboot utils $tree + + memtest_bin="memtest86plus/build64/memtest.bin" + [ "${payload_memtest}" != "y" ] || [ -f "src/${memtest_bin}" ] || \ + x_ ./update trees -b memtest86plus + + [ "$payload_seabios" = "y" ] && x_ ./update trees -b seabios + if [ "$payload_grub" = "y" ] || [ "$payload_seabios_withgrub" = "y" ] \ + || [ "$payload_seabios_grubonly" = "y" ]; then build_grub_payload + fi + [ "${payload_uboot}" = "y" ] && build_uboot_payload; return 0 +} + +build_grub_payload() +{ + x_ mkdir -p elf/grub + + for keymapfile in config/grub/keymap/*.gkb; do + [ -f "${keymapfile}" ] || continue + + keymaps="${keymaps} ${keymapfile}" + done + [ -z "$_keyboard" ] || [ -f "$grubcfgsdir/keymap/$_keyboard.gkb" ] || \ + $err "build_grub_payload: $_keyboard layout not defined" + [ -n "$_keyboard" ] && keymaps="${grubcfgsdir}/keymap/${_keyboard}.gkb" + [ -f "$grubelf" ] && return 0 + [ -f "src/grub/grub-mkstandalone" ] || x_ ./update trees -b grub + + ./src/grub/grub-mkstandalone \ + --grub-mkimage="src/grub/grub-mkimage" \ + -O i386-coreboot \ + -o "elf/grub/grub.elf" \ + -d "src/grub/grub-core/" \ + --fonts= --themes= --locales= \ + --modules="${grub_modules}" \ + --install-modules="${grub_install_modules}" \ + "/boot/grub/grub.cfg=${grubcfgsdir}/config/grub_memdisk.cfg" \ + "/boot/grub/grub_default.cfg=${grubcfgsdir}/config/grub.cfg" || \ + $err "could not generate grub.elf" +} + +build_uboot_payload() +{ + x_ ./update trees -b u-boot ${board} + ubdir="elf/u-boot/${board}/${uboot_config}" + ubootelf="${ubdir}/u-boot.elf" + [ ! -f "${ubootelf}" ] && [ -f "${ubdir}/u-boot" ] && \ + ubootelf="${ubdir}/u-boot" + [ -f "${ubootelf}" ] && return 0 + $err "Can't find u-boot build for board, $board"; +} + +build_target_mainboard() +{ + rm -f "${romdir}/"* || $err "!prepare, rm files, ${romdir}" + + for x in "normal" "vgarom" "libgfxinit"; do + initmode="${x}" + hmode="vesafb" + [ "${initmode}" = "vgarom" ] || hmode="corebootfb" + modes="${hmode} txtmode" + [ -z "${_displaymode}" ] || modes="${_displaymode}" + for y in ${modes}; do + displaymode="${y}" + [ "${initmode}" = "normal" ] && \ + [ "$displaymode" != "txtmode" ] && continue + cbcfg="${targetdir}/config/${initmode}_${displaymode}" + [ "${initmode}" = "normal" ] && cbcfg="${cbcfg%_*}" + build_roms "${cbcfg}" + x_ rm -f "$cbrom" + done + done +} + +# Main ROM building function. This calls all other functions below +build_roms() +{ + cbcfg="${1}" + if [ ! -f "${cbcfg}" ]; then + printf "'%s' does not exist. Skipping build for %s %s %s\n" \ + "$cbcfg" "$board" "$displaymode" "$initmode" 1>&2 + return 0 + fi + + x_ ./update trees -b coreboot ${board} + + _cbrom="elf/coreboot_nopayload_DO_NOT_FLASH" + _cbrom="${_cbrom}/${board}/${initmode}_${displaymode}" + [ "${initmode}" = "normal" ] && \ + _cbrom="${_cbrom%"_${displaymode}"}" + _cbrom="${_cbrom}/coreboot.rom" + cbrom="$(mktemp -t coreboot_rom.XXXXXXXXXX)" + x_ cp "${_cbrom}" "${cbrom}" + + [ "${payload_memtest}" != "y" ] || \ + x_ "${cbfstool}" "${cbrom}" add-payload \ + -f "src/${memtest_bin}" -n img/memtest -c lzma + [ "${payload_seabios}" = "y" ] && build_seabios_roms + [ "$payload_grub" != "y" ] || x_ build_grub_roms "$cbrom" "grub" + [ "${payload_uboot}" = "y" ] || return 0 + x_ cp "${_cbrom}" "${cbrom}" + build_uboot_roms +} + +build_seabios_roms() +{ + if [ "${payload_seabios_withgrub}" = "y" ]; then + t=$(mktemp -t coreboot_rom.XXXXXXXXXX) + x_ cp "${cbrom}" "${t}" + x_ build_grub_roms "${t}" "seabios_withgrub" + else + t=$(mkSeabiosRom "${cbrom}" "fallback/payload") || \ + $err "build_seabios_roms: cannot build tmprom" + newrom="${romdir}/seabios_${board}_${initmode}_${displaymode}" + [ "${initmode}" = "normal" ] && newrom="${romdir}/seabios" \ + && newrom="${newrom}_${board}_${initmode}" + x_ moverom "${t}" "${newrom}.rom" + fi + x_ rm -f "${t}" +} + +# Make separate ROM images with GRUB payload, for each supported keymap +build_grub_roms() +{ + tmprom="${1}" + payload1="${2}" # allow values: grub, seabios, seabios_withgrub + + grub_cbfs="fallback/payload" + if [ "$payload1" = "grub" ] && [ "$payload_grub_withseabios" = "y" ] + then + _tmpmvrom=$(mkSeabiosRom "$tmprom" "seabios.elf") || \ + $err "build_grub_roms 1 $board: can't build tmprom" + x_ mv "$_tmpmvrom" "$tmprom" + elif [ "$payload1" != "grub" ] && [ "$payload_seabios_withgrub" = "y" ] + then + grub_cbfs="img/grub2" + _tmpmvrom=$(mkSeabiosRom "$tmprom" fallback/payload) || \ + $err "build_grub_roms 2 $board: can't build tmprom" + x_ mv "$_tmpmvrom" "$tmprom" + fi + + # we only need insert grub.elf once, for each coreboot config: + x_ "${cbfstool}" "${tmprom}" add-payload -f "${grubelf}" \ + -n ${grub_cbfs} -c lzma + + # we only need insert background.png once, for each coreboot config: + if [ "${displaymode}" = "vesafb" ] || \ + [ "${displaymode}" = "corebootfb" ]; then + backgroundfile="config/grub/background/${grub_background}" + "${cbfstool}" "${tmprom}" add -f ${backgroundfile} \ + -n background.png -t raw || \ + $err "insert background, ${backgroundfile}" + fi + + tmpcfg=$(mktemp -t coreboot_rom.XXXXXXXXXX) + printf "set grub_scan_disk=\"%s\"\n" "$grub_scan_disk" >"$tmpcfg" \ + || $err "set grub_scandisk, $grub_scan_disk, $tmpcfg" + [ "${grub_scan_disk}" = "both" ] || \ + x_ "$cbfstool" "$tmprom" add -f "$tmpcfg" -n scan.cfg -t raw + printf "set timeout=%s\n" "${grub_timeout}" > "${tmpcfg}" || \ + $err "set timeout, ${grub_timeout}, ${tmpcfg}" + [ -z "${grub_timeout}" ] || x_ "${cbfstool}" "${tmprom}" add \ + -f "${tmpcfg}" -n timeout.cfg -t raw + x_ rm -f "${tmpcfg}" + + for keymapfile in ${keymaps}; do + [ -f "${keymapfile}" ] || continue + keymap="${keymapfile##*/}" + keymap="${keymap%.gkb}" + + tmpgrubrom="$(mktemp -t coreboot_rom.XXXXXXXXXX)" + x_ cp "${tmprom}" "${tmpgrubrom}" + x_ "$cbfstool" "$tmpgrubrom" add -f "$keymapfile" \ + -n keymap.gkb -t raw + + newrom="${romdir}/${payload1}_${board}_${initmode}_" + newrom="${newrom}${displaymode}_${keymap}.rom" + [ "${initmode}" = "normal" ] && \ + newrom="${romdir}/${payload1}_${board}_" && \ + newrom="${newrom}${initmode}_${keymap}.rom" + x_ moverom "${tmpgrubrom}" "${newrom}" + if [ "${payload_seabios_grubonly}" = "y" ]; then + x_ "$cbfstool" "$tmpgrubrom" add \ + -f "config/grub/bootorder" -n bootorder -t raw + x_ moverom "$tmpgrubrom" "${newrom%.rom}_grubfirst.rom" + x_ "$cbfstool" "$tmpgrubrom" add-int -i 0 \ + -n etc/show-boot-menu + x_ moverom "$tmpgrubrom" "${newrom%.rom}_grubonly.rom" + fi + x_ rm -f "${tmpgrubrom}" + done +} + +# make a rom in /tmp/ and then print the path of that ROM +mkSeabiosRom() { + _cbrom="${1}" # rom to insert seabios in. will not be touched + # (a tmpfile will be made instead) + _seabios_cbfs_path="${2}" # e.g. fallback/payload + _seabioself="elf/seabios/default/${initmode}/bios.bin.elf" + tmprom=$(mktemp -t coreboot_rom.XXXXXXXXXX) + + x_ cp "${_cbrom}" "${tmprom}" + x_ "$cbfstool" "$tmprom" add-payload -f "$_seabioself" \ + -n "${_seabios_cbfs_path}" -c lzma + x_ "$cbfstool" "$tmprom" add-int -i 3000 -n etc/ps2-keyboard-spinup + + z="2"; [ "$initmode" = "vgarom" ] && z="0" + x_ "$cbfstool" "$tmprom" add-int -i $z -n etc/pci-optionrom-exec + x_ "$cbfstool" "$tmprom" add-int -i 0 -n etc/optionroms-checksum + [ "$initmode" != "libgfxinit" ] || \ + x_ "$cbfstool" "$tmprom" add -f "$seavgabiosrom" \ + -n vgaroms/seavgabios.bin -t raw + + printf "%s\n" "${tmprom}" +} + +build_uboot_roms() +{ + tmprom=$(mkUbootRom "${cbrom}" "fallback/payload") || \ + $err "build_uboot_roms $board: could not create tmprom" + newrom="${romdir}/uboot_payload_${board}_${initmode}_${displaymode}.rom" + x_ moverom "${tmprom}" "${newrom}" + x_ rm -f "${tmprom}" +} + +# make a rom in /tmp/ and then print the path of that ROM +mkUbootRom() { + _cbrom="${1}" + _uboot_cbfs_path="${2}" + + _ubdir="elf/u-boot/${board}/${uboot_config}" + _ubootelf="${_ubdir}/u-boot.elf" + [ -f "${_ubootelf}" ] || _ubootelf="${_ubdir}/u-boot" + [ -f "$_ubootelf" ] || $err "mkUbootRom: $board: cant find u-boot" + + tmprom=$(mktemp -t coreboot_rom.XXXXXXXXXX) + + x_ cp "${_cbrom}" "${tmprom}" + x_ "$cbfstool" "$tmprom" add-payload -f "$_ubootelf" \ + -n "${_uboot_cbfs_path}" -c lzma + + printf "%s\n" "${tmprom}" +} + +moverom() +{ + printf "Creating target image: %s\n" "$2" + + x_ mkdir -p "${2%/*}" + x_ cp "$1" "$2" +} + +usage() +{ + cat <<- EOF + USAGE: ./build roms targetname + To build *all* boards, do this: ./build roms all + To list *all* boards, do this: ./build roms list + + Optional Flags: + -d: displaymode + -p: payload + -k: keyboard layout + + Example commands: + + ./build roms x60 + ./build roms x200_8mb x60 + ./build roms x60 -p grub -d corebootfb -k usqwerty + + to see possible values for 'target': + + ./build roms list + + Can also build serprog images: + ${serprog_usage} + + to see targets of only a given status (stable, unstable, + broken, untested and unknown), try e.g. + + ./build roms list stable + ./build roms list unstable untested + ./build roms list unknown + ./build roms list broken + ./build roms list broken stable + + the value is set in target.cfg for each board. if status + is unitialised, it defaults to "unknown". only stable/unstable + targets are permitted in releases; broken, untested and + unknown are not allowed, but are accessible via normal building + + Refer to the ${projectname} documentation for more information. + EOF +} + +main $@ diff --git a/script/trees b/script/trees new file mode 100755 index 00000000..615fbbf2 --- /dev/null +++ b/script/trees @@ -0,0 +1,264 @@ +#!/usr/bin/env sh +# SPDX-License-Identifier: GPL-3.0-or-later +# SPDX-FileCopyrightText: 2022-2023 Alper Nebi Yasak +# SPDX-FileCopyrightText: 2022 Ferass El Hafidi +# SPDX-FileCopyrightText: 2023-2024 Leah Rowe + +set -u -e + +. "include/option.sh" +. "include/git.sh" + +eval "$(setvars "" xarch cfgsdir codedir config config_name xlang mode \ + elfdir listfile project target target_dir targets tree _f target1 \ + bootstrapargs autoconfargs cmakedir makeargs autogenargs xtree)" + +main() +{ + while getopts f:b:m:u:c:x:s:l:n: option; do + _f="${1}" + case "${1}" in + -b) : ;; + -u) mode="oldconfig" ;; + -m) mode="menuconfig" ;; + -c) mode="distclean" ;; + -x) mode="crossgcc-clean" ;; + -f) mode="fetch" ;; + -s) mode="savedefconfig" ;; + -l) mode="olddefconfig" ;; + -n) mode="nconfig" ;; + *) $err "Invalid option" ;; + esac + shift; project="${OPTARG#src/}"; shift + done + [ -z "$_f" ] && $err "missing flag (-m/-u/-b/-c/-x/-f/-s/-l/-n)" + [ -z "$project" ] && $err "project name not specified" + elfdir="elf/${project}" + cfgsdir="config/${project}" + + remkdir "${tmpgit%/*}" + check_project + + _cmd="build_projects" + [ -f "config/${project}/build.list" ] && _cmd="build_targets" + $_cmd $@ +} + +build_projects() +{ + [ $# -gt 0 ] && x_ ./update trees $_f $@ + + [ "$mode" = "fetch" ] && [ ! -f "CHANGELOG" ] && \ + eval "fetch_project_repo; return 0;" + + load_project_config "$cfgsdir" + + codedir="src/${project}" + [ -d "$codedir" ] || x_ ./update trees -f "$project" + + [ "$mode" = "distclean" ] && mode="clean" + run_make_command || return 0 +} + +build_targets() +{ + [ "$elfdir" = "elf/coreboot" ] && \ + elfdir="elf/coreboot_nopayload_DO_NOT_FLASH" + + [ -d "$cfgsdir" ] || $err "directory, $cfgsdir, does not exist" + + listfile="${cfgsdir}/build.list" + [ -f "$listfile" ] || $err "list file, $listfile, does not exist" + + # Build for all targets if no argument is given + [ $# -gt 0 ] && target1="$1" + [ "$target1" = "utils" ] && [ "$project" = "coreboot" ] && \ + shift 1 + targets=$(items "$cfgsdir") || \ + $err "Cannot get options for $cfgsdir" + [ $# -gt 0 ] && targets=$@ + + [ -z "$mode" ] && x_ mkdir -p "$elfdir" + handle_targets +} + +handle_targets() +{ + for x in $targets; do + target="${x}" + printf "Running 'make %s' for project '%s, target '%s''\n" \ + "$mode" "$project" "$target" + [ "$project" != "coreboot" ] || [ -n "$mode" ] || \ + [ "$target1" = "utils" ] || \ + x_ ./vendor download $target + x_ handle_defconfig + done + + [ "$target1" = "utils" ] && [ "$project" = "coreboot" ] && return 0 + [ -z "${mode}" ] && printf "Done! Check %s/\n\n" "$elfdir"; return 0 +} + +handle_defconfig() +{ + handle_src_tree "$target" || return 0 + + [ "$target1" = "utils" ] && [ "$project" = "coreboot" ] && \ + eval "handle_coreboot_utils \"$tree\"; return 0" + + for y in "${target_dir}/config"/*; do + [ -f "$y" ] || continue + config="$y" + config_name="${config#"${target_dir}/config/"}" + + printf "handle/make/config %s %s: handling config %s\n" \ + "$project" "$target" "$config_name" + + [ -n "$mode" ] || check_config || continue + handle_makefile + [ -n "$mode" ] || copy_elf + done +} + +handle_src_tree() +{ + target_dir="${cfgsdir}/${target}" + [ "$mode" = "fetch" ] && [ ! -f "CHANGELOG" ] && \ + eval "fetch_project_trees; return 1;" + + load_project_config "$target_dir" + + x_ mkdir -p "${elfdir}/${target}" + + [ -z "$tree" ] && $err "handle_src_tree $project/$tree: tree unset" + + codedir="src/${project}/${tree}" + + if [ ! -d "$codedir" ]; then + if [ "$mode" = "distclean" ] || \ + [ "$mode" = "crossgcc-clean" ]; then + printf "Directory %s missing; skipping clean\n" \ + "$codedir" 1>&2 + return 1 + fi + x_ ./update trees -f "$project" "$target" + fi + + [ "$target1" = "utils" ] && [ "$project" = "coreboot" ] && return 0 + [ -z "$mode" ] && check_cross_compiler; return 0 +} + +load_project_config() +{ + eval "$(setvars "" xarch xlang tree bootstrapargs autoconfargs \ + xtree tree_depend)" + + [ -f "${1}/target.cfg" ] || return 0 + . "${1}/target.cfg" || \ + $err "load_project_config ${1}: cannot load target.cfg"; return 0 +} + +check_cross_compiler() +{ + for _xarch in $xarch; do + cbdir="src/coreboot/${tree}" + [ "$project" != "coreboot" ] && cbdir="src/coreboot/default" + [ -n "$xtree" ] && cbdir="src/coreboot/$xtree" + + x_ ./update trees -f coreboot ${cbdir#src/coreboot/} + + export PATH="${PWD}/${cbdir}/util/crossgcc/xgcc/bin:$PATH" + export CROSS_COMPILE="${xarch% *}-" + [ -n "${xlang}" ] && export BUILD_LANGUAGES="$xlang" + + [ -d "${cbdir}/util/crossgcc/xgcc/${_xarch}/" ] && continue + x_ make -C "$cbdir" crossgcc-${_xarch%-*} CPUS=$threads + done +} + +check_config() +{ + [ -f "$config" ] || $err "check_config: ${project}/${target}: no config" + + dest_dir="${elfdir}/${target}/${config_name}" + # TODO: very hacky check. do it properly (based on build.list) + for elftest in "${dest_dir}"/*; do + [ -f "$elftest" ] || continue + printf "Build already exists, so skipping build\n" 1>&2 + return 1 + done + x_ mkdir -p "$dest_dir" +} + +handle_makefile() +{ + x_ make clean -C "$codedir" + x_ cp "$config" "${codedir}/.config" + [ -n "$mode" ] || make -C "$codedir" silentoldconfig || \ + make -C "$codedir" oldconfig || : + + run_make_command || $err "handle_makefile $codedir: no makefile!" + + _copy=".config" + [ "$mode" = "savedefconfig" ] && _copy="defconfig" + [ "${mode%config}" = "$mode" ] || x_ cp "$codedir/$_copy" "$config" + + [ -e "${codedir}/.git" ] && [ "$project" = "u-boot" ] && \ + [ "$mode" = "distclean" ] && \ + x_ git -C "$codedir" clean -fdx; return 0 +} + +run_make_command() +{ + check_cmake "$codedir" + [ -z "$mode" ] && check_autoconf "$codedir" + check_makefile "$codedir" || return 1 + + [ "$project" = "coreboot" ] && [ -z "$mode" ] && x_ \ + printf "%s\n" "${version%%-*}" > "$codedir/.coreboot-version" + + make $mode -j$threads $makeargs -C "$codedir" || \ + $err "run_make $codedir: !make $mode" + + [ "$mode" != "clean" ] && return 0 + make -C "$codedir" distclean 2>/dev/null || : +} + +check_cmake() +{ + [ -z "${cmakedir}" ] || \ + check_makefile "${1}" || \ + cmake -B "${1}" "${1}/${cmakedir}" || \ + check_makefile "${1}" || \ + $err "check_cmake ${1}: can't cmake ${cmakedir}" + [ -z "${cmakedir}" ] || check_makefile "${1}" || \ + $err "check_cmake ${1}: could not generate Makefile" + return 0 +} + +check_autoconf() +{ + ( + _cfgopt="" + cd "${1}" || $err "!cd $1" + [ -f "bootstrap" ] && x_ ./bootstrap $bootstrapargs + [ -f "autogen.sh" ] && x_ ./autogen.sh ${autogenargs} + [ -f "configure" ] && x_ ./configure $autoconfargs; return 0 + ) || $err "can't bootstrap project: $1" +} + +check_makefile() +{ + [ -f "${1}/Makefile" ] || [ -f "${1}/makefile" ] || \ + [ -f "${1}/GNUmakefile" ] || return 1; return 0 +} + +copy_elf() +{ + while read -r f; do + [ ! -f "${codedir}/$f" ] || \ + x_ cp "${codedir}/${f}" "$dest_dir" + done < "$listfile" + x_ make clean -C "$codedir" +} + +main $@ diff --git a/script/update/trees b/script/update/trees deleted file mode 100755 index 615fbbf2..00000000 --- a/script/update/trees +++ /dev/null @@ -1,264 +0,0 @@ -#!/usr/bin/env sh -# SPDX-License-Identifier: GPL-3.0-or-later -# SPDX-FileCopyrightText: 2022-2023 Alper Nebi Yasak -# SPDX-FileCopyrightText: 2022 Ferass El Hafidi -# SPDX-FileCopyrightText: 2023-2024 Leah Rowe - -set -u -e - -. "include/option.sh" -. "include/git.sh" - -eval "$(setvars "" xarch cfgsdir codedir config config_name xlang mode \ - elfdir listfile project target target_dir targets tree _f target1 \ - bootstrapargs autoconfargs cmakedir makeargs autogenargs xtree)" - -main() -{ - while getopts f:b:m:u:c:x:s:l:n: option; do - _f="${1}" - case "${1}" in - -b) : ;; - -u) mode="oldconfig" ;; - -m) mode="menuconfig" ;; - -c) mode="distclean" ;; - -x) mode="crossgcc-clean" ;; - -f) mode="fetch" ;; - -s) mode="savedefconfig" ;; - -l) mode="olddefconfig" ;; - -n) mode="nconfig" ;; - *) $err "Invalid option" ;; - esac - shift; project="${OPTARG#src/}"; shift - done - [ -z "$_f" ] && $err "missing flag (-m/-u/-b/-c/-x/-f/-s/-l/-n)" - [ -z "$project" ] && $err "project name not specified" - elfdir="elf/${project}" - cfgsdir="config/${project}" - - remkdir "${tmpgit%/*}" - check_project - - _cmd="build_projects" - [ -f "config/${project}/build.list" ] && _cmd="build_targets" - $_cmd $@ -} - -build_projects() -{ - [ $# -gt 0 ] && x_ ./update trees $_f $@ - - [ "$mode" = "fetch" ] && [ ! -f "CHANGELOG" ] && \ - eval "fetch_project_repo; return 0;" - - load_project_config "$cfgsdir" - - codedir="src/${project}" - [ -d "$codedir" ] || x_ ./update trees -f "$project" - - [ "$mode" = "distclean" ] && mode="clean" - run_make_command || return 0 -} - -build_targets() -{ - [ "$elfdir" = "elf/coreboot" ] && \ - elfdir="elf/coreboot_nopayload_DO_NOT_FLASH" - - [ -d "$cfgsdir" ] || $err "directory, $cfgsdir, does not exist" - - listfile="${cfgsdir}/build.list" - [ -f "$listfile" ] || $err "list file, $listfile, does not exist" - - # Build for all targets if no argument is given - [ $# -gt 0 ] && target1="$1" - [ "$target1" = "utils" ] && [ "$project" = "coreboot" ] && \ - shift 1 - targets=$(items "$cfgsdir") || \ - $err "Cannot get options for $cfgsdir" - [ $# -gt 0 ] && targets=$@ - - [ -z "$mode" ] && x_ mkdir -p "$elfdir" - handle_targets -} - -handle_targets() -{ - for x in $targets; do - target="${x}" - printf "Running 'make %s' for project '%s, target '%s''\n" \ - "$mode" "$project" "$target" - [ "$project" != "coreboot" ] || [ -n "$mode" ] || \ - [ "$target1" = "utils" ] || \ - x_ ./vendor download $target - x_ handle_defconfig - done - - [ "$target1" = "utils" ] && [ "$project" = "coreboot" ] && return 0 - [ -z "${mode}" ] && printf "Done! Check %s/\n\n" "$elfdir"; return 0 -} - -handle_defconfig() -{ - handle_src_tree "$target" || return 0 - - [ "$target1" = "utils" ] && [ "$project" = "coreboot" ] && \ - eval "handle_coreboot_utils \"$tree\"; return 0" - - for y in "${target_dir}/config"/*; do - [ -f "$y" ] || continue - config="$y" - config_name="${config#"${target_dir}/config/"}" - - printf "handle/make/config %s %s: handling config %s\n" \ - "$project" "$target" "$config_name" - - [ -n "$mode" ] || check_config || continue - handle_makefile - [ -n "$mode" ] || copy_elf - done -} - -handle_src_tree() -{ - target_dir="${cfgsdir}/${target}" - [ "$mode" = "fetch" ] && [ ! -f "CHANGELOG" ] && \ - eval "fetch_project_trees; return 1;" - - load_project_config "$target_dir" - - x_ mkdir -p "${elfdir}/${target}" - - [ -z "$tree" ] && $err "handle_src_tree $project/$tree: tree unset" - - codedir="src/${project}/${tree}" - - if [ ! -d "$codedir" ]; then - if [ "$mode" = "distclean" ] || \ - [ "$mode" = "crossgcc-clean" ]; then - printf "Directory %s missing; skipping clean\n" \ - "$codedir" 1>&2 - return 1 - fi - x_ ./update trees -f "$project" "$target" - fi - - [ "$target1" = "utils" ] && [ "$project" = "coreboot" ] && return 0 - [ -z "$mode" ] && check_cross_compiler; return 0 -} - -load_project_config() -{ - eval "$(setvars "" xarch xlang tree bootstrapargs autoconfargs \ - xtree tree_depend)" - - [ -f "${1}/target.cfg" ] || return 0 - . "${1}/target.cfg" || \ - $err "load_project_config ${1}: cannot load target.cfg"; return 0 -} - -check_cross_compiler() -{ - for _xarch in $xarch; do - cbdir="src/coreboot/${tree}" - [ "$project" != "coreboot" ] && cbdir="src/coreboot/default" - [ -n "$xtree" ] && cbdir="src/coreboot/$xtree" - - x_ ./update trees -f coreboot ${cbdir#src/coreboot/} - - export PATH="${PWD}/${cbdir}/util/crossgcc/xgcc/bin:$PATH" - export CROSS_COMPILE="${xarch% *}-" - [ -n "${xlang}" ] && export BUILD_LANGUAGES="$xlang" - - [ -d "${cbdir}/util/crossgcc/xgcc/${_xarch}/" ] && continue - x_ make -C "$cbdir" crossgcc-${_xarch%-*} CPUS=$threads - done -} - -check_config() -{ - [ -f "$config" ] || $err "check_config: ${project}/${target}: no config" - - dest_dir="${elfdir}/${target}/${config_name}" - # TODO: very hacky check. do it properly (based on build.list) - for elftest in "${dest_dir}"/*; do - [ -f "$elftest" ] || continue - printf "Build already exists, so skipping build\n" 1>&2 - return 1 - done - x_ mkdir -p "$dest_dir" -} - -handle_makefile() -{ - x_ make clean -C "$codedir" - x_ cp "$config" "${codedir}/.config" - [ -n "$mode" ] || make -C "$codedir" silentoldconfig || \ - make -C "$codedir" oldconfig || : - - run_make_command || $err "handle_makefile $codedir: no makefile!" - - _copy=".config" - [ "$mode" = "savedefconfig" ] && _copy="defconfig" - [ "${mode%config}" = "$mode" ] || x_ cp "$codedir/$_copy" "$config" - - [ -e "${codedir}/.git" ] && [ "$project" = "u-boot" ] && \ - [ "$mode" = "distclean" ] && \ - x_ git -C "$codedir" clean -fdx; return 0 -} - -run_make_command() -{ - check_cmake "$codedir" - [ -z "$mode" ] && check_autoconf "$codedir" - check_makefile "$codedir" || return 1 - - [ "$project" = "coreboot" ] && [ -z "$mode" ] && x_ \ - printf "%s\n" "${version%%-*}" > "$codedir/.coreboot-version" - - make $mode -j$threads $makeargs -C "$codedir" || \ - $err "run_make $codedir: !make $mode" - - [ "$mode" != "clean" ] && return 0 - make -C "$codedir" distclean 2>/dev/null || : -} - -check_cmake() -{ - [ -z "${cmakedir}" ] || \ - check_makefile "${1}" || \ - cmake -B "${1}" "${1}/${cmakedir}" || \ - check_makefile "${1}" || \ - $err "check_cmake ${1}: can't cmake ${cmakedir}" - [ -z "${cmakedir}" ] || check_makefile "${1}" || \ - $err "check_cmake ${1}: could not generate Makefile" - return 0 -} - -check_autoconf() -{ - ( - _cfgopt="" - cd "${1}" || $err "!cd $1" - [ -f "bootstrap" ] && x_ ./bootstrap $bootstrapargs - [ -f "autogen.sh" ] && x_ ./autogen.sh ${autogenargs} - [ -f "configure" ] && x_ ./configure $autoconfargs; return 0 - ) || $err "can't bootstrap project: $1" -} - -check_makefile() -{ - [ -f "${1}/Makefile" ] || [ -f "${1}/makefile" ] || \ - [ -f "${1}/GNUmakefile" ] || return 1; return 0 -} - -copy_elf() -{ - while read -r f; do - [ ! -f "${codedir}/$f" ] || \ - x_ cp "${codedir}/${f}" "$dest_dir" - done < "$listfile" - x_ make clean -C "$codedir" -} - -main $@ -- cgit v1.2.1