All checks were successful
Build documentation / build-and-deploy (push) Successful in 2m22s
10 lines
124 B
Bash
Executable File
10 lines
124 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -xe
|
|
|
|
rm -f test_drive.img
|
|
|
|
dd if=/dev/zero of=test_drive.img bs=1M count=128
|
|
|
|
mkfs.vfat -F 32 test_drive.img
|