#!/bin/sh

SERIAL=`/dso/bin/check_sys_inf /config/root/system.inf Serial`
USB_DRIVER=/dso/driver/g_android.ko

echo $SERIAL
if [ -n $SERIAL ]; then
	if [ "$SERIAL" != "undefined" ]; then
		insmod $USB_DRIVER serial_string_user_enable=1  serial_string_user=$SERIAL
	else
		insmod $USB_DRIVER 
	fi
else
	insmod $USB_DRIVER 
fi
sync
sync

