Damien Miller wrote:
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
Well. I didn't think that was it because I heard that bit didn't do
anything on these models. Changed source, recompiled and that worked
perfect.
Thanks for such a quick response Damien.