update t440p script

This commit is contained in:
2026-04-14 01:16:13 -07:00
parent cf15115731
commit aaa53d6a09
19 changed files with 1046 additions and 11 deletions
+17
View File
@@ -0,0 +1,17 @@
#!/bin/sh
# Step: Build cbfstool
step_build_cbfstool() {
section "Build cbfstool"
info "Building cbfstool (Coreboot Filesystem tool)..."
cd "$COREBOOT_DIR" || return 1
run_cmd "make -C util/cbfstool" || return 1
if [ ! -f "$COREBOOT_DIR/util/cbfstool/cbfstool" ]; then
error "cbfstool binary not found after build."
return 1
fi
success "cbfstool built."
}