On Thu, 8 May 2008, Adam Patterson wrote: > Anyone know of any documentation on tpwireless? Specifically how to "re-set" > the bit that it unsets. There isnt a man page and there aren't and switches to > cause 'usage' to show up.
There are no flags. There is no usage doc. However, if you edit the source and change the line: b |= 0x80; to read: b &= ~0x80; recompile and execute tpwireless, then it will clear the magic bit instead of setting it. -d