Merge branch 'rspezial'

Conflicts:

	config/rootfiles/core/15/files
	config/rootfiles/core/15/update.sh
	lfs/collectd
	make.sh
This commit is contained in:
Christian Schmidt
2008-06-13 17:14:55 +02:00
151 changed files with 148124 additions and 2167 deletions

1
.gitignore vendored
View File

@@ -8,3 +8,4 @@
*.diff
*.img.gz
*.iso
*.tar.bz2

View File

@@ -22,34 +22,38 @@ $ENV{PATH}="/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin";
my %color = ();
my %mainsettings = ();
my %mbmonsettings = ();
my %sensorsettings = ();
&General::readhash("${General::swroot}/main/settings", \%mainsettings);
&General::readhash("/srv/web/ipfire/html/themes/".$mainsettings{'THEME'}."/include/colors.txt", \%color);
# If the collection deamon is working and collecting mbmon data there will be
# some data source named after a common scheme, with the mbmonsettingsfile
# If the collection deamon is working and collecting lm_sensors data there will be
# some data source named after a common scheme, with the sensorssettingsfile
# the user is able to deactivate some of this parameters, in case not to show
# false collected value´s may be disable. The user has the ability to enter
# false collected value´s may be disable. The user has the ability to ente
# custom graph names in order to change temp0 to cpu or motherboad
my $key;
my $value;
my @args = ();
my $count = 0;
my @mbmongraphs = ();
my @sensorsgraphs = ();
my @processesgraph = `ls -dA $rrdlog/collectd/localhost/processes-*/`;
if ( -e "$rrdlog/collectd/localhost/mbmon" ){
@mbmongraphs = `ls $rrdlog/collectd/localhost/mbmon/`;
foreach (@mbmongraphs){
chomp($_);
my @name=split(/\./,$_);my $label = $name[0]; $label=~ s/-//;
$mbmonsettings{'LABEL-'.$name[0]}="$label";
$mbmonsettings{'LINE-'.$name[0]}="checked";
}
}
my @sensorsdir = `ls -dA $rrdlog/collectd/localhost/sensors-*/`;
foreach (@sensorsdir)
{
chomp($_);chop($_);
foreach (`ls $_/*`){
chomp($_);
push(@sensorsgraphs,$_);
$_ =~ /\/(.*)sensors-(.*)\/(.*)\.rrd/;
my $label = $2.$3;$label=~ s/-//g;
$sensorsettings{'LABEL-'.$label}="$label";
$sensorsettings{'LINE-'.$label}="checked";
}
}
&General::readhash("${General::swroot}/mbmon/settings", \%mbmonsettings);
&General::readhash("${General::swroot}/sensors/settings", \%sensorsettings);
use Encode 'from_to';
my %tr=();
@@ -66,7 +70,7 @@ if ((${Lang::language} eq 'el') ||
}
# Generate the CPU Graph for the current period of time for values given by
# collectd atm only cpu average is displayed and only 1 or 2 cpu´s is working
# collectd atm only cpu average is displayed and only 1 or 2 cpus is working
sub updatecpugraph {
my $period = $_[0];
@@ -536,43 +540,51 @@ sub overviewgraph {
print "$ERROR";
}
# Generate the Temperature Graph for the current period of time for values given by collecd and mbmon
# Generate the Temperature Graph for the current period of time for values given by collecd and lm_sensors
sub updatehwtempgraph {
my $period = $_[0];
my @command = ("$graphs/mbmon-hwtemp-$period.png",
my @command = ("$graphs/sensors-hwtemp-$period.png",
"--start", "-1$period", "-aPNG", "-i", "-W www.ipfire.org",
"--alt-y-grid", "-w 600", "-h 125",
"--color", "SHADEA".$color{"color19"},"--color",
"SHADEB".$color{"color19"},"--color",
"BACK".$color{"color21"},
"-t $Lang::tr{'mbmon temp'} $Lang::tr{'graph per'} $Lang::tr{$period}");
"-t $Lang::tr{'sensors temp'} $Lang::tr{'graph per'} $Lang::tr{$period}");
foreach(@mbmongraphs){
chomp($_);
if ( $_ =~ /temperature/ ) {my @name=split(/\./,$_);if ( $mbmonsettings{'LINE-'.$name[0]} eq "off" ){next;}push(@command,"DEF:".$mbmonsettings{'LABEL-'.$name[0]}."=$rrdlog/collectd/localhost/mbmon/".$_.":value:AVERAGE");
}
foreach(@sensorsgraphs){
chomp($_);
if ( $_ =~ /temperature/ ) {
$_ =~ /\/(.*)sensors-(.*)\/(.*)\.rrd/;
my $label = $2.$3;$label=~ s/-//g;
if ( $sensorsettings{'LINE-'.$label} eq "off" ){next;}
push(@command,"DEF:".$sensorsettings{'LABEL-'.$label}."=".$_.":value:AVERAGE");
}
}
push(@command,"COMMENT:".sprintf("%-29s",$Lang::tr{'caption'}),"COMMENT:".sprintf("%15s",$Lang::tr{'maximal'}),"COMMENT:".sprintf("%15s",$Lang::tr{'average'}),"COMMENT:".sprintf("%15s",$Lang::tr{'minimal'}),"COMMENT:".sprintf("%15s",$Lang::tr{'current'})."\\j");
foreach(@mbmongraphs){
chomp($_);
if ( $_ =~ /temperature/ ) {my @name=split(/\./,$_);if ( $mbmonsettings{'LINE-'.$name[0]} eq "off" ){next;}push(@command,"LINE3:".$mbmonsettings{'LABEL-'.$name[0]}.random_hex_color(6)."A0:".sprintf("%-25s",$mbmonsettings{'LABEL-'.$name[0]}),
"GPRINT:".$mbmonsettings{'LABEL-'.$name[0]}.":MAX:%3.2lf C","GPRINT:".$mbmonsettings{'LABEL-'.$name[0]}.":AVERAGE:%3.2lf C","GPRINT:".$mbmonsettings{'LABEL-'.$name[0]}.":MIN:%3.2lf C","GPRINT:".$mbmonsettings{'LABEL-'.$name[0]}.":LAST:%3.2lf C\\j",);}
foreach(@sensorsgraphs){
chomp($_);
if ( $_ =~ /temperature/ ){
$_ =~ /\/(.*)sensors-(.*)\/(.*)\.rrd/;
my $label = $2.$3;$label=~ s/-//g;
if ( $sensorsettings{'LINE-'.$label} eq "off" ){next;}
push(@command,"LINE3:".$sensorsettings{'LABEL-'.$label}.random_hex_color(6)."A0:".sprintf("%-25s",$sensorsettings{'LABEL-'.$label}),"GPRINT:".$sensorsettings{'LABEL-'.$label}.":MAX:%3.2lf C","GPRINT:".$sensorsettings{'LABEL-'.$label}.":AVERAGE:%3.2lf C","GPRINT:".$sensorsettings{'LABEL-'.$label}.":MIN:%3.2lf C","GPRINT:".$sensorsettings{'LABEL-'.$label}.":LAST:%3.2lf C\\j",);
}
}
RRDs::graph (@command);
$ERROR = RRDs::error;
print "$ERROR";
}
# Generate the Voltage Graph for the current period of time for values given by collecd and mbmon
# Generate the Voltage Graph for the current period of time for values given by collecd and lm_sensors
sub updatehwvoltgraph {
my $period = $_[0];
my @command = ("$graphs/mbmon-hwvolt-$period.png",
my @command = ("$graphs/sensors-hwvolt-$period.png",
"--start", "-1$period", "-aPNG", "-i", "-W www.ipfire.org",
"--alt-y-grid", "-w 600", "-h 125",
"--color", "SHADEA".$color{"color19"},"--color",
@@ -580,28 +592,37 @@ sub updatehwvoltgraph {
"BACK".$color{"color21"},
"-t $Lang::tr{'mbmon volt'} $Lang::tr{'graph per'} $Lang::tr{$period}");
foreach(@mbmongraphs){
chomp($_);
if ( $_ =~ /voltage/ ) {my @name=split(/\./,$_);if ( $mbmonsettings{'LINE-'.$name[0]} eq "off" ){next;}push(@command,"DEF:".$mbmonsettings{'LABEL-'.$name[0]}."=$rrdlog/collectd/localhost/mbmon/".$_.":value:AVERAGE");}
foreach(@sensorsgraphs){
chomp($_);
if ( $_ =~ /voltage/ ) {
$_ =~ /\/(.*)sensors-(.*)\/(.*)\.rrd/;
my $label = $2.$3;$label=~ s/-//g;
if ( $sensorsettings{'LINE-'.$label} eq "off" ){next;}
push(@command,"DEF:".$sensorsettings{'LABEL-'.$label}."=".$_.":value:AVERAGE");
}
}
push(@command,"COMMENT:".sprintf("%-29s",$Lang::tr{'caption'}),"COMMENT:".sprintf("%15s",$Lang::tr{'maximal'}),"COMMENT:".sprintf("%15s",$Lang::tr{'average'}),"COMMENT:".sprintf("%15s",$Lang::tr{'minimal'}),"COMMENT:".sprintf("%15s",$Lang::tr{'current'})."\\j");
foreach(@mbmongraphs){
chomp($_);
if ( $_ =~ /voltage/ ) {my @name=split(/\./,$_);if ( $mbmonsettings{'LINE-'.$name[0]} eq "off" ){next;}push(@command,"LINE3:".$mbmonsettings{'LABEL-'.$name[0]}.random_hex_color(6)."A0:".sprintf("%-25s",$mbmonsettings{'LABEL-'.$name[0]}),
"GPRINT:".$mbmonsettings{'LABEL-'.$name[0]}.":MAX:%3.2lf V","GPRINT:".$mbmonsettings{'LABEL-'.$name[0]}.":AVERAGE:%3.2lf V","GPRINT:".$mbmonsettings{'LABEL-'.$name[0]}.":MIN:%3.2lf V","GPRINT:".$mbmonsettings{'LABEL-'.$name[0]}.":LAST:%3.2lf V\\j",);}
foreach(@sensorsgraphs){
chomp($_);
if ( $_ =~ /voltage/ ){
$_ =~ /\/(.*)sensors-(.*)\/(.*)\.rrd/;
my $label = $2.$3;$label=~ s/-//g;
if ( $sensorsettings{'LINE-'.$label} eq "off" ){next;}
push(@command,"LINE3:".$sensorsettings{'LABEL-'.$label}.random_hex_color(6)."A0:".sprintf("%-25s",$sensorsettings{'LABEL-'.$label}),"GPRINT:".$sensorsettings{'LABEL-'.$label}.":MAX:%3.2lf V","GPRINT:".$sensorsettings{'LABEL-'.$label}.":AVERAGE:%3.2lf V","GPRINT:".$sensorsettings{'LABEL-'.$label}.":MIN:%3.2lf V","GPRINT:".$sensorsettings{'LABEL-'.$label}.":LAST:%3.2lf V\\j",);
}
}
RRDs::graph (@command);
$ERROR = RRDs::error;
print "$ERROR";
}
# Generate the Load Graph for the current period of time for values given by collecd and mbmon
# Generate the Load Graph for the current period of time for values given by collecd and lm_sensors
sub updatehwfangraph {
my $period = $_[0];
my @command = ("$graphs/mbmon-hwfan-$period.png",
my @command = ("$graphs/sensors-hwfan-$period.png",
"--start", "-1$period", "-aPNG", "-i", "-W www.ipfire.org",
"--alt-y-grid", "-w 600", "-h 125",
"--color", "SHADEA".$color{"color19"},"--color",
@@ -609,15 +630,24 @@ sub updatehwfangraph {
"BACK".$color{"color21"},
"-t $Lang::tr{'mbmon fan'} $Lang::tr{'graph per'} $Lang::tr{$period}");
foreach(@mbmongraphs){
chomp($_);
if ( $_ =~ /fanspeed/ ) {my @name=split(/\./,$_);if ( $mbmonsettings{'LINE-'.$name[0]} eq "off" ){next;}push(@command,"DEF:".$mbmonsettings{'LABEL-'.$name[0]}."=$rrdlog/collectd/localhost/mbmon/".$_.":value:AVERAGE");}
foreach(@sensorsgraphs){
chomp($_);
if ( $_ =~ /fanspeed/ ) {
$_ =~ /\/(.*)sensors-(.*)\/(.*)\.rrd/;
my $label = $2.$3;$label=~ s/-//g;
if ( $sensorsettings{'LINE-'.$label} eq "off" ){next;}
push(@command,"DEF:".$sensorsettings{'LABEL-'.$label}."=".$_.":value:AVERAGE");
}
}
push(@command,"COMMENT:".sprintf("%-29s",$Lang::tr{'caption'}),"COMMENT:".sprintf("%15s",$Lang::tr{'maximal'}),"COMMENT:".sprintf("%15s",$Lang::tr{'average'}),"COMMENT:".sprintf("%15s",$Lang::tr{'minimal'}),"COMMENT:".sprintf("%15s",$Lang::tr{'current'})."\\j");
foreach(@mbmongraphs){
chomp($_);
if ( $_ =~ /fanspeed/ ) {my @name=split(/\./,$_);if ( $mbmonsettings{'LINE-'.$name[0]} eq "off" ){next;}push(@command,"LINE3:".$mbmonsettings{'LABEL-'.$name[0]}.random_hex_color(6)."A0:".sprintf("%-25s",$mbmonsettings{'LABEL-'.$name[0]}),
"GPRINT:".$mbmonsettings{'LABEL-'.$name[0]}.":MAX:%5.0lf RPM","GPRINT:".$mbmonsettings{'LABEL-'.$name[0]}.":AVERAGE:%5.0lf RPM","GPRINT:".$mbmonsettings{'LABEL-'.$name[0]}.":MIN:%5.0lf RPM","GPRINT:".$mbmonsettings{'LABEL-'.$name[0]}.":LAST:%5.0lf RPM\\j",);}
foreach(@sensorsgraphs){
chomp($_);
if ( $_ =~ /fanspeed/ ){
$_ =~ /\/(.*)sensors-(.*)\/(.*)\.rrd/;
my $label = $2.$3;$label=~ s/-//g;
if ( $sensorsettings{'LINE-'.$label} eq "off" ){next;}
push(@command,"LINE3:".$sensorsettings{'LABEL-'.$label}.random_hex_color(6)."A0:".sprintf("%-25s",$sensorsettings{'LABEL-'.$label}),"GPRINT:".$sensorsettings{'LABEL-'.$label}.":MAX:%3.2lf RPM","GPRINT:".$sensorsettings{'LABEL-'.$label}.":AVERAGE:%3.2lf RPM","GPRINT:".$sensorsettings{'LABEL-'.$label}.":MIN:%3.2lf RPM","GPRINT:".$sensorsettings{'LABEL-'.$label}.":LAST:%3.2lf RPM\\j",);
}
}
RRDs::graph (@command);
$ERROR = RRDs::error;

View File

@@ -18,11 +18,12 @@ LoadPlugin interface
LoadPlugin iptables
LoadPlugin load
#LoadPlugin logfile
LoadPlugin mbmon
#LoadPlugin mbmon
LoadPlugin memory
LoadPlugin ping
LoadPlugin processes
LoadPlugin rrdtool
LoadPlugin sensors
LoadPlugin swap
LoadPlugin syslog
@@ -49,12 +50,6 @@ LoadPlugin syslog
# File STDOUT
#</Plugin>
<Plugin mbmon>
Host "127.0.0.1"
Port "411"
</Plugin>
<Plugin ping>
Host "gateway"
</Plugin>

85
config/fbset/fb.modes Normal file
View File

@@ -0,0 +1,85 @@
#
# DirectFB video modes, should be placed into "/etc"
#
mode "640x480 75Hz 16bit"
# D: 31.50 MHz, H: 37.500 kHz, V: 75.00 Hz
geometry 640 480 640 480 16
timings 31747 120 16 16 1 64 3
endmode
mode "720x576 50Hz 16bit"
geometry 720 576 720 576 16
timings 31208 144 40 32 10 128 3
endmode
mode "768x576 75Hz 16bit"
# D: 49.188 MHz, H: 46.580 kHz, V: 75.008 Hz
geometry 768 576 768 576 16
timings 20330 128 32 32 8 128 5
endmode
mode "800x600 75Hz 16bit"
# D: 49.50 MHz, H: 46.875 kHz, V: 75.00 Hz
geometry 800 600 800 600 16
timings 20203 160 16 21 1 80 3
hsync high
vsync high
endmode
mode "1024x768 72Hz 16bit"
# D: 75.00 MHz, H: 58.230 kHz, V: 72.245 Hz
geometry 1024 768 1024 768 16
timings 13334 104 24 29 3 136 6
endmode
mode "1280x1024-75"
# D: 134.880 MHz, H: 79.905 kHz, V: 74.958 Hz
geometry 1280 1024 1280 3264 16
timings 7414 232 64 38 1 112 3
hsync high
vsync high
endmode
mode "1280x1024 60Hz 16bit"
# D: 108.00 MHz, H: 63.981 kHz, V: 60.02 Hz
geometry 1280 1024 1280 1024 16
timings 9260 248 48 38 1 112 3
hsync high
vsync high
endmode
mode "1600x1200 60Hz 16bit"
# D: 156.00 MHz, H: 76.200 kHz, V: 60.00 Hz
geometry 1600 1200 1600 1200 16
timings 6411 256 32 52 10 160 8
endmode
mode "640x400 93Hz 16bit"
geometry 640 400 640 400 16
timings 28272 48 32 17 22 128 12
endmode
mode "400x300 100Hz 16bit"
geometry 400 300 400 300 16
timings 31747 40 16 16 1 40 3
double true
endmode
mode "320x240 85Hz 16bit"
geometry 320 240 320 240 16
timings 51383 32 32 20 4 48 1
double true
endmode
mode "320x200 85Hz 16bit"
geometry 320 200 320 200 16
timings 60440 32 32 20 4 48 1
double true
endmode

View File

@@ -4,33 +4,43 @@ foreground = 6d6963
background = ffffff
#hiddenmenu
splashimage (hd0,0)/grub/ipfire.xpm.gz
title IPFire (1024x768)
title IPFire
root (hd0,0)
kernel /vmlinuz-ipfire root=ROOT panic=10 vga=791 MOUNT
initrd /ipfirerd.img
kernel /vmlinuz-KVER-ipfire root=ROOT panic=10 MOUNT
initrd /ipfirerd-KVER.img
savedefault 0
title IPFire (VESA)
title IPFire (vesafb 1024x768)
root (hd0,0)
kernel /vmlinuz-ipfire root=ROOT panic=10 MOUNT
initrd /ipfirerd.img
kernel /vmlinuz-KVER-ipfire root=ROOT panic=10 vga=791 MOUNT
initrd /ipfirerd-KVER.img
savedefault 1
title IPFire SMP (1024x768)
title IPFire (acpi=off)
root (hd0,0)
kernel /vmlinuz-ipfire-smp root=ROOT panic=10 acpi=off vga=791 MOUNT
initrd /ipfirerd-smp.img
kernel /vmlinuz-KVER-ipfire root=ROOT panic=10 acpi=off MOUNT
initrd /ipfirerd-KVER.img
savedefault 2
title IPFire SMP (VESA)
title IPFire (vesafb 1024x768, acpi=off)
root (hd0,0)
kernel /vmlinuz-ipfire-smp root=ROOT panic=10 acpi=off MOUNT
initrd /ipfirerd-smp.img
kernel /vmlinuz-KVER-ipfire root=ROOT panic=10 vga=791 acpi=off MOUNT
initrd /ipfirerd-KVER.img
savedefault 3
title IPFire SMP-HT (Intel Pentium 4) (1024x768)
title IPFire SMP/HT
root (hd0,0)
kernel /vmlinuz-ipfire-smp root=ROOT panic=10 acpi=ht vga=791 MOUNT
initrd /ipfirerd-smp.img
kernel /vmlinuz-KVER-ipfire-smp root=ROOT panic=10 MOUNT
initrd /ipfirerd-KVER-smp.img
savedefault 4
title IPFire SMP-HT (Intel Pentium 4) (VESA)
title IPFire SMP/HT (vesafb 1024x768)
root (hd0,0)
kernel /vmlinuz-ipfire-smp root=ROOT panic=10 acpi=ht MOUNT
initrd /ipfirerd-smp.img
kernel /vmlinuz-KVER-ipfire-smp root=ROOT panic=10 vga=791 MOUNT
initrd /ipfirerd-KVER-smp.img
savedefault 5
title IPFire SMP/HT (acpi=off)
root (hd0,0)
kernel /vmlinuz-KVER-ipfire-smp root=ROOT panic=10 acpi=off MOUNT
initrd /ipfirerd-KVER-smp.img
savedefault 6
title IPFire SMP/HT (vesafb 1024x768, acpi=off)
root (hd0,0)
kernel /vmlinuz-KVER-ipfire-smp root=ROOT panic=10 vga=791 acpi=off MOUNT
initrd /ipfirerd-KVER-smp.img
savedefault 7

106
config/hostapd/config Normal file
View File

@@ -0,0 +1,106 @@
# Example hostapd build time configuration
#
# This file lists the configuration options that are used when building the
# hostapd binary. All lines starting with # are ignored. Configuration option
# lines must be commented out complete, if they are not to be included, i.e.,
# just setting VARIABLE=n is not disabling that variable.
#
# This file is included in Makefile, so variables like CFLAGS and LIBS can also
# be modified from here. In most cass, these lines should use += in order not
# to override previous values of the variables.
# Driver interface for Host AP driver
CONFIG_DRIVER_HOSTAP=y
# Driver interface for wired authenticator
#CONFIG_DRIVER_WIRED=y
# Driver interface for madwifi driver
CONFIG_DRIVER_MADWIFI=y
CFLAGS += -I../madwifi-0.9.4 # change to reflect local setup; directory for madwifi src
# Driver interface for Prism54 driver
#CONFIG_DRIVER_PRISM54=y
# Driver interface for drivers using Devicescape IEEE 802.11 stack
#CONFIG_DRIVER_DEVICESCAPE=y
# Currently, driver_devicescape.c build requires some additional parameters
# to be able to include some of the kernel header files. Following lines can
# be used to set these (WIRELESS_DEV must point to the root directory of the
# wireless-dev.git tree).
#WIRELESS_DEV=/usr/src/wireless-dev
#CFLAGS += -I$(WIRELESS_DEV)/include
#CFLAGS += -I$(WIRELESS_DEV)/net/d80211
#CFLAGS += -D_LINUX_TYPES_H
# Driver interface for FreeBSD net80211 layer (e.g., Atheros driver)
#CONFIG_DRIVER_BSD=y
#CFLAGS += -I/usr/local/include
#LIBS += -L/usr/local/lib
# IEEE 802.11F/IAPP
CONFIG_IAPP=y
# WPA2/IEEE 802.11i RSN pre-authentication
CONFIG_RSN_PREAUTH=y
# PeerKey handshake for Station to Station Link (IEEE 802.11e DLS)
CONFIG_PEERKEY=y
# IEEE 802.11w (management frame protection)
# This version is an experimental implementation based on IEEE 802.11w/D1.0
# draft and is subject to change since the standard has not yet been finalized.
# Driver support is also needed for IEEE 802.11w.
#CONFIG_IEEE80211W=y
# Integrated EAP server
CONFIG_EAP=y
# EAP-MD5 for the integrated EAP server
CONFIG_EAP_MD5=y
# EAP-TLS for the integrated EAP server
CONFIG_EAP_TLS=y
# EAP-MSCHAPv2 for the integrated EAP server
CONFIG_EAP_MSCHAPV2=y
# EAP-PEAP for the integrated EAP server
CONFIG_EAP_PEAP=y
# EAP-GTC for the integrated EAP server
CONFIG_EAP_GTC=y
# EAP-TTLS for the integrated EAP server
CONFIG_EAP_TTLS=y
# EAP-SIM for the integrated EAP server
#CONFIG_EAP_SIM=y
# EAP-AKA for the integrated EAP server
#CONFIG_EAP_AKA=y
# EAP-PAX for the integrated EAP server
#CONFIG_EAP_PAX=y
# EAP-PSK for the integrated EAP server (this is _not_ needed for WPA-PSK)
#CONFIG_EAP_PSK=y
# EAP-SAKE for the integrated EAP server
#CONFIG_EAP_SAKE=y
# EAP-GPSK for the integrated EAP server
#CONFIG_EAP_GPSK=y
# Include support for optional SHA256 cipher suite in EAP-GPSK
#CONFIG_EAP_GPSK_SHA256=y
# PKCS#12 (PFX) support (used to read private key and certificate file from
# a file that usually has extension .p12 or .pfx)
CONFIG_PKCS12=y
# RADIUS authentication server. This provides access to the integrated EAP
# server from external hosts using RADIUS.
#CONFIG_RADIUS_SERVER=y
# Build IPv6 support for RADIUS operations
#CONFIG_IPV6=y

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

295
config/madwifi/madwifi.conf Normal file
View File

@@ -0,0 +1,295 @@
##### hostapd configuration file ##############################################
# Empty lines and lines starting with # are ignored
# AP netdevice name (without 'ap' prefix, i.e., wlan0 uses wlan0ap for
# management frames)
interface=ath0
# Driver interface type (hostap/wired/madwifi/prism54; default: hostap)
driver=madwifi
# hostapd event logger configuration
#
# Two output method: syslog and stdout (only usable if not forking to
# background).
#
# Module bitfield (ORed bitfield of modules that will be logged; -1 = all
# modules):
# bit 0 (1) = IEEE 802.11
# bit 1 (2) = IEEE 802.1X
# bit 2 (4) = RADIUS
# bit 3 (8) = WPA
# bit 4 (16) = driver interface
# bit 5 (32) = IAPP
#
# Levels (minimum value for logged events):
# 0 = verbose debugging
# 1 = debugging
# 2 = informational messages
# 3 = notification
# 4 = warning
#
logger_syslog=-1
logger_syslog_level=2
logger_stdout=-1
logger_stdout_level=1
# Debugging: 0 = no, 1 = minimal, 2 = verbose, 3 = msg dumps, 4 = excessive
debug=0
# Dump file for state information (on SIGUSR1)
dump_file=/tmp/hostapd.dump
# Interface for separate control program. If this is specified, hostapd
# will create this directory and a UNIX domain socket for listening to requests
# from external programs (CLI/GUI, etc.) for status information and
# configuration. The socket file will be named based on the interface name, so
# multiple hostapd processes/interfaces can be run at the same time if more
# than one interface is used.
# /var/run/hostapd is the recommended directory for sockets and by default,
# hostapd_cli will use it when trying to connect with hostapd.
ctrl_interface=/var/run/hostapd
# Access control for the control interface can be configured by setting the
# directory to allow only members of a group to use sockets. This way, it is
# possible to run hostapd as root (since it needs to change network
# configuration and open raw sockets) and still allow GUI/CLI components to be
# run as non-root users. However, since the control interface can be used to
# change the network configuration, this access needs to be protected in many
# cases. By default, hostapd is configured to use gid 0 (root). If you
# want to allow non-root users to use the contron interface, add a new group
# and change this value to match with that group. Add users that should have
# control interface access to this group.
#
# This variable can be a group name or gid.
#ctrl_interface_group=wheel
ctrl_interface_group=0
##### IEEE 802.11 related configuration #######################################
# SSID to be used in IEEE 802.11 management frames
ssid=IPFire
# Station MAC address -based authentication
# 0 = accept unless in deny list
# 1 = deny unless in accept list
# 2 = use external RADIUS server (accept/deny lists are searched first)
macaddr_acl=0
# Accept/deny lists are read from separate files (containing list of
# MAC addresses, one per line). Use absolute path name to make sure that the
# files can be read on SIGHUP configuration reloads.
#accept_mac_file=/etc/hostapd/hostapd.accept
#deny_mac_file=/etc/hostapd/hostapd.deny
# IEEE 802.11 specifies two authentication algorithms. hostapd can be
# configured to allow both of these or only one. Open system authentication
# should be used with IEEE 802.1X.
# Bit fields of allowed authentication algorithms:
# bit 0 = Open System Authentication
# bit 1 = Shared Key Authentication (requires WEP)
auth_algs=1
# Associate as a station to another AP while still acting as an AP on the same
# channel.
#assoc_ap_addr=00:12:34:56:78:9a
##### IEEE 802.1X (and IEEE 802.1aa/D4) related configuration #################
# Require IEEE 802.1X authorization
#ieee8021x=0
# Use integrated EAP authenticator instead of external RADIUS authentication
# server
#eap_authenticator=0
# Path for EAP authenticator user database
#eap_user_file=/etc/hostapd/eap_user
# CA certificate (PEM or DER file) for EAP-TLS/PEAP/TTLS
#ca_cert=/etc/hostapd/ca.pem
# Server certificate (PEM or DER file) for EAP-TLS/PEAP/TTLS
#server_cert=/etc/hostapd/server.pem
# Private key matching with the server certificate for EAP-TLS/PEAP/TTLS
# This may point to the same file as server_cert if both certificate and key
# are included in a single file. PKCS#12 (PFX) file (.p12/.pfx) can also be
# used by commenting out server_cert and specifying the PFX file as the
# private_key.
#private_key=/etc/hostapd/server.prv
# Passphrase for private key
#private_key_passwd=secret passphrase
# Configuration data for EAP-SIM database/authentication gateway interface.
# This is a text string in implementation specific format. The example
# implementation in eap_sim_db.c uses this as the file name for the GSM
# authentication triplets.
#eap_sim_db=/etc/hostapd/sim_db
# Optional displayable message sent with EAP Request-Identity
#eap_message=hello
# WEP rekeying (disabled if key lengths are not set or are set to 0)
# Key lengths for default/broadcast and individual/unicast keys:
# 5 = 40-bit WEP (also known as 64-bit WEP with 40 secret bits)
# 13 = 104-bit WEP (also known as 128-bit WEP with 104 secret bits)
#wep_key_len_broadcast=5
#wep_key_len_unicast=5
# Rekeying period in seconds. 0 = do not rekey (i.e., set keys only once)
#wep_rekey_period=300
# EAPOL-Key index workaround (set bit7) for WinXP Supplicant (needed only if
# only broadcast keys are used)
#eapol_key_index_workaround=0
# EAP reauthentication period in seconds (default: 3600 seconds; 0 = disable
# reauthentication).
#eap_reauth_period=3600
##### IEEE 802.11f - Inter-Access Point Protocol (IAPP) #######################
# Interface to be used for IAPP broadcast packets
#iapp_interface=eth0
##### RADIUS configuration ####################################################
# for IEEE 802.1X with external Authentication Server, IEEE 802.11
# authentication with external ACL for MAC addresses, and accounting
# The own IP address of the access point (used as NAS-IP-Address)
#own_ip_addr=127.0.0.1
# Optional NAS-Identifier string for RADIUS messages. When used, this should be
# a unique to the NAS within the scope of the RADIUS server. For example, a
# fully qualified domain name can be used here.
#nas_identifier=ap.example.com
# RADIUS authentication server
#auth_server_addr=127.0.0.1
#auth_server_port=1812
#auth_server_shared_secret=secret
# RADIUS accounting server
#acct_server_addr=127.0.0.1
#acct_server_port=1813
#acct_server_shared_secret=secret
# Secondary RADIUS servers; to be used if primary one does not reply to
# RADIUS packets. These are optional and there can be more than one secondary
# server listed.
#auth_server_addr=127.0.0.2
#auth_server_port=1812
#auth_server_shared_secret=secret2
#
#acct_server_addr=127.0.0.2
#acct_server_port=1813
#acct_server_shared_secret=secret2
# Retry interval for trying to return to the primary RADIUS server (in
# seconds). RADIUS client code will automatically try to use the next server
# when the current server is not replying to requests. If this interval is set,
# primary server will be retried after configured amount of time even if the
# currently used secondary server is still working.
#radius_retry_primary_interval=600
# Interim accounting update interval
# If this is set (larger than 0) and acct_server is configured, hostapd will
# send interim accounting updates every N seconds. Note: if set, this overrides
# possible Acct-Interim-Interval attribute in Access-Accept message. Thus, this
# value should not be configured in hostapd.conf, if RADIUS server is used to
# control the interim interval.
# This value should not be less 600 (10 minutes) and must not be less than
# 60 (1 minute).
#radius_acct_interim_interval=600
# hostapd can be used as a RADIUS authentication server for other hosts. This
# requires that the integrated EAP authenticator is also enabled and both
# authentication services are sharing the same configuration.
# File name of the RADIUS clients configuration for the RADIUS server. If this
# commented out, RADIUS server is disabled.
#radius_server_clients=/etc/hostapd/radius_clients
# The UDP port number for the RADIUS authentication server
#radius_server_auth_port=1812
##### WPA/IEEE 802.11i configuration ##########################################
# Enable WPA. Setting this variable configures the AP to require WPA (either
# WPA-PSK or WPA-RADIUS/EAP based on other configuration). For WPA-PSK, either
# wpa_psk or wpa_passphrase must be set and wpa_key_mgmt must include WPA-PSK.
# For WPA-RADIUS/EAP, ieee8021x must be set (but without dynamic WEP keys),
# RADIUS authentication server must be configured, and WPA-EAP must be included
# in wpa_key_mgmt.
# This field is a bit field that can be used to enable WPA (IEEE 802.11i/D3.0)
# and/or WPA2 (full IEEE 802.11i/RSN):
# bit0 = WPA
# bit1 = IEEE 802.11i/RSN (WPA2) (dot11RSNAEnabled)
wpa=1
# WPA pre-shared keys for WPA-PSK. This can be either entered as a 256-bit
# secret in hex format (64 hex digits), wpa_psk, or as an ASCII passphrase
# (8..63 characters) that will be converted to PSK. This conversion uses SSID
# so the PSK changes when ASCII passphrase is used and the SSID is changed.
# wpa_psk (dot11RSNAConfigPSKValue)
# wpa_passphrase (dot11RSNAConfigPSKPassPhrase)
#wpa_psk=0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef
wpa_passphrase=yoursecretpassphrase
# Optionally, WPA PSKs can be read from a separate text file (containing list
# of (PSK,MAC address) pairs. This allows more than one PSK to be configured.
# Use absolute path name to make sure that the files can be read on SIGHUP
# configuration reloads.
#wpa_psk_file=/etc/hostapd/wpa_psk
# Set of accepted key management algorithms (WPA-PSK, WPA-EAP, or both). The
# entries are separated with a space.
# (dot11RSNAConfigAuthenticationSuitesTable)
#wpa_key_mgmt=WPA-PSK WPA-EAP
wpa_key_mgmt=WPA-PSK
# Set of accepted cipher suites (encryption algorithms) for pairwise keys
# (unicast packets). This is a space separated list of algorithms:
# CCMP = AES in Counter mode with CBC-MAC [RFC 3610, IEEE 802.11i/D7.0]
# TKIP = Temporal Key Integrity Protocol [IEEE 802.11i/D7.0]
# Group cipher suite (encryption algorithm for broadcast and multicast frames)
# is automatically selected based on this configuration. If only CCMP is
# allowed as the pairwise cipher, group cipher will also be CCMP. Otherwise,
# TKIP will be used as the group cipher.
# (dot11RSNAConfigPairwiseCiphersTable)
wpa_pairwise=TKIP CCMP
# Time interval for rekeying GTK (broadcast/multicast encryption keys) in
# seconds. (dot11RSNAConfigGroupRekeyTime)
#wpa_group_rekey=600
# Rekey GTK when any STA that possesses the current GTK is leaving the BSS.
# (dot11RSNAConfigGroupRekeyStrict)
#wpa_strict_rekey=1
# Time interval for rekeying GMK (master key used internally to generate GTKs
# (in seconds).
#wpa_gmk_rekey=86400
# Enable IEEE 802.11i/RSN/WPA2 pre-authentication. This is used to speed up
# roaming be pre-authenticating IEEE 802.1X/EAP part of the full RSN
# authentication and key handshake before actually associating with a new AP.
# (dot11RSNAPreauthenticationEnabled)
#rsn_preauth=1
#
# Space separated list of interfaces from which pre-authentication frames are
# accepted (e.g., 'eth0' or 'eth0 wlan0wds0'. This list should include all
# interface that are used for connections to other APs. This could include
# wired interfaces and WDS links. The normal wireless data interface towards
# associated stations (e.g., wlan0) should not be added, since
# pre-authentication is only used with APs other than the currently associated
# one.
#rsn_preauth_interfaces=eth0

View File

@@ -1 +1 @@
14
15

View File

@@ -0,0 +1,102 @@
etc/collectd.conf
etc/rc.d/rc0.d/K50collectd
etc/rc.d/rc3.d/S20collectd
etc/rc.d/rc6.d/K50collectd
etc/rc.d/init.d/collectd
#usr/bin/collectd-nagios
#usr/etc/collectd.conf
#usr/lib/collectd
#usr/lib/collectd/apache.la
usr/lib/collectd/apache.so
#usr/lib/collectd/apcups.la
usr/lib/collectd/apcups.so
#usr/lib/collectd/ascent.la
usr/lib/collectd/ascent.so
#usr/lib/collectd/battery.la
usr/lib/collectd/battery.so
#usr/lib/collectd/cpu.la
usr/lib/collectd/cpu.so
#usr/lib/collectd/cpufreq.la
usr/lib/collectd/cpufreq.so
#usr/lib/collectd/df.la
usr/lib/collectd/df.so
#usr/lib/collectd/disk.la
usr/lib/collectd/disk.so
#usr/lib/collectd/dns.la
usr/lib/collectd/dns.so
#usr/lib/collectd/email.la
usr/lib/collectd/email.so
#usr/lib/collectd/entropy.la
usr/lib/collectd/entropy.so
#usr/lib/collectd/exec.la
usr/lib/collectd/exec.so
#usr/lib/collectd/hddtemp.la
usr/lib/collectd/hddtemp.so
#usr/lib/collectd/interface.la
usr/lib/collectd/interface.so
#usr/lib/collectd/iptables.la
usr/lib/collectd/iptables.so
#usr/lib/collectd/irq.la
usr/lib/collectd/irq.so
#usr/lib/collectd/load.la
usr/lib/collectd/load.so
#usr/lib/collectd/logfile.la
usr/lib/collectd/logfile.so
#usr/lib/collectd/memory.la
usr/lib/collectd/memory.so
#usr/lib/collectd/multimeter.la
usr/lib/collectd/multimeter.so
#usr/lib/collectd/network.la
usr/lib/collectd/network.so
#usr/lib/collectd/nfs.la
usr/lib/collectd/nfs.so
#usr/lib/collectd/ntpd.la
usr/lib/collectd/ntpd.so
#usr/lib/collectd/ping.la
usr/lib/collectd/ping.so
#usr/lib/collectd/powerdns.la
usr/lib/collectd/powerdns.so
#usr/lib/collectd/processes.la
usr/lib/collectd/processes.so
#usr/lib/collectd/rrdtool.la
usr/lib/collectd/rrdtool.so
#usr/lib/collectd/sensors.la
usr/lib/collectd/sensors.so
#usr/lib/collectd/swap.la
usr/lib/collectd/swap.so
#usr/lib/collectd/syslog.la
usr/lib/collectd/syslog.so
#usr/lib/collectd/tail.la
usr/lib/collectd/tail.so
#usr/lib/collectd/tcpconns.la
usr/lib/collectd/tcpconns.so
#usr/lib/collectd/teamspeak2.la
usr/lib/collectd/teamspeak2.so
usr/lib/collectd/types.db
#usr/lib/collectd/unixsock.la
usr/lib/collectd/unixsock.so
#usr/lib/collectd/users.la
usr/lib/collectd/users.so
#usr/lib/collectd/uuid.la
usr/lib/collectd/uuid.so
#usr/lib/collectd/vmem.la
usr/lib/collectd/vmem.so
#usr/lib/perl5/site_perl/5.8.8/Collectd
#usr/lib/perl5/site_perl/5.8.8/Collectd.pm
#usr/lib/perl5/site_perl/5.8.8/Collectd/Unixsock.pm
#usr/lib/perl5/site_perl/5.8.8/i586-linux/auto/Collectd
#usr/lib/perl5/site_perl/5.8.8/i586-linux/auto/Collectd/.packlist
usr/sbin/collectd
usr/sbin/collectdmon
#usr/share/man/man1/collectd-nagios.1
#usr/share/man/man1/collectd.1
#usr/share/man/man1/collectdmon.1
#usr/share/man/man3/Collectd::Unixsock.3
#usr/share/man/man5/collectd-email.5
#usr/share/man/man5/collectd-exec.5
#usr/share/man/man5/collectd-perl.5
#usr/share/man/man5/collectd-snmp.5
#usr/share/man/man5/collectd-unixsock.5
#usr/share/man/man5/collectd.conf.5
#usr/share/man/man5/types.db.5
#var/lib/collectd

View File

@@ -59,8 +59,7 @@ var/ipfire/logging
var/ipfire/main
#var/ipfire/main/hosts
#var/ipfire/main/settings
var/ipfire/mbmon
#var/ipfire/mbmon/settings
var/ipfire/sensors
var/ipfire/menu.d/00-menu.main
var/ipfire/menu.d/10-system.menu
var/ipfire/menu.d/20-status.menu

View File

@@ -0,0 +1,4 @@
#usr/man/man5/fb.modes.5
#usr/man/man8/fbset.8
usr/sbin/fbset
etc/fb.modes

View File

@@ -1,11 +0,0 @@
bin/mail
#etc/ipac-ng
etc/ipac-ng/ipac.conf
etc/ipac-ng/rules.conf
#usr/man/man8/fetchipac.8
#usr/man/man8/ipac-convert.8
#usr/man/man8/ipacsum.8
usr/sbin/fetchipac
#usr/sbin/ipac-convert
usr/sbin/ipacsum
var/log/ip-acct

View File

@@ -1,4 +1,4 @@
lib/klibc-pFXBYGYRiBAAryaZ7Zw_ISKpcTk.so
lib/klibc-a0tNUCyBK7E4egoFt3zvXR0uOfI.so
usr/bin/klcc
#usr/lib/klibc
#usr/lib/klibc/bin
@@ -1566,7 +1566,7 @@ usr/lib/klibc/bin/zcat
#usr/lib/klibc/lib
#usr/lib/klibc/lib/crt0.o
#usr/lib/klibc/lib/interp.o
usr/lib/klibc/lib/klibc-pFXBYGYRiBAAryaZ7Zw_ISKpcTk.so
usr/lib/klibc/lib/klibc-a0tNUCyBK7E4egoFt3zvXR0uOfI.so
#usr/lib/klibc/lib/libc.a
usr/lib/klibc/lib/libc.so
#usr/man/man1/klcc.1

View File

@@ -0,0 +1,24 @@
etc/sensors3.conf
usr/bin/sensors
usr/bin/sensors-conf-convert
#usr/include/sensors
#usr/include/sensors/error.h
#usr/include/sensors/sensors.h
#usr/lib/libsensors.a
usr/lib/libsensors.so
usr/lib/libsensors.so.4
usr/lib/libsensors.so.4.0.2
#usr/man/man1/sensors.1
#usr/man/man3
#usr/man/man3/libsensors.3
#usr/man/man5/sensors.conf.5
#usr/man/man8/fancontrol.8
#usr/man/man8/isadump.8
#usr/man/man8/isaset.8
#usr/man/man8/pwmconfig.8
#usr/local/man/man8/sensors-detect.8
usr/sbin/fancontrol
usr/sbin/isadump
usr/sbin/isaset
usr/sbin/pwmconfig
usr/sbin/sensors-detect

View File

@@ -0,0 +1,34 @@
etc/madwifi.conf
#lib/modules/2.6.20.21-ipfire/net
#lib/modules/2.6.20.21-ipfire/net/ath_hal.ko
#lib/modules/2.6.20.21-ipfire/net/ath_pci.ko
#lib/modules/2.6.20.21-ipfire/net/ath_rate_amrr.ko
#lib/modules/2.6.20.21-ipfire/net/ath_rate_minstrel.ko
#lib/modules/2.6.20.21-ipfire/net/ath_rate_onoe.ko
#lib/modules/2.6.20.21-ipfire/net/ath_rate_sample.ko
#lib/modules/2.6.20.21-ipfire/net/wlan.ko
#lib/modules/2.6.20.21-ipfire/net/wlan_acl.ko
#lib/modules/2.6.20.21-ipfire/net/wlan_ccmp.ko
#lib/modules/2.6.20.21-ipfire/net/wlan_scan_ap.ko
#lib/modules/2.6.20.21-ipfire/net/wlan_scan_sta.ko
#lib/modules/2.6.20.21-ipfire/net/wlan_tkip.ko
#lib/modules/2.6.20.21-ipfire/net/wlan_wep.ko
#lib/modules/2.6.20.21-ipfire/net/wlan_xauth.ko
usr/local/bin/80211debug
usr/local/bin/80211stats
usr/local/bin/ath_info
usr/local/bin/athchans
usr/local/bin/athctrl
usr/local/bin/athdebug
usr/local/bin/athkey
usr/local/bin/athstats
usr/local/bin/wlanconfig
#usr/local/man/man8/80211debug.8
#usr/local/man/man8/80211stats.8
#usr/local/man/man8/ath_info.8
#usr/local/man/man8/athchans.8
#usr/local/man/man8/athctrl.8
#usr/local/man/man8/athdebug.8
#usr/local/man/man8/athkey.8
#usr/local/man/man8/athstats.8
#usr/local/man/man8/wlanconfig.8

View File

@@ -1,2 +0,0 @@
usr/bin/mbmon
#usr/man/man1/mbmon.1

View File

@@ -5,6 +5,7 @@ usr/local/bin/backupctrl
usr/local/bin/dhcpctrl
usr/local/bin/extrahdctrl
usr/local/bin/getipstat
usr/local/bin/getiptstate
#usr/local/bin/iowrap
usr/local/bin/ipfirereboot
usr/local/bin/ipsecctrl

View File

@@ -3211,7 +3211,7 @@ usr/share/terminfo/x/xterm-88color
#usr/share/terminfo/x/xterm-8bit
#usr/share/terminfo/x/xterm-basic
#usr/share/terminfo/x/xterm-bold
#usr/share/terminfo/x/xterm-color
usr/share/terminfo/x/xterm-color
#usr/share/terminfo/x/xterm-hp
#usr/share/terminfo/x/xterm-new
#usr/share/terminfo/x/xterm-nic

View File

@@ -1,5 +1,3 @@
etc/collectd.conf
etc/init.d/collectd
usr/local/bin/wirelessctrl
srv/web/ipfire/cgi-bin/optionsfw.cgi
srv/web/ipfire/cgi-bin/gui.cgi
@@ -8,5 +6,3 @@ srv/web/ipfire/cgi-bin/services.cgi
srv/web/ipfire/cgi-bin/graphs.cgi
var/ipfire/langs
var/ipfire/graphs.pl
lib/modules/2.6.16.57-ipfire/kernel/drivers/parport/pt_drv.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/parport/pt_drv.ko

View File

@@ -0,0 +1,11 @@
etc/udev/dvb.sh
etc/udev/rules.d/10-dvb.rules
srv/web/ipfire/cgi-bin/services.cgi
srv/web/ipfire/cgi-bin/proxy.cgi
srv/web/ipfire/cgi-bin/urlfilter.cgi
srv/web/ipfire/cgi-bin/updatexlrator.cgi
srv/web/ipfire/cgi-bin/pakfire.cgi
srv/web/ipfire/cgi-bin/logs.cgi/log.dat
opt/pakfire/lib/functions.pl
var/ipfire/langs
etc/sysconfig/modules

View File

@@ -0,0 +1,25 @@
var/ipfire/langs
etc/squid
usr/lib/squid
usr/sbin/squid
srv/web/ipfire/cgi-bin/updatexlrator.cgi
srv/web/ipfire/html/images/updxl-src-avg.gif
usr/sbin/updxlrator
srv/web/ipfire/html/images/audio-volume-high.png
srv/web/ipfire/html/images/audio-volume-low.png
srv/web/ipfire/html/images/audio-x-generic.png
srv/web/ipfire/html/images/audio-volume-high-red.png
srv/web/ipfire/html/images/audio-volume-low-red.png
srv/web/ipfire/html/images/audio-x-generic-red.png
srv/web/ipfire/html/images/media-flash.png
srv/web/ipfire/html/images/media-playback-start-all.png
srv/web/ipfire/html/images/media-repeat.png
srv/web/ipfire/html/images/media-skip-backward.png
srv/web/ipfire/html/images/media-floppy.png
srv/web/ipfire/html/images/media-playback-start.png
srv/web/ipfire/html/images/media-resume.png
srv/web/ipfire/html/images/media-skip-forward.png
srv/web/ipfire/html/images/media-optical.png
srv/web/ipfire/html/images/media-playback-stop.png
srv/web/ipfire/html/images/media-shuffle.png
usr/share/curl/curl-ca-bundle.crt

View File

@@ -1,4 +1,4 @@
etc/init.d/firewall
etc/rc.d/init.d/firewall
usr/local/bin/makegraphs
var/ipfire/langs
var/ipfire/optionsfw/settings

View File

@@ -0,0 +1,6 @@
lib/modules/KVER-ipfire/kernel/fs/nfsd/nfsd.ko
lib/modules/KVER-ipfire-smp/kernel/fs/nfsd/nfsd.ko
usr/local/bin/qosctrl
etc/rc.d/init.d/squid
var/ipfire/langs
var/ipfire/graphs.pl

View File

@@ -0,0 +1,7 @@
srv/web/ipfire/cgi-bin/outgoingfw.cgi
etc/rc.d/init.d/squid
#bin/ntfs-3g
#lib/libntfs-3g.so
#lib/libntfs-3g.so.21
#lib/libntfs-3g.so.21.0.0
#sbin/mount.ntfs-3g

View File

@@ -1,22 +1,15 @@
etc/collectd.conf
etc/init.d/collectd
etc/rc.d/rc0.d/K50collectd
etc/rc.d/rc3.d/S20collectd
etc/rc.d/rc6.d/K50collectd
etc/rc.d/rc3.d/S19smartenabler
etc/init.d/smartenabler
etc/init.d/networking/red
etc/rc.d/init.d/smartenabler
etc/rc.d/init.d/networking/red
srv/web/ipfire/cgi-bin/graphs.cgi
srv/web/ipfire/cgi-bin/hardwaregraphs.cgi
srv/web/ipfire/cgi-bin/network.cgi
srv/web/ipfire/cgi-bin/optionsfw.cgi
srv/web/ipfire/cgi-bin/proxy.cgi
usr/lib/collectd
usr/local/bin/makegraphs
usr/local/bin/wirelessctrl
usr/sbin/collectd
var/ipfire/graphs.pl
var/ipfire/menu.d/20-status.menu
var/ipfire/langs
lib/modules/2.6.16.57-ipfire/kernel/drivers/ieee1394/sbp2.ko
lib/modules/KVER-ipfire/kernel/drivers/ieee1394/sbp2.ko
srv/web/ipfire/cgi-bin/logs.cgi/log.dat

View File

@@ -0,0 +1,3 @@
srv/web/ipfire/cgi-bin/logs.cgi/log.dat
etc/ntp
usr/local/bin/wirelessctrl

View File

@@ -1,10 +1,5 @@
lib/modules/2.6.16.57-ipfire/misc/kqemu.ko
lib/modules/2.6.16.57-ipfire-smp/misc/kqemu.ko
sbin/hdparm
usr/lib/collectd
usr/sbin/collectd
usr/sbin/collectdmon
etc/init.d/networking/red
etc/rc.d/init.d/networking/red
etc/squid
sbin/capiinit
usr/bin/capiinfo

View File

@@ -0,0 +1,6 @@
#/etc/cron.d
#/etc/cron.d/vnstat
etc/vnstat.conf
usr/bin/vnstat
#usr/share/man/man1/vnstat.1
var/log/vnstat

View File

@@ -0,0 +1,2 @@
usr/bin/vnstati
#usr/share/man/man1/vnstati.1.gz

View File

@@ -0,0 +1,3 @@
usr/sbin/wpa_cli
usr/sbin/wpa_passphrase
usr/sbin/wpa_supplicant

View File

@@ -1,2 +0,0 @@
usr/bin/mbmon
#usr/man/man1/mbmon.1

View File

@@ -1,6 +0,0 @@
#!/bin/bash
. /opt/pakfire/lib/functions.sh
extract_files
mv /srv/web/ipfire/html/updatecache /var/
/etc/init.d/squid restart

View File

@@ -1 +0,0 @@
DEPS=""

View File

@@ -1 +0,0 @@
DEPS=""

View File

@@ -1,9 +0,0 @@
#!/bin/bash
. /opt/pakfire/lib/functions.sh
/usr/local/bin/backupctrl exclude >/dev/null 2>&1
/etc/init.d/squid stop
extract_files
perl -e "require '/var/ipfire/lang.pl'; &Lang::BuildCacheLang"
squidGuard -d -C all
chmod 666 /var/ipfire/urlfilter/blacklists/*/*.db
/etc/init.d/squid start

View File

@@ -1,137 +0,0 @@
lib/modules/2.6.16.57-ipfire/kernel/drivers/i2c/i2c-core.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/i2c/algos/i2c-algo-bit.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/common/saa7146.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/common/saa7146_vv.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/ttpci/budget-ci.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/ttpci/budget.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/ttpci/budget-patch.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/ttpci/ttpci-eeprom.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/ttpci/dvb-ttpci.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/ttpci/budget-av.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/ttpci/budget-core.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/ttusb-dec/ttusbdecfe.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/ttusb-dec/ttusb_dec.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/ttusb-budget/dvb-ttusb-budget.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/dvb-usb/dvb-usb-cxusb.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/dvb-usb/dvb-usb-digitv.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/dvb-usb/dvb-usb-umt-010.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/dvb-usb/dvb-usb-dibusb-mb.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/dvb-usb/dvb-usb-dibusb-mc.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/dvb-usb/dvb-usb-nova-t-usb2.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/dvb-usb/dvb-usb-vp7045.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/dvb-usb/dvb-usb-a800.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/dvb-usb/dvb-usb-dtt200u.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/dvb-usb/dvb-usb-vp702x.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/dvb-usb/dvb-usb.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/pluto2/pluto2.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/cinergyT2/cinergyT2.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/b2c2/b2c2-flexcop-pci.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/b2c2/b2c2-flexcop.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/b2c2/b2c2-flexcop-usb.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/frontends/s5h1420.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/frontends/dib3000mb.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/frontends/mt352.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/frontends/cx22702.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/frontends/ves1x93.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/frontends/or51132.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/frontends/tda10021.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/frontends/or51211.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/frontends/cx24123.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/frontends/sp8870.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/frontends/nxt6000.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/frontends/tda1004x.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/frontends/mt312.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/frontends/tda8083.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/frontends/nxt200x.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/frontends/cx24110.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/frontends/stv0299.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/frontends/l64781.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/frontends/dvb-pll.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/frontends/ves1820.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/frontends/sp887x.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/frontends/dib3000mc.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/frontends/bcm3510.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/frontends/cx22700.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/frontends/lgdt330x.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/frontends/stv0297.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/dvb-core/dvb-core.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/video/compat_ioctl32.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/video/videodev.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/video/v4l1-compat.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/video/v4l2-common.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/i2c/i2c-core.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/i2c/algos/i2c-algo-bit.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/common/saa7146.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/common/saa7146_vv.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/ttpci/budget-ci.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/ttpci/budget.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/ttpci/budget-patch.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/ttpci/ttpci-eeprom.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/ttpci/dvb-ttpci.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/ttpci/budget-av.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/ttpci/budget-core.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/ttusb-dec/ttusbdecfe.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/ttusb-dec/ttusb_dec.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/ttusb-budget/dvb-ttusb-budget.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/dvb-usb/dvb-usb-cxusb.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/dvb-usb/dvb-usb-digitv.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/dvb-usb/dvb-usb-umt-010.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/dvb-usb/dvb-usb-dibusb-mb.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/dvb-usb/dvb-usb-dibusb-mc.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/dvb-usb/dvb-usb-nova-t-usb2.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/dvb-usb/dvb-usb-vp7045.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/dvb-usb/dvb-usb-a800.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/dvb-usb/dvb-usb-dtt200u.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/dvb-usb/dvb-usb-vp702x.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/dvb-usb/dvb-usb.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/pluto2/pluto2.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/cinergyT2/cinergyT2.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/b2c2/b2c2-flexcop-pci.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/b2c2/b2c2-flexcop.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/b2c2/b2c2-flexcop-usb.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/frontends/s5h1420.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/frontends/dib3000mb.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/frontends/mt352.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/frontends/cx22702.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/frontends/ves1x93.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/frontends/or51132.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/frontends/tda10021.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/frontends/or51211.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/frontends/cx24123.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/frontends/sp8870.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/frontends/nxt6000.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/frontends/tda1004x.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/frontends/mt312.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/frontends/tda8083.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/frontends/nxt200x.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/frontends/cx24110.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/frontends/stv0299.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/frontends/l64781.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/frontends/dvb-pll.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/frontends/ves1820.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/frontends/sp887x.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/frontends/dib3000mc.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/frontends/bcm3510.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/frontends/cx22700.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/frontends/lgdt330x.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/frontends/stv0297.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/dvb-core/dvb-core.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/video/compat_ioctl32.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/video/videodev.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/video/v4l1-compat.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/video/v4l2-common.ko
etc/udev/dvb.sh
etc/udev/rules.d/10-dvb.rules
srv/web/ipfire/cgi-bin/services.cgi
lib/modules/2.6.16.57-ipfire/kernel/drivers/usb/net/dm9601.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/usb/net/dm9601.ko
srv/web/ipfire/cgi-bin/proxy.cgi
srv/web/ipfire/cgi-bin/urlfilter.cgi
srv/web/ipfire/cgi-bin/updatexlrator.cgi
srv/web/ipfire/cgi-bin/pakfire.cgi
srv/web/ipfire/cgi-bin/logs.cgi/log.dat
opt/pakfire/lib/functions.pl
var/ipfire/langs
etc/sysconfig/modules

View File

@@ -1 +0,0 @@
DEPS=""

View File

@@ -1,8 +0,0 @@
#!/bin/bash
. /opt/pakfire/lib/functions.sh
/usr/local/bin/backupctrl exclude >/dev/null 2>&1
extract_files
perl -e "require '/var/ipfire/lang.pl'; &Lang::BuildCacheLang"
depmod -a 2.6.16.57-ipfire
depmod -a 2.6.16.57-ipfire-smp

View File

@@ -1 +0,0 @@
DEPS=""

View File

@@ -1,6 +0,0 @@
#!/bin/bash
. /opt/pakfire/lib/functions.sh
/usr/local/bin/backupctrl exclude >/dev/null 2>&1
extract_files
/var/ipfire/urlfilter/bin/prebuild.pl
/etc/init.d/squid restart

View File

@@ -1,297 +0,0 @@
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/common/ir-common.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/common/saa7146_vv.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/common/tuners/tea5761.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/common/tuners/mt2131.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/common/tuners/tuner-xc2028.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/common/tuners/xc5000.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/common/tuners/tuner-types.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/common/tuners/qt1010.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/common/tuners/tuner-simple.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/common/tuners/tda8290.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/common/tuners/tda18271.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/common/tuners/tda827x.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/common/tuners/mt2266.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/common/tuners/tda9887.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/common/tuners/tea5767.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/common/tuners/mt20xx.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/common/tuners/mt2060.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/common/saa7146.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/pluto2/pluto2.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/b2c2/b2c2-flexcop-pci.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/b2c2/b2c2-flexcop.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/b2c2/b2c2-flexcop-usb.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/cinergyT2/cinergyT2.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/dvb-usb/dvb-usb-au6610.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/dvb-usb/dvb-usb-dibusb-mc.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/dvb-usb/dvb-usb-cxusb.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/dvb-usb/dvb-usb-gp8psk.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/dvb-usb/dvb-usb-opera.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/dvb-usb/dvb-usb-vp702x.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/dvb-usb/dvb-usb-vp7045.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/dvb-usb/dvb-usb-ttusb2.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/dvb-usb/dvb-usb-digitv.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/dvb-usb/dvb-usb-umt-010.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/dvb-usb/dvb-usb-nova-t-usb2.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/dvb-usb/dvb-usb-dibusb-mb.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/dvb-usb/dvb-usb-af9005.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/dvb-usb/dvb-usb-m920x.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/dvb-usb/dvb-usb.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/dvb-usb/dvb-usb-dtt200u.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/dvb-usb/dvb-usb-a800.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/dvb-usb/dvb-usb-af9005-remote.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/dvb-usb/dvb-usb-gl861.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/dvb-usb/dvb-usb-dib0700.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/frontends/sp8870.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/frontends/dib3000mc.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/frontends/dib7000p.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/frontends/tda826x.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/frontends/isl6405.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/frontends/ves1x93.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/frontends/or51132.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/frontends/isl6421.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/frontends/mt352.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/frontends/tda10023.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/frontends/cx24123.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/frontends/drx397xD.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/frontends/cx24110.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/frontends/s5h1409.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/frontends/dib0070.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/frontends/dibx000_common.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/frontends/cx22700.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/frontends/stv0297.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/frontends/nxt6000.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/frontends/stv0299.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/frontends/au8522.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/frontends/tua6100.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/frontends/s5h1411.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/frontends/mt312.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/frontends/dvb-pll.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/frontends/lgdt330x.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/frontends/bcm3510.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/frontends/dib3000mb.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/frontends/itd1000.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/frontends/l64781.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/frontends/nxt200x.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/frontends/tda10048.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/frontends/ves1820.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/frontends/dib7000m.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/frontends/lnbp21.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/frontends/tda10086.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/frontends/zl10353.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/frontends/s5h1420.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/frontends/tda10021.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/frontends/cx22702.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/frontends/or51211.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/frontends/sp887x.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/frontends/tda1004x.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/frontends/tda8083.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/ttusb-budget/dvb-ttusb-budget.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/ttpci/budget-core.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/ttpci/ttpci-eeprom.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/ttpci/budget.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/ttpci/dvb-ttpci.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/ttpci/budget-ci.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/ttpci/budget-av.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/ttpci/budget-patch.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/dvb-core/dvb-core.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/ttusb-dec/ttusbdecfe.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/ttusb-dec/ttusb_dec.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/bt8xx/dst_ca.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/bt8xx/dvb-bt8xx.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/bt8xx/bt878.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/bt8xx/dst.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/video/msp3400.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/video/v4l1-compat.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/video/videobuf-dvb.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/video/ir-kbd-i2c.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/video/cs53l32a.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/video/btcx-risc.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/video/cx2341x.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/video/v4l2-common.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/video/tda9875.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/video/videobuf-dma-sg.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/video/cx88/cx88-dvb.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/video/cx88/cx8802.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/video/cx88/cx88xx.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/video/cx88/cx88-vp3054-i2c.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/video/cx88/cx8800.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/video/v4l2-int-device.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/video/videodev.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/video/wm8775.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/video/videobuf-core.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/video/pvrusb2/pvrusb2.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/video/compat_ioctl32.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/video/tvaudio.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/video/cx25840/cx25840.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/video/saa7115.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/video/tda7432.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/video/bt8xx/bttv.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/video/tveeprom.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/video/saa7134
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/video/saa7134/saa6752hs.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/video/saa7134/saa7134-dvb.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/video/saa7134/saa7134-empress.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/video/saa7134/saa7134.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/media/video/tuner.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/common/ir-common.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/common/saa7146_vv.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/common/tuners/tea5761.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/common/tuners/mt2131.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/common/tuners/tuner-xc2028.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/common/tuners/xc5000.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/common/tuners/tuner-types.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/common/tuners/qt1010.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/common/tuners/tuner-simple.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/common/tuners/tda8290.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/common/tuners/tda18271.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/common/tuners/tda827x.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/common/tuners/mt2266.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/common/tuners/tda9887.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/common/tuners/tea5767.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/common/tuners/mt20xx.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/common/tuners/mt2060.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/common/saa7146.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/pluto2/pluto2.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/b2c2/b2c2-flexcop-pci.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/b2c2/b2c2-flexcop.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/b2c2/b2c2-flexcop-usb.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/cinergyT2/cinergyT2.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/dvb-usb/dvb-usb-au6610.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/dvb-usb/dvb-usb-dibusb-mc.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/dvb-usb/dvb-usb-cxusb.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/dvb-usb/dvb-usb-gp8psk.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/dvb-usb/dvb-usb-opera.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/dvb-usb/dvb-usb-vp702x.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/dvb-usb/dvb-usb-vp7045.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/dvb-usb/dvb-usb-ttusb2.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/dvb-usb/dvb-usb-digitv.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/dvb-usb/dvb-usb-umt-010.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/dvb-usb/dvb-usb-nova-t-usb2.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/dvb-usb/dvb-usb-dibusb-mb.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/dvb-usb/dvb-usb-af9005.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/dvb-usb/dvb-usb-m920x.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/dvb-usb/dvb-usb.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/dvb-usb/dvb-usb-dtt200u.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/dvb-usb/dvb-usb-a800.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/dvb-usb/dvb-usb-af9005-remote.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/dvb-usb/dvb-usb-gl861.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/dvb-usb/dvb-usb-dib0700.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/frontends/sp8870.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/frontends/dib3000mc.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/frontends/dib7000p.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/frontends/tda826x.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/frontends/isl6405.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/frontends/ves1x93.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/frontends/or51132.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/frontends/isl6421.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/frontends/mt352.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/frontends/tda10023.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/frontends/cx24123.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/frontends/drx397xD.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/frontends/cx24110.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/frontends/s5h1409.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/frontends/dib0070.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/frontends/dibx000_common.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/frontends/cx22700.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/frontends/stv0297.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/frontends/nxt6000.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/frontends/stv0299.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/frontends/au8522.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/frontends/tua6100.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/frontends/s5h1411.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/frontends/mt312.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/frontends/dvb-pll.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/frontends/lgdt330x.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/frontends/bcm3510.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/frontends/dib3000mb.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/frontends/itd1000.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/frontends/l64781.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/frontends/nxt200x.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/frontends/tda10048.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/frontends/ves1820.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/frontends/dib7000m.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/frontends/lnbp21.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/frontends/tda10086.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/frontends/zl10353.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/frontends/s5h1420.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/frontends/tda10021.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/frontends/cx22702.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/frontends/or51211.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/frontends/sp887x.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/frontends/tda1004x.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/frontends/tda8083.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/ttusb-budget/dvb-ttusb-budget.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/ttpci/budget-core.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/ttpci/ttpci-eeprom.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/ttpci/budget.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/ttpci/dvb-ttpci.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/ttpci/budget-ci.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/ttpci/budget-av.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/ttpci/budget-patch.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/dvb-core/dvb-core.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/ttusb-dec/ttusbdecfe.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/ttusb-dec/ttusb_dec.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/bt8xx/dst_ca.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/bt8xx/dvb-bt8xx.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/bt8xx/bt878.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/bt8xx/dst.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/video/msp3400.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/video/v4l1-compat.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/video/videobuf-dvb.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/video/ir-kbd-i2c.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/video/cs53l32a.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/video/btcx-risc.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/video/cx2341x.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/video/v4l2-common.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/video/tda9875.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/video/videobuf-dma-sg.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/video/cx88/cx88-dvb.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/video/cx88/cx8802.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/video/cx88/cx88xx.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/video/cx88/cx88-vp3054-i2c.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/video/cx88/cx8800.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/video/v4l2-int-device.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/video/videodev.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/video/wm8775.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/video/videobuf-core.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/video/pvrusb2/pvrusb2.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/video/compat_ioctl32.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/video/tvaudio.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/video/cx25840/cx25840.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/video/saa7115.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/video/tda7432.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/video/bt8xx/bttv.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/video/tveeprom.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/video/saa7134
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/video/saa7134/saa6752hs.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/video/saa7134/saa7134-dvb.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/video/saa7134/saa7134-empress.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/video/saa7134/saa7134.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/video/tuner.ko
var/ipfire/langs
etc/squid
usr/lib/squid
usr/sbin/squid
srv/web/ipfire/cgi-bin/updatexlrator.cgi
srv/web/ipfire/html/images/updxl-src-avg.gif
usr/sbin/updxlrator
srv/web/ipfire/html/images/audio-volume-high.png
srv/web/ipfire/html/images/audio-volume-low.png
srv/web/ipfire/html/images/audio-x-generic.png
srv/web/ipfire/html/images/audio-volume-high-red.png
srv/web/ipfire/html/images/audio-volume-low-red.png
srv/web/ipfire/html/images/audio-x-generic-red.png
srv/web/ipfire/html/images/media-flash.png
srv/web/ipfire/html/images/media-playback-start-all.png
srv/web/ipfire/html/images/media-repeat.png
srv/web/ipfire/html/images/media-skip-backward.png
srv/web/ipfire/html/images/media-floppy.png
srv/web/ipfire/html/images/media-playback-start.png
srv/web/ipfire/html/images/media-resume.png
srv/web/ipfire/html/images/media-skip-forward.png
srv/web/ipfire/html/images/media-optical.png
srv/web/ipfire/html/images/media-playback-stop.png
srv/web/ipfire/html/images/media-shuffle.png
usr/share/curl/curl-ca-bundle.crt

View File

@@ -1 +0,0 @@
DEPS=""

View File

@@ -1,13 +0,0 @@
#!/bin/bash
. /opt/pakfire/lib/functions.sh
/usr/local/bin/backupctrl exclude >/dev/null 2>&1
rm /lib/modules/2.6.16.57-ipfire/kernel/drivers/media/video/video-buf.ko
rm /lib/modules/2.6.16.57-ipfire/kernel/drivers/media/dvb/frontends/dib3000-common.ko
rm /lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/video/video-buf.ko
rm /lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/media/dvb/frontends/dib3000-common.ko
/etc/init.d/squid stop
extract_files
perl -e "require '/var/ipfire/lang.pl'; &Lang::BuildCacheLang"
/etc/init.d/squid start
depmod -a 2.6.16.57-ipfire
depmod -a 2.6.16.57-ipfire-smp

View File

@@ -1 +0,0 @@
DEPS=""

View File

@@ -1,9 +0,0 @@
#!/bin/bash
. /opt/pakfire/lib/functions.sh
/usr/local/bin/backupctrl exclude >/dev/null 2>&1
extract_files
perl -e "require '/var/ipfire/lang.pl'; &Lang::BuildCacheLang"
grep -v 'Interface "ppp"' /etc/collectd.conf > /tmp/collectd.conf
mv /tmp/collectd.conf /etc/collectd.conf
/etc/init.d/collectd restart
/etc/init.d/mISDN config

View File

View File

@@ -3,5 +3,4 @@
/usr/local/bin/backupctrl exclude >/dev/null 2>&1
extract_files
perl -e "require '/var/ipfire/lang.pl'; &Lang::BuildCacheLang"
depmod -a
/etc/init.d/collectd restart
/etc/init.d/mISDN config

View File

@@ -1 +0,0 @@
DEPS=""

View File

@@ -1,10 +0,0 @@
#!/bin/bash
. /opt/pakfire/lib/functions.sh
mv /etc/sysconfig/rc.local /etc/sysconfig/rc.local.old
extract_files
if [ -e "/var/ipfire/qos/enable" ]; then
/usr/local/bin/qosctrl stop
/usr/local/bin/qosctrl generate
/usr/local/bin/qosctrl start
fi
/usr/local/bin/outgoingfwctrl restart

View File

@@ -1 +0,0 @@
DEPS=""

View File

@@ -1,3 +0,0 @@
#!/bin/bash
. /opt/pakfire/lib/functions.sh
extract_files

View File

@@ -1 +0,0 @@
DEPS=""

View File

@@ -1,4 +0,0 @@
#!/bin/bash
. /opt/pakfire/lib/functions.sh
extract_files
perl -e "require '/var/ipfire/lang.pl'; &Lang::BuildCacheLang"

View File

@@ -1,6 +0,0 @@
lib/modules/2.6.16.57-ipfire/kernel/fs/nfsd/nfsd.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/fs/nfsd/nfsd.ko
usr/local/bin/qosctrl
etc/init.d/squid
var/ipfire/langs
var/ipfire/graphs.pl

View File

@@ -1 +0,0 @@
DEPS=""

View File

@@ -1,5 +0,0 @@
#!/bin/bash
. /opt/pakfire/lib/functions.sh
extract_files
perl -e "require '/var/ipfire/lang.pl'; &Lang::BuildCacheLang"
depmod -a

View File

@@ -1,19 +0,0 @@
lib/modules/2.6.16.57-ipfire/kernel/fs/fuse
lib/modules/2.6.16.57-ipfire-smp/kernel/fs/fuse
lib/modules/2.6.16.57-ipfire/kernel/drivers/net/r8169.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/net/r8168.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/usb/net/mcs7830.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/ieee1394/sbp2.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/net/r8169.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/net/r8168.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/usb/net/mcs7830.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/ieee1394/sbp2.ko
/sbin/kudzu
var/ipfire/langs
srv/web/ipfire/cgi-bin/outgoingfw.cgi
etc/init.d/squid
#bin/ntfs-3g
#lib/libntfs-3g.so
#lib/libntfs-3g.so.21
#lib/libntfs-3g.so.21.0.0
#sbin/mount.ntfs-3g

View File

@@ -1 +0,0 @@
DEPS=""

View File

@@ -1,5 +0,0 @@
#!/bin/bash
. /opt/pakfire/lib/functions.sh
extract_files
depmod -a
perl -e "require '/var/ipfire/lang.pl'; &Lang::BuildCacheLang"

View File

@@ -1 +0,0 @@
DEPS=""

View File

@@ -1,8 +0,0 @@
#!/bin/bash
. /opt/pakfire/lib/functions.sh
extract_files
depmod -a
GATEWAY=$(cat /var/ipfire/red/remote-ipaddress)
echo "$GATEWAY gateway" >> /etc/hosts
/etc/init.d/collectd start
perl -e "require '/var/ipfire/lang.pl'; &Lang::BuildCacheLang"

View File

@@ -1,7 +0,0 @@
lib/modules/2.6.16.57-ipfire/kernel/drivers/net/r8169.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/net/r8168.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/net/r8169.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/net/r8168.ko
srv/web/ipfire/cgi-bin/logs.cgi/log.dat
etc/ntp
usr/local/bin/wirelessctrl

View File

@@ -1 +0,0 @@
DEPS=""

View File

@@ -1,6 +0,0 @@
#!/bin/bash
. /opt/pakfire/lib/functions.sh
/usr/local/bin/backupctrl exclude >/dev/null 2>&1
extract_files
depmod -a

View File

@@ -1 +0,0 @@
DEPS=""

View File

@@ -1,10 +0,0 @@
#!/bin/bash
. /opt/pakfire/lib/functions.sh
/usr/local/bin/backupctrl exclude >/dev/null 2>&1
/etc/init.d/squid stop
/etc/init.d/collectd stop
extract_files
/etc/init.d/squid start
/etc/init.d/collectd start
depmod -a
perl -e "require '/var/ipfire/lang.pl'; &Lang::BuildCacheLang"

View File

@@ -0,0 +1,22 @@
usr/bin/dfb++-config
usr/bin/dfbshow
usr/bin/dfbswitch
#usr/include/dfb++
#usr/include/dfb++/dfb++.h
#usr/include/dfb++/idirectfb.h
#usr/include/dfb++/idirectfbdatabuffer.h
#usr/include/dfb++/idirectfbdisplaylayer.h
#usr/include/dfb++/idirectfbeventbuffer.h
#usr/include/dfb++/idirectfbfont.h
#usr/include/dfb++/idirectfbimageprovider.h
#usr/include/dfb++/idirectfbinputdevice.h
#usr/include/dfb++/idirectfbpalette.h
#usr/include/dfb++/idirectfbscreen.h
#usr/include/dfb++/idirectfbsurface.h
#usr/include/dfb++/idirectfbvideoprovider.h
#usr/include/dfb++/idirectfbwindow.h
usr/lib/libdfb++-1.0.so.0
usr/lib/libdfb++-1.0.so.0.0.0
#usr/lib/libdfb++.la
usr/lib/libdfb++.so
#usr/lib/pkgconfig/dfb++.pc

View File

@@ -0,0 +1,249 @@
usr/bin/dfbdump
usr/bin/dfbfx
usr/bin/dfbg
usr/bin/dfbinfo
usr/bin/dfbinput
usr/bin/dfblayer
usr/bin/dfbpenmount
usr/bin/dfbscreen
usr/bin/directfb-config
usr/bin/directfb-csource
usr/bin/mkdfiff
usr/bin/mkdgiff
#usr/include/directfb
#usr/include/directfb-internal
#usr/include/directfb-internal/core
#usr/include/directfb-internal/core/clipboard.h
#usr/include/directfb-internal/core/colorhash.h
#usr/include/directfb-internal/core/core.h
#usr/include/directfb-internal/core/core_parts.h
#usr/include/directfb-internal/core/core_system.h
#usr/include/directfb-internal/core/coredefs.h
#usr/include/directfb-internal/core/coretypes.h
#usr/include/directfb-internal/core/fonts.h
#usr/include/directfb-internal/core/gfxcard.h
#usr/include/directfb-internal/core/graphics_driver.h
#usr/include/directfb-internal/core/input.h
#usr/include/directfb-internal/core/input_driver.h
#usr/include/directfb-internal/core/layer_context.h
#usr/include/directfb-internal/core/layer_control.h
#usr/include/directfb-internal/core/layer_region.h
#usr/include/directfb-internal/core/layers.h
#usr/include/directfb-internal/core/layers_internal.h
#usr/include/directfb-internal/core/palette.h
#usr/include/directfb-internal/core/screen.h
#usr/include/directfb-internal/core/screens.h
#usr/include/directfb-internal/core/screens_internal.h
#usr/include/directfb-internal/core/state.h
#usr/include/directfb-internal/core/surface.h
#usr/include/directfb-internal/core/surface_buffer.h
#usr/include/directfb-internal/core/surface_pool.h
#usr/include/directfb-internal/core/system.h
#usr/include/directfb-internal/core/windows.h
#usr/include/directfb-internal/core/windows_internal.h
#usr/include/directfb-internal/core/windowstack.h
#usr/include/directfb-internal/core/wm.h
#usr/include/directfb-internal/core/wm_module.h
#usr/include/directfb-internal/devmem
#usr/include/directfb-internal/devmem/devmem.h
#usr/include/directfb-internal/devmem/surfacemanager.h
#usr/include/directfb-internal/display
#usr/include/directfb-internal/display/idirectfbdisplaylayer.h
#usr/include/directfb-internal/display/idirectfbpalette.h
#usr/include/directfb-internal/display/idirectfbscreen.h
#usr/include/directfb-internal/display/idirectfbsurface.h
#usr/include/directfb-internal/display/idirectfbsurface_layer.h
#usr/include/directfb-internal/display/idirectfbsurface_window.h
#usr/include/directfb-internal/fbdev
#usr/include/directfb-internal/fbdev/agp.h
#usr/include/directfb-internal/fbdev/fb.h
#usr/include/directfb-internal/fbdev/fbdev.h
#usr/include/directfb-internal/fbdev/surfacemanager.h
#usr/include/directfb-internal/fbdev/vt.h
#usr/include/directfb-internal/gfx
#usr/include/directfb-internal/gfx/clip.h
#usr/include/directfb-internal/gfx/convert.h
#usr/include/directfb-internal/gfx/generic
#usr/include/directfb-internal/gfx/generic/generic.h
#usr/include/directfb-internal/gfx/util.h
#usr/include/directfb-internal/idirectfb.h
#usr/include/directfb-internal/input
#usr/include/directfb-internal/input/idirectfbinputbuffer.h
#usr/include/directfb-internal/input/idirectfbinputdevice.h
#usr/include/directfb-internal/media
#usr/include/directfb-internal/media/idirectfbdatabuffer.h
#usr/include/directfb-internal/media/idirectfbfont.h
#usr/include/directfb-internal/media/idirectfbimageprovider.h
#usr/include/directfb-internal/media/idirectfbvideoprovider.h
#usr/include/directfb-internal/misc
#usr/include/directfb-internal/misc/conf.h
#usr/include/directfb-internal/misc/gfx_util.h
#usr/include/directfb-internal/misc/util.h
#usr/include/directfb-internal/windows
#usr/include/directfb-internal/windows/idirectfbwindow.h
#usr/include/directfb/dfb_types.h
#usr/include/directfb/dfiff.h
#usr/include/directfb/dgiff.h
#usr/include/directfb/direct
#usr/include/directfb/direct/build.h
#usr/include/directfb/direct/clock.h
#usr/include/directfb/direct/conf.h
#usr/include/directfb/direct/debug.h
#usr/include/directfb/direct/direct.h
#usr/include/directfb/direct/hash.h
#usr/include/directfb/direct/interface.h
#usr/include/directfb/direct/interface_implementation.h
#usr/include/directfb/direct/list.h
#usr/include/directfb/direct/log.h
#usr/include/directfb/direct/mem.h
#usr/include/directfb/direct/memcpy.h
#usr/include/directfb/direct/messages.h
#usr/include/directfb/direct/modules.h
#usr/include/directfb/direct/serial.h
#usr/include/directfb/direct/signals.h
#usr/include/directfb/direct/stream.h
#usr/include/directfb/direct/system.h
#usr/include/directfb/direct/thread.h
#usr/include/directfb/direct/trace.h
#usr/include/directfb/direct/tree.h
#usr/include/directfb/direct/types.h
#usr/include/directfb/direct/utf8.h
#usr/include/directfb/direct/util.h
#usr/include/directfb/directfb.h
#usr/include/directfb/directfb_keyboard.h
#usr/include/directfb/directfb_keynames.h
#usr/include/directfb/directfb_strings.h
#usr/include/directfb/directfb_util.h
#usr/include/directfb/directfb_version.h
#usr/include/directfb/directfbgl.h
#usr/include/directfb/fusion
#usr/include/directfb/fusion/arena.h
#usr/include/directfb/fusion/build.h
#usr/include/directfb/fusion/call.h
#usr/include/directfb/fusion/conf.h
#usr/include/directfb/fusion/fusion.h
#usr/include/directfb/fusion/fusion_internal.h
#usr/include/directfb/fusion/hash.h
#usr/include/directfb/fusion/lock.h
#usr/include/directfb/fusion/object.h
#usr/include/directfb/fusion/property.h
#usr/include/directfb/fusion/protocol.h
#usr/include/directfb/fusion/reactor.h
#usr/include/directfb/fusion/ref.h
#usr/include/directfb/fusion/shm
#usr/include/directfb/fusion/shm/pool.h
#usr/include/directfb/fusion/shm/shm.h
#usr/include/directfb/fusion/shm/shm_internal.h
#usr/include/directfb/fusion/shmalloc.h
#usr/include/directfb/fusion/types.h
#usr/include/directfb/fusion/vector.h
#usr/lib/directfb-1.1-0
#usr/lib/directfb-1.1-0/gfxdrivers
#usr/lib/directfb-1.1-0/gfxdrivers/libdirectfb_ati128.la
usr/lib/directfb-1.1-0/gfxdrivers/libdirectfb_ati128.so
#usr/lib/directfb-1.1-0/gfxdrivers/libdirectfb_cle266.la
usr/lib/directfb-1.1-0/gfxdrivers/libdirectfb_cle266.so
#usr/lib/directfb-1.1-0/gfxdrivers/libdirectfb_cyber5k.la
usr/lib/directfb-1.1-0/gfxdrivers/libdirectfb_cyber5k.so
#usr/lib/directfb-1.1-0/gfxdrivers/libdirectfb_i810.la
usr/lib/directfb-1.1-0/gfxdrivers/libdirectfb_i810.so
#usr/lib/directfb-1.1-0/gfxdrivers/libdirectfb_i830.la
usr/lib/directfb-1.1-0/gfxdrivers/libdirectfb_i830.so
#usr/lib/directfb-1.1-0/gfxdrivers/libdirectfb_mach64.la
usr/lib/directfb-1.1-0/gfxdrivers/libdirectfb_mach64.so
#usr/lib/directfb-1.1-0/gfxdrivers/libdirectfb_neomagic.la
usr/lib/directfb-1.1-0/gfxdrivers/libdirectfb_neomagic.so
#usr/lib/directfb-1.1-0/gfxdrivers/libdirectfb_nsc.la
usr/lib/directfb-1.1-0/gfxdrivers/libdirectfb_nsc.so
#usr/lib/directfb-1.1-0/gfxdrivers/libdirectfb_nvidia.la
usr/lib/directfb-1.1-0/gfxdrivers/libdirectfb_nvidia.so
#usr/lib/directfb-1.1-0/gfxdrivers/libdirectfb_radeon.la
usr/lib/directfb-1.1-0/gfxdrivers/libdirectfb_radeon.so
#usr/lib/directfb-1.1-0/gfxdrivers/libdirectfb_savage.la
usr/lib/directfb-1.1-0/gfxdrivers/libdirectfb_savage.so
#usr/lib/directfb-1.1-0/gfxdrivers/libdirectfb_sdlgraphics.la
usr/lib/directfb-1.1-0/gfxdrivers/libdirectfb_sdlgraphics.so
#usr/lib/directfb-1.1-0/gfxdrivers/libdirectfb_sh7722.la
usr/lib/directfb-1.1-0/gfxdrivers/libdirectfb_sh7722.so
#usr/lib/directfb-1.1-0/gfxdrivers/libdirectfb_sis315.la
usr/lib/directfb-1.1-0/gfxdrivers/libdirectfb_sis315.so
#usr/lib/directfb-1.1-0/gfxdrivers/libdirectfb_tdfx.la
usr/lib/directfb-1.1-0/gfxdrivers/libdirectfb_tdfx.so
#usr/lib/directfb-1.1-0/gfxdrivers/libdirectfb_unichrome.la
usr/lib/directfb-1.1-0/gfxdrivers/libdirectfb_unichrome.so
#usr/lib/directfb-1.1-0/gfxdrivers/libdirectfb_vmware.la
usr/lib/directfb-1.1-0/gfxdrivers/libdirectfb_vmware.so
#usr/lib/directfb-1.1-0/inputdrivers
#usr/lib/directfb-1.1-0/inputdrivers/libdirectfb_joystick.la
usr/lib/directfb-1.1-0/inputdrivers/libdirectfb_joystick.so
#usr/lib/directfb-1.1-0/inputdrivers/libdirectfb_keyboard.la
usr/lib/directfb-1.1-0/inputdrivers/libdirectfb_keyboard.so
#usr/lib/directfb-1.1-0/inputdrivers/libdirectfb_linux_input.la
usr/lib/directfb-1.1-0/inputdrivers/libdirectfb_linux_input.so
#usr/lib/directfb-1.1-0/inputdrivers/libdirectfb_lirc.la
usr/lib/directfb-1.1-0/inputdrivers/libdirectfb_lirc.so
#usr/lib/directfb-1.1-0/inputdrivers/libdirectfb_mutouch.la
usr/lib/directfb-1.1-0/inputdrivers/libdirectfb_mutouch.so
#usr/lib/directfb-1.1-0/inputdrivers/libdirectfb_penmount.la
usr/lib/directfb-1.1-0/inputdrivers/libdirectfb_penmount.so
#usr/lib/directfb-1.1-0/inputdrivers/libdirectfb_ps2mouse.la
usr/lib/directfb-1.1-0/inputdrivers/libdirectfb_ps2mouse.so
#usr/lib/directfb-1.1-0/inputdrivers/libdirectfb_sdlinput.la
usr/lib/directfb-1.1-0/inputdrivers/libdirectfb_sdlinput.so
#usr/lib/directfb-1.1-0/inputdrivers/libdirectfb_serialmouse.la
usr/lib/directfb-1.1-0/inputdrivers/libdirectfb_serialmouse.so
#usr/lib/directfb-1.1-0/inputdrivers/libdirectfb_sonypi.la
usr/lib/directfb-1.1-0/inputdrivers/libdirectfb_sonypi.so
#usr/lib/directfb-1.1-0/inputdrivers/libdirectfb_wm97xx_ts.la
usr/lib/directfb-1.1-0/inputdrivers/libdirectfb_wm97xx_ts.so
#usr/lib/directfb-1.1-0/interfaces
#usr/lib/directfb-1.1-0/interfaces/IDirectFBFont
#usr/lib/directfb-1.1-0/interfaces/IDirectFBFont/libidirectfbfont_default.la
usr/lib/directfb-1.1-0/interfaces/IDirectFBFont/libidirectfbfont_default.so
#usr/lib/directfb-1.1-0/interfaces/IDirectFBFont/libidirectfbfont_ft2.la
usr/lib/directfb-1.1-0/interfaces/IDirectFBFont/libidirectfbfont_ft2.so
#usr/lib/directfb-1.1-0/interfaces/IDirectFBImageProvider
#usr/lib/directfb-1.1-0/interfaces/IDirectFBImageProvider/libidirectfbimageprovider_dfiff.la
usr/lib/directfb-1.1-0/interfaces/IDirectFBImageProvider/libidirectfbimageprovider_dfiff.so
#usr/lib/directfb-1.1-0/interfaces/IDirectFBImageProvider/libidirectfbimageprovider_gif.la
usr/lib/directfb-1.1-0/interfaces/IDirectFBImageProvider/libidirectfbimageprovider_gif.so
#usr/lib/directfb-1.1-0/interfaces/IDirectFBImageProvider/libidirectfbimageprovider_jpeg.la
usr/lib/directfb-1.1-0/interfaces/IDirectFBImageProvider/libidirectfbimageprovider_jpeg.so
#usr/lib/directfb-1.1-0/interfaces/IDirectFBImageProvider/libidirectfbimageprovider_mpeg2.la
usr/lib/directfb-1.1-0/interfaces/IDirectFBImageProvider/libidirectfbimageprovider_mpeg2.so
#usr/lib/directfb-1.1-0/interfaces/IDirectFBImageProvider/libidirectfbimageprovider_png.la
usr/lib/directfb-1.1-0/interfaces/IDirectFBImageProvider/libidirectfbimageprovider_png.so
#usr/lib/directfb-1.1-0/interfaces/IDirectFBVideoProvider
#usr/lib/directfb-1.1-0/interfaces/IDirectFBVideoProvider/libidirectfbvideoprovider_gif.la
usr/lib/directfb-1.1-0/interfaces/IDirectFBVideoProvider/libidirectfbvideoprovider_gif.so
#usr/lib/directfb-1.1-0/systems
#usr/lib/directfb-1.1-0/systems/libdirectfb_devmem.la
usr/lib/directfb-1.1-0/systems/libdirectfb_devmem.so
#usr/lib/directfb-1.1-0/systems/libdirectfb_fbdev.la
usr/lib/directfb-1.1-0/systems/libdirectfb_fbdev.so
#usr/lib/directfb-1.1-0/systems/libdirectfb_sdl.la
usr/lib/directfb-1.1-0/systems/libdirectfb_sdl.so
#usr/lib/directfb-1.1-0/wm
#usr/lib/directfb-1.1-0/wm/libdirectfbwm_default.la
usr/lib/directfb-1.1-0/wm/libdirectfbwm_default.so
usr/lib/libdirect-1.1.so.0
usr/lib/libdirect-1.1.so.0.1.0
#usr/lib/libdirect.la
usr/lib/libdirect.so
usr/lib/libdirectfb-1.1.so.0
usr/lib/libdirectfb-1.1.so.0.1.0
#usr/lib/libdirectfb.la
usr/lib/libdirectfb.so
usr/lib/libfusion-1.1.so.0
usr/lib/libfusion-1.1.so.0.1.0
#usr/lib/libfusion.la
usr/lib/libfusion.so
#usr/lib/pkgconfig/direct.pc
#usr/lib/pkgconfig/directfb-internal.pc
#usr/lib/pkgconfig/directfb.pc
#usr/lib/pkgconfig/fusion.pc
#usr/share/directfb-1.1.1
usr/share/directfb-1.1.1/cursor.dat
#usr/share/man/man1/dfbg.1
#usr/share/man/man1/directfb-csource.1
#usr/share/man/man5/directfbrc.5

View File

@@ -1,9 +1,9 @@
usr/local/etc/elinks/elinks.conf
usr/local/bin/elinks
usr/local/man/man1/elinks.1
usr/local/man/man5
usr/local/man/man5/elinks.conf.5
usr/local/man/man5/elinkskeys.5
#usr/local/man/man1/elinks.1
#usr/local/man/man5
#usr/local/man/man5/elinks.conf.5
#usr/local/man/man5/elinkskeys.5
#usr/local/share/locale/be
#usr/local/share/locale/be/LC_MESSAGES
#usr/local/share/locale/be/LC_MESSAGES/elinks.mo
@@ -19,8 +19,8 @@ usr/local/man/man5/elinkskeys.5
#usr/local/share/locale/da
#usr/local/share/locale/da/LC_MESSAGES
#usr/local/share/locale/da/LC_MESSAGES/elinks.mo
usr/local/share/locale/de
usr/local/share/locale/de/LC_MESSAGES
#usr/local/share/locale/de
#usr/local/share/locale/de/LC_MESSAGES
usr/local/share/locale/de/LC_MESSAGES/elinks.mo
#usr/local/share/locale/el
#usr/local/share/locale/el/LC_MESSAGES

View File

@@ -0,0 +1,2 @@
usr/bin/hostapd
usr/bin/hostapd_cli

View File

@@ -0,0 +1,40 @@
#usr/include/dvbpsi
#usr/include/dvbpsi/cat.h
#usr/include/dvbpsi/demux.h
#usr/include/dvbpsi/descriptor.h
#usr/include/dvbpsi/dr.h
#usr/include/dvbpsi/dr_02.h
#usr/include/dvbpsi/dr_03.h
#usr/include/dvbpsi/dr_04.h
#usr/include/dvbpsi/dr_05.h
#usr/include/dvbpsi/dr_06.h
#usr/include/dvbpsi/dr_07.h
#usr/include/dvbpsi/dr_08.h
#usr/include/dvbpsi/dr_09.h
#usr/include/dvbpsi/dr_0a.h
#usr/include/dvbpsi/dr_0b.h
#usr/include/dvbpsi/dr_0c.h
#usr/include/dvbpsi/dr_0d.h
#usr/include/dvbpsi/dr_0e.h
#usr/include/dvbpsi/dr_0f.h
#usr/include/dvbpsi/dr_42.h
#usr/include/dvbpsi/dr_47.h
#usr/include/dvbpsi/dr_48.h
#usr/include/dvbpsi/dr_4d.h
#usr/include/dvbpsi/dr_4e.h
#usr/include/dvbpsi/dr_52.h
#usr/include/dvbpsi/dr_55.h
#usr/include/dvbpsi/dr_56.h
#usr/include/dvbpsi/dr_59.h
#usr/include/dvbpsi/dr_69.h
#usr/include/dvbpsi/dvbpsi.h
#usr/include/dvbpsi/eit.h
#usr/include/dvbpsi/pat.h
#usr/include/dvbpsi/pmt.h
#usr/include/dvbpsi/psi.h
#usr/include/dvbpsi/sdt.h
#usr/lib/libdvbpsi.a
#usr/lib/libdvbpsi.la
usr/lib/libdvbpsi.so
usr/lib/libdvbpsi.so.5
usr/lib/libdvbpsi.so.5.0.0

View File

@@ -1,28 +0,0 @@
#etc/pcmcia
etc/pcmcia/config.opts
etc/udev/rules.d/60-pcmcia.rules
sbin/lspcmcia
sbin/pccardctl
sbin/pcmcia-check-broken-cis
sbin/pcmcia-socket-startup
#usr/share/man/man8/lspcmcia.8
#usr/share/man/man8/pccardctl.8
lib/modules/2.6.16.57-ipfire/kernel/drivers/char/pcmcia
lib/modules/2.6.16.57-ipfire/kernel/drivers/ide/legacy/ide-cs.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/net/pcmcia
lib/modules/2.6.16.57-ipfire/kernel/drivers/net/tulip/xircom_cb.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/net/tulip/xircom_tulip_cb.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/scsi/pcmcia
lib/modules/2.6.16.57-ipfire/kernel/drivers/parport/parport_cs.ko
lib/modules/2.6.16.57-ipfire/kernel/drivers/pcmcia
lib/modules/2.6.16.57-ipfire/kernel/drivers/serial/serial_cs.ko
lib/modules/2.6.16.57-ipfire/kernel/sound/pcmcia
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/char/pcmcia
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/ide/legacy/ide-cs.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/net/pcmcia
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/net/tulip/xircom_cb.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/scsi/pcmcia
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/parport/parport_cs.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/pcmcia
lib/modules/2.6.16.57-ipfire-smp/kernel/drivers/serial/serial_cs.ko
lib/modules/2.6.16.57-ipfire-smp/kernel/sound/pcmcia

View File

@@ -1,4 +1,5 @@
opt/vdr/bin/runvdr-soft
opt/vdr/PLUGINS/lib/libsoftdevice-dfb.so.1.6.0
opt/vdr/PLUGINS/lib/libsoftdevice-fb.so.1.6.0
opt/vdr/PLUGINS/lib/libsoftdevice-shm.so.1.6.0
opt/vdr/PLUGINS/lib/libvdr-softdevice.so.1.6.0

View File

@@ -24,6 +24,7 @@ usr/lib/vlc/access/libaccess_smb_plugin.so
usr/lib/vlc/access/libaccess_tcp_plugin.so
usr/lib/vlc/access/libaccess_udp_plugin.so
usr/lib/vlc/access/libcdda_plugin.so
usr/lib/vlc/access/libdvb_plugin.so
usr/lib/vlc/access/libv4l_plugin.so
usr/lib/vlc/access/libvcd_plugin.so
#usr/lib/vlc/access_filter
@@ -131,6 +132,7 @@ usr/lib/vlc/demux/librawdv_plugin.so
usr/lib/vlc/demux/libreal_plugin.so
usr/lib/vlc/demux/libsgimb_plugin.so
usr/lib/vlc/demux/libsubtitle_plugin.so
usr/lib/vlc/demux/libts_plugin.so
usr/lib/vlc/demux/libtta_plugin.so
usr/lib/vlc/demux/libty_plugin.so
usr/lib/vlc/demux/libvobsub_plugin.so
@@ -147,6 +149,7 @@ usr/lib/vlc/gui/libncurses_plugin.so
#usr/lib/vlc/libmemcpy3dn.a
#usr/lib/vlc/libmemcpymmx.a
#usr/lib/vlc/libmemcpymmxext.a
#usr/lib/vlc/libmux_ts.a
#usr/lib/vlc/libstream_out_switcher.a
#usr/lib/vlc/misc
usr/lib/vlc/misc/libdummy_plugin.so
@@ -220,6 +223,7 @@ usr/lib/vlc/video_filter/libtime_plugin.so
usr/lib/vlc/video_filter/libtransform_plugin.so
usr/lib/vlc/video_filter/libwall_plugin.so
#usr/lib/vlc/video_output
usr/lib/vlc/video_output/libdirectfb_plugin.so
usr/lib/vlc/video_output/libfb_plugin.so
usr/lib/vlc/video_output/libimage_plugin.so
usr/lib/vlc/video_output/libvout_sdl_plugin.so

View File

@@ -0,0 +1,102 @@
etc/collectd.conf
etc/rc.d/rc0.d/K50collectd
etc/rc.d/rc3.d/S20collectd
etc/rc.d/rc6.d/K50collectd
etc/rc.d/init.d/collectd
#usr/bin/collectd-nagios
#usr/etc/collectd.conf
#usr/lib/collectd
#usr/lib/collectd/apache.la
usr/lib/collectd/apache.so
#usr/lib/collectd/apcups.la
usr/lib/collectd/apcups.so
#usr/lib/collectd/ascent.la
usr/lib/collectd/ascent.so
#usr/lib/collectd/battery.la
usr/lib/collectd/battery.so
#usr/lib/collectd/cpu.la
usr/lib/collectd/cpu.so
#usr/lib/collectd/cpufreq.la
usr/lib/collectd/cpufreq.so
#usr/lib/collectd/df.la
usr/lib/collectd/df.so
#usr/lib/collectd/disk.la
usr/lib/collectd/disk.so
#usr/lib/collectd/dns.la
usr/lib/collectd/dns.so
#usr/lib/collectd/email.la
usr/lib/collectd/email.so
#usr/lib/collectd/entropy.la
usr/lib/collectd/entropy.so
#usr/lib/collectd/exec.la
usr/lib/collectd/exec.so
#usr/lib/collectd/hddtemp.la
usr/lib/collectd/hddtemp.so
#usr/lib/collectd/interface.la
usr/lib/collectd/interface.so
#usr/lib/collectd/iptables.la
usr/lib/collectd/iptables.so
#usr/lib/collectd/irq.la
usr/lib/collectd/irq.so
#usr/lib/collectd/load.la
usr/lib/collectd/load.so
#usr/lib/collectd/logfile.la
usr/lib/collectd/logfile.so
#usr/lib/collectd/memory.la
usr/lib/collectd/memory.so
#usr/lib/collectd/multimeter.la
usr/lib/collectd/multimeter.so
#usr/lib/collectd/network.la
usr/lib/collectd/network.so
#usr/lib/collectd/nfs.la
usr/lib/collectd/nfs.so
#usr/lib/collectd/ntpd.la
usr/lib/collectd/ntpd.so
#usr/lib/collectd/ping.la
usr/lib/collectd/ping.so
#usr/lib/collectd/powerdns.la
usr/lib/collectd/powerdns.so
#usr/lib/collectd/processes.la
usr/lib/collectd/processes.so
#usr/lib/collectd/rrdtool.la
usr/lib/collectd/rrdtool.so
#usr/lib/collectd/sensors.la
usr/lib/collectd/sensors.so
#usr/lib/collectd/swap.la
usr/lib/collectd/swap.so
#usr/lib/collectd/syslog.la
usr/lib/collectd/syslog.so
#usr/lib/collectd/tail.la
usr/lib/collectd/tail.so
#usr/lib/collectd/tcpconns.la
usr/lib/collectd/tcpconns.so
#usr/lib/collectd/teamspeak2.la
usr/lib/collectd/teamspeak2.so
usr/lib/collectd/types.db
#usr/lib/collectd/unixsock.la
usr/lib/collectd/unixsock.so
#usr/lib/collectd/users.la
usr/lib/collectd/users.so
#usr/lib/collectd/uuid.la
usr/lib/collectd/uuid.so
#usr/lib/collectd/vmem.la
usr/lib/collectd/vmem.so
#usr/lib/perl5/site_perl/5.8.8/Collectd
#usr/lib/perl5/site_perl/5.8.8/Collectd.pm
#usr/lib/perl5/site_perl/5.8.8/Collectd/Unixsock.pm
#usr/lib/perl5/site_perl/5.8.8/i586-linux/auto/Collectd
#usr/lib/perl5/site_perl/5.8.8/i586-linux/auto/Collectd/.packlist
usr/sbin/collectd
usr/sbin/collectdmon
#usr/share/man/man1/collectd-nagios.1
#usr/share/man/man1/collectd.1
#usr/share/man/man1/collectdmon.1
#usr/share/man/man3/Collectd::Unixsock.3
#usr/share/man/man5/collectd-email.5
#usr/share/man/man5/collectd-exec.5
#usr/share/man/man5/collectd-perl.5
#usr/share/man/man5/collectd-snmp.5
#usr/share/man/man5/collectd-unixsock.5
#usr/share/man/man5/collectd.conf.5
#usr/share/man/man5/types.db.5
#var/lib/collectd

View File

@@ -1,3 +1,4 @@
opt/pakfire/db/core/mine
etc/init.d/mISDN
etc/modprobe.d/blacklist
usr/bin/bc
@@ -6,7 +7,6 @@ srv/web/ipfire/cgi-bin/pakfire.cgi
srv/web/ipfire/cgi-bin/qos.cgi
srv/web/ipfire/cgi-bin/network.cgi
srv/web/ipfire/cgi-bin/graphs.cgi
srv/web/ipfire/cgi-bin/speed.cgi
var/ipfire/langs
var/ipfire/graphs.pl
usr/share/terminfo/x/xterm-color

View File

@@ -0,0 +1,4 @@
#usr/man/man5/fb.modes.5
#usr/man/man8/fbset.8
usr/sbin/fbset
etc/fb.modes

View File

@@ -0,0 +1 @@
boot/grub/grub.conf

View File

@@ -0,0 +1,87 @@
lib/iptables
#lib/iptables/libipt_CLASSIFY.so
#lib/iptables/libipt_CONNMARK.so
#lib/iptables/libipt_DNAT.so
#lib/iptables/libipt_DSCP.so
#lib/iptables/libipt_ECN.so
#lib/iptables/libipt_LOG.so
#lib/iptables/libipt_MARK.so
#lib/iptables/libipt_MASQUERADE.so
#lib/iptables/libipt_MIRROR.so
#lib/iptables/libipt_NETMAP.so
#lib/iptables/libipt_NFQUEUE.so
#lib/iptables/libipt_NOTRACK.so
#lib/iptables/libipt_REDIRECT.so
#lib/iptables/libipt_REJECT.so
#lib/iptables/libipt_SAME.so
#lib/iptables/libipt_SNAT.so
#lib/iptables/libipt_TARPIT.so
#lib/iptables/libipt_TCPMSS.so
#lib/iptables/libipt_TOS.so
#lib/iptables/libipt_TRACE.so
#lib/iptables/libipt_TTL.so
#lib/iptables/libipt_ULOG.so
#lib/iptables/libipt_addrtype.so
#lib/iptables/libipt_ah.so
#lib/iptables/libipt_comment.so
#lib/iptables/libipt_connlimit.so
#lib/iptables/libipt_connmark.so
#lib/iptables/libipt_conntrack.so
#lib/iptables/libipt_dscp.so
#lib/iptables/libipt_ecn.so
#lib/iptables/libipt_esp.so
#lib/iptables/libipt_hashlimit.so
#lib/iptables/libipt_helper.so
#lib/iptables/libipt_icmp.so
#lib/iptables/libipt_iprange.so
#lib/iptables/libipt_length.so
#lib/iptables/libipt_limit.so
#lib/iptables/libipt_mac.so
#lib/iptables/libipt_mark.so
#lib/iptables/libipt_multiport.so
#lib/iptables/libipt_owner.so
#lib/iptables/libipt_physdev.so
#lib/iptables/libipt_pkttype.so
#lib/iptables/libipt_policy.so
#lib/iptables/libipt_realm.so
#lib/iptables/libipt_rpc.so
#lib/iptables/libipt_sctp.so
#lib/iptables/libipt_standard.so
#lib/iptables/libipt_state.so
#lib/iptables/libipt_tcp.so
#lib/iptables/libipt_tcpmss.so
#lib/iptables/libipt_tos.so
#lib/iptables/libipt_ttl.so
#lib/iptables/libipt_udp.so
#lib/iptables/libipt_unclean.so
sbin/iptables
#sbin/iptables-restore
#sbin/iptables-save
#usr/share/man/man8/iptables-restore.8
#usr/share/man/man8/iptables-save.8
#usr/share/man/man8/iptables.8
#lib/iptables/libipt_IMQ.so
#usr/include/libnetfilter_queue
#usr/include/libnetfilter_queue/libipq.h
#usr/include/libnetfilter_queue/libnetfilter_queue.h
#usr/include/libnetfilter_queue/linux_nfnetlink_queue.h
#usr/include/libnfnetlink
#usr/include/libnfnetlink/libnfnetlink.h
#usr/include/libnfnetlink/linux_nfnetlink.h
#usr/lib/libnetfilter_queue.a
#usr/lib/libnetfilter_queue.la
usr/lib/libnetfilter_queue.so
usr/lib/libnetfilter_queue.so.1
usr/lib/libnetfilter_queue.so.1.1.0
#usr/lib/libnetfilter_queue_libipq.a
#usr/lib/libnetfilter_queue_libipq.la
usr/lib/libnetfilter_queue_libipq.so
usr/lib/libnetfilter_queue_libipq.so.1
usr/lib/libnetfilter_queue_libipq.so.1.0.0
#usr/lib/libnfnetlink.a
#usr/lib/libnfnetlink.la
usr/lib/libnfnetlink.so
usr/lib/libnfnetlink.so.0
usr/lib/libnfnetlink.so.0.2.0
#usr/lib/pkgconfig/libnetfilter_queue.pc
#usr/lib/pkgconfig/libnfnetlink.pc

View File

@@ -0,0 +1,184 @@
#etc/rc.d/init.d/kudzu
#etc/sysconfig/kudzu
sbin/kudzu
#usr/include/kudzu
#usr/include/kudzu/adb.h
#usr/include/kudzu/alias.h
#usr/include/kudzu/ddc.h
#usr/include/kudzu/device.h
#usr/include/kudzu/firewire.h
#usr/include/kudzu/ide.h
#usr/include/kudzu/isapnp.h
#usr/include/kudzu/keyboard.h
#usr/include/kudzu/kudzu.h
#usr/include/kudzu/macio.h
#usr/include/kudzu/misc.h
#usr/include/kudzu/modules.h
#usr/include/kudzu/parallel.h
#usr/include/kudzu/pci.h
#usr/include/kudzu/pcmcia.h
#usr/include/kudzu/psaux.h
#usr/include/kudzu/sbus.h
#usr/include/kudzu/scsi.h
#usr/include/kudzu/serial.h
#usr/include/kudzu/usb.h
#usr/lib/libkudzu.a
#usr/lib/libkudzu_loader.a
#usr/lib/python2.4/site-packages/_kudzumodule.so
#usr/lib/python2.4/site-packages/drv_libxml2.pyc
#usr/lib/python2.4/site-packages/kudzu.py
#usr/lib/python2.4/site-packages/kudzu.pyc
#usr/lib/python2.4/site-packages/libxml2.pyc
#usr/lib/python2.4/site-packages/snack.pyc
usr/sbin/kudzu
#usr/share/locale/ar
#usr/share/locale/ar/LC_MESSAGES
#usr/share/locale/ar/LC_MESSAGES/kudzu.mo
#usr/share/locale/as
#usr/share/locale/as/LC_MESSAGES
#usr/share/locale/as/LC_MESSAGES/kudzu.mo
#usr/share/locale/be/LC_MESSAGES/kudzu.mo
#usr/share/locale/bg
#usr/share/locale/bg/LC_MESSAGES
#usr/share/locale/bg/LC_MESSAGES/kudzu.mo
#usr/share/locale/bn
#usr/share/locale/bn/LC_MESSAGES
#usr/share/locale/bn/LC_MESSAGES/kudzu.mo
#usr/share/locale/bn_IN
#usr/share/locale/bn_IN/LC_MESSAGES
#usr/share/locale/bn_IN/LC_MESSAGES/kudzu.mo
#usr/share/locale/bs
#usr/share/locale/bs/LC_MESSAGES
#usr/share/locale/bs/LC_MESSAGES/kudzu.mo
#usr/share/locale/ca/LC_MESSAGES/kudzu.mo
#usr/share/locale/cs/LC_MESSAGES/kudzu.mo
#usr/share/locale/cy
#usr/share/locale/cy/LC_MESSAGES
#usr/share/locale/cy/LC_MESSAGES/kudzu.mo
#usr/share/locale/da/LC_MESSAGES/kudzu.mo
#usr/share/locale/de/LC_MESSAGES/kudzu.mo
#usr/share/locale/el/LC_MESSAGES/kudzu.mo
#usr/share/locale/en_GB/LC_MESSAGES/kudzu.mo
#usr/share/locale/es/LC_MESSAGES/kudzu.mo
#usr/share/locale/et/LC_MESSAGES/kudzu.mo
#usr/share/locale/eu_ES
#usr/share/locale/eu_ES/LC_MESSAGES
#usr/share/locale/eu_ES/LC_MESSAGES/kudzu.mo
#usr/share/locale/fi/LC_MESSAGES/kudzu.mo
#usr/share/locale/fr/LC_MESSAGES/kudzu.mo
#usr/share/locale/gl/LC_MESSAGES/kudzu.mo
#usr/share/locale/gu
#usr/share/locale/gu/LC_MESSAGES
#usr/share/locale/gu/LC_MESSAGES/kudzu.mo
#usr/share/locale/he
#usr/share/locale/he/LC_MESSAGES
#usr/share/locale/he/LC_MESSAGES/kudzu.mo
#usr/share/locale/hi
#usr/share/locale/hi/LC_MESSAGES
#usr/share/locale/hi/LC_MESSAGES/kudzu.mo
#usr/share/locale/hr/LC_MESSAGES/kudzu.mo
#usr/share/locale/hu/LC_MESSAGES/kudzu.mo
#usr/share/locale/hy
#usr/share/locale/hy/LC_MESSAGES
#usr/share/locale/hy/LC_MESSAGES/kudzu.mo
#usr/share/locale/id
#usr/share/locale/id/LC_MESSAGES
#usr/share/locale/id/LC_MESSAGES/kudzu.mo
#usr/share/locale/ilo
#usr/share/locale/ilo/LC_MESSAGES
#usr/share/locale/ilo/LC_MESSAGES/kudzu.mo
#usr/share/locale/is
#usr/share/locale/is/LC_MESSAGES
#usr/share/locale/is/LC_MESSAGES/kudzu.mo
#usr/share/locale/it/LC_MESSAGES/kudzu.mo
#usr/share/locale/ja/LC_MESSAGES/kudzu.mo
#usr/share/locale/ka
#usr/share/locale/ka/LC_MESSAGES
#usr/share/locale/ka/LC_MESSAGES/kudzu.mo
#usr/share/locale/kn
#usr/share/locale/kn/LC_MESSAGES
#usr/share/locale/kn/LC_MESSAGES/kudzu.mo
#usr/share/locale/ko/LC_MESSAGES/kudzu.mo
#usr/share/locale/ku
#usr/share/locale/ku/LC_MESSAGES
#usr/share/locale/ku/LC_MESSAGES/kudzu.mo
#usr/share/locale/lo
#usr/share/locale/lo/LC_MESSAGES
#usr/share/locale/lo/LC_MESSAGES/kudzu.mo
#usr/share/locale/lt
#usr/share/locale/lt/LC_MESSAGES
#usr/share/locale/lt/LC_MESSAGES/kudzu.mo
#usr/share/locale/lv
#usr/share/locale/lv/LC_MESSAGES
#usr/share/locale/lv/LC_MESSAGES/kudzu.mo
#usr/share/locale/mk
#usr/share/locale/mk/LC_MESSAGES
#usr/share/locale/mk/LC_MESSAGES/kudzu.mo
#usr/share/locale/ml
#usr/share/locale/ml/LC_MESSAGES
#usr/share/locale/ml/LC_MESSAGES/kudzu.mo
#usr/share/locale/mr
#usr/share/locale/mr/LC_MESSAGES
#usr/share/locale/mr/LC_MESSAGES/kudzu.mo
#usr/share/locale/ms
#usr/share/locale/ms/LC_MESSAGES
#usr/share/locale/ms/LC_MESSAGES/kudzu.mo
#usr/share/locale/my
#usr/share/locale/my/LC_MESSAGES
#usr/share/locale/my/LC_MESSAGES/kudzu.mo
#usr/share/locale/nb/LC_MESSAGES/kudzu.mo
#usr/share/locale/nl/LC_MESSAGES/kudzu.mo
#usr/share/locale/nn
#usr/share/locale/nn/LC_MESSAGES
#usr/share/locale/nn/LC_MESSAGES/kudzu.mo
#usr/share/locale/no
#usr/share/locale/no/LC_MESSAGES
#usr/share/locale/no/LC_MESSAGES/kudzu.mo
#usr/share/locale/or
#usr/share/locale/or/LC_MESSAGES
#usr/share/locale/or/LC_MESSAGES/kudzu.mo
#usr/share/locale/pa
#usr/share/locale/pa/LC_MESSAGES
#usr/share/locale/pa/LC_MESSAGES/kudzu.mo
#usr/share/locale/pl/LC_MESSAGES/kudzu.mo
#usr/share/locale/pt
#usr/share/locale/pt/LC_MESSAGES
#usr/share/locale/pt/LC_MESSAGES/kudzu.mo
#usr/share/locale/pt_BR/LC_MESSAGES/kudzu.mo
#usr/share/locale/ro/LC_MESSAGES/kudzu.mo
#usr/share/locale/ru/LC_MESSAGES/kudzu.mo
#usr/share/locale/si
#usr/share/locale/si/LC_MESSAGES
#usr/share/locale/si/LC_MESSAGES/kudzu.mo
#usr/share/locale/sk/LC_MESSAGES/kudzu.mo
#usr/share/locale/sl/LC_MESSAGES/kudzu.mo
#usr/share/locale/sq
#usr/share/locale/sq/LC_MESSAGES
#usr/share/locale/sq/LC_MESSAGES/kudzu.mo
#usr/share/locale/sr
#usr/share/locale/sr/LC_MESSAGES
#usr/share/locale/sr/LC_MESSAGES/kudzu.mo
#usr/share/locale/sr@Latn
#usr/share/locale/sr@Latn/LC_MESSAGES
#usr/share/locale/sr@Latn/LC_MESSAGES/kudzu.mo
#usr/share/locale/sv/LC_MESSAGES/kudzu.mo
#usr/share/locale/ta
#usr/share/locale/ta/LC_MESSAGES
#usr/share/locale/ta/LC_MESSAGES/kudzu.mo
#usr/share/locale/te
#usr/share/locale/te/LC_MESSAGES
#usr/share/locale/te/LC_MESSAGES/kudzu.mo
#usr/share/locale/tr/LC_MESSAGES/kudzu.mo
#usr/share/locale/uk/LC_MESSAGES/kudzu.mo
#usr/share/locale/ur
#usr/share/locale/ur/LC_MESSAGES
#usr/share/locale/ur/LC_MESSAGES/kudzu.mo
#usr/share/locale/vi
#usr/share/locale/vi/LC_MESSAGES
#usr/share/locale/vi/LC_MESSAGES/kudzu.mo
#usr/share/locale/wa
#usr/share/locale/wa/LC_MESSAGES
#usr/share/locale/wa/LC_MESSAGES/kudzu.mo
#usr/share/locale/zh_CN/LC_MESSAGES/kudzu.mo
#usr/share/locale/zh_TW/LC_MESSAGES/kudzu.mo
#usr/share/man/man8/kudzu.8

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,24 @@
etc/sensors3.conf
usr/bin/sensors
usr/bin/sensors-conf-convert
#usr/include/sensors
#usr/include/sensors/error.h
#usr/include/sensors/sensors.h
#usr/lib/libsensors.a
usr/lib/libsensors.so
usr/lib/libsensors.so.4
usr/lib/libsensors.so.4.0.2
#usr/man/man1/sensors.1
#usr/man/man3
#usr/man/man3/libsensors.3
#usr/man/man5/sensors.conf.5
#usr/man/man8/fancontrol.8
#usr/man/man8/isadump.8
#usr/man/man8/isaset.8
#usr/man/man8/pwmconfig.8
#usr/local/man/man8/sensors-detect.8
usr/sbin/fancontrol
usr/sbin/isadump
usr/sbin/isaset
usr/sbin/pwmconfig
usr/sbin/sensors-detect

View File

@@ -0,0 +1,34 @@
etc/madwifi.conf
#lib/modules/2.6.20.21-ipfire/net
#lib/modules/2.6.20.21-ipfire/net/ath_hal.ko
#lib/modules/2.6.20.21-ipfire/net/ath_pci.ko
#lib/modules/2.6.20.21-ipfire/net/ath_rate_amrr.ko
#lib/modules/2.6.20.21-ipfire/net/ath_rate_minstrel.ko
#lib/modules/2.6.20.21-ipfire/net/ath_rate_onoe.ko
#lib/modules/2.6.20.21-ipfire/net/ath_rate_sample.ko
#lib/modules/2.6.20.21-ipfire/net/wlan.ko
#lib/modules/2.6.20.21-ipfire/net/wlan_acl.ko
#lib/modules/2.6.20.21-ipfire/net/wlan_ccmp.ko
#lib/modules/2.6.20.21-ipfire/net/wlan_scan_ap.ko
#lib/modules/2.6.20.21-ipfire/net/wlan_scan_sta.ko
#lib/modules/2.6.20.21-ipfire/net/wlan_tkip.ko
#lib/modules/2.6.20.21-ipfire/net/wlan_wep.ko
#lib/modules/2.6.20.21-ipfire/net/wlan_xauth.ko
usr/local/bin/80211debug
usr/local/bin/80211stats
usr/local/bin/ath_info
usr/local/bin/athchans
usr/local/bin/athctrl
usr/local/bin/athdebug
usr/local/bin/athkey
usr/local/bin/athstats
usr/local/bin/wlanconfig
#usr/local/man/man8/80211debug.8
#usr/local/man/man8/80211stats.8
#usr/local/man/man8/ath_info.8
#usr/local/man/man8/athchans.8
#usr/local/man/man8/athctrl.8
#usr/local/man/man8/athdebug.8
#usr/local/man/man8/athkey.8
#usr/local/man/man8/athstats.8
#usr/local/man/man8/wlanconfig.8

View File

@@ -0,0 +1,304 @@
etc/ipsec.conf
#etc/ipsec.d
etc/ipsec.d/aacerts
etc/ipsec.d/cacerts
etc/ipsec.d/certs
etc/ipsec.d/crls
#etc/ipsec.d/examples
#etc/ipsec.d/examples/l2tp-cert-orgWIN2KXP.conf
#etc/ipsec.d/examples/l2tp-cert.conf
#etc/ipsec.d/examples/l2tp-psk-orgWIN2KXP.conf
#etc/ipsec.d/examples/l2tp-psk.conf
#etc/ipsec.d/examples/linux-linux.conf
#etc/ipsec.d/examples/no_oe.conf
#etc/ipsec.d/examples/sysctl.conf
etc/ipsec.d/ocspcerts
etc/ipsec.d/policies
#etc/ipsec.d/policies/block
#etc/ipsec.d/policies/clear
#etc/ipsec.d/policies/clear-or-private
#etc/ipsec.d/policies/private
#etc/ipsec.d/policies/private-or-clear
etc/ipsec.d/private
etc/ipsec.secrets
#etc/rc.d/init.d/ipsec.old
#etc/rc.d/rc0.d/K76ipsec
#etc/rc.d/rc1.d
#etc/rc.d/rc1.d/K76ipsec
#etc/rc.d/rc2.d
#etc/rc.d/rc2.d/S47ipsec
#etc/rc.d/rc3.d/S47ipsec
#etc/rc.d/rc4.d
#etc/rc.d/rc4.d/S47ipsec
#etc/rc.d/rc5.d
#etc/rc.d/rc5.d/S47ipsec
#etc/rc.d/rc6.d/K76ipsec
usr/lib/ipsec
#usr/lib/ipsec/_confread
#usr/lib/ipsec/_copyright
#usr/lib/ipsec/_include
#usr/lib/ipsec/_keycensor
#usr/lib/ipsec/_plutoload
#usr/lib/ipsec/_plutorun
#usr/lib/ipsec/_realsetup
#usr/lib/ipsec/_secretcensor
#usr/lib/ipsec/_startklips
#usr/lib/ipsec/_updown
#usr/lib/ipsec/_updown_x509
usr/libexec/ipsec
#usr/libexec/ipsec/_pluto_adns
#usr/libexec/ipsec/auto
#usr/libexec/ipsec/barf
#usr/libexec/ipsec/calcgoo
#usr/libexec/ipsec/eroute
#usr/libexec/ipsec/ikeping
#usr/libexec/ipsec/klipsdebug
#usr/libexec/ipsec/livetest
#usr/libexec/ipsec/look
#usr/libexec/ipsec/mailkey
#usr/libexec/ipsec/manual
#usr/libexec/ipsec/newhostkey
#usr/libexec/ipsec/pf_key
#usr/libexec/ipsec/pluto
#usr/libexec/ipsec/ranbits
#usr/libexec/ipsec/rsasigkey
#usr/libexec/ipsec/secrets
#usr/libexec/ipsec/setup
#usr/libexec/ipsec/showdefaults
#usr/libexec/ipsec/showhostkey
#usr/libexec/ipsec/spi
#usr/libexec/ipsec/spigrp
#usr/libexec/ipsec/tncfg
#usr/libexec/ipsec/verify
#usr/libexec/ipsec/whack
#usr/man/man3/ipsec_addrbytesof.3
#usr/man/man3/ipsec_addrbytesptr.3
#usr/man/man3/ipsec_addrcmp.3
#usr/man/man3/ipsec_addrinsubnet.3
#usr/man/man3/ipsec_addrlenof.3
#usr/man/man3/ipsec_addrtoa.3
#usr/man/man3/ipsec_addrtosubnet.3
#usr/man/man3/ipsec_addrtot.3
#usr/man/man3/ipsec_addrtypeof.3
#usr/man/man3/ipsec_anyaddr.3
#usr/man/man3/ipsec_atoaddr.3
#usr/man/man3/ipsec_atoasr.3
#usr/man/man3/ipsec_atosubnet.3
#usr/man/man3/ipsec_atoul.3
#usr/man/man3/ipsec_bitstomask.3
#usr/man/man3/ipsec_broadcastof.3
#usr/man/man3/ipsec_copyright_notice.3
#usr/man/man3/ipsec_datatot.3
#usr/man/man3/ipsec_goodmask.3
#usr/man/man3/ipsec_hostof.3
#usr/man/man3/ipsec_initaddr.3
#usr/man/man3/ipsec_initsaid.3
#usr/man/man3/ipsec_initsubnet.3
#usr/man/man3/ipsec_isanyaddr.3
#usr/man/man3/ipsec_isloopbackaddr.3
#usr/man/man3/ipsec_isunspecaddr.3
#usr/man/man3/ipsec_loopbackaddr.3
#usr/man/man3/ipsec_maskof.3
#usr/man/man3/ipsec_masktobits.3
#usr/man/man3/ipsec_masktocount.3
#usr/man/man3/ipsec_networkof.3
#usr/man/man3/ipsec_optionsfrom.3
#usr/man/man3/ipsec_portof.3
#usr/man/man3/ipsec_rangetoa.3
#usr/man/man3/ipsec_rangetosubnet.3
#usr/man/man3/ipsec_sameaddr.3
#usr/man/man3/ipsec_sameaddrtype.3
#usr/man/man3/ipsec_samesaid.3
#usr/man/man3/ipsec_samesubnet.3
#usr/man/man3/ipsec_samesubnettype.3
#usr/man/man3/ipsec_satot.3
#usr/man/man3/ipsec_setportof.3
#usr/man/man3/ipsec_sockaddrlenof.3
#usr/man/man3/ipsec_sockaddrof.3
#usr/man/man3/ipsec_subnetinsubnet.3
#usr/man/man3/ipsec_subnetishost.3
#usr/man/man3/ipsec_subnetof.3
#usr/man/man3/ipsec_subnettoa.3
#usr/man/man3/ipsec_subnettot.3
#usr/man/man3/ipsec_subnettypeof.3
#usr/man/man3/ipsec_tnatoaddr.3
#usr/man/man3/ipsec_ttoaddr.3
#usr/man/man3/ipsec_ttodata.3
#usr/man/man3/ipsec_ttosa.3
#usr/man/man3/ipsec_ttosubnet.3
#usr/man/man3/ipsec_ttoul.3
#usr/man/man3/ipsec_ultoa.3
#usr/man/man3/ipsec_ultot.3
#usr/man/man3/ipsec_unspecaddr.3
#usr/man/man3/ipsec_version.3
#usr/man/man3/ipsec_version_code.3
#usr/man/man3/ipsec_version_string.3
#usr/man/man5/ipsec.conf.5
#usr/man/man5/ipsec.secrets.5
#usr/man/man5/ipsec_eroute.5
#usr/man/man5/ipsec_klipsdebug.5
#usr/man/man5/ipsec_spi.5
#usr/man/man5/ipsec_spigrp.5
#usr/man/man5/ipsec_tncfg.5
#usr/man/man5/ipsec_trap_count.5
#usr/man/man5/ipsec_trap_sendcount.5
#usr/man/man5/ipsec_version.5
#usr/man/man5/pf_key.5
#usr/man/man8/ipsec.8
#usr/man/man8/ipsec__confread.8
#usr/man/man8/ipsec__copyright.8
#usr/man/man8/ipsec__include.8
#usr/man/man8/ipsec__keycensor.8
#usr/man/man8/ipsec__plutoload.8
#usr/man/man8/ipsec__plutorun.8
#usr/man/man8/ipsec__realsetup.8
#usr/man/man8/ipsec__secretcensor.8
#usr/man/man8/ipsec__startklips.8
#usr/man/man8/ipsec__updown.8
#usr/man/man8/ipsec__updown_x509.8
#usr/man/man8/ipsec_auto.8
#usr/man/man8/ipsec_barf.8
#usr/man/man8/ipsec_calcgoo.8
#usr/man/man8/ipsec_eroute.8
#usr/man/man8/ipsec_ikeping.8
#usr/man/man8/ipsec_klipsdebug.8
#usr/man/man8/ipsec_livetest.8
#usr/man/man8/ipsec_look.8
#usr/man/man8/ipsec_mailkey.8
#usr/man/man8/ipsec_manual.8
#usr/man/man8/ipsec_newhostkey.8
#usr/man/man8/ipsec_pf_key.8
#usr/man/man8/ipsec_pluto.8
#usr/man/man8/ipsec_ranbits.8
#usr/man/man8/ipsec_rsasigkey.8
#usr/man/man8/ipsec_secrets.8
#usr/man/man8/ipsec_setup.8
#usr/man/man8/ipsec_showdefaults.8
#usr/man/man8/ipsec_showhostkey.8
#usr/man/man8/ipsec_spi.8
#usr/man/man8/ipsec_spigrp.8
#usr/man/man8/ipsec_tncfg.8
#usr/man/man8/ipsec_verify.8
usr/sbin/ipsec
#usr/share/doc/openswan
#usr/share/doc/openswan/index.html
#usr/share/doc/openswan/ipsec.8.html
#usr/share/doc/openswan/ipsec.conf-sample
#usr/share/doc/openswan/ipsec.conf.5.html
#usr/share/doc/openswan/ipsec.secrets.5.html
#usr/share/doc/openswan/ipsec__confread.8.html
#usr/share/doc/openswan/ipsec__copyright.8.html
#usr/share/doc/openswan/ipsec__include.8.html
#usr/share/doc/openswan/ipsec__keycensor.8.html
#usr/share/doc/openswan/ipsec__plutoload.8.html
#usr/share/doc/openswan/ipsec__plutorun.8.html
#usr/share/doc/openswan/ipsec__realsetup.8.html
#usr/share/doc/openswan/ipsec__secretcensor.8.html
#usr/share/doc/openswan/ipsec__startklips.8.html
#usr/share/doc/openswan/ipsec__updown.8.html
#usr/share/doc/openswan/ipsec__updown_x509.8.html
#usr/share/doc/openswan/ipsec_addrbytesof.3.html
#usr/share/doc/openswan/ipsec_addrbytesptr.3.html
#usr/share/doc/openswan/ipsec_addrcmp.3.html
#usr/share/doc/openswan/ipsec_addrinsubnet.3.html
#usr/share/doc/openswan/ipsec_addrlenof.3.html
#usr/share/doc/openswan/ipsec_addrtoa.3.html
#usr/share/doc/openswan/ipsec_addrtosubnet.3.html
#usr/share/doc/openswan/ipsec_addrtot.3.html
#usr/share/doc/openswan/ipsec_addrtypeof.3.html
#usr/share/doc/openswan/ipsec_anyaddr.3.html
#usr/share/doc/openswan/ipsec_atoaddr.3.html
#usr/share/doc/openswan/ipsec_atoasr.3.html
#usr/share/doc/openswan/ipsec_atosubnet.3.html
#usr/share/doc/openswan/ipsec_atoul.3.html
#usr/share/doc/openswan/ipsec_auto.8.html
#usr/share/doc/openswan/ipsec_barf.8.html
#usr/share/doc/openswan/ipsec_bitstomask.3.html
#usr/share/doc/openswan/ipsec_broadcastof.3.html
#usr/share/doc/openswan/ipsec_calcgoo.8.html
#usr/share/doc/openswan/ipsec_copyright_notice.3.html
#usr/share/doc/openswan/ipsec_datatot.3.html
#usr/share/doc/openswan/ipsec_eroute.5.html
#usr/share/doc/openswan/ipsec_eroute.8.html
#usr/share/doc/openswan/ipsec_goodmask.3.html
#usr/share/doc/openswan/ipsec_hostof.3.html
#usr/share/doc/openswan/ipsec_ikeping.8.html
#usr/share/doc/openswan/ipsec_initaddr.3.html
#usr/share/doc/openswan/ipsec_initsaid.3.html
#usr/share/doc/openswan/ipsec_initsubnet.3.html
#usr/share/doc/openswan/ipsec_isanyaddr.3.html
#usr/share/doc/openswan/ipsec_isloopbackaddr.3.html
#usr/share/doc/openswan/ipsec_isunspecaddr.3.html
#usr/share/doc/openswan/ipsec_keyblobtoid.3.html
#usr/share/doc/openswan/ipsec_klipsdebug.5.html
#usr/share/doc/openswan/ipsec_klipsdebug.8.html
#usr/share/doc/openswan/ipsec_livetest.8.html
#usr/share/doc/openswan/ipsec_look.8.html
#usr/share/doc/openswan/ipsec_loopbackaddr.3.html
#usr/share/doc/openswan/ipsec_lwdnsq.8.html
#usr/share/doc/openswan/ipsec_mailkey.8.html
#usr/share/doc/openswan/ipsec_manual.8.html
#usr/share/doc/openswan/ipsec_maskof.3.html
#usr/share/doc/openswan/ipsec_masktobits.3.html
#usr/share/doc/openswan/ipsec_masktocount.3.html
#usr/share/doc/openswan/ipsec_networkof.3.html
#usr/share/doc/openswan/ipsec_newhostkey.8.html
#usr/share/doc/openswan/ipsec_optionsfrom.3.html
#usr/share/doc/openswan/ipsec_pf_key.5.html
#usr/share/doc/openswan/ipsec_pf_key.8.html
#usr/share/doc/openswan/ipsec_pluto.8.html
#usr/share/doc/openswan/ipsec_portof.3.html
#usr/share/doc/openswan/ipsec_prng.3.html
#usr/share/doc/openswan/ipsec_prng_bytes.3.html
#usr/share/doc/openswan/ipsec_prng_final.3.html
#usr/share/doc/openswan/ipsec_prng_init.3.html
#usr/share/doc/openswan/ipsec_ranbits.8.html
#usr/share/doc/openswan/ipsec_rangetoa.3.html
#usr/share/doc/openswan/ipsec_rangetosubnet.3.html
#usr/share/doc/openswan/ipsec_rsasigkey.8.html
#usr/share/doc/openswan/ipsec_sameaddr.3.html
#usr/share/doc/openswan/ipsec_sameaddrtype.3.html
#usr/share/doc/openswan/ipsec_samesaid.3.html
#usr/share/doc/openswan/ipsec_samesubnet.3.html
#usr/share/doc/openswan/ipsec_samesubnettype.3.html
#usr/share/doc/openswan/ipsec_satot.3.html
#usr/share/doc/openswan/ipsec_secrets.8.html
#usr/share/doc/openswan/ipsec_send-pr.8.html
#usr/share/doc/openswan/ipsec_setportof.3.html
#usr/share/doc/openswan/ipsec_setup.8.html
#usr/share/doc/openswan/ipsec_showdefaults.8.html
#usr/share/doc/openswan/ipsec_showhostkey.8.html
#usr/share/doc/openswan/ipsec_showpolicy.8.html
#usr/share/doc/openswan/ipsec_sockaddrlenof.3.html
#usr/share/doc/openswan/ipsec_sockaddrof.3.html
#usr/share/doc/openswan/ipsec_spi.5.html
#usr/share/doc/openswan/ipsec_spi.8.html
#usr/share/doc/openswan/ipsec_spigrp.5.html
#usr/share/doc/openswan/ipsec_spigrp.8.html
#usr/share/doc/openswan/ipsec_splitkeytoid.3.html
#usr/share/doc/openswan/ipsec_starter.8.html
#usr/share/doc/openswan/ipsec_subnetinsubnet.3.html
#usr/share/doc/openswan/ipsec_subnetishost.3.html
#usr/share/doc/openswan/ipsec_subnetof.3.html
#usr/share/doc/openswan/ipsec_subnettoa.3.html
#usr/share/doc/openswan/ipsec_subnettot.3.html
#usr/share/doc/openswan/ipsec_subnettypeof.3.html
#usr/share/doc/openswan/ipsec_tnatoaddr.3.html
#usr/share/doc/openswan/ipsec_tncfg.5.html
#usr/share/doc/openswan/ipsec_tncfg.8.html
#usr/share/doc/openswan/ipsec_trap_count.5.html
#usr/share/doc/openswan/ipsec_trap_sendcount.5.html
#usr/share/doc/openswan/ipsec_ttoaddr.3.html
#usr/share/doc/openswan/ipsec_ttodata.3.html
#usr/share/doc/openswan/ipsec_ttosa.3.html
#usr/share/doc/openswan/ipsec_ttosubnet.3.html
#usr/share/doc/openswan/ipsec_ttoul.3.html
#usr/share/doc/openswan/ipsec_ultoa.3.html
#usr/share/doc/openswan/ipsec_ultot.3.html
#usr/share/doc/openswan/ipsec_unspecaddr.3.html
#usr/share/doc/openswan/ipsec_verify.8.html
#usr/share/doc/openswan/ipsec_version.3.html
#usr/share/doc/openswan/ipsec_version.5.html
#usr/share/doc/openswan/ipsec_version_code.3.html
#usr/share/doc/openswan/ipsec_version_string.3.html
var/run/pluto

View File

@@ -0,0 +1,15 @@
etc/udev/dvb.sh
etc/udev/rules.d/10-dvb.rules
etc/udev/rules.d/55-scsi-cdrom.rules
etc/rc.d/init.d/network
etc/rc.d/init.d/networking/any
etc/rc.d/init.d/networking/red
etc/rc.d/init.d/networking/red.up/40-ipac
usr/local/bin/getiptstate
usr/local/bin/makegraphs
srv/web/ipfire/cgi-bin/speed.cgi
srv/web/ipfire/cgi-bin/traffic.cgi
srv/web/ipfire/cgi-bin/hardwaregraphs.cgi
srv/web/ipfire/cgi-bin/connections.cgi
var/ipfire/sensors/
var/ipfire/graphs.pl

View File

@@ -0,0 +1,9 @@
#etc/pcmcia
etc/pcmcia/config.opts
etc/udev/rules.d/60-pcmcia.rules
sbin/lspcmcia
sbin/pccardctl
sbin/pcmcia-check-broken-cis
sbin/pcmcia-socket-startup
#usr/share/man/man8/lspcmcia.8
#usr/share/man/man8/pccardctl.8

View File

@@ -0,0 +1,6 @@
#/etc/cron.d
#/etc/cron.d/vnstat
etc/vnstat.conf
usr/bin/vnstat
#usr/share/man/man1/vnstat.1
var/log/vnstat

View File

@@ -0,0 +1,2 @@
usr/bin/vnstati
#usr/share/man/man1/vnstati.1.gz

View File

@@ -0,0 +1,3 @@
usr/sbin/wpa_cli
usr/sbin/wpa_passphrase
usr/sbin/wpa_supplicant

View File

@@ -0,0 +1,126 @@
#!/bin/bash
############################################################################
# #
# This file is part of the IPFire Firewall. #
# #
# IPFire is free software; you can redistribute it and/or modify #
# it under the terms of the GNU General Public License as published by #
# the Free Software Foundation; either version 2 of the License, or #
# (at your option) any later version. #
# #
# IPFire is distributed in the hope that it will be useful, #
# but WITHOUT ANY WARRANTY; without even the implied warranty of #
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
# GNU General Public License for more details. #
# #
# You should have received a copy of the GNU General Public License #
# along with IPFire; if not, write to the Free Software #
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA #
# #
# Copyright (C) 2007 IPFire-Team <info@ipfire.org>. #
# #
############################################################################
#
#
OLDVERSION="2.1.1"
NEWVERSION="2.2-test"
CORE="14"
KVER="2.6.20.21"
ROOT=`grep "root=" /boot/grub/grub.conf | cut -d"=" -f2 | cut -d" " -f1 | tail -n 1`
MOUNT=`grep "kernel" /boot/grub/grub.conf | tail -n 1`
# Nur den letzten Parameter verwenden
echo $MOUNT > /dev/null
MOUNT=$_
INSTALLEDVERSION=`grep "version = " /opt/pakfire/etc/pakfire.conf | cut -d'"' -f2`
INSTALLEDCORE=`cat /opt/pakfire/db/core/mine`
OLDKERNEL=`ls /boot/vmlinuz-*-ipfire | cut -d"-" -f2 | tail -n 1`
#
# check version
#
if [ ! "$INSTALLEDVERSION" == "$OLDVERSION" ]; then
echo Error! This update is only for IPFire $OLDVERSION Core $CORE
echo You have installed IPFire $INSTALLEDVERSION Core $INSTALLEDCORE
exit 1
fi
# check core
if [ ! "$INSTALLEDCORE" == "$CORE" ]; then
echo Error! This update is only for IPFire $OLDVERSION Core $CORE
echo You have installed IPFire $INSTALLEDVERSION Core $INSTALLEDCORE
exit 2
fi
#
#
echo
echo Update IPFire $OLDVERSION to $NEWVERSION
echo
echo Press Enter to begin.
read
echo
#
# check if we the backup file already exist
if [ -e /var/ipfire/backup/update_$OLDVERSION-$NEWVERSION.tar.bz2 ]; then
echo Error! The backupfile of this update already exist!!!
echo Have you already installed this update?
exit 3
fi
echo First we made a backup of all files that was inside of the
echo update archive. This may take a while ...
tar cjvf /var/ipfire/backup/update_$OLDVERSION-$NEWVERSION.tar.bz2 \
-T ROOTFILES --exclude='#*' -C / > /dev/null 2>&1
echo
echo Update IPfire to $NEWVERSON ...
#
# Backup the old grub config
#
mv /boot/grub/grub.conf /boot/grub/grub-old.conf
#
# Unpack the updated files
#
echo
echo Unpack the updated files ...
tar xjvf files.ipfire -C /
#
# Modify grub.conf
#
echo
echo Update grub configuration ...
sed -i "s|ROOT|$ROOT|g" /boot/grub/grub.conf
sed -i "s|KVER|$KVER|g" /boot/grub/grub.conf
sed -i "s|MOUNT|$MOUNT|g" /boot/grub/grub.conf
echo "title Old Kernel" >> /boot/grub/grub.conf
echo " configfile /grub/grub-old.conf" >> /boot/grub/grub.conf
sed -i "s|/vmlinuz-ipfire|/vmlinuz-$OLDKERNEL-ipfire|g" /boot/grub/grub-old.conf
#
# Made initramdisk
#
echo
echo Create new Initramdisks ...
if [ "${ROOT:0:7}" == "/dev/sd" ]; then
# Remove ide hook if root is on sda
sed -i "s| ide | |g" /etc/mkinitcpio.conf
else
if [ "${ROOT:0:7}" == "/dev/hd" ]; then
# Remove pata hook if root is on hda
sed -i "s| pata | |g" /etc/mkinitcpio.conf
fi
fi
mkinitcpio -k $KVER-ipfire -g /boot/ipfirerd-$KVER.img
mkinitcpio -k $KVER-ipfire-smp -g /boot/ipfirerd-$KVER-smp.img
#
# Change version of Pakfire.conf
#
sed -i "s|$OLDVERSION|$NEWVERSION|g" /opt/pakfire/etc/pakfire.conf
#
# Create new issue
#
echo IPFire v$NEWVERSION - www.ipfire.org > /etc/issue
echo =================================== >> /etc/issue
echo \\n running on \\s \\r \\m >> /etc/issue
# Core 15 begin
perl -e "require '/var/ipfire/lang.pl'; &Lang::BuildCacheLang"
/etc/init.d/mISDN config
# Core 15 end
echo
echo
echo Update to IPFire $NEWVERSION finished. Please reboot...
echo

View File

@@ -0,0 +1,2 @@
# SCSI devices
BUS=="scsi", KERNEL=="sr[0-9]*", NAME="scd%n", SYMLINK+="sr%n"

Some files were not shown because too many files have changed in this diff Show More