15 lines
No EOL
294 B
Bash
Executable file
15 lines
No EOL
294 B
Bash
Executable file
#!/bin/bash
|
|
|
|
storage_device="${1}"
|
|
|
|
umount "${storage_device}"
|
|
echo "MOUNTING..."
|
|
mkdir -p /mnt/lbos-mnt
|
|
mount "${storage_device}" /mnt/lbos-mnt
|
|
|
|
echo "COPYING..."
|
|
cp -v target/powerpc-unknown-linux-gnu/release/lbos /mnt/lbos-mnt
|
|
|
|
echo "UNMOUNTING..."
|
|
umount "${storage_device}"
|
|
echo "COMPLETE" |