Changes between Version 3 and Version 4 of PibotGoldenImage
- Timestamp:
- Jan 1, 2017, 11:46:02 PM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
PibotGoldenImage
v3 v4 60 60 * create /etc/ld.so.conf.d/libdio.conf containing /opt/dio/build/so 61 61 * sudo ldconfig (to refresh the library path cache) 62 * Install joystick support: 63 * sudo apt-get install libjinput-java libjinput-jni libjinput-java-doc jstest-gtk 64 * append {{{uinput}}} to end of /etc/modules 62 65 * Do !WiFi Configuration using hostapd and dnsmasq (see documentation) 63 66 * Once card is configured, shutdown Pi … … 67 70 * dd bs=512 ibs=1M count=10491904 if=/dev/sdb of=pibot_x.img 68 71 * (NOTE: 10491904 is one block past the last block of the /root partition on my setup - could be different in your setup depending on the amount of space you allocated when resizing the /root partition above. 69 * check the partitions in fdisk first. On the Pi: 70 * sudo fdisk /dev/mmcblk0 71 * p (print partition table) 72 * note End block of /dev/mmcblk0p2 73 * Use that block number + 1 as the count 72 * check the partitions in fdisk first. 73 * On the Pi: 74 * sudo fdisk /dev/mmcblk0 75 * p (print partition table) 76 * note End block of /dev/mmcblk0p2 77 * Use that block number + 1 as the count 78 * Under cygwin (run cygwin as Administrator): 79 * fdisk /dev/sdb 80 * ...rest is as above