Quote:
Originally Posted by giorgio130
I see, so x and y are swapped on newer touch models. We should find out a way to distinguish between the two models...
|
Looking at one of the Kobo scripts I see
Code:
kobo_config.sh
#!/bin/sh
PCB=`ntx_hwconfig -s -p /dev/mmcblk0 PCB`
case $PCB in
E60610D*) echo trilogy;;
E606B*) echo kraken;;
E5061*) echo pixie;;
E606C*) echo dragon;;
E606F*) echo phoenix;;
*) echo trilogy;;
esac
I wonder if the full version of PCB might reveal more, or even since trilogy (aka Touch) is the default, what other hardware config variants might there be.