blob: 747991e3f1da8ceee1350d00d9cc87798bd7825e [file] [log] [blame]
#!/bin/sh
# genimage will need to find the extlinux.conf
# in the binaries directory
CONSOLE="$2"
ROOT="$3"
mkdir -p "${BINARIES_DIR}"
cat <<-__HEADER_EOF > "${BINARIES_DIR}/extlinux.conf"
label linux
kernel /Image
devicetree /system.dtb
append console="${CONSOLE}" root="/dev/${ROOT}" rw rootwait
__HEADER_EOF