Reset the default target device as file for custom OS build

Signed-off-by: Dongjin Kim <tobetter@gmail.com>
This commit is contained in:
Dongjin Kim
2021-02-10 03:19:01 +09:00
parent 9b64051b12
commit e791335247
2 changed files with 2 additions and 1 deletions

View File

@@ -3,7 +3,6 @@ BOARD=odroidc4
ARCH=arm64
DISTRO=focal
FLAVOUR=server
TARGET_DEVICE=/srv/workspace/odroid-stamper/binary.img
DEFAULT_USER=odroid
DEFAULT_PASSWD=odroid
ALLOW_ROOT_LOGIN=false

View File

@@ -43,6 +43,8 @@ trap "trap_ctrlc" 2
trap "cleanup" 0
trap "panic" 1 3 15
[ "x${TARGET_DEVCIE}" = "x" ] && TARGET_DEVICE=${out_dir}/binary.img
do_custom_installer ${download_dir} ${out_dir}
# vim: set ft=sh ts=4 sw=4 expandtab