mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-24 11:46:30 +00:00
18 lines
360 B
Bash
Executable File
18 lines
360 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
# boot directory
|
|
mkdir -p $BOOT_DIR
|
|
|
|
cp $BOARD_DIR/bl1.bin.hardkernel $IMG_DIR
|
|
cp $BOARD_DIR/bl2.bin.hardkernel $IMG_DIR
|
|
cp $BOARD_DIR/tzsw.bin.hardkernel $IMG_DIR
|
|
cp $BOARD_DIR/u-boot.bin $IMG_DIR
|
|
|
|
cp $IMG_DIR/zImage $BOOT_DIR
|
|
cp $IMG_DIR/exynos5422-odroidxu4.dtb $BOOT_DIR
|
|
cp $BOARD_DIR/boot.ini $BOOT_DIR
|
|
cp $BOARD_DIR/uInitrd $BOOT_DIR
|
|
|