Indeed we had this airplane mode discussion two weeks ago:<br>Why don't we?<br>-----------<br><br>To completely silence the radio:<br><br>#!/bin/bash<br>rmmod usb8xxx<br>mv /lib/firmaware/usb8883.bin /lib/firmaware/usb8883.bin.quiet
<br><br>It will survive reboots.<br><br>-----------<br><br>To bring it back:<br><br>#!/bin/bash<br>mv /lib/firmaware/usb8883.bin.quiet /lib/firmaware/usb8883.bin<br>rmmod usb8xxx; sleep1; modprobe usb8xxx<br><br>No reboot necessary.
<br><br>-----------<br>Tested in build 684,<br>Do I miss something?<br><br><div class="gmail_quote">On Jan 17, 2008 4:30 PM, Michail Bletsas <<a href="mailto:mbletsas@laptop.org">mbletsas@laptop.org</a>> wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
Hal Murray <<a href="mailto:hmurray@megapathdsl.net">hmurray@megapathdsl.net</a>> wrote on 01/17/2008 12:55:47 PM:<br><div class="Ih2E3d"><br>><br>> > When it comes to our radio - we *designed it* to start forward frames
<br>> > soon after you initialize it and keep doing it regardless of what the<br>> > host interface does.<br>><br>> In the context of making the radio safe to use on airplanes...<br>><br>> Does the firmware turn the radio on at boot time?
<br>><br>> Does your "initialize" above mean firmware level or OS level?<br>><br>><br>><br></div>Initialize means loading the wireless firmware on the radio's ARM core and<br>start running it.
<br><br>If you want to make sure that the radio never transmits a single bit, then<br>preventing that (loading the wireless firmware) is what you need right<br>now. There is explicit  mesh start/stop in the plans (already implemented
<br>in the firmware but not in place yet since the driver people didn't like<br>it).<br><div><div></div><div class="Wj3C7c"><br>M.<br>_______________________________________________<br>Devel mailing list<br><a href="mailto:Devel@lists.laptop.org">
Devel@lists.laptop.org</a><br><a href="http://lists.laptop.org/listinfo/devel" target="_blank">http://lists.laptop.org/listinfo/devel</a><br></div></div></blockquote></div><br>