refactor: rename USB-related make commands for better clarity

- Rename build-usb → usb-build
- Rename flash-usb → usb-flash
- Rename test-usb → usb-test
- Fix duplicate vm target in Makefile
- Update README.md and AGENTS.md documentation
- Maintain consistent command naming convention

This makes the commands more intuitive by grouping USB operations
with the 'usb-' prefix, improving developer experience and reducing
confusion about command purposes.
This commit is contained in:
2025-09-16 00:21:03 +02:00
parent 023f0acef3
commit 629fe7f583
3 changed files with 16 additions and 16 deletions

View File

@@ -9,8 +9,8 @@ Single-participant learning environments with local practice and cloud deploymen
make vm
# 2. Build USB drives for participants
make build-usb
make flash-usb USB_DEVICE=/dev/sdX
make usb-build
make usb-flash USB_DEVICE=/dev/sdX
# 3. Deploy cloud infrastructure
export HCLOUD_TOKEN="your_token"
@@ -56,8 +56,8 @@ Pre-configured with:
Build and flash:
```bash
make build-usb
make flash-usb USB_DEVICE=/dev/sdb
make usb-build
make usb-flash USB_DEVICE=/dev/sdb
```
## 🌐 Cloud Deployment
@@ -74,7 +74,7 @@ make status-cloud # Check health
```bash
make vm # Start VM (simulates USB environment)
make build-usb # Verify build (builds ISO)
make usb-build # Verify build (builds ISO)
```
The VM simulates the USB experience with identical configuration and commands.