#!/bin/sh
# DF-2651 build: forge the crafted image from the base image (host side).
# Prereq: python3. Base image is provided (base2651.img.gz).
set -e
cd "$(dirname "$0")"
[ -f base2651.img ] || gunzip -kf base2651.img.gz
python3 forge_2651.py base2651.img forge2651.img
echo "built forge2651.img"
