[Buildroot] [PATCH] board/wandboard/post-build.sh: create boot.scr at TARGET_DIR/boot

Arnout Vandecappelle arnout at mind.be
Sun Oct 13 16:46:02 UTC 2019



On 13/10/2019 01:30, unixmania at gmail.com wrote:
> From: Carlos Santos <unixmania at gmail.com>
> 
> There is no reason to create boot.scr at board/wandboard and later
> install it at TARGET_DIR/boot, leaving a stale file behind.
> 
> Signed-off-by: Carlos Santos <unixmania at gmail.com>
> ---
>  board/wandboard/post-build.sh | 6 ++++--
>  1 file changed, 4 insertions(+), 2 deletions(-)
> 
> diff --git a/board/wandboard/post-build.sh b/board/wandboard/post-build.sh
> index 43e091c5d7..17aa9eefaf 100755
> --- a/board/wandboard/post-build.sh
> +++ b/board/wandboard/post-build.sh
> @@ -2,7 +2,9 @@
>  
>  BOARD_DIR="$(dirname $0)"
>  
> +install -d -m 755 $TARGET_DIR/boot
> +
>  $HOST_DIR/bin/mkimage -A arm -O linux -T script -C none  \
> --n "boot script" -d $BOARD_DIR/boot.scr.txt $BOARD_DIR/boot.scr
> +-n "boot script" -d $BOARD_DIR/boot.scr.txt $TARGET_DIR/boot/boot.scr
>  
> -install -m 0644 -D $BOARD_DIR/boot.scr $TARGET_DIR/boot/boot.scr
> +chmod 644 $TARGET_DIR/boot/boot.scr

 Is the chmod even needed? AFAIK mkimage doesn't create any special permissions,
so the umask should apply.

 Regards,
 Arnout




More information about the buildroot mailing list