mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2024-11-11 01:55:38 +08:00
17 lines
430 B
Bash
Executable file
17 lines
430 B
Bash
Executable file
#!/bin/bash
|
|
|
|
function wait4proxmark {
|
|
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
|
|
}
|
|
|
|
# flash bootroom
|
|
client/flasher $(wait4proxmark) -b bootrom/obj/bootrom.elf
|
|
|
|
# flash system image
|
|
client/flasher $(wait4proxmark) armsrc/obj/fullimage.elf
|