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