mirror of
https://github.com/hrvach/deskhop.git
synced 2024-11-26 01:33:09 +01:00
14 lines
285 B
Bash
14 lines
285 B
Bash
|
|
||
|
#!/bin/bash
|
||
|
|
||
|
dd if=/dev/zero of=fat.img bs=2M count=1
|
||
|
|
||
|
mkdosfs -F12 -n DESKHOP -i 0 fat.img
|
||
|
|
||
|
sudo mount -o loop,x-mount.mkdir -t vfat fat.img /mnt/disk/
|
||
|
sudo cp ../webconfig/config.htm /mnt/disk/config.htm
|
||
|
sudo umount /mnt/disk
|
||
|
|
||
|
dd if=fat.img of=disk.img bs=512 count=128
|
||
|
rm fat.img
|