Difference between revisions of "PineNote Development"

Jump to navigation Jump to search
(→‎Side-by-side setup: Add basic instructions for partition setup)
Line 228: Line 228:
  setenv bootargs ignore_loglevel root=/dev/mmcblk0p11 rootwait init=/bin/bash
  setenv bootargs ignore_loglevel root=/dev/mmcblk0p11 rootwait init=/bin/bash
  booti ${kernel_addr_r} - ${fdt_addr_r}
  booti ${kernel_addr_r} - ${fdt_addr_r}
=== Touchscreen and Pen In X.org ===
By default the pen config is flipped 180° (which makes it unusable) and the touchscreen doesn't work. Placing the following config in <code>/etc/X11/xorg.conf.d/50-touchscreen.conf</code> will fix both problems:
<pre>
Section "InputClass"
    Identifier "evdev touchscreen"
    MatchProduct "tt21000"
    MatchIsTouchscreen "on"
    Driver        "evdev"
EndSection
Section "InputClass"
    Identifier    "RotateTouch"
    MatchProduct    "w9013"
    Option    "TransformationMatrix" "-1 0 1 0 -1 1 0 0 1"
EndSection
</pre>