Changes between Version 3 and Version 4 of PibotGoldenImage


Ignore:
Timestamp:
Jan 1, 2017, 11:46:02 PM (8 years ago)
Author:
David Albert
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • PibotGoldenImage

    v3 v4  
    6060           * create /etc/ld.so.conf.d/libdio.conf  containing /opt/dio/build/so
    6161           * 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
    6265       * Do !WiFi Configuration using hostapd and dnsmasq (see documentation)
    6366       * Once card is configured, shutdown Pi
     
    6770       * dd bs=512 ibs=1M count=10491904 if=/dev/sdb of=pibot_x.img
    6871         * (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