arm-sdk

os build toolkit for various embedded devices
git clone https://git.parazyd.org/arm-sdk
Log | Files | Refs | Submodules | README | LICENSE

quirks.md (1794B)


      1 Notes and quirks for specific devices
      2 =====================================
      3 
      4 ## Olimex A20-OLinuXino-MICRO Rev. J
      5 * This one has an issue with ethernet. To make it work properly, you can issue
      6   the following as root:
      7 
      8 ```
      9 ifconfig eth0 down
     10 echo 17 > /sys/class/gpio/export
     11 echo out > /sys/class/gpio/gpio17/direction
     12 echo 0 > /sys/class/gpio/gpio17/value
     13 ifconfig eth0 up
     14 ```
     15 
     16 ## Lamobo R1 (BananaPi Router)
     17 * https://github.com/igorpecovnik/lib/issues/511#issuecomment-262571252
     18 * https://github.com/hknaack/lib/commit/485f48957df5de317a04943ffaeeb259b78604e7
     19 
     20 ## Raspberry Pi 2
     21 * This build script will create an image that works on the Raspberry Pi 3 as
     22   well. It also includes the required firmware for getting onboard Wifi/Bluetooth
     23   working.
     24 * To get a serial console: https://git.devuan.org/sdk/arm-sdk/issues/4
     25 
     26 ## Acer Chromebook
     27 * The Chromebook I tested this image on names the wireless interface `mlan0`, so
     28   please keep note of it when you try connecting to an access point.
     29 
     30 ## BeagleBone Black
     31 * In `/root/` you will find the `xorg.conf` needed to run X properly. You will
     32   also find a shell script that allows you to use USB as an ethernet device
     33 
     34 ## OUYA Gaming console
     35 * This image is intended to be booted from a USB stick and the kernel to be run
     36   from memory. dd the image on a USB flash drive.
     37 * You will need android tools
     38 * Run the bootloader
     39 
     40 ```
     41 adb reboot-bootloader
     42 ```
     43 
     44 * Load the kernel that's in `arm/extra/ouya` with:
     45 
     46 ```
     47 fastboot boot zImage-3.1.10-tk*
     48 ```
     49 ## Nokia N900
     50 * To boot, dd the image to a microSD card, and in the uboot console, type: `run sdboot`
     51 * [https://parazyd.org/pub/N900/merlijnsdocs.txt](https://parazyd.org/pub/N900/merlijnsdocs.txt)
     52 * [https://talk.maemo.org/showthread.php?t=81613](https://talk.maemo.org/showthread.php?t=81613)