mirror of
https://github.com/archr-linux/Arch-R.git
synced 2026-03-31 14:41:55 -07:00
16 lines
833 B
Plaintext
16 lines
833 B
Plaintext
# SPDX-License-Identifier: GPL-2.0
|
|
# Copyright (C) 2017-present Team LibreELEC (https://libreelec.tv)
|
|
|
|
if [ -f "$RELEASE_DIR/3rdparty/bootloader/idbloader.img" ]; then
|
|
echo "image: burn idbloader.img to image..."
|
|
dd if="$RELEASE_DIR/3rdparty/bootloader/idbloader.img" of="$DISK" bs=32k seek=1 conv=fsync,notrunc >"$SAVE_ERROR" 2>&1 || show_error
|
|
fi
|
|
if [ -f "$RELEASE_DIR/3rdparty/bootloader/uboot.img" ]; then
|
|
echo "image: burn uboot.img to image..."
|
|
dd if="$RELEASE_DIR/3rdparty/bootloader/uboot.img" of="$DISK" bs=64k seek=128 conv=fsync,notrunc >"$SAVE_ERROR" 2>&1 || show_error
|
|
fi
|
|
if [ -f "$RELEASE_DIR/3rdparty/bootloader/trust.img" ]; then
|
|
echo "image: burn trust.img to image..."
|
|
dd if="$RELEASE_DIR/3rdparty/bootloader/trust.img" of="$DISK" bs=64k seek=192 conv=fsync,notrunc >"$SAVE_ERROR" 2>&1 || show_error
|
|
fi
|