From 917a8ffcf2b249a1828c28b54f47a7ac3892a5e6 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Thu, 15 Feb 2024 22:31:23 -0500 Subject: [PATCH] cros-board: update --- .bin/cros-board | 16 +++++----------- 1 file changed, 5 insertions(+), 11 deletions(-) diff --git a/.bin/cros-board b/.bin/cros-board index 9034cb2..228ff2c 100755 --- a/.bin/cros-board +++ b/.bin/cros-board @@ -4,7 +4,6 @@ die() { eerror "$*"; exit 1; } set -e BASE="/mnt/host/source" -d="${BASE}/src/scripts" BUILD_DIR="${BASE}/src/build" cd "${BASE}/src/scripts/" @@ -102,7 +101,7 @@ rm -f "${IMAGES}"/log.* einfo "Log root: ${IMAGES}/log." -run ./update_chroot --toolchain_boards=${BOARD} +run update_chroot if ${ARG_CLEAN} || [[ ! -d ${BUILD} ]] ; then run sudo rm -rf "${BUILD}" @@ -113,7 +112,7 @@ if ${ARG_CLEAN} || [[ ! -d ${BUILD} ]] ; then fi fi -run build_packages \ +run cros build-packages \ --board=${BOARD} \ --nowithdebug \ --nowithrevdeps \ @@ -122,7 +121,7 @@ run build_packages \ $(tfe ${ARG_FACTORY} --{,no-}withfactory) \ $(tfe ${ARG_NOPKG} --{no-,}usepkg) \ $(tfe ${ARG_TEST} --{,no-}withtest) -BUILD_IMG="build_image --board=${BOARD} --no-enable-rootfs-verification $(tfe ${ARG_TEST} test base)" +BUILD_IMG="cros build-image --board=${BOARD} --no-enable-rootfs-verification $(tfe ${ARG_TEST} test base)" run ${BUILD_IMG} IMG_TO_USB="cros flash --yes usb://${ARG_DEV} xbuddy://local/${BOARD}/latest/dev" @@ -134,17 +133,13 @@ fi cd "${IMAGES}" rm -rf $(ls -td1R `find -mindepth 1 -maxdepth 1 -type d` | sed -e 1d -e 2d) -BUILD_IMG="${d}/${BUILD_IMG#./}" cat <