mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-24 19:56:35 +00:00
11 lines
197 B
Bash
Executable File
11 lines
197 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
cp $IMG_DIR/zImage $BOOT_DIR
|
|
cp $IMG_DIR/rk3288-miniarm.dtb $BOOT_DIR
|
|
cp $BOARD_DIR/hw_intf.conf $BOOT_DIR
|
|
cp $BOARD_DIR/initrd.gz $BOOT_DIR
|
|
cp -r $BOARD_DIR/extlinux $BOOT_DIR
|
|
|