6 lines
98 B
Bash
Executable File
6 lines
98 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ ! -e system.img ]; then
|
|
mklittlefs -c system -b 512 -s $((1<<20)) system.img
|
|
fi
|