Files
super6502/sw/script/copy_files.sh
2023-08-12 16:09:03 -07:00

20 lines
376 B
Bash

DEVICE=/dev/mmcblk0
TMPMOUNT=/tmp/sd
FSDIR=../fsdir
V=-v
echo "$(tput bold setaf 11)Mounting Device$(tput sgr 0)"
mkdir $V -p $TMPMOUNT
sudo mount $V $DEVICE $TMPMOUNT
echo
echo "$(tput bold setaf 11)Copying Files$(tput sgr 0)"
sudo cp $V -r $FSDIR/* $TMPMOUNT
echo
echo "$(tput bold setaf 11)Unmounting Device$(tput sgr 0)"
sudo umount $V $DEVICE
rmdir $V $TMPMOUNT
echo