2023-09-30 00:31:40 +00:00
|
|
|
# SPDX-License-Identifier: GPL-3.0-only
|
|
|
|
# SPDX-FileCopyrightText: 2022 Caleb La Grange <thonkpeasant@protonmail.com>
|
|
|
|
# SPDX-FileCopyrightText: 2022 Ferass El Hafidi <vitali64pmemail@protonmail.com>
|
2023-09-25 01:27:26 +00:00
|
|
|
# SPDX-FileCopyrightText: 2023 Leah Rowe <leah@libreboot.org>
|
2023-08-27 13:14:49 +00:00
|
|
|
|
|
|
|
listitems()
|
|
|
|
{
|
2023-09-27 20:46:20 +00:00
|
|
|
rval=1
|
|
|
|
[ ! -d "${1}" ] && \
|
|
|
|
printf "listitems: directory '%s' doesn't exist" "${1}" && \
|
|
|
|
return 1
|
2023-08-27 13:14:49 +00:00
|
|
|
for x in "${1}/"*; do
|
|
|
|
# -e used because this is for files *or* directories
|
|
|
|
[ -e "${x}" ] || continue
|
|
|
|
[ "${x##*/}" = "build.list" ] && continue
|
2023-09-09 22:15:17 +00:00
|
|
|
printf "%s\n" "${x##*/}" 2>/dev/null
|
2023-09-27 20:46:20 +00:00
|
|
|
rval=0
|
2023-08-27 13:14:49 +00:00
|
|
|
done
|
2023-09-27 20:46:20 +00:00
|
|
|
return ${rval}
|
2023-08-27 13:14:49 +00:00
|
|
|
}
|
2023-09-30 00:31:40 +00:00
|
|
|
|
|
|
|
scan_config()
|
|
|
|
{
|
|
|
|
awkstr=" /\{.*${1}.*}{/ {flag=1;next} /\}/{flag=0} flag { print }"
|
|
|
|
confdir="${2}"
|
|
|
|
_fail="${3}"
|
2023-10-02 02:39:10 +00:00
|
|
|
revfile="$(mktemp -t sources.XXXXXXXXXX)"
|
2023-09-30 00:31:40 +00:00
|
|
|
cat "${confdir}/"* > "${revfile}" || \
|
2023-10-02 02:39:10 +00:00
|
|
|
"${_fail}" "scan_config ${confdir}: Cannot concatenate files"
|
2023-09-30 00:31:40 +00:00
|
|
|
while read -r line ; do
|
|
|
|
set ${line} 1>/dev/null 2>/dev/null || :
|
2023-10-03 11:59:35 +00:00
|
|
|
[ "${1%:}" = "depend" ] && depend="${depend} ${2}" && continue
|
|
|
|
eval "${1%:}=\"${2}\""
|
2023-09-30 00:31:40 +00:00
|
|
|
done << EOF
|
|
|
|
$(eval "awk '${awkstr}' \"${revfile}\"")
|
|
|
|
EOF
|
2023-10-01 05:33:43 +00:00
|
|
|
rm -f "${revfile}" || "${_fail}" "scan_config: Cannot remove tmpfile"
|
2023-09-30 00:31:40 +00:00
|
|
|
}
|
2023-10-07 04:16:46 +00:00
|
|
|
|
|
|
|
handle_coreboot_utils()
|
|
|
|
{
|
|
|
|
for util in cbfstool ifdtool; do
|
2023-10-07 05:55:10 +00:00
|
|
|
x_ ./update project trees ${_f} "src/coreboot/${1}/util/${util}"
|
2023-10-07 04:36:52 +00:00
|
|
|
[ -z "${mode}" ] && [ ! -f "cbutils/${1}/${util}" ] && \
|
2023-10-07 04:16:46 +00:00
|
|
|
x_ mkdir -p "cbutils/${1}" && \
|
|
|
|
x_ cp "src/coreboot/${1}/util/${util}/${util}" \
|
|
|
|
"cbutils/${1}"
|
2023-10-07 04:36:52 +00:00
|
|
|
[ -z "${mode}" ] || \
|
2023-10-07 04:16:46 +00:00
|
|
|
x_ rm -Rf "cbutils/${1}"
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
modify_coreboot_rom()
|
|
|
|
{
|
|
|
|
rompath="${codedir}/build/coreboot.rom"
|
|
|
|
[ -f "${rompath}" ] || \
|
|
|
|
err "modify_coreboot_rom: does not exist: ${rompath}"
|
|
|
|
tmprom="$(mktemp -t rom.XXXXXXXXXX)"
|
|
|
|
x_ rm -f "${tmprom}"
|
|
|
|
|
|
|
|
if [ "${romtype}" = "d8d16sas" ]; then
|
|
|
|
# pike2008 roms hang seabios. an empty rom will override
|
|
|
|
# the built-in one, thus disabling all execution of it
|
|
|
|
x_ touch "${tmprom}"
|
|
|
|
for deviceID in "0072" "3050"; do
|
|
|
|
x_ "${cbfstool}" "${rompath}" add -f "${tmprom}" \
|
|
|
|
-n "pci1000,${deviceID}.rom" -t raw
|
|
|
|
done
|
|
|
|
elif [ "${romtype}" = "i945 laptop" ]; then
|
|
|
|
# for bucts-based installation method from factory bios
|
|
|
|
x_ dd if="${rompath}" of="${tmprom}" bs=1 \
|
|
|
|
skip=$(($(stat -c %s "${rompath}") - 0x10000)) \
|
|
|
|
count=64k
|
|
|
|
x_ dd if="${tmprom}" of="${rompath}" bs=1 \
|
|
|
|
seek=$(($(stat -c %s "${rompath}") - 0x20000)) \
|
|
|
|
count=64k conv=notrunc
|
|
|
|
fi
|
|
|
|
x_ rm -f "${tmprom}"
|
|
|
|
}
|