7 lines
165 B
Bash
7 lines
165 B
Bash
|
#!/bin/sh
|
||
|
BOARD_DIR="$(dirname $0)"
|
||
|
|
||
|
cp $BOARD_DIR/uEnv.txt $BINARIES_DIR/uEnv.txt
|
||
|
|
||
|
install -m 0644 -D $BOARD_DIR/extlinux.conf $BINARIES_DIR/extlinux/extlinux.conf
|