kubos / kubos-old

An open source platform for satellites
http://kubos.com
Apache License 2.0
72 stars 23 forks source link

Minor doc tweaks #197

Closed CatGarab closed 7 years ago

CatGarab commented 7 years ago
  1. BBB buildroot config name is wrong
  2. If currently running KubOS Linux, umount command must be run twice in order to successfully transfer the new SD image to the eMMC
CatGarab commented 7 years ago

@jacoffey3 The two umounts are due to the way the directories are mapped. /home maps to mmcblk1p3. /home/microsd maps to mmcblk0p2, but since it's technically a subdirectory of /home, the first umount will only unmount mmcblk0p2. So umount 1 does everything except mmcblk1p3, umount 2 finishes it

jacoffey3 commented 7 years ago

@CatGarab Ahh I get it. Might put a note in there for why both are needed.