mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-24 11:46:30 +00:00
16 lines
361 B
Bash
Executable File
16 lines
361 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
RPI_FW_DIR=$TARGET/../images/rpi-firmware
|
|
|
|
cp $BOARD_DIR/config.txt $BOOT_DIR
|
|
cp $BOARD_DIR/cmdline.txt $BOOT_DIR
|
|
cp $BOARD_DIR/fwupdater.gz $BOOT_DIR
|
|
cp $IMG_DIR/zImage $BOOT_DIR/kernel.img
|
|
cp $IMG_DIR/bcm2709-rpi-2-b.dtb $BOOT_DIR
|
|
cp $RPI_FW_DIR/bootcode.bin $BOOT_DIR
|
|
cp $RPI_FW_DIR/start.elf $BOOT_DIR
|
|
cp $RPI_FW_DIR/fixup.dat $BOOT_DIR
|
|
|