]> Git Repo - buildroot-mgba.git/blame - board/udoo/mx6qdl/post-image.sh
wireguard: bump to version 0.0.20171011
[buildroot-mgba.git] / board / udoo / mx6qdl / post-image.sh
CommitLineData
8ec127d8
FE
1#!/usr/bin/env bash
2
3BOARD_DIR="$(dirname $0)"
4GENIMAGE_CFG="${BOARD_DIR}/genimage.cfg"
5GENIMAGE_TMP="${BUILD_DIR}/genimage.tmp"
6
7rm -rf "${GENIMAGE_TMP}"
8
9genimage \
10 --rootpath "${TARGET_DIR}" \
11 --tmppath "${GENIMAGE_TMP}" \
12 --inputpath "${BINARIES_DIR}" \
13 --outputpath "${BINARIES_DIR}" \
14 --config "${GENIMAGE_CFG}"
This page took 0.133246 seconds and 4 git commands to generate.