summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYuval Adam <_@yuv.al>2017-08-22 16:36:22 +0300
committerYuval Adam <_@yuv.al>2017-08-22 16:36:22 +0300
commit544e0f5edde8c31d4097899f64ed21d72d4b9782 (patch)
treee6e2d9a3a42d66fd9fa0de29b7338eafb27a54b6
parentc06585dccc75a8746674859bf51e8fa70e43bfbe (diff)
Update README with some persistency progress
-rw-r--r--README.md24
1 files changed, 21 insertions, 3 deletions
diff --git a/README.md b/README.md
index af02932..fc1bb61 100644
--- a/README.md
+++ b/README.md
@@ -24,13 +24,31 @@ Here's an alternative way of using this thing.
### Persistent Root
-*Work in progress*.
+Note that all configs in `/etc` are mounted from ramdisk, so they are not persistent.
-Since all the configs are loaded from ramdisk, we can't just change them, they are lost on the next reboot.
+Persistent root has to be achieved via other partitions, luckily there is a relevant file that is called by the inittab.
+
+Edit `/npc/boot.sh` and add `/bin/busybox telnetd` to the top of the file.
### Wireless Network Configuration
-*Work in progress*
+Running on an unauthenticated wireless network isn't very smart.
+
+After setting up your network, create a new file `/rom/wpa_supplicant.conf` to match your network configuration, e.g.:
+
+```
+ctrl_interface=/etc/Wireless
+network={
+ ssid="YOURSSID"
+ psk="YOURPSK"
+}
+```
+
+Then hook it into `/npc/boot.sh`, add the line:
+
+```
+cp /rom/wpa_supplicant.conf /mnt/ramdisk/wpa_supplicant0.conf
+```
### Stream Access