diff options
| author | Yuval Adam <_@yuv.al> | 2017-08-22 16:36:22 +0300 |
|---|---|---|
| committer | Yuval Adam <_@yuv.al> | 2017-08-22 16:36:22 +0300 |
| commit | 544e0f5edde8c31d4097899f64ed21d72d4b9782 (patch) | |
| tree | e6e2d9a3a42d66fd9fa0de29b7338eafb27a54b6 | |
| parent | c06585dccc75a8746674859bf51e8fa70e43bfbe (diff) | |
Update README with some persistency progress
| -rw-r--r-- | README.md | 24 |
1 files changed, 21 insertions, 3 deletions
@@ -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 |
