Personal tools

Log in

Changes

From IGEP - ISEE Wiki

Jump to: navigation, search

How to get the Android distribution

870 bytes added, 11:52, 24 March 2011
Annex: libertas.rc: Copied from provided root-fs image, since libertas.rc was not provided in "build-from-sources"
return 0;
}
</pre>
 
=== Annex: libertas.rc ===
 
Save the following block to device/ti/igepv2/libertas/libertas.rc
 
<pre>
#!/system/bin/sh
 
load_libertas()
{
insmod /system/lib/modules/libertas.ko
#insmod /system/lib/modules/libertas_sdio.ko
# Let WiFi part know that the driver is already loaded
setprop wlan.driver.status ok
 
echo "Loaded Libertas WiFi modules"
 
return 0;
}
 
unload_libertas()
{
if rmmod libertas; then :; else return 1; fi
#if rmmod libertas_sdio; then :; else return 1; fi
 
echo "Unloaded Libertas WiFi modules."
return 0;
}
 
# Deal with the type of invocation we get.
#
case "$1" in
"start")
load_libertas
;;
stop)
if ! unload_libertas; then
echo "Couldn't unload modules" >&2;
fi
;;
reload|restart)
if unload_libertas; then
load_libertas
else
echo "Couldn't unload modules" >&2;
fi
;;
*)
echo "$0: unknown argument $1." >&2;
;;
esac
</pre>
0
edits