9 lines
196 B
Bash
9 lines
196 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
# genimage will need to find the extlinux.conf
|
||
|
# in the binaries directory
|
||
|
|
||
|
BOARD_DIR="$(dirname "$0")"
|
||
|
|
||
|
install -m 0644 -D "${BOARD_DIR}/extlinux.conf" "${BINARIES_DIR}/extlinux.conf"
|