diff options
author | Joshua Henderson <joshua.henderson@microchip.com> | 2017-11-08 11:15:21 -0700 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-11-11 23:29:23 +0100 |
commit | eb7e90bf68379a8e82762255d7855ffcf788d99c (patch) | |
tree | fd2382d6cdb344337108d3167c8761cdae6bac9c /board/atmel/at91sam9x5ek_mmc | |
parent | 9957d2c89decd6ad63b144df2fb10837eb43250f (diff) | |
download | buildroot-eb7e90bf68379a8e82762255d7855ffcf788d99c.tar.gz buildroot-eb7e90bf68379a8e82762255d7855ffcf788d99c.zip |
configs/at91: refactor to use genimage.sh
Prefer the commom genimage.sh instead of a custom post-image.sh script.
Cc: Ludovic Desroches <ludovic.desroches@atmel.com>
Cc: Peter Korsgaard <peter@korsgaard.com>
Signed-off-by: Joshua Henderson <joshua.henderson@microchip.com>
Acked-by: Ludovic Desroches <ludovic.desroches@microchip.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'board/atmel/at91sam9x5ek_mmc')
-rwxr-xr-x | board/atmel/at91sam9x5ek_mmc/post-image.sh | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/board/atmel/at91sam9x5ek_mmc/post-image.sh b/board/atmel/at91sam9x5ek_mmc/post-image.sh deleted file mode 100755 index b560fd31c4..0000000000 --- a/board/atmel/at91sam9x5ek_mmc/post-image.sh +++ /dev/null @@ -1,20 +0,0 @@ -#!/bin/sh - -BOARD_DIR="$(dirname $0)" -GENIMAGE_CFG="${BOARD_DIR}/genimage.cfg" -GENIMAGE_TMP="${BUILD_DIR}/genimage.tmp" - -rm -rf "${GENIMAGE_TMP}" - -echo --rootpath "${TARGET_DIR}" -echo --tmppath "${GENIMAGE_TMP}" -echo --inputpath "${BINARIES_DIR}" -echo --outputpath "${BINARIES_DIR}" -echo --config "${GENIMAGE_CFG}" - -genimage \ - --rootpath "${TARGET_DIR}" \ - --tmppath "${GENIMAGE_TMP}" \ - --inputpath "${BINARIES_DIR}" \ - --outputpath "${BINARIES_DIR}" \ - --config "${GENIMAGE_CFG}" |