mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
tools/cpy2remed: add support for removable media name NOD_xxxx
This commit is contained in:
parent
b61a203053
commit
4cb2ed5406
40
dist/tools/cpy2remed/cpy2remed.sh
vendored
40
dist/tools/cpy2remed/cpy2remed.sh
vendored
@ -1,5 +1,11 @@
|
||||
#!/bin/sh
|
||||
|
||||
# Copyright 2022 Krzysztof Cabaj <kcabaj@gmail.com>
|
||||
#
|
||||
# This file is subject to the terms and conditions of the GNU Lesser
|
||||
# General Public License v2.1. See the file LICENSE in the top level
|
||||
# directory for more details.
|
||||
|
||||
#cpy2remed - copy to removable media
|
||||
#$1 contains generated hexfile
|
||||
#$2 contains directory name for this particular nucleo board which could be
|
||||
@ -10,4 +16,36 @@ DEV_DIR="$2"
|
||||
|
||||
REMED_MOUNT_PATH="${REMED_MOUNT_PATH:-/media/$USER/$DEV_DIR/}"
|
||||
|
||||
cp "$HEXFILE" "$REMED_MOUNT_PATH"
|
||||
if [ -d "$REMED_MOUNT_PATH" ]
|
||||
then
|
||||
echo "Directory $REMED_MOUNT_PATH exist."
|
||||
echo "Copying image file ..."
|
||||
if cp "$HEXFILE" "$REMED_MOUNT_PATH"; then
|
||||
echo "Copying ended with success."
|
||||
else
|
||||
echo "Copying ended with ERROR!"
|
||||
fi
|
||||
|
||||
else
|
||||
#recently produced Nucleo boards use NOD_xxxx while older NODE_xxxx
|
||||
|
||||
#substiute in path NODE_ to NOD_
|
||||
#NEW_REMED_MOUNT_PATH="${REMED_MOUNT_PATH/NODE_/NOD_}"
|
||||
NEW_REMED_MOUNT_PATH=$(echo "$REMED_MOUNT_PATH" | sed -e "s|NODE_|NOD_|g")
|
||||
if [ -d "$NEW_REMED_MOUNT_PATH" ]
|
||||
then
|
||||
echo "$NEW_REMED_MOUNT_PATH directory exist."
|
||||
echo "Copying image file ..."
|
||||
if cp "$HEXFILE" "$NEW_REMED_MOUNT_PATH"; then
|
||||
echo "Copying ended with success."
|
||||
else
|
||||
echo "Copying ended with ERROR!"
|
||||
fi
|
||||
|
||||
else
|
||||
echo "Check if Nucleo board is connected!"
|
||||
echo "If board uses for removable media different name than NODE_xxxxx or NOD_xxxx"
|
||||
echo "add DIR_NAME_AT_REMED value to board's Makefile.include."
|
||||
echo "More details in RIOT PR #18057."
|
||||
fi
|
||||
fi
|
||||
|
Loading…
Reference in New Issue
Block a user