1
0

feat(readme): add boot.cifs

This commit is contained in:
2026-04-24 14:07:59 +02:00
parent a9a5ecd4c7
commit fbb9b5e993

View File

@@ -37,3 +37,24 @@ sync-images.sh
```
You can now "burn" the Compact Flash using [BalenaEtcher](https://www.balena.io/etcher/)
## Changing boot env
### CIFS
In the bootloader:
```bash
setenv boot_scripts boot.cifs
saveenv
boot
```
If the workspace isn't mount control if there is the line in `/etc/fstab`:
```text
//192.168.53.4/workspace /workspace cifs vers=1.0,username=root,password=toor,port=1445,noserverino
```
If the line isn't there, add it and mount:
```bash
mount -a
```