From c14461a56b5203893466eaede7747047668693d8 Mon Sep 17 00:00:00 2001 From: Leah Rowe Date: Sun, 15 Oct 2023 11:22:43 +0100 Subject: delete include/vendor.sh and merge elsewhere move it all to other files where items are used, and not used anywhere else. this reduces the size of vendor.sh. also remove a few redundant variables, or variables that are not meaningfully used. a few items have been moved to include/option.sh Signed-off-by: Leah Rowe --- script/update/project/release | 3 --- script/update/project/trees | 3 +-- script/update/vendor/download | 17 +++++++++++++++-- script/update/vendor/inject | 20 +++++++++----------- 4 files changed, 25 insertions(+), 18 deletions(-) (limited to 'script/update') diff --git a/script/update/project/release b/script/update/project/release index 0fd29e82..91992032 100755 --- a/script/update/project/release +++ b/script/update/project/release @@ -14,9 +14,6 @@ _f="coreboot u-boot seabios flashrom grub memtest86plus uefitool" _f="${_f} bios_extract biosutilities pico-serprog stm32-vserprog" _f="${_f} rpi-pico-serprog" -ifdtool="cbutils/default/ifdtool" -cbfstool="cbutils/default/cbfstool" - main() { vdir="release" diff --git a/script/update/project/trees b/script/update/project/trees index bb0899f0..c8643966 100755 --- a/script/update/project/trees +++ b/script/update/project/trees @@ -14,8 +14,7 @@ set -u -e export LOCALVERSION="-${projectname}-${version%%-*}" eval "$(setvars "" arch cfgsdir codedir config config_name crossgcc_ada mode \ - elfdir listfile project romtype target target_dir targets tree cbfstool _f \ - target1)" + elfdir listfile project romtype target target_dir targets tree _f target1)" tmpclean="$(mktemp -d -t makeclean.XXXXXXXXXX)" diff --git a/script/update/vendor/download b/script/update/vendor/download index a32be3ba..87e9d3a5 100755 --- a/script/update/vendor/download +++ b/script/update/vendor/download @@ -5,12 +5,25 @@ # SPDX-FileCopyrightText: 2023 Leah Rowe . "include/err.sh" -. "include/vendor.sh" -. "include/mrc.sh" . "include/option.sh" +. "include/mrc.sh" export PATH="${PATH}:/sbin" +_ua="Mozilla/5.0 (Windows NT 10.0; rv:91.0) Gecko/20100101 Firefox/91.0" +_7ztest="a" + +e6400_unpack="${PWD}/src/bios_extract/dell_inspiron_1100_unpacker.py" +kbc1126_ec_dump="${PWD}/${cbdir}/util/kbc1126/kbc1126_ec_dump" +me7updateparser="${PWD}/util/me7_update_parser/me7_update_parser.py" +mecleaner="${PWD}/${cbdir}/util/me_cleaner/me_cleaner.py" +pfs_extract="${PWD}/src/biosutilities/Dell_PFS_Extract.py" +uefiextract="${PWD}/src/uefitool/uefiextract" + +eval "$(setvars "" _b _dl EC_url EC_url_bkup EC_hash DL_hash DL_url DL_url_bkup \ + E6400_VGA_DL_hash E6400_VGA_DL_url E6400_VGA_DL_url_bkup E6400_VGA_offset \ + E6400_VGA_romname SCH5545EC_DL_url SCH5545EC_DL_url_bkup SCH5545EC_DL_hash)" + main() { [ $# -gt 0 ] || err "No argument given" diff --git a/script/update/vendor/inject b/script/update/vendor/inject index 10692196..c4a7f702 100755 --- a/script/update/vendor/inject +++ b/script/update/vendor/inject @@ -5,10 +5,11 @@ # SPDX-FileCopyrightText: 2023 Leah Rowe . "include/err.sh" -. "include/vendor.sh" . "include/option.sh" -release_archive="n" +nvmutil="util/nvmutil/nvm" + +eval "$(setvars "" archive rom modifygbe nukemode release new_mac)" main() { @@ -46,8 +47,7 @@ check_board() [ ! -z ${board+x} ] || \ board=$(detect_board "${rom}") else - release=true - releasearchive="${archive}" + release="y" board=$(detect_board "${archive}") fi @@ -98,10 +98,8 @@ build_dependencies() inject_vendorfiles() { - release_archive="n" - [ "${release}" != "true" ] && x_ patch_rom "${rom}" && return 0 - printf "patching release file\n" - release_archive="y" + [ "${release}" != "y" ] && x_ patch_rom "${rom}" && return 0 + printf "patching release images\n" patch_release_roms } @@ -110,7 +108,7 @@ patch_release_roms() _tmpdir="tmp/romdir" x_ rm -Rf "${_tmpdir}" x_ mkdir -p "${_tmpdir}" - x_ tar -xf "${releasearchive}" -C "${_tmpdir}" + x_ tar -xf "${archive}" -C "${_tmpdir}" for x in "${_tmpdir}"/bin/*/*.rom ; do printf "patching rom: %s\n" "$x" @@ -162,7 +160,7 @@ patch_rom() # (unless nomicrocode is the only config provided) [ "${rom}" != "${rom%_nomicrocode.rom}.rom" ] && \ [ -f "${rom%_nomicrocode.rom}.rom" ] && \ - [ "${release_archive}" = "y" ] && return 0 + [ "${release}" = "y" ] && return 0 x_ check_defconfig "${boarddir}" @@ -185,7 +183,7 @@ patch_rom() [ "${CONFIG_INCLUDE_SMSC_SCH5545_EC_FW}" = "y" ] && \ [ ! -z "${CONFIG_SMSC_SCH5545_EC_FW_FILE}" ] && \ inject "sch5545_ecfw.bin" "$CONFIG_SMSC_SCH5545_EC_FW_FILE" raw - [ "${modifygbe}" = "true" ] && ! [ "${release}" = "true" ] && \ + [ "${modifygbe}" = "true" ] && ! [ "${release}" = "y" ] && \ inject "IFD" "${CONFIG_GBE_BIN_PATH}" "GbE" printf "ROM image successfully patched: %s\n" "${rom}" -- cgit v1.2.1