Advertisement
Guest User

Untitled

a guest
Aug 3rd, 2010
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.61 KB | None | 0 0
  1. [root@nawi b43]# lsmod | grep b43
  2. b43 157367 0
  3. ssb 40054 1 b43
  4. mmc_core 46834 3 b43,ssb,sdhci
  5. pcmcia 32806 2 b43,ssb
  6. mac80211 161287 1 b43
  7. cfg80211 121416 2 b43,mac80211
  8. led_class 1835 2 b43,sdhci
  9.  
  10. rc.conf:
  11. #
  12. # /etc/rc.conf - Main Configuration for Arch Linux
  13. #
  14.  
  15. # -----------------------------------------------------------------------
  16. # LOCALIZATION
  17. # -----------------------------------------------------------------------
  18. #
  19. # LOCALE: available languages can be listed with the 'locale -a' command
  20. # HARDWARECLOCK: set to "UTC" or "localtime"
  21. # USEDIRECTISA: use direct I/O requests instead of /dev/rtc for hwclock
  22. # TIMEZONE: timezones are found in /usr/share/zoneinfo
  23. # KEYMAP: keymaps are found in /usr/share/kbd/keymaps
  24. # CONSOLEFONT: found in /usr/share/kbd/consolefonts (only needed for non-US)
  25. # CONSOLEMAP: found in /usr/share/kbd/consoletrans
  26. # USECOLOR: use ANSI color sequences in startup messages
  27. #
  28. LOCALE="en_US.utf8"
  29. HARDWARECLOCK="UTC"
  30. USEDIRECTISA="no"
  31. TIMEZONE="Europe/Helsinki"
  32. KEYMAP="fi"
  33. CONSOLEFONT=
  34. CONSOLEMAP=
  35. USECOLOR="yes"
  36.  
  37. # -----------------------------------------------------------------------
  38. # HARDWARE
  39. # -----------------------------------------------------------------------
  40. #
  41. # MOD_AUTOLOAD: Allow autoloading of modules at boot and when needed
  42. # MOD_BLACKLIST: Prevent udev from loading these modules
  43. # MODULES: Modules to load at boot-up. Prefix with a ! to blacklist.
  44. #
  45. # NOTE: Use of 'MOD_BLACKLIST' is deprecated. Please use ! in the MODULES array.
  46. #
  47. MOD_AUTOLOAD="yes"
  48. #MOD_BLACKLIST=() #deprecated
  49. MODULES=(cpufreq_ondemand cpufreq_powersave b43 !bcm43xx !ndiswrapper powernow-k8 !usblp fuse loop lp parport parport_pc)
  50.  
  51. # Scan for LVM volume groups at startup, required if you use LVM
  52. USELVM="no"
  53.  
  54. # -----------------------------------------------------------------------
  55. # NETWORKING
  56. # -----------------------------------------------------------------------
  57. #
  58. # HOSTNAME: Hostname of machine. Should also be put in /etc/hosts
  59. #
  60. HOSTNAME="nawi"
  61.  
  62. # Use 'ifconfig -a' or 'ls /sys/class/net/' to see all available interfaces.
  63. #
  64. # Interfaces to start at boot-up (in this order)
  65. # Declare each interface then list in INTERFACES
  66. # - prefix an entry in INTERFACES with a ! to disable it
  67. # - no hyphens in your interface names - Bash doesn't like it
  68. #
  69. # DHCP: Set your interface to "dhcp" (eth0="dhcp")
  70. # Wireless: See network profiles below
  71. #
  72. eth0="dhcp"
  73. wlan0="dhcp"
  74. wlan_wlan0="wlan0 essid horsm key 8c638f2777"
  75. INTERFACES=(eth0 wlan0)
  76.  
  77. # Routes to start at boot-up (in this order)
  78. # Declare each route then list in ROUTES
  79. # - prefix an entry in ROUTES with a ! to disable it
  80. #
  81. gateway="default gw 192.168.0.1"
  82. ROUTES=(!gateway)
  83.  
  84. # Enable these network profiles at boot-up. These are only useful
  85. # if you happen to need multiple network configurations (ie, laptop users)
  86. # - set to 'menu' to present a menu during boot-up (dialog package required)
  87. # - prefix an entry with a ! to disable it
  88. #
  89. # Network profiles are found in /etc/network.d
  90. #
  91. # This now requires the netcfg package
  92. #
  93. #NETWORKS=(main)
  94.  
  95. # -----------------------------------------------------------------------
  96. # DAEMONS
  97. # -----------------------------------------------------------------------
  98. #
  99. # Daemons to start at boot-up (in this order)
  100. # - prefix a daemon with a ! to disable it
  101. # - prefix a daemon with a @ to start it up in the background
  102. #
  103. DAEMONS=(syslog-ng !network netfs crond hal networkmanager cpufreq !laptop-mode alsa cups @openntpd)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement