blobutil/inject: fail if gbe.bin doesn't exist
parent
54f8a45325
commit
6289eeb55e
|
@ -334,10 +334,17 @@ modify_gbe()
|
||||||
printf "changing mac address in gbe to ${new_mac}\n"
|
printf "changing mac address in gbe to ${new_mac}\n"
|
||||||
|
|
||||||
rom=${1}
|
rom=${1}
|
||||||
# TODO: check if CONFIG_GBE_BIN_PATH is empty
|
|
||||||
# TODO: check that the gbe file actually exists
|
if [ -z ${CONFIG_GBE_BIN_PATH} ]; then
|
||||||
|
fail "CONFIG_GBE_BIN_PATH not set"
|
||||||
|
fi
|
||||||
|
|
||||||
_gbe_location=${CONFIG_GBE_BIN_PATH#../../}
|
_gbe_location=${CONFIG_GBE_BIN_PATH#../../}
|
||||||
|
|
||||||
|
if [ ! -f "${_gbe_location}" ]; then
|
||||||
|
fail "CONFIG_GBE_BIN_PATH points to missing file"
|
||||||
|
fi
|
||||||
|
|
||||||
if [ ! -f ${nvmutil} ]; then
|
if [ ! -f ${nvmutil} ]; then
|
||||||
make -C util/nvmutil || fail 'failed to build nvmutil'
|
make -C util/nvmutil || fail 'failed to build nvmutil'
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in New Issue