diff options
author | Guido MartÃnez <guido@vanguardiasur.com.ar> | 2014-11-21 13:19:06 -0300 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2014-11-22 19:00:47 +0100 |
commit | 04576d9e55341bb7701d70f25d8cf2c276360acd (patch) | |
tree | 0c208b8a28e4dc3735f0ee14b7487a679e82e969 | |
parent | 00152b6a1fe760c1fd9ad54618af484517272f8b (diff) |
nitrogen6x: use install instead of cp
in order to not depend on the previous permissions of each file
Signed-off-by: Guido MartÃnez <guido@vanguardiasur.com.ar>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rwxr-xr-x | board/boundarydevices/nitrogen6x/post-build.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/board/boundarydevices/nitrogen6x/post-build.sh b/board/boundarydevices/nitrogen6x/post-build.sh index cc6e66acf..2b43aa322 100755 --- a/board/boundarydevices/nitrogen6x/post-build.sh +++ b/board/boundarydevices/nitrogen6x/post-build.sh @@ -8,11 +8,11 @@ BOARD_DIR="$(dirname $0)" # bd u-boot looks for bootscript here -cp $BOARD_DIR/6x_bootscript $TARGET_DIR +install -D -m 0644 $BOARD_DIR/6x_bootscript $TARGET_DIR/6x_bootscript # u-boot / update script for bd upgradeu command if [ -e $BINARIES_DIR/u-boot.imx ]; then - cp $BINARIES_DIR/u-boot.imx $TARGET_DIR - cp $BOARD_DIR/6x_upgrade $TARGET_DIR + install -D -m 0644 $BINARIES_DIR/u-boot.imx $TARGET_DIR/u-boot.imx + install -D -m 0644 $BOARD_DIR/6x_upgrade $TARGET_DIR/6x_upgrade fi |