View Single Post
Old 12-11-2016, 04:44 AM   #734
kaznelson
Old Kaz
kaznelson ought to be getting tired of karma fortunes by now.kaznelson ought to be getting tired of karma fortunes by now.kaznelson ought to be getting tired of karma fortunes by now.kaznelson ought to be getting tired of karma fortunes by now.kaznelson ought to be getting tired of karma fortunes by now.kaznelson ought to be getting tired of karma fortunes by now.kaznelson ought to be getting tired of karma fortunes by now.kaznelson ought to be getting tired of karma fortunes by now.kaznelson ought to be getting tired of karma fortunes by now.kaznelson ought to be getting tired of karma fortunes by now.kaznelson ought to be getting tired of karma fortunes by now.
 
kaznelson's Avatar
 
Posts: 208
Karma: 1064151
Join Date: May 2010
Device: PocketBook Era
usbnet.sh for Mark6 (Glo HD, Aura One, Aura Edition 2)

Replace it:
Code:
PLATFORM=ntx508
if [ $DEVICE == TOUCH ]; then
	PLATFORM=freescale
fi
...with that:
Code:
if [ $DEVICE == GLOHD -o $DEVICE == TOUCH2 -o $DEVICE == AURAONE ]; then
	PLATFORM=mx6sl-ntx
else
	if [ $DEVICE == TOUCH ]; then
		PLATFORM=freescale
	else
		PLATFORM=ntx508
	fi
fi
kaznelson is offline   Reply With Quote