From fbb9b5e99388162183d86dec9521aee5fb75bdd3 Mon Sep 17 00:00:00 2001 From: fastium Date: Fri, 24 Apr 2026 14:07:59 +0200 Subject: [PATCH] feat(readme): add boot.cifs --- README.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/README.md b/README.md index 49f7756..195a4bd 100644 --- a/README.md +++ b/README.md @@ -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 +```