mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2024-11-11 01:55:38 +08:00
32 lines
1 KiB
Bash
Executable file
32 lines
1 KiB
Bash
Executable file
#!/bin/bash
|
|
|
|
function wait4proxmark_Linux {
|
|
echo >&2 "Waiting for Proxmark to appear..."
|
|
while [ ! -c /dev/ttyACM? -a ! -L /dev/pm3-? ]; do
|
|
sleep .1
|
|
done
|
|
local PM3=`ls -1 /dev/pm3-? /dev/ttyACM? 2>/dev/null | head -1`
|
|
echo >&2 -e "Found proxmark on ${PM3}\n"
|
|
echo $PM3
|
|
}
|
|
|
|
function wait4proxmark_macOS {
|
|
echo >&2 "Waiting for Proxmark to appear..."
|
|
while true; do
|
|
PM3=$(ls /dev/pm3-* /dev/cu.usbmodem* 2>/dev/null | head -1)
|
|
if [[ $PM3 != "" ]]; then
|
|
#echo >&2 -e "Found proxmark on $(ls /dev/pm3-* /dev/cu.usbmodem* 2>/dev/null | head -1)\n"
|
|
break
|
|
fi
|
|
sleep .1
|
|
done
|
|
echo $PM3
|
|
}
|
|
|
|
# Detect OS and flash bootroom & system image
|
|
|
|
if [[ $(uname | awk '{print toupper($0)}') == "LINUX" ]]; then
|
|
client/flasher $(wait4proxmark_Linux) -b bootrom/obj/bootrom.elf armsrc/obj/fullimage.elf
|
|
elif [[ $(uname | awk '{print toupper($0)}') == "DARWIN" ]]; then
|
|
client/flasher $(wait4proxmark_macOS) -b bootrom/obj/bootrom.elf armsrc/obj/fullimage.elf
|
|
fi
|