mirror of
https://github.com/hrvach/deskhop.git
synced 2024-11-22 07:43:51 +01:00
1415c1d31a
- Single unified firmware binary - Improved support for NKRO keyboards - Report mode default for keyboard port - Improved consumer control parser for variable data types (media keys should be better supported) - System control forwarding - Improved HID parser - Web UI to configure instead of keyboard shortcuts - Firmware upgrade while the device remains functional - Only one end will need upgrade, the other will get it automatically - No need to recompile to set most settings - Improved UART routines to use DMA, more reliable link - Fixed a bunch of bugs and issues
14 lines
285 B
Bash
Executable File
14 lines
285 B
Bash
Executable File
|
|
#!/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
|