This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
from __future__ import division | |
import sys | |
import math | |
OVERSAMPLING_FACTOR = 1 | |
SAMPLING_FREQUENCY = 48000 * OVERSAMPLING_FACTOR | |
PASSES = 100000 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
DEVICE='/dev/disk/by-label/NIELS' | |
WAIT=10 | |
MOUNTP='/tmp/cryptkey' | |
FSTYPE=vfat | |
FSOPTS='uid=0,gid=0,codepage=850,iocharset=iso8859-1,utf8' | |
FSPATH='niels' | |
rc=1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- a/drivers/net/wireless/b43/leds.c | |
+++ b/drivers/net/wireless/b43/leds.c | |
@@ -199,7 +199,7 @@ void b43_leds_init(struct b43_wldev *dev | |
sprom[2] = bus->sprom.gpio2; | |
sprom[3] = bus->sprom.gpio3; | |
- for (i = 0; i < 4; i++) { | |
+ for (i = 0; i < 2; i++) { | |
if (sprom[i] == 0xFF) { | |
/* There is no LED information in the SPROM |
NewerOlder