rename build/project/trees to update/project/build
Signed-off-by: Leah Rowe <leah@libreboot.org>btrfsvols
parent
1c2de7f962
commit
2d16e1ee47
|
@ -128,7 +128,7 @@ prepare_target()
|
||||||
|
|
||||||
memtest_bin="memtest86plus/build${arch#*_}/memtest.bin"
|
memtest_bin="memtest86plus/build${arch#*_}/memtest.bin"
|
||||||
[ "${payload_memtest}" != "y" ] || [ -f "${memtest_bin}" ] || \
|
[ "${payload_memtest}" != "y" ] || [ -f "${memtest_bin}" ] || \
|
||||||
x_ ./build project trees -b ${memtest_bin%/*}
|
x_ ./update project build -b ${memtest_bin%/*}
|
||||||
|
|
||||||
x_ rm -f "${romdir}/"*
|
x_ rm -f "${romdir}/"*
|
||||||
|
|
||||||
|
@ -145,7 +145,7 @@ build_dependency_seabios()
|
||||||
|| [ ! -f elf/seabios/default/libgfxinit/bios.bin.elf ] \
|
|| [ ! -f elf/seabios/default/libgfxinit/bios.bin.elf ] \
|
||||||
|| [ ! -f elf/seabios/default/vgarom/bios.bin.elf ] \
|
|| [ ! -f elf/seabios/default/vgarom/bios.bin.elf ] \
|
||||||
|| [ ! -f elf/seabios/default/normal/bios.bin.elf ]; then
|
|| [ ! -f elf/seabios/default/normal/bios.bin.elf ]; then
|
||||||
x_ ./build project trees -b seabios
|
x_ ./update project build -b seabios
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -173,7 +173,7 @@ build_dependency_uboot()
|
||||||
{
|
{
|
||||||
[ "${payload_uboot}" = "y" ] || return 0
|
[ "${payload_uboot}" = "y" ] || return 0
|
||||||
|
|
||||||
x_ ./build project trees -b u-boot ${board}
|
x_ ./update project build -b u-boot ${board}
|
||||||
ubdir="elf/u-boot/${board}/${uboot_config}"
|
ubdir="elf/u-boot/${board}/${uboot_config}"
|
||||||
ubootelf="${ubdir}/u-boot.elf"
|
ubootelf="${ubdir}/u-boot.elf"
|
||||||
[ ! -f "${ubootelf}" ] && [ -f "${ubdir}/u-boot.bin" ] && \
|
[ ! -f "${ubootelf}" ] && [ -f "${ubdir}/u-boot.bin" ] && \
|
||||||
|
@ -210,7 +210,7 @@ build_roms()
|
||||||
"${cbcfg}" "${board}" "${displaymode}" "${initmode}" \
|
"${cbcfg}" "${board}" "${displaymode}" "${initmode}" \
|
||||||
1>&2 && return 0
|
1>&2 && return 0
|
||||||
|
|
||||||
x_ ./build project trees -b coreboot ${board}
|
x_ ./update project build -b coreboot ${board}
|
||||||
|
|
||||||
_cbrom="elf/coreboot/${board}/${initmode}_${displaymode}"
|
_cbrom="elf/coreboot/${board}/${initmode}_${displaymode}"
|
||||||
[ "${initmode}" = "normal" ] && \
|
[ "${initmode}" = "normal" ] && \
|
||||||
|
|
|
@ -101,12 +101,12 @@ purge_files()
|
||||||
(
|
(
|
||||||
x_ cd "${srcdir}/"
|
x_ cd "${srcdir}/"
|
||||||
[ ! -d "coreboot/default/util/kbc1126" ] || \
|
[ ! -d "coreboot/default/util/kbc1126" ] || \
|
||||||
x_ ./build project trees -c "coreboot/default/util/kbc1126"
|
x_ ./update project build -c "coreboot/default/util/kbc1126"
|
||||||
x_ ./build project trees -x coreboot
|
x_ ./update project build -x coreboot
|
||||||
for p in u-boot seabios coreboot; do
|
for p in u-boot seabios coreboot; do
|
||||||
x_ ./build project trees -c "${p}"
|
x_ ./update project build -c "${p}"
|
||||||
done
|
done
|
||||||
x_ ./build project trees -c bios_extract flashrom grub uefitool \
|
x_ ./update project build -c bios_extract flashrom grub uefitool \
|
||||||
util-fw/stm32-vserprog util-fw/stm32-vserprog/libopencm3 \
|
util-fw/stm32-vserprog util-fw/stm32-vserprog/libopencm3 \
|
||||||
memtest86plus/build32 memtest86plus/build64 util/*
|
memtest86plus/build32 memtest86plus/build64 util/*
|
||||||
|
|
||||||
|
|
|
@ -47,7 +47,7 @@ build_dependencies()
|
||||||
x_ ./update project repo "${d}"
|
x_ ./update project repo "${d}"
|
||||||
done
|
done
|
||||||
[ -f uefitool/uefiextract ] || \
|
[ -f uefitool/uefiextract ] || \
|
||||||
x_ ./build project trees -b uefitool
|
x_ ./update project build -b uefitool
|
||||||
[ -f "${cbdir}/util/kbc1126/kbc1126_ec_dump" ] || \
|
[ -f "${cbdir}/util/kbc1126/kbc1126_ec_dump" ] || \
|
||||||
x_ make -C "${cbdir}/util/kbc1126"
|
x_ make -C "${cbdir}/util/kbc1126"
|
||||||
x_ ./build coreboot utils default
|
x_ ./build coreboot utils default
|
||||||
|
|
|
@ -47,7 +47,7 @@ main()
|
||||||
|
|
||||||
build_projects()
|
build_projects()
|
||||||
{
|
{
|
||||||
[ $# -gt 0 ] && x_ ./build project trees ${_f} ${@}
|
[ $# -gt 0 ] && x_ ./update project build ${_f} ${@}
|
||||||
codedir="${project}"
|
codedir="${project}"
|
||||||
|
|
||||||
[ -d "${codedir}" ] || x_ ./update project repo "${codedir%/*}"
|
[ -d "${codedir}" ] || x_ ./update project repo "${codedir%/*}"
|
Loading…
Reference in New Issue