98295c5330
Changes: * Update Kernel and U-Boot to the latest 2.0.6 BSP release from the official sources. * Add genimage config to create bootable SD card image Signed-off-by: Gergely Imreh <imrehg@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
17 lines
325 B
Bash
Executable File
17 lines
325 B
Bash
Executable File
#!/bin/bash
|
|
|
|
GENIMAGE_CFG="board/via/imx6_vab820/genimage.cfg"
|
|
GENIMAGE_TMP="${BUILD_DIR}/genimage.tmp"
|
|
|
|
rm -rf "${GENIMAGE_TMP}"
|
|
|
|
genimage \
|
|
--rootpath "${TARGET_DIR}" \
|
|
--tmppath "${GENIMAGE_TMP}" \
|
|
--inputpath "${BINARIES_DIR}" \
|
|
--outputpath "${BINARIES_DIR}" \
|
|
--config "${GENIMAGE_CFG}"
|
|
|
|
RET=${?}
|
|
exit ${RET}
|