mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-04-09 18:45:54 +02:00
Merge branch 'next'
Conflicts: config/rootfiles/core/37/filelists/files config/rootfiles/packages/gutenprint doc/packages-list.txt src/pakfire/lib/functions.sh
This commit is contained in:
@@ -61,11 +61,11 @@ elsif ($ARGV[0] eq 'exclude') {
|
||||
system("rm /tmp/include");
|
||||
}
|
||||
elsif ($ARGV[0] eq 'restore') {
|
||||
system("cd / && tar -xvz --preserve -f /tmp/restore.ipf");
|
||||
system("cd / && tar -xvz -p -f /tmp/restore.ipf");
|
||||
}
|
||||
elsif ($ARGV[0] eq 'restoreaddon') {
|
||||
if ( -e "/tmp/$ARGV[1]" ){system("mv /tmp/$ARGV[1] /var/ipfire/backup/addons/backup/$ARGV[1]");}
|
||||
system("cd / && tar -xvz --preserve -f /var/ipfire/backup/addons/backup/$ARGV[1]");
|
||||
system("cd / && tar -xvz -p -f /var/ipfire/backup/addons/backup/$ARGV[1]");
|
||||
}
|
||||
elsif ($ARGV[0] eq 'cli') {
|
||||
system("tar -cvzf /var/ipfire/backup/$Jahr$Monat$Monatstag-$Stunden$Minuten-$ARGV[1].ipf --files-from='$ARGV[2]' --exclude-from='$ARGV[3]'");
|
||||
|
||||
@@ -494,3 +494,29 @@ sub leasesort {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
sub colorize {
|
||||
my $string = $_[0];
|
||||
my @array = split(/\//,$string);
|
||||
my $string2 = $array[0];
|
||||
|
||||
if ( $string eq "*" or $string eq "" ){
|
||||
return $string;
|
||||
} elsif ( $string =~ "ipsec" ){
|
||||
return "<font color='".${Header::colourvpn}."'>".$string."</font>";
|
||||
} elsif ( $string =~ "tun" ){
|
||||
return "<font color='".${Header::colourovpn}."'>".$string."</font>";
|
||||
} elsif ( $string =~ "lo" or $string =~ "127.0.0.0" ){
|
||||
return "<font color='".${Header::colourfw}."'>".$string."</font>";
|
||||
} elsif ( $string =~ $ethsettings{'GREEN_DEV'} or &IpInSubnet($string2,$ethsettings{'GREEN_NETADDRESS'},$ethsettings{'GREEN_NETMASK'}) ){
|
||||
return "<font color='".${Header::colourgreen}."'>".$string."</font>";
|
||||
} elsif ( $string =~ "ppp0" or $string =~ $ethsettings{'RED_DEV'} or $string =~ "0.0.0.0" or $string =~ $ethsettings{'RED_ADDRESS'} ){
|
||||
return "<font color='".${Header::colourred}."'>".$string."</font>";
|
||||
} elsif ( $ethsettings{'CONFIG_TYPE'}>1 and ( $string =~ $ethsettings{'BLUE_DEV'} or &IpInSubnet($string2,$ethsettings{'BLUE_NETADDRESS'},$ethsettings{'BLUE_NETMASK'}) )){
|
||||
return "<font color='".${Header::colourblue}."'>".$string."</font>";
|
||||
} elsif ( $ethsettings{'CONFIG_TYPE'}>2 and ( $string =~ $ethsettings{'ORANGE_DEV'} or &IpInSubnet($string2,$ethsettings{'ORANGE_NETADDRESS'},$ethsettings{'ORANGE_NETMASK'}) )){
|
||||
return "<font color='".${Header::colourorange}."'>".$string."</font>";
|
||||
} else {
|
||||
return $string;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -8,7 +8,7 @@ Hostname "localhost"
|
||||
BaseDir "/var/log/rrd/collectd"
|
||||
PIDFile "/var/run/collectd.pid"
|
||||
PluginDir "/usr/lib/collectd"
|
||||
TypesDB "/usr/lib/collectd/types.db"
|
||||
TypesDB "/usr/share/collectd/types.db"
|
||||
Interval 30
|
||||
ReadThreads 3
|
||||
|
||||
|
||||
2
config/etc/modprobe.d/cfg80211
Normal file
2
config/etc/modprobe.d/cfg80211
Normal file
@@ -0,0 +1,2 @@
|
||||
options cfg80211 ieee80211_regdom=EU
|
||||
blacklist ieee80211
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -264,6 +264,9 @@ print <<END
|
||||
iptables -t mangle -I POSTROUTING -o $qossettings{'RED_DEV'} -j QOS-OUT
|
||||
iptables -t mangle -A POSTROUTING -o $qossettings{'RED_DEV'} -j QOS-TOS
|
||||
|
||||
### Don't change mark on traffic for the ipsec tunnel
|
||||
iptables -t mangle -A QOS-OUT -m mark --mark 50 -j RETURN
|
||||
|
||||
### MARK ACKs
|
||||
iptables -t mangle -A QOS-OUT -p tcp --tcp-flags SYN,RST SYN -j TOS --set-tos 4
|
||||
iptables -t mangle -A QOS-OUT -p tcp --tcp-flags SYN,RST SYN -j MARK --set-mark $qossettings{'ACK'}
|
||||
@@ -514,7 +517,7 @@ print <<END
|
||||
|
||||
### ADD QOS-INC CHAIN TO THE MANGLE TABLE IN IPTABLES
|
||||
iptables -t mangle -N QOS-INC
|
||||
iptables -t mangle -A POSTROUTING -m mark ! --mark 0 -o ! $qossettings{'RED_DEV'} -j IMQ --todev 0
|
||||
iptables -t mangle -A POSTROUTING -m mark ! --mark 0 ! -o $qossettings{'RED_DEV'} -j IMQ --todev 0
|
||||
iptables -t mangle -I FORWARD -i $qossettings{'RED_DEV'} -j QOS-INC
|
||||
iptables -t mangle -A FORWARD -i $qossettings{'RED_DEV'} -j QOS-TOS
|
||||
|
||||
@@ -687,7 +690,7 @@ print <<END
|
||||
tc qdisc del dev $qossettings{'IMQ_DEV'} root >/dev/null 2>&1
|
||||
# STOP IMQ-DEVICE
|
||||
ip link set $qossettings{'IMQ_DEV'} down >/dev/null 2>&1
|
||||
iptables -t mangle --delete POSTROUTING -m mark ! --mark 0 -o ! $qossettings{'RED_DEV'} -j IMQ --todev 0 >/dev/null 2>&1
|
||||
iptables -t mangle --delete POSTROUTING -m mark ! --mark 0 ! -o $qossettings{'RED_DEV'} -j IMQ --todev 0 >/dev/null 2>&1
|
||||
iptables -t mangle --delete PREROUTING -i $qossettings{'RED_DEV'} -j IMQ --todev 0 >/dev/null 2>&1
|
||||
# rmmod imq # this crash on 2.6.25.xx
|
||||
# REMOVE & FLUSH CHAINS
|
||||
|
||||
@@ -17,6 +17,8 @@ usr/local/bin/bzip2
|
||||
#usr/local/bin/bzmore
|
||||
usr/local/include/bzlib.h
|
||||
usr/local/lib/libbz2.a
|
||||
#usr/local/man
|
||||
#usr/local/man/man1
|
||||
#usr/local/man/man1/bzcmp.1
|
||||
#usr/local/man/man1/bzdiff.1
|
||||
#usr/local/man/man1/bzegrep.1
|
||||
|
||||
@@ -1,113 +1,234 @@
|
||||
etc/collectd.conf
|
||||
etc/collectd.thermal
|
||||
etc/rc.d/init.d/collectd
|
||||
etc/rc.d/rc0.d/K50collectd
|
||||
etc/rc.d/rc3.d/S21collectd
|
||||
etc/rc.d/rc6.d/K50collectd
|
||||
#usr/bin/collectd-nagios
|
||||
#usr/etc/collectd.conf
|
||||
#usr/bin/collectd-nagios
|
||||
#usr/etc/collectd.conf
|
||||
#usr/include/collectd
|
||||
#usr/include/collectd/client.h
|
||||
#usr/include/collectd/lcc_features.h
|
||||
#usr/lib/collectd
|
||||
#usr/lib/collectd/apache.a
|
||||
#usr/lib/collectd/apache.la
|
||||
usr/lib/collectd/apache.so
|
||||
#usr/lib/collectd/apcups.a
|
||||
#usr/lib/collectd/apcups.la
|
||||
usr/lib/collectd/apcups.so
|
||||
#usr/lib/collectd/ascent.a
|
||||
#usr/lib/collectd/ascent.la
|
||||
usr/lib/collectd/ascent.so
|
||||
#usr/lib/collectd/battery.a
|
||||
#usr/lib/collectd/battery.la
|
||||
usr/lib/collectd/battery.so
|
||||
#usr/lib/collectd/bind.a
|
||||
#usr/lib/collectd/bind.la
|
||||
usr/lib/collectd/bind.so
|
||||
#usr/lib/collectd/conntrack.a
|
||||
#usr/lib/collectd/conntrack.la
|
||||
usr/lib/collectd/conntrack.so
|
||||
#usr/lib/collectd/contextswitch.a
|
||||
#usr/lib/collectd/contextswitch.la
|
||||
usr/lib/collectd/contextswitch.so
|
||||
#usr/lib/collectd/cpu.a
|
||||
#usr/lib/collectd/cpu.la
|
||||
usr/lib/collectd/cpu.so
|
||||
#usr/lib/collectd/cpufreq.a
|
||||
#usr/lib/collectd/cpufreq.la
|
||||
usr/lib/collectd/cpufreq.so
|
||||
#usr/lib/collectd/curl.a
|
||||
#usr/lib/collectd/curl.la
|
||||
usr/lib/collectd/curl.so
|
||||
#usr/lib/collectd/df.a
|
||||
#usr/lib/collectd/df.la
|
||||
usr/lib/collectd/df.so
|
||||
#usr/lib/collectd/disk.a
|
||||
#usr/lib/collectd/disk.la
|
||||
usr/lib/collectd/disk.so
|
||||
#usr/lib/collectd/dns.a
|
||||
#usr/lib/collectd/dns.la
|
||||
usr/lib/collectd/dns.so
|
||||
#usr/lib/collectd/email.a
|
||||
#usr/lib/collectd/email.la
|
||||
usr/lib/collectd/email.so
|
||||
#usr/lib/collectd/entropy.a
|
||||
#usr/lib/collectd/entropy.la
|
||||
usr/lib/collectd/entropy.so
|
||||
#usr/lib/collectd/exec.a
|
||||
#usr/lib/collectd/exec.la
|
||||
usr/lib/collectd/exec.so
|
||||
usr/lib/collectd/filecount.la
|
||||
#usr/lib/collectd/filecount.a
|
||||
#usr/lib/collectd/filecount.la
|
||||
usr/lib/collectd/filecount.so
|
||||
#usr/lib/collectd/fscache.a
|
||||
#usr/lib/collectd/fscache.la
|
||||
usr/lib/collectd/fscache.so
|
||||
#usr/lib/collectd/hddtemp.a
|
||||
#usr/lib/collectd/hddtemp.la
|
||||
usr/lib/collectd/hddtemp.so
|
||||
#usr/lib/collectd/interface.a
|
||||
#usr/lib/collectd/interface.la
|
||||
usr/lib/collectd/interface.so
|
||||
#usr/lib/collectd/iptables.a
|
||||
#usr/lib/collectd/iptables.la
|
||||
usr/lib/collectd/iptables.so
|
||||
#usr/lib/collectd/irq.a
|
||||
#usr/lib/collectd/irq.la
|
||||
usr/lib/collectd/irq.so
|
||||
#usr/lib/collectd/load.a
|
||||
#usr/lib/collectd/load.la
|
||||
usr/lib/collectd/load.so
|
||||
#usr/lib/collectd/logfile.a
|
||||
#usr/lib/collectd/logfile.la
|
||||
usr/lib/collectd/logfile.so
|
||||
#usr/lib/collectd/madwifi.a
|
||||
#usr/lib/collectd/madwifi.la
|
||||
usr/lib/collectd/madwifi.so
|
||||
#usr/lib/collectd/match_empty_counter.a
|
||||
#usr/lib/collectd/match_empty_counter.la
|
||||
usr/lib/collectd/match_empty_counter.so
|
||||
#usr/lib/collectd/match_hashed.a
|
||||
#usr/lib/collectd/match_hashed.la
|
||||
usr/lib/collectd/match_hashed.so
|
||||
#usr/lib/collectd/match_regex.a
|
||||
#usr/lib/collectd/match_regex.la
|
||||
usr/lib/collectd/match_regex.so
|
||||
#usr/lib/collectd/match_timediff.a
|
||||
#usr/lib/collectd/match_timediff.la
|
||||
usr/lib/collectd/match_timediff.so
|
||||
#usr/lib/collectd/match_value.a
|
||||
#usr/lib/collectd/match_value.la
|
||||
usr/lib/collectd/match_value.so
|
||||
#usr/lib/collectd/memory.a
|
||||
#usr/lib/collectd/memory.la
|
||||
usr/lib/collectd/memory.so
|
||||
#usr/lib/collectd/multimeter.a
|
||||
#usr/lib/collectd/multimeter.la
|
||||
usr/lib/collectd/multimeter.so
|
||||
#usr/lib/collectd/network.a
|
||||
#usr/lib/collectd/network.la
|
||||
usr/lib/collectd/network.so
|
||||
#usr/lib/collectd/nfs.a
|
||||
#usr/lib/collectd/nfs.la
|
||||
usr/lib/collectd/nfs.so
|
||||
#usr/lib/collectd/ntpd.a
|
||||
#usr/lib/collectd/ntpd.la
|
||||
usr/lib/collectd/ntpd.so
|
||||
#usr/lib/collectd/olsrd.a
|
||||
#usr/lib/collectd/olsrd.la
|
||||
usr/lib/collectd/olsrd.so
|
||||
#usr/lib/collectd/openvpn.a
|
||||
#usr/lib/collectd/openvpn.la
|
||||
usr/lib/collectd/openvpn.so
|
||||
#usr/lib/collectd/ping.a
|
||||
#usr/lib/collectd/ping.la
|
||||
usr/lib/collectd/ping.so
|
||||
#usr/lib/collectd/powerdns.a
|
||||
#usr/lib/collectd/powerdns.la
|
||||
usr/lib/collectd/powerdns.so
|
||||
#usr/lib/collectd/processes.a
|
||||
#usr/lib/collectd/processes.la
|
||||
usr/lib/collectd/processes.so
|
||||
#usr/lib/collectd/protocols.a
|
||||
#usr/lib/collectd/protocols.la
|
||||
usr/lib/collectd/protocols.so
|
||||
#usr/lib/collectd/python.a
|
||||
#usr/lib/collectd/python.la
|
||||
usr/lib/collectd/python.so
|
||||
#usr/lib/collectd/rrdtool.a
|
||||
#usr/lib/collectd/rrdtool.la
|
||||
usr/lib/collectd/rrdtool.so
|
||||
#usr/lib/collectd/sensors.a
|
||||
#usr/lib/collectd/sensors.la
|
||||
usr/lib/collectd/sensors.so
|
||||
#usr/lib/collectd/swap.a
|
||||
#usr/lib/collectd/swap.la
|
||||
usr/lib/collectd/swap.so
|
||||
#usr/lib/collectd/syslog.a
|
||||
#usr/lib/collectd/syslog.la
|
||||
usr/lib/collectd/syslog.so
|
||||
#usr/lib/collectd/table.a
|
||||
#usr/lib/collectd/table.la
|
||||
usr/lib/collectd/table.so
|
||||
#usr/lib/collectd/tail.a
|
||||
#usr/lib/collectd/tail.la
|
||||
usr/lib/collectd/tail.so
|
||||
#usr/lib/collectd/target_notification.a
|
||||
#usr/lib/collectd/target_notification.la
|
||||
usr/lib/collectd/target_notification.so
|
||||
#usr/lib/collectd/target_replace.a
|
||||
#usr/lib/collectd/target_replace.la
|
||||
usr/lib/collectd/target_replace.so
|
||||
#usr/lib/collectd/target_scale.a
|
||||
#usr/lib/collectd/target_scale.la
|
||||
usr/lib/collectd/target_scale.so
|
||||
#usr/lib/collectd/target_set.a
|
||||
#usr/lib/collectd/target_set.la
|
||||
usr/lib/collectd/target_set.so
|
||||
#usr/lib/collectd/tcpconns.a
|
||||
#usr/lib/collectd/tcpconns.la
|
||||
usr/lib/collectd/tcpconns.so
|
||||
#usr/lib/collectd/teamspeak2.a
|
||||
#usr/lib/collectd/teamspeak2.la
|
||||
usr/lib/collectd/teamspeak2.so
|
||||
usr/lib/collectd/thermal.la
|
||||
#usr/lib/collectd/ted.a
|
||||
#usr/lib/collectd/ted.la
|
||||
usr/lib/collectd/ted.so
|
||||
#usr/lib/collectd/thermal.a
|
||||
#usr/lib/collectd/thermal.la
|
||||
usr/lib/collectd/thermal.so
|
||||
usr/lib/collectd/types.db
|
||||
#usr/lib/collectd/unixsock.a
|
||||
#usr/lib/collectd/unixsock.la
|
||||
usr/lib/collectd/unixsock.so
|
||||
#usr/lib/collectd/uptime.a
|
||||
#usr/lib/collectd/uptime.la
|
||||
usr/lib/collectd/uptime.so
|
||||
#usr/lib/collectd/users.a
|
||||
#usr/lib/collectd/users.la
|
||||
usr/lib/collectd/users.so
|
||||
#usr/lib/collectd/uuid.a
|
||||
#usr/lib/collectd/uuid.la
|
||||
usr/lib/collectd/uuid.so
|
||||
#usr/lib/collectd/vmem.a
|
||||
#usr/lib/collectd/vmem.la
|
||||
usr/lib/collectd/vmem.so
|
||||
#usr/lib/collectd/wireless.a
|
||||
#usr/lib/collectd/wireless.la
|
||||
usr/lib/collectd/wireless.so
|
||||
#usr/lib/collectd/write_http.a
|
||||
#usr/lib/collectd/write_http.la
|
||||
usr/lib/collectd/write_http.so
|
||||
#usr/lib/libcollectdclient.a
|
||||
#usr/lib/libcollectdclient.la
|
||||
usr/lib/libcollectdclient.so
|
||||
usr/lib/libcollectdclient.so.0
|
||||
usr/lib/libcollectdclient.so.0.0.0
|
||||
#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/Plugins
|
||||
#usr/lib/perl5/site_perl/5.8.8/Collectd/Plugins/Monitorus.pm
|
||||
#usr/lib/perl5/site_perl/5.8.8/Collectd/Plugins/OpenVZ.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/lib/pkgconfig/libcollectdclient.pc
|
||||
usr/sbin/collectd
|
||||
usr/sbin/collectdmon
|
||||
#usr/share/collectd
|
||||
#usr/share/collectd/postgresql_default.conf
|
||||
usr/share/collectd/types.db
|
||||
#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-java.5
|
||||
#usr/share/man/man5/collectd-perl.5
|
||||
#usr/share/man/man5/collectd-python.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
|
||||
etc/rc.d/init.d/collectd
|
||||
|
||||
@@ -1,2 +0,0 @@
|
||||
etc/modprobe.d/cfg80211
|
||||
etc/modprobe.d/hostap
|
||||
@@ -1,9 +1,9 @@
|
||||
#sbin/dosfsck
|
||||
#sbin/fsck.msdos
|
||||
#sbin/fsck.vfat
|
||||
#sbin/mkdosfs
|
||||
#sbin/mkfs.msdos
|
||||
#sbin/mkfs.vfat
|
||||
sbin/dosfsck
|
||||
sbin/fsck.msdos
|
||||
sbin/fsck.vfat
|
||||
sbin/mkdosfs
|
||||
sbin/mkfs.msdos
|
||||
sbin/mkfs.vfat
|
||||
#usr/man/man8/dosfsck.8
|
||||
#usr/man/man8/fsck.msdos.8
|
||||
#usr/man/man8/fsck.vfat.8
|
||||
|
||||
@@ -26,7 +26,7 @@ sbin/fsck.ext3
|
||||
sbin/mke2fs
|
||||
sbin/mkfs.ext2
|
||||
sbin/mkfs.ext3
|
||||
#sbin/resize2fs
|
||||
sbin/resize2fs
|
||||
sbin/tune2fs
|
||||
usr/bin/chattr
|
||||
#usr/bin/compile_et
|
||||
|
||||
@@ -6,6 +6,7 @@ usr/bin/fusermount
|
||||
usr/bin/ulockmgr_server
|
||||
#usr/include/fuse
|
||||
#usr/include/fuse.h
|
||||
#usr/include/fuse/cuse_lowlevel.h
|
||||
#usr/include/fuse/fuse.h
|
||||
#usr/include/fuse/fuse_common.h
|
||||
#usr/include/fuse/fuse_common_compat.h
|
||||
@@ -18,7 +19,7 @@ usr/bin/ulockmgr_server
|
||||
#usr/lib/libfuse.la
|
||||
usr/lib/libfuse.so
|
||||
usr/lib/libfuse.so.2
|
||||
usr/lib/libfuse.so.2.7.4
|
||||
usr/lib/libfuse.so.2.8.3
|
||||
#usr/lib/libulockmgr.a
|
||||
#usr/lib/libulockmgr.la
|
||||
usr/lib/libulockmgr.so
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
#boot/grub
|
||||
#boot/grub/default
|
||||
boot/grub/grub.conf
|
||||
boot/grub/ipfire.xpm.gz
|
||||
boot/grub/stage1
|
||||
@@ -7,22 +6,6 @@ boot/grub/stage2
|
||||
#usr/bin/mbchk
|
||||
#usr/info/grub.info
|
||||
#usr/info/multiboot.info
|
||||
usr/lib/grub
|
||||
#usr/lib/grub/i386-pc
|
||||
#usr/lib/grub/i386-pc/e2fs_stage1_5
|
||||
#usr/lib/grub/i386-pc/fat_stage1_5
|
||||
#usr/lib/grub/i386-pc/ffs_stage1_5
|
||||
#usr/lib/grub/i386-pc/iso9660_stage1_5
|
||||
#usr/lib/grub/i386-pc/jfs_stage1_5
|
||||
#usr/lib/grub/i386-pc/minix_stage1_5
|
||||
#usr/lib/grub/i386-pc/reiserfs_stage1_5
|
||||
#usr/lib/grub/i386-pc/reiser4_stage1_5
|
||||
#usr/lib/grub/i386-pc/stage1
|
||||
#usr/lib/grub/i386-pc/stage2
|
||||
#usr/lib/grub/i386-pc/stage2_eltorito
|
||||
#usr/lib/grub/i386-pc/ufs2_stage1_5
|
||||
#usr/lib/grub/i386-pc/vstafs_stage1_5
|
||||
#usr/lib/grub/i386-pc/xfs_stage1_5
|
||||
#usr/man/man1/mbchk.1
|
||||
#usr/man/man8/grub-install.8
|
||||
#usr/man/man8/grub-md5-crypt.8
|
||||
@@ -31,5 +14,19 @@ usr/lib/grub
|
||||
usr/sbin/grub
|
||||
usr/sbin/grub-install
|
||||
usr/sbin/grub-md5-crypt
|
||||
usr/sbin/grub-set-default
|
||||
usr/sbin/grub-terminfo
|
||||
usr/share/grub
|
||||
#usr/share/grub/i386-pc
|
||||
#usr/share/grub/i386-pc/e2fs_stage1_5
|
||||
#usr/share/grub/i386-pc/fat_stage1_5
|
||||
#usr/share/grub/i386-pc/ffs_stage1_5
|
||||
#usr/share/grub/i386-pc/iso9660_stage1_5
|
||||
#usr/share/grub/i386-pc/jfs_stage1_5
|
||||
#usr/share/grub/i386-pc/minix_stage1_5
|
||||
#usr/share/grub/i386-pc/reiserfs_stage1_5
|
||||
#usr/share/grub/i386-pc/stage1
|
||||
#usr/share/grub/i386-pc/stage2
|
||||
#usr/share/grub/i386-pc/stage2_eltorito
|
||||
#usr/share/grub/i386-pc/ufs2_stage1_5
|
||||
#usr/share/grub/i386-pc/vstafs_stage1_5
|
||||
#usr/share/grub/i386-pc/xfs_stage1_5
|
||||
|
||||
@@ -1,66 +1,136 @@
|
||||
#lib/libip4tc.la
|
||||
lib/libip4tc.so
|
||||
lib/libip4tc.so.0
|
||||
lib/libip4tc.so.0.0.0
|
||||
#lib/libip6tc.la
|
||||
lib/libip6tc.so
|
||||
lib/libip6tc.so.0
|
||||
lib/libip6tc.so.0.0.0
|
||||
#lib/libipq.a
|
||||
#lib/libiptc.la
|
||||
lib/libiptc.so
|
||||
lib/libiptc.so.0
|
||||
lib/libiptc.so.0.0.0
|
||||
#lib/libxtables.la
|
||||
lib/libxtables.so
|
||||
lib/libxtables.so.4
|
||||
lib/libxtables.so.4.0.0
|
||||
#lib/pkgconfig
|
||||
#lib/pkgconfig/libiptc.pc
|
||||
#lib/pkgconfig/xtables.pc
|
||||
lib/xtables
|
||||
#lib/xtables/libipt_CLASSIFY.so
|
||||
#lib/xtables/libipt_CONNMARK.so
|
||||
#lib/xtables/libip6t_HL.so
|
||||
#lib/xtables/libip6t_LOG.so
|
||||
#lib/xtables/libip6t_REJECT.so
|
||||
#lib/xtables/libip6t_ah.so
|
||||
#lib/xtables/libip6t_dst.so
|
||||
#lib/xtables/libip6t_eui64.so
|
||||
#lib/xtables/libip6t_frag.so
|
||||
#lib/xtables/libip6t_hbh.so
|
||||
#lib/xtables/libip6t_hl.so
|
||||
#lib/xtables/libip6t_icmp6.so
|
||||
#lib/xtables/libip6t_ipv6header.so
|
||||
#lib/xtables/libip6t_mh.so
|
||||
#lib/xtables/libip6t_rt.so
|
||||
#lib/xtables/libipt_CLUSTERIP.so
|
||||
#lib/xtables/libipt_DNAT.so
|
||||
#lib/xtables/libipt_DSCP.so
|
||||
#lib/xtables/libipt_ECN.so
|
||||
#lib/xtables/libipt_LOG.so
|
||||
#lib/xtables/libipt_MARK.so
|
||||
#lib/xtables/libipt_MASQUERADE.so
|
||||
#lib/xtables/libipt_MIRROR.so
|
||||
#lib/xtables/libipt_NETMAP.so
|
||||
#lib/xtables/libipt_NFQUEUE.so
|
||||
#lib/xtables/libipt_NOTRACK.so
|
||||
#lib/xtables/libipt_REDIRECT.so
|
||||
#lib/xtables/libipt_REJECT.so
|
||||
#lib/xtables/libipt_SAME.so
|
||||
#lib/xtables/libipt_SET.so
|
||||
#lib/xtables/libipt_SNAT.so
|
||||
#lib/xtables/libipt_TARPIT.so
|
||||
#lib/xtables/libipt_TCPMSS.so
|
||||
#lib/xtables/libipt_TOS.so
|
||||
#lib/xtables/libipt_TRACE.so
|
||||
#lib/xtables/libipt_TTL.so
|
||||
#lib/xtables/libipt_ULOG.so
|
||||
#lib/xtables/libipt_addrtype.so
|
||||
#lib/xtables/libipt_ah.so
|
||||
#lib/xtables/libipt_comment.so
|
||||
#lib/xtables/libipt_connlimit.so
|
||||
#lib/xtables/libipt_connmark.so
|
||||
#lib/xtables/libipt_conntrack.so
|
||||
#lib/xtables/libipt_dscp.so
|
||||
#lib/xtables/libipt_ecn.so
|
||||
#lib/xtables/libipt_esp.so
|
||||
#lib/xtables/libipt_hashlimit.so
|
||||
#lib/xtables/libipt_helper.so
|
||||
#lib/xtables/libipt_icmp.so
|
||||
#lib/xtables/libipt_iprange.so
|
||||
#lib/xtables/libipt_length.so
|
||||
#lib/xtables/libipt_limit.so
|
||||
#lib/xtables/libipt_mac.so
|
||||
#lib/xtables/libipt_mark.so
|
||||
#lib/xtables/libipt_multiport.so
|
||||
#lib/xtables/libipt_owner.so
|
||||
#lib/xtables/libipt_physdev.so
|
||||
#lib/xtables/libipt_pkttype.so
|
||||
#lib/xtables/libipt_policy.so
|
||||
#lib/xtables/libipt_ipp2p.so
|
||||
#lib/xtables/libipt_realm.so
|
||||
#lib/xtables/libipt_rpc.so
|
||||
#lib/xtables/libipt_sctp.so
|
||||
#lib/xtables/libipt_standard.so
|
||||
#lib/xtables/libipt_state.so
|
||||
#lib/xtables/libipt_tcp.so
|
||||
#lib/xtables/libipt_tcpmss.so
|
||||
#lib/xtables/libipt_tos.so
|
||||
#lib/xtables/libipt_set.so
|
||||
#lib/xtables/libipt_ttl.so
|
||||
#lib/xtables/libipt_udp.so
|
||||
#lib/xtables/libipt_unclean.so
|
||||
#lib/xtables/libxt_CLASSIFY.so
|
||||
#lib/xtables/libxt_CONNMARK.so
|
||||
#lib/xtables/libxt_CONNSECMARK.so
|
||||
#lib/xtables/libxt_DSCP.so
|
||||
#lib/xtables/libxt_IMQ.so
|
||||
#lib/xtables/libxt_MARK.so
|
||||
#lib/xtables/libxt_NFLOG.so
|
||||
#lib/xtables/libxt_NFQUEUE.so
|
||||
#lib/xtables/libxt_NOTRACK.so
|
||||
#lib/xtables/libxt_RATEEST.so
|
||||
#lib/xtables/libxt_SECMARK.so
|
||||
#lib/xtables/libxt_TCPMSS.so
|
||||
#lib/xtables/libxt_TCPOPTSTRIP.so
|
||||
#lib/xtables/libxt_TOS.so
|
||||
#lib/xtables/libxt_TPROXY.so
|
||||
#lib/xtables/libxt_TRACE.so
|
||||
#lib/xtables/libxt_cluster.so
|
||||
#lib/xtables/libxt_comment.so
|
||||
#lib/xtables/libxt_connbytes.so
|
||||
#lib/xtables/libxt_connlimit.so
|
||||
#lib/xtables/libxt_connmark.so
|
||||
#lib/xtables/libxt_conntrack.so
|
||||
#lib/xtables/libxt_dscp.so
|
||||
#lib/xtables/libxt_esp.so
|
||||
#lib/xtables/libxt_hashlimit.so
|
||||
#lib/xtables/libxt_helper.so
|
||||
#lib/xtables/libxt_iprange.so
|
||||
#lib/xtables/libxt_layer7.so
|
||||
#lib/xtables/libxt_length.so
|
||||
#lib/xtables/libxt_limit.so
|
||||
#lib/xtables/libxt_mac.so
|
||||
#lib/xtables/libxt_mark.so
|
||||
#lib/xtables/libxt_multiport.so
|
||||
#lib/xtables/libxt_osf.so
|
||||
#lib/xtables/libxt_owner.so
|
||||
#lib/xtables/libxt_physdev.so
|
||||
#lib/xtables/libxt_pkttype.so
|
||||
#lib/xtables/libxt_policy.so
|
||||
#lib/xtables/libxt_quota.so
|
||||
#lib/xtables/libxt_rateest.so
|
||||
#lib/xtables/libxt_recent.so
|
||||
#lib/xtables/libxt_sctp.so
|
||||
#lib/xtables/libxt_socket.so
|
||||
#lib/xtables/libxt_standard.so
|
||||
#lib/xtables/libxt_state.so
|
||||
#lib/xtables/libxt_statistic.so
|
||||
#lib/xtables/libxt_string.so
|
||||
#lib/xtables/libxt_tcp.so
|
||||
#lib/xtables/libxt_tcpmss.so
|
||||
#lib/xtables/libxt_time.so
|
||||
#lib/xtables/libxt_tos.so
|
||||
#lib/xtables/libxt_u32.so
|
||||
#lib/xtables/libxt_udp.so
|
||||
#sbin/ip6tables
|
||||
#sbin/ip6tables-multi
|
||||
#sbin/ip6tables-restore
|
||||
#sbin/ip6tables-save
|
||||
sbin/iptables
|
||||
sbin/iptables-multi
|
||||
#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
|
||||
#sbin/iptables-xml
|
||||
#usr/include/asm-generic
|
||||
#usr/include/asm-generic/errno-base.h
|
||||
#usr/include/asm-generic/errno.h
|
||||
#usr/include/iptables
|
||||
#usr/include/iptables.h
|
||||
#usr/include/iptables/internal.h
|
||||
#usr/include/libipq.h
|
||||
#usr/include/libiptc
|
||||
#usr/include/libiptc/ipt_kernel_headers.h
|
||||
#usr/include/libiptc/libip6tc.h
|
||||
#usr/include/libiptc/libiptc.h
|
||||
#usr/include/libiptc/libxtc.h
|
||||
#usr/include/libipulog
|
||||
#usr/include/libipulog/libipulog.h
|
||||
#usr/include/libnetfilter_queue
|
||||
#usr/include/libnetfilter_queue/libipq.h
|
||||
#usr/include/libnetfilter_queue/libnetfilter_queue.h
|
||||
@@ -68,6 +138,85 @@ sbin/iptables
|
||||
#usr/include/libnfnetlink
|
||||
#usr/include/libnfnetlink/libnfnetlink.h
|
||||
#usr/include/libnfnetlink/linux_nfnetlink.h
|
||||
#usr/include/libnfnetlink/linux_nfnetlink_compat.h
|
||||
#usr/include/linux/netfilter
|
||||
#usr/include/linux/netfilter/Kbuild
|
||||
#usr/include/linux/netfilter/nf_conntrack_amanda.h
|
||||
#usr/include/linux/netfilter/nf_conntrack_common.h
|
||||
#usr/include/linux/netfilter/nf_conntrack_dccp.h
|
||||
#usr/include/linux/netfilter/nf_conntrack_ftp.h
|
||||
#usr/include/linux/netfilter/nf_conntrack_h323.h
|
||||
#usr/include/linux/netfilter/nf_conntrack_h323_asn1.h
|
||||
#usr/include/linux/netfilter/nf_conntrack_h323_types.h
|
||||
#usr/include/linux/netfilter/nf_conntrack_irc.h
|
||||
#usr/include/linux/netfilter/nf_conntrack_pptp.h
|
||||
#usr/include/linux/netfilter/nf_conntrack_proto_gre.h
|
||||
#usr/include/linux/netfilter/nf_conntrack_sane.h
|
||||
#usr/include/linux/netfilter/nf_conntrack_sctp.h
|
||||
#usr/include/linux/netfilter/nf_conntrack_sip.h
|
||||
#usr/include/linux/netfilter/nf_conntrack_tcp.h
|
||||
#usr/include/linux/netfilter/nf_conntrack_tftp.h
|
||||
#usr/include/linux/netfilter/nf_conntrack_tuple_common.h
|
||||
#usr/include/linux/netfilter/nfnetlink.h
|
||||
#usr/include/linux/netfilter/nfnetlink_compat.h
|
||||
#usr/include/linux/netfilter/nfnetlink_conntrack.h
|
||||
#usr/include/linux/netfilter/nfnetlink_log.h
|
||||
#usr/include/linux/netfilter/nfnetlink_queue.h
|
||||
#usr/include/linux/netfilter/x_tables.h
|
||||
#usr/include/linux/netfilter/xt_CLASSIFY.h
|
||||
#usr/include/linux/netfilter/xt_CONNMARK.h
|
||||
#usr/include/linux/netfilter/xt_CONNSECMARK.h
|
||||
#usr/include/linux/netfilter/xt_DSCP.h
|
||||
#usr/include/linux/netfilter/xt_IMQ.h
|
||||
#usr/include/linux/netfilter/xt_LED.h
|
||||
#usr/include/linux/netfilter/xt_MARK.h
|
||||
#usr/include/linux/netfilter/xt_NFLOG.h
|
||||
#usr/include/linux/netfilter/xt_NFQUEUE.h
|
||||
#usr/include/linux/netfilter/xt_RATEEST.h
|
||||
#usr/include/linux/netfilter/xt_SECMARK.h
|
||||
#usr/include/linux/netfilter/xt_TCPMSS.h
|
||||
#usr/include/linux/netfilter/xt_TCPOPTSTRIP.h
|
||||
#usr/include/linux/netfilter/xt_TPROXY.h
|
||||
#usr/include/linux/netfilter/xt_cluster.h
|
||||
#usr/include/linux/netfilter/xt_comment.h
|
||||
#usr/include/linux/netfilter/xt_connbytes.h
|
||||
#usr/include/linux/netfilter/xt_connlimit.h
|
||||
#usr/include/linux/netfilter/xt_connmark.h
|
||||
#usr/include/linux/netfilter/xt_conntrack.h
|
||||
#usr/include/linux/netfilter/xt_dccp.h
|
||||
#usr/include/linux/netfilter/xt_dscp.h
|
||||
#usr/include/linux/netfilter/xt_esp.h
|
||||
#usr/include/linux/netfilter/xt_hashlimit.h
|
||||
#usr/include/linux/netfilter/xt_helper.h
|
||||
#usr/include/linux/netfilter/xt_iprange.h
|
||||
#usr/include/linux/netfilter/xt_layer7.h
|
||||
#usr/include/linux/netfilter/xt_length.h
|
||||
#usr/include/linux/netfilter/xt_limit.h
|
||||
#usr/include/linux/netfilter/xt_mac.h
|
||||
#usr/include/linux/netfilter/xt_mark.h
|
||||
#usr/include/linux/netfilter/xt_multiport.h
|
||||
#usr/include/linux/netfilter/xt_osf.h
|
||||
#usr/include/linux/netfilter/xt_owner.h
|
||||
#usr/include/linux/netfilter/xt_physdev.h
|
||||
#usr/include/linux/netfilter/xt_pkttype.h
|
||||
#usr/include/linux/netfilter/xt_policy.h
|
||||
#usr/include/linux/netfilter/xt_quota.h
|
||||
#usr/include/linux/netfilter/xt_rateest.h
|
||||
#usr/include/linux/netfilter/xt_realm.h
|
||||
#usr/include/linux/netfilter/xt_recent.h
|
||||
#usr/include/linux/netfilter/xt_sctp.h
|
||||
#usr/include/linux/netfilter/xt_socket.h
|
||||
#usr/include/linux/netfilter/xt_state.h
|
||||
#usr/include/linux/netfilter/xt_statistic.h
|
||||
#usr/include/linux/netfilter/xt_string.h
|
||||
#usr/include/linux/netfilter/xt_tcpmss.h
|
||||
#usr/include/linux/netfilter/xt_tcpudp.h
|
||||
#usr/include/linux/netfilter/xt_time.h
|
||||
#usr/include/linux/netfilter/xt_u32.h
|
||||
#usr/include/net/netfilter
|
||||
#usr/include/net/netfilter/nf_conntrack_tuple.h
|
||||
#usr/include/net/netfilter/nf_nat.h
|
||||
#usr/include/xtables.h
|
||||
#usr/lib/libnetfilter_queue.a
|
||||
#usr/lib/libnetfilter_queue.la
|
||||
usr/lib/libnetfilter_queue.so
|
||||
@@ -85,161 +234,6 @@ usr/lib/libnfnetlink.so.0
|
||||
usr/lib/libnfnetlink.so.0.2.0
|
||||
#usr/lib/pkgconfig/libnetfilter_queue.pc
|
||||
#usr/lib/pkgconfig/libnfnetlink.pc
|
||||
#lib/libip4tc.o
|
||||
#lib/libip6tc.o
|
||||
#lib/libipq.a
|
||||
#lib/libiptc.a
|
||||
#lib/xtables/libip6t_HL.so
|
||||
#lib/xtables/libip6t_IMQ.so
|
||||
#lib/xtables/libip6t_LOG.so
|
||||
#lib/xtables/libip6t_REJECT.so
|
||||
#lib/xtables/libip6t_ah.so
|
||||
#lib/xtables/libip6t_dst.so
|
||||
#lib/xtables/libip6t_eui64.so
|
||||
#lib/xtables/libip6t_frag.so
|
||||
#lib/xtables/libip6t_hbh.so
|
||||
#lib/xtables/libip6t_hl.so
|
||||
#lib/xtables/libip6t_icmp6.so
|
||||
#lib/xtables/libip6t_ipv6header.so
|
||||
#lib/xtables/libip6t_mh.so
|
||||
#lib/xtables/libip6t_policy.so
|
||||
#lib/xtables/libip6t_rt.so
|
||||
#lib/xtables/libipt_CLUSTERIP.so
|
||||
#lib/xtables/libipt_IMQ.so
|
||||
#lib/xtables/libipt_SET.so
|
||||
#lib/xtables/libipt_ipp2p.so
|
||||
#lib/xtables/libipt_recent.so
|
||||
#lib/xtables/libipt_set.so
|
||||
#lib/xtables/libxt_CLASSIFY.so
|
||||
#lib/xtables/libxt_CONNMARK.so
|
||||
#lib/xtables/libxt_CONNSECMARK.so
|
||||
#lib/xtables/libxt_DSCP.so
|
||||
#lib/xtables/libxt_MARK.so
|
||||
#lib/xtables/libxt_NFLOG.so
|
||||
#lib/xtables/libxt_NFQUEUE.so
|
||||
#lib/xtables/libxt_NOTRACK.so
|
||||
#lib/xtables/libxt_RATEEST.so
|
||||
#lib/xtables/libxt_SECMARK.so
|
||||
#lib/xtables/libxt_TCPMSS.so
|
||||
#lib/xtables/libxt_TCPOPTSTRIP.so
|
||||
#lib/xtables/libxt_TOS.so
|
||||
#lib/xtables/libxt_TRACE.so
|
||||
#lib/xtables/libxt_comment.so
|
||||
#lib/xtables/libxt_connbytes.so
|
||||
#lib/xtables/libxt_connlimit.so
|
||||
#lib/xtables/libxt_connmark.so
|
||||
#lib/xtables/libxt_conntrack.so
|
||||
#lib/xtables/libxt_dscp.so
|
||||
#lib/xtables/libxt_esp.so
|
||||
#lib/xtables/libxt_hashlimit.so
|
||||
#lib/xtables/libxt_helper.so
|
||||
#lib/xtables/libxt_iprange.so
|
||||
#lib/xtables/libxt_layer7.so
|
||||
#lib/xtables/libxt_length.so
|
||||
#lib/xtables/libxt_limit.so
|
||||
#lib/xtables/libxt_mac.so
|
||||
#lib/xtables/libxt_mark.so
|
||||
#lib/xtables/libxt_multiport.so
|
||||
#lib/xtables/libxt_owner.so
|
||||
#lib/xtables/libxt_physdev.so
|
||||
#lib/xtables/libxt_pkttype.so
|
||||
#lib/xtables/libxt_quota.so
|
||||
#lib/xtables/libxt_rateest.so
|
||||
#lib/xtables/libxt_sctp.so
|
||||
#lib/xtables/libxt_standard.so
|
||||
#lib/xtables/libxt_state.so
|
||||
#lib/xtables/libxt_statistic.so
|
||||
#lib/xtables/libxt_string.so
|
||||
#lib/xtables/libxt_tcp.so
|
||||
#lib/xtables/libxt_tcpmss.so
|
||||
#lib/xtables/libxt_time.so
|
||||
#lib/xtables/libxt_tos.so
|
||||
#lib/xtables/libxt_u32.so
|
||||
#lib/xtables/libxt_udp.so
|
||||
#sbin/ip6tables
|
||||
#sbin/ip6tables-multi
|
||||
#sbin/ip6tables-restore
|
||||
#sbin/ip6tables-save
|
||||
#sbin/iptables-multi
|
||||
#sbin/iptables-xml
|
||||
#usr/include/ip6tables.h
|
||||
#usr/include/iptables.h
|
||||
#usr/include/libipq
|
||||
#usr/include/libipq.h
|
||||
#usr/include/libipq/libipq.h
|
||||
#usr/include/libiptc
|
||||
#usr/include/libiptc/ipt_kernel_headers.h
|
||||
#usr/include/libiptc/libip6tc.h
|
||||
#usr/include/libiptc/libiptc.h
|
||||
#usr/include/libiptc/libxtc.h
|
||||
#usr/include/libipulog
|
||||
#usr/include/libipulog/libipulog.h
|
||||
#usr/include/libnfnetlink/linux_nfnetlink_compat.h
|
||||
#usr/include/linux/netfilter
|
||||
#usr/include/linux/netfilter/nf_conntrack_common.h
|
||||
#usr/include/linux/netfilter/nf_conntrack_tuple.h
|
||||
#usr/include/linux/netfilter/nf_conntrack_tuple_common.h
|
||||
#usr/include/linux/netfilter/nf_nat.h
|
||||
#usr/include/linux/netfilter/x_tables.h
|
||||
#usr/include/linux/netfilter/xt_CLASSIFY.h
|
||||
#usr/include/linux/netfilter/xt_CONNMARK.h
|
||||
#usr/include/linux/netfilter/xt_CONNSECMARK.h
|
||||
#usr/include/linux/netfilter/xt_DSCP.h
|
||||
#usr/include/linux/netfilter/xt_MARK.h
|
||||
#usr/include/linux/netfilter/xt_NFLOG.h
|
||||
#usr/include/linux/netfilter/xt_NFQUEUE.h
|
||||
#usr/include/linux/netfilter/xt_RATEEST.h
|
||||
#usr/include/linux/netfilter/xt_SECMARK.h
|
||||
#usr/include/linux/netfilter/xt_TCPMSS.h
|
||||
#usr/include/linux/netfilter/xt_TCPOPTSTRIP.h
|
||||
#usr/include/linux/netfilter/xt_comment.h
|
||||
#usr/include/linux/netfilter/xt_connbytes.h
|
||||
#usr/include/linux/netfilter/xt_connlimit.h
|
||||
#usr/include/linux/netfilter/xt_connmark.h
|
||||
#usr/include/linux/netfilter/xt_conntrack.h
|
||||
#usr/include/linux/netfilter/xt_dccp.h
|
||||
#usr/include/linux/netfilter/xt_dscp.h
|
||||
#usr/include/linux/netfilter/xt_esp.h
|
||||
#usr/include/linux/netfilter/xt_hashlimit.h
|
||||
#usr/include/linux/netfilter/xt_helper.h
|
||||
#usr/include/linux/netfilter/xt_iprange.h
|
||||
#usr/include/linux/netfilter/xt_length.h
|
||||
#usr/include/linux/netfilter/xt_limit.h
|
||||
#usr/include/linux/netfilter/xt_mac.h
|
||||
#usr/include/linux/netfilter/xt_mark.h
|
||||
#usr/include/linux/netfilter/xt_multiport.h
|
||||
#usr/include/linux/netfilter/xt_owner.h
|
||||
#usr/include/linux/netfilter/xt_physdev.h
|
||||
#usr/include/linux/netfilter/xt_pkttype.h
|
||||
#usr/include/linux/netfilter/xt_policy.h
|
||||
#usr/include/linux/netfilter/xt_quota.h
|
||||
#usr/include/linux/netfilter/xt_rateest.h
|
||||
#usr/include/linux/netfilter/xt_realm.h
|
||||
#usr/include/linux/netfilter/xt_sctp.h
|
||||
#usr/include/linux/netfilter/xt_state.h
|
||||
#usr/include/linux/netfilter/xt_statistic.h
|
||||
#usr/include/linux/netfilter/xt_string.h
|
||||
#usr/include/linux/netfilter/xt_tcpmss.h
|
||||
#usr/include/linux/netfilter/xt_tcpudp.h
|
||||
#usr/include/linux/netfilter/xt_time.h
|
||||
#usr/include/linux/netfilter/xt_u32.h
|
||||
#usr/include/linux/netfilter_ipv4/ip_set.h
|
||||
#usr/include/linux/netfilter_ipv4/ipt_FTOS.h
|
||||
#usr/include/linux/netfilter_ipv4/ipt_TTL.h
|
||||
#usr/include/linux/netfilter_ipv4/ipt_connlimit.h
|
||||
#usr/include/linux/netfilter_ipv4/ipt_dstlimit.h
|
||||
#usr/include/linux/netfilter_ipv4/ipt_policy.h
|
||||
#usr/include/linux/netfilter_ipv4/ipt_rpc.h
|
||||
#usr/include/linux/netfilter_ipv4/ipt_set.h
|
||||
#usr/include/linux/netfilter_ipv6/ip6t_HL.h
|
||||
#usr/include/linux/netfilter_ipv6/ip6t_REJECT.h
|
||||
#usr/include/linux/netfilter_ipv6/ip6t_TCPMSS.h
|
||||
#usr/include/linux/netfilter_ipv6/ip6t_mh.h
|
||||
#usr/include/linux/netfilter_ipv6/ip6t_policy.h
|
||||
#usr/include/xtables
|
||||
#usr/include/xtables.h
|
||||
#usr/include/xtables.h.in
|
||||
#usr/include/xtables/internal.h
|
||||
#usr/share/man/man3/ipq_create_handle.3
|
||||
#usr/share/man/man3/ipq_destroy_handle.3
|
||||
#usr/share/man/man3/ipq_errstr.3
|
||||
@@ -254,10 +248,7 @@ usr/lib/libnfnetlink.so.0.2.0
|
||||
#usr/share/man/man8/ip6tables-restore.8
|
||||
#usr/share/man/man8/ip6tables-save.8
|
||||
#usr/share/man/man8/ip6tables.8
|
||||
#usr/share/man/man8/iptables-restore.8
|
||||
#usr/share/man/man8/iptables-save.8
|
||||
#usr/share/man/man8/iptables-xml.8
|
||||
#lib/libxtables.la
|
||||
lib/libxtables.so
|
||||
lib/libxtables.so.0
|
||||
lib/libxtables.so.0.0.0
|
||||
#lib/pkgconfig
|
||||
#lib/pkgconfig/xtables.pc
|
||||
#usr/share/man/man8/iptables.8
|
||||
|
||||
23
config/rootfiles/common/liboping
Normal file
23
config/rootfiles/common/liboping
Normal file
@@ -0,0 +1,23 @@
|
||||
usr/bin/oping
|
||||
#usr/include/oping.h
|
||||
#usr/lib/liboping.a
|
||||
#usr/lib/liboping.la
|
||||
usr/lib/liboping.so
|
||||
usr/lib/liboping.so.0
|
||||
usr/lib/liboping.so.0.2.3
|
||||
usr/lib/perl5/site_perl/5.8.8/i586-linux/Net/Oping.pm
|
||||
usr/lib/perl5/site_perl/5.8.8/i586-linux/auto/Net/Oping
|
||||
usr/lib/perl5/site_perl/5.8.8/i586-linux/auto/Net/Oping/.packlist
|
||||
usr/lib/perl5/site_perl/5.8.8/i586-linux/auto/Net/Oping/Oping.bs
|
||||
usr/lib/perl5/site_perl/5.8.8/i586-linux/auto/Net/Oping/Oping.so
|
||||
#usr/share/man/man3/Net::Oping.3
|
||||
#usr/share/man/man3/liboping.3
|
||||
#usr/share/man/man3/ping_construct.3
|
||||
#usr/share/man/man3/ping_get_error.3
|
||||
#usr/share/man/man3/ping_host_add.3
|
||||
#usr/share/man/man3/ping_iterator_get.3
|
||||
#usr/share/man/man3/ping_iterator_get_context.3
|
||||
#usr/share/man/man3/ping_iterator_get_info.3
|
||||
#usr/share/man/man3/ping_send.3
|
||||
#usr/share/man/man3/ping_setopt.3
|
||||
#usr/share/man/man8/oping.8
|
||||
File diff suppressed because it is too large
Load Diff
@@ -1,12 +1,91 @@
|
||||
#lib/firmware/3com
|
||||
lib/firmware/3com/3C359.bin
|
||||
lib/firmware/3com/typhoon.bin
|
||||
lib/firmware/LICENCE.agere
|
||||
lib/firmware/LICENCE.atheros_firmware
|
||||
lib/firmware/LICENCE.i2400m
|
||||
lib/firmware/LICENCE.iwlwifi_firmware
|
||||
lib/firmware/LICENCE.libertas
|
||||
lib/firmware/LICENCE.mwl8k
|
||||
lib/firmware/LICENCE.qla2xxx
|
||||
lib/firmware/LICENCE.ralink-firmware.txt
|
||||
lib/firmware/LICENCE.xc5000
|
||||
lib/firmware/LICENSE.dib0700
|
||||
lib/firmware/LICENSE.radeon_rlc
|
||||
lib/firmware/WHENCE
|
||||
#lib/firmware/acenic
|
||||
lib/firmware/acenic/tg1.bin
|
||||
lib/firmware/acenic/tg2.bin
|
||||
#lib/firmware/adaptec
|
||||
lib/firmware/adaptec/starfire_rx.bin
|
||||
lib/firmware/adaptec/starfire_tx.bin
|
||||
#lib/firmware/advansys
|
||||
lib/firmware/advansys/3550.bin
|
||||
lib/firmware/advansys/38C0800.bin
|
||||
lib/firmware/advansys/38C1600.bin
|
||||
lib/firmware/advansys/mcode.bin
|
||||
lib/firmware/agere_ap_fw.bin
|
||||
lib/firmware/agere_sta_fw.bin
|
||||
lib/firmware/ar9170-1.fw
|
||||
lib/firmware/ar9170-2.fw
|
||||
lib/firmware/ar9271.fw
|
||||
lib/firmware/ath3k-1.fw
|
||||
lib/firmware/atmsar11.fw
|
||||
#lib/firmware/cpia2
|
||||
#lib/firmware/av7110
|
||||
lib/firmware/av7110/bootcode.bin
|
||||
#lib/firmware/bnx2
|
||||
lib/firmware/bnx2/bnx2-mips-06-4.6.16.fw
|
||||
lib/firmware/bnx2/bnx2-mips-06-5.0.0.j3.fw
|
||||
lib/firmware/bnx2/bnx2-mips-09-4.6.17.fw
|
||||
lib/firmware/bnx2/bnx2-mips-09-5.0.0.j3.fw
|
||||
lib/firmware/bnx2/bnx2-rv2p-06-4.6.16.fw
|
||||
lib/firmware/bnx2/bnx2-rv2p-06-5.0.0.j3.fw
|
||||
lib/firmware/bnx2/bnx2-rv2p-09-4.6.15.fw
|
||||
lib/firmware/bnx2/bnx2-rv2p-09-5.0.0.j3.fw
|
||||
lib/firmware/bnx2/bnx2-rv2p-09ax-5.0.0.j3.fw
|
||||
lib/firmware/bnx2x-e1-4.8.53.0.fw
|
||||
lib/firmware/bnx2x-e1-5.2.7.0.fw
|
||||
lib/firmware/bnx2x-e1h-4.8.53.0.fw
|
||||
lib/firmware/bnx2x-e1h-5.2.7.0.fw
|
||||
#lib/firmware/cis
|
||||
lib/firmware/cis/3CCFEM556.cis
|
||||
lib/firmware/cis/3CXEM556.cis
|
||||
lib/firmware/cis/COMpad2.cis
|
||||
lib/firmware/cis/COMpad4.cis
|
||||
lib/firmware/cis/DP83903.cis
|
||||
lib/firmware/cis/LA-PCM.cis
|
||||
lib/firmware/cis/MT5634ZLX.cis
|
||||
lib/firmware/cis/NE2K.cis
|
||||
lib/firmware/cis/PCMLM28.cis
|
||||
lib/firmware/cis/PE-200.cis
|
||||
lib/firmware/cis/RS-COM-2P.cis
|
||||
lib/firmware/cis/SW_555_SER.cis
|
||||
lib/firmware/cis/SW_7xx_SER.cis
|
||||
lib/firmware/cis/SW_8xx_SER.cis
|
||||
lib/firmware/cis/tamarack.cis
|
||||
#lib/firmware/cpia2
|
||||
lib/firmware/cpia2/stv0672_vp4.bin
|
||||
#lib/firmware/cxgb3
|
||||
lib/firmware/cxgb3/ael2005_opt_edc.bin
|
||||
lib/firmware/cxgb3/ael2005_twx_edc.bin
|
||||
lib/firmware/cxgb3/ael2020_twx_edc.bin
|
||||
lib/firmware/cxgb3/t3b_psram-1.1.0.bin
|
||||
lib/firmware/cxgb3/t3c_psram-1.1.0.bin
|
||||
lib/firmware/cxgb3/t3fw-7.0.0.bin
|
||||
lib/firmware/cxgb3/t3fw-7.1.0.bin
|
||||
lib/firmware/cxgb3/t3fw-7.4.0.bin
|
||||
#lib/firmware/dabusb
|
||||
lib/firmware/dabusb/bitstream.bin
|
||||
lib/firmware/dabusb/firmware.fw
|
||||
#lib/firmware/dsp56k
|
||||
#lib/firmware/dsp56k/bootstrap.asm
|
||||
lib/firmware/dsp56k/bootstrap.bin
|
||||
lib/firmware/dvb-fe-xc5000-1.6.114.fw
|
||||
lib/firmware/dvb-usb-dib0700-1.20.fw
|
||||
#lib/firmware/e100
|
||||
lib/firmware/e100/d101m_ucode.bin
|
||||
lib/firmware/e100/d101s_ucode.bin
|
||||
lib/firmware/e100/d102e_ucode.bin
|
||||
#lib/firmware/edgeport
|
||||
lib/firmware/edgeport/boot.fw
|
||||
lib/firmware/edgeport/boot2.fw
|
||||
@@ -25,7 +104,17 @@ lib/firmware/emi62/spdif.fw
|
||||
#lib/firmware/ess
|
||||
lib/firmware/ess/maestro3_assp_kernel.fw
|
||||
lib/firmware/ess/maestro3_assp_minisrc.fw
|
||||
lib/firmware/f2255usb.bin
|
||||
lib/firmware/i2400m-fw-usb-1.3.sbcf
|
||||
lib/firmware/i2400m-fw-usb-1.4.sbcf
|
||||
lib/firmware/intelliport2.bin
|
||||
lib/firmware/iwlwifi-1000-3.ucode
|
||||
lib/firmware/iwlwifi-3945-2.ucode
|
||||
lib/firmware/iwlwifi-4965-2.ucode
|
||||
lib/firmware/iwlwifi-5000-1.ucode
|
||||
lib/firmware/iwlwifi-5000-2.ucode
|
||||
lib/firmware/iwlwifi-5150-2.ucode
|
||||
lib/firmware/iwlwifi-6000-4.ucode
|
||||
#lib/firmware/kaweth
|
||||
lib/firmware/kaweth/new_code.bin
|
||||
lib/firmware/kaweth/new_code_fix.bin
|
||||
@@ -45,27 +134,158 @@ lib/firmware/keyspan/usa28xb.fw
|
||||
lib/firmware/keyspan/usa49w.fw
|
||||
lib/firmware/keyspan/usa49wlc.fw
|
||||
#lib/firmware/keyspan_pda
|
||||
#lib/firmware/keyspan_pda/keyspan_pda.S
|
||||
lib/firmware/keyspan_pda/keyspan_pda.fw
|
||||
#lib/firmware/keyspan_pda/xircom_pgs.S
|
||||
lib/firmware/keyspan_pda/xircom_pgs.fw
|
||||
#lib/firmware/korg
|
||||
lib/firmware/korg/k1212.dsp
|
||||
#lib/firmware/libertas
|
||||
lib/firmware/libertas/cf8385.bin
|
||||
lib/firmware/libertas/cf8385_helper.bin
|
||||
lib/firmware/libertas/gspi8682.bin
|
||||
lib/firmware/libertas/gspi8682_helper.bin
|
||||
lib/firmware/libertas/gspi8686_v9.bin
|
||||
lib/firmware/libertas/gspi8686_v9_helper.bin
|
||||
lib/firmware/libertas/gspi8688.bin
|
||||
lib/firmware/libertas/gspi8688_helper.bin
|
||||
lib/firmware/libertas/sd8385.bin
|
||||
lib/firmware/libertas/sd8385_helper.bin
|
||||
lib/firmware/libertas/sd8682.bin
|
||||
lib/firmware/libertas/sd8682_helper.bin
|
||||
lib/firmware/libertas/sd8686_v8.bin
|
||||
lib/firmware/libertas/sd8686_v8_helper.bin
|
||||
lib/firmware/libertas/sd8686_v9.bin
|
||||
lib/firmware/libertas/sd8686_v9_helper.bin
|
||||
lib/firmware/libertas/sd8688.bin
|
||||
lib/firmware/libertas/sd8688_helper.bin
|
||||
lib/firmware/libertas/usb8388_v5.bin
|
||||
lib/firmware/libertas/usb8388_v9.bin
|
||||
lib/firmware/libertas/usb8682.bin
|
||||
#lib/firmware/matrox
|
||||
lib/firmware/matrox/g200_warp.fw
|
||||
lib/firmware/matrox/g400_warp.fw
|
||||
lib/firmware/mts_cdma.fw
|
||||
lib/firmware/mts_edge.fw
|
||||
lib/firmware/mts_gsm.fw
|
||||
#lib/firmware/mwl8k
|
||||
lib/firmware/mwl8k/fmimage_8687.fw
|
||||
lib/firmware/mwl8k/helper_8687.fw
|
||||
#lib/firmware/myricom
|
||||
lib/firmware/myricom/lanai.bin
|
||||
#lib/firmware/ositech
|
||||
lib/firmware/ositech/Xilinx7OD.bin
|
||||
lib/firmware/ql2100_fw.bin
|
||||
lib/firmware/ql2200_fw.bin
|
||||
lib/firmware/ql2300_fw.bin
|
||||
lib/firmware/ql2322_fw.bin
|
||||
lib/firmware/ql2400_fw.bin
|
||||
lib/firmware/ql2500_fw.bin
|
||||
#lib/firmware/qlogic
|
||||
lib/firmware/qlogic/1040.bin
|
||||
lib/firmware/qlogic/12160.bin
|
||||
lib/firmware/qlogic/1280.bin
|
||||
lib/firmware/qlogic/isp1000.bin
|
||||
#lib/firmware/r128
|
||||
lib/firmware/r128/r128_cce.bin
|
||||
#lib/firmware/radeon
|
||||
lib/firmware/radeon/R100_cp.bin
|
||||
lib/firmware/radeon/R200_cp.bin
|
||||
lib/firmware/radeon/R300_cp.bin
|
||||
lib/firmware/radeon/R420_cp.bin
|
||||
lib/firmware/radeon/R520_cp.bin
|
||||
lib/firmware/radeon/R600_me.bin
|
||||
lib/firmware/radeon/R600_pfp.bin
|
||||
lib/firmware/radeon/R600_rlc.bin
|
||||
lib/firmware/radeon/R700_rlc.bin
|
||||
lib/firmware/radeon/RS600_cp.bin
|
||||
lib/firmware/radeon/RS690_cp.bin
|
||||
lib/firmware/radeon/RS780_me.bin
|
||||
lib/firmware/radeon/RS780_pfp.bin
|
||||
lib/firmware/radeon/RV610_me.bin
|
||||
lib/firmware/radeon/RV610_pfp.bin
|
||||
lib/firmware/radeon/RV620_me.bin
|
||||
lib/firmware/radeon/RV620_pfp.bin
|
||||
lib/firmware/radeon/RV630_me.bin
|
||||
lib/firmware/radeon/RV630_pfp.bin
|
||||
lib/firmware/radeon/RV635_me.bin
|
||||
lib/firmware/radeon/RV635_pfp.bin
|
||||
lib/firmware/radeon/RV670_me.bin
|
||||
lib/firmware/radeon/RV670_pfp.bin
|
||||
lib/firmware/radeon/RV710_me.bin
|
||||
lib/firmware/radeon/RV710_pfp.bin
|
||||
lib/firmware/radeon/RV730_me.bin
|
||||
lib/firmware/radeon/RV730_pfp.bin
|
||||
lib/firmware/radeon/RV770_me.bin
|
||||
lib/firmware/radeon/RV770_pfp.bin
|
||||
lib/firmware/rt2561.bin
|
||||
lib/firmware/rt2561s.bin
|
||||
lib/firmware/rt2661.bin
|
||||
lib/firmware/rt2860.bin
|
||||
lib/firmware/rt2870.bin
|
||||
lib/firmware/rt73.bin
|
||||
lib/firmware/s2250.fw
|
||||
lib/firmware/s2250_loader.fw
|
||||
#lib/firmware/sb16
|
||||
lib/firmware/sb16/alaw_main.csp
|
||||
lib/firmware/sb16/ima_adpcm_capture.csp
|
||||
lib/firmware/sb16/ima_adpcm_init.csp
|
||||
lib/firmware/sb16/ima_adpcm_playback.csp
|
||||
lib/firmware/sb16/mulaw_main.csp
|
||||
#lib/firmware/slicoss
|
||||
lib/firmware/slicoss/gbdownload.sys
|
||||
lib/firmware/slicoss/gbrcvucode.sys
|
||||
lib/firmware/slicoss/oasisdbgdownload.sys
|
||||
lib/firmware/slicoss/oasisdownload.sys
|
||||
lib/firmware/slicoss/oasisrcvucode.sys
|
||||
#lib/firmware/sun
|
||||
lib/firmware/sun/cassini.bin
|
||||
#lib/firmware/sxg
|
||||
lib/firmware/sxg/saharadbgdownloadB.sys
|
||||
lib/firmware/sxg/saharadownloadB.sys
|
||||
#lib/firmware/tehuti
|
||||
lib/firmware/tehuti/bdx.bin
|
||||
lib/firmware/ti_3410.fw
|
||||
lib/firmware/ti_5052.fw
|
||||
#lib/firmware/tigon
|
||||
lib/firmware/tigon/tg3.bin
|
||||
lib/firmware/tigon/tg3_tso.bin
|
||||
lib/firmware/tigon/tg3_tso5.bin
|
||||
lib/firmware/tr_smctr.bin
|
||||
#lib/firmware/ttusb-budget
|
||||
lib/firmware/ttusb-budget/dspbootcode.bin
|
||||
lib/firmware/av7110/bootcode.bin
|
||||
#lib/firmware/usbdux
|
||||
#lib/firmware/usbdux/Makefile_dux
|
||||
#lib/firmware/usbdux/README.dux
|
||||
#lib/firmware/usbdux/fx2-include.asm
|
||||
#lib/firmware/usbdux/usbdux_firmware.asm
|
||||
#lib/firmware/usbdux/usbduxfast_firmware.asm
|
||||
lib/firmware/usbdux_firmware.bin
|
||||
lib/firmware/usbduxfast_firmware.bin
|
||||
lib/firmware/v4l-cx231xx-avcore-01.fw
|
||||
lib/firmware/v4l-cx23418-apu.fw
|
||||
lib/firmware/v4l-cx23418-cpu.fw
|
||||
lib/firmware/v4l-cx23418-dig.fw
|
||||
lib/firmware/v4l-cx23885-avcore-01.fw
|
||||
lib/firmware/v4l-cx23885-enc.fw
|
||||
lib/firmware/v4l-cx25840.fw
|
||||
#lib/firmware/vicam
|
||||
lib/firmware/vicam/firmware.fw
|
||||
lib/firmware/whiteheat.fw
|
||||
lib/firmware/whiteheat_loader.fw
|
||||
#lib/firmware/yam
|
||||
lib/firmware/yam/1200.bin
|
||||
lib/firmware/yam/9600.bin
|
||||
#lib/firmware/yamaha
|
||||
lib/firmware/yamaha/ds1_ctrl.fw
|
||||
lib/firmware/yamaha/ds1_dsp.fw
|
||||
lib/firmware/yamaha/ds1e_ctrl.fw
|
||||
lib/firmware/yamaha/yss225_registers.bin
|
||||
lib/firmware/bnx2/bnx2-mips-06-5.0.0.j6.fw
|
||||
lib/firmware/bnx2/bnx2-mips-09-5.0.0.j9.fw
|
||||
lib/firmware/bnx2/bnx2-rv2p-09-5.0.0.j10.fw
|
||||
lib/firmware/bnx2/bnx2-rv2p-09ax-5.0.0.j10.fw
|
||||
lib/firmware/bnx2x-e1-5.0.21.0.fw
|
||||
lib/firmware/bnx2x-e1-5.2.13.0.fw
|
||||
lib/firmware/bnx2x-e1h-5.0.21.0.fw
|
||||
lib/firmware/bnx2x-e1h-5.2.13.0.fw
|
||||
|
||||
@@ -23,7 +23,7 @@
|
||||
#usr/bin/mrd
|
||||
#usr/bin/mren
|
||||
#usr/bin/mshowfat
|
||||
#usr/bin/mtools
|
||||
usr/bin/mtools
|
||||
#usr/bin/mtoolstest
|
||||
#usr/bin/mtype
|
||||
#usr/bin/mxtar
|
||||
|
||||
@@ -1,304 +0,0 @@
|
||||
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/hub-spoke.conf
|
||||
#etc/ipsec.d/examples/ipv6.conf
|
||||
#etc/ipsec.d/examples/l2tp-cert.conf
|
||||
#etc/ipsec.d/examples/l2tp-psk.conf
|
||||
#etc/ipsec.d/examples/linux-linux.conf
|
||||
#etc/ipsec.d/examples/oe-exclude-dns.conf
|
||||
#etc/ipsec.d/examples/sysctl.conf
|
||||
#etc/ipsec.d/examples/xauth.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/_startklips.old
|
||||
#usr/lib/ipsec/_startnetkey
|
||||
#usr/lib/ipsec/_updown
|
||||
#usr/lib/ipsec/_updown.klips
|
||||
#usr/lib/ipsec/_updown.klips.old
|
||||
#usr/lib/ipsec/_updown.klips~
|
||||
#usr/lib/ipsec/_updown.mast
|
||||
#usr/lib/ipsec/_updown.mast.old
|
||||
#usr/lib/ipsec/_updown.netkey
|
||||
usr/libexec/ipsec
|
||||
#usr/libexec/ipsec/_pluto_adns
|
||||
#usr/libexec/ipsec/addconn
|
||||
#usr/libexec/ipsec/auto
|
||||
#usr/libexec/ipsec/barf
|
||||
#usr/libexec/ipsec/eroute
|
||||
#usr/libexec/ipsec/ikeping
|
||||
#usr/libexec/ipsec/klipsdebug
|
||||
#usr/libexec/ipsec/look
|
||||
#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/showpolicy
|
||||
#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_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_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_eroute.5
|
||||
#usr/man/man5/ipsec_klipsdebug.5
|
||||
#usr/man/man5/ipsec_showpolicy.8
|
||||
#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__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__startnetkey.8
|
||||
#usr/man/man8/ipsec__updown.8
|
||||
#usr/man/man8/ipsec__updown.klips.8
|
||||
#usr/man/man8/ipsec__updown.mast.8
|
||||
#usr/man/man8/ipsec__updown.netkey.8
|
||||
#usr/man/man8/ipsec_addconn.8
|
||||
#usr/man/man8/ipsec_auto.8
|
||||
#usr/man/man8/ipsec_barf.8
|
||||
#usr/man/man8/ipsec_eroute.8
|
||||
#usr/man/man8/ipsec_ikeping.8
|
||||
#usr/man/man8/ipsec_klipsdebug.8
|
||||
#usr/man/man8/ipsec_look.8
|
||||
#usr/man/man8/ipsec_newhostkey.8
|
||||
#usr/man/man8/ipsec_pf_key.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_showpolicy.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.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__startnetkey.8.html
|
||||
#usr/share/doc/openswan/ipsec__updown.8.html
|
||||
#usr/share/doc/openswan/ipsec__updown.klips.8.html
|
||||
#usr/share/doc/openswan/ipsec__updown.mast.8.html
|
||||
#usr/share/doc/openswan/ipsec__updown.netkey.8.html
|
||||
#usr/share/doc/openswan/ipsec_addconn.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_copyright_notice.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_readwriteconf.8.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_set_policy.3.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_strerror.3.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_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
|
||||
@@ -6,12 +6,21 @@ usr/bin/rrdupdate
|
||||
#usr/lib/librrd.la
|
||||
usr/lib/librrd.so
|
||||
usr/lib/librrd.so.2
|
||||
usr/lib/librrd.so.2.0.8
|
||||
usr/lib/librrd.so.2.0.15
|
||||
#usr/lib/librrd_th.a
|
||||
#usr/lib/librrd_th.la
|
||||
usr/lib/librrd_th.so
|
||||
usr/lib/librrd_th.so.2
|
||||
usr/lib/librrd_th.so.2.0.8
|
||||
usr/lib/librrd_th.so.2.0.13
|
||||
usr/lib/perl5/site_perl/5.8.8/RRDp.pm
|
||||
usr/lib/perl5/site_perl/5.8.8/i586-linux/RRDs.pm
|
||||
#usr/lib/perl5/site_perl/5.8.8/i586-linux/auto/RRDp
|
||||
#usr/lib/perl5/site_perl/5.8.8/i586-linux/auto/RRDp/.packlist
|
||||
#usr/lib/perl5/site_perl/5.8.8/i586-linux/auto/RRDs
|
||||
#usr/lib/perl5/site_perl/5.8.8/i586-linux/auto/RRDs/.packlist
|
||||
usr/lib/perl5/site_perl/5.8.8/i586-linux/auto/RRDs/RRDs.bs
|
||||
usr/lib/perl5/site_perl/5.8.8/i586-linux/auto/RRDs/RRDs.so
|
||||
usr/lib/perl5/site_perl/5.8.8/i586-linux/ntmake.pl
|
||||
#usr/share/man/man1/bin_dec_hex.1
|
||||
#usr/share/man/man1/cdeftutorial.1
|
||||
#usr/share/man/man1/rpntutorial.1
|
||||
@@ -29,6 +38,7 @@ usr/lib/librrd_th.so.2.0.8
|
||||
#usr/share/man/man1/rrdgraph_rpn.1
|
||||
#usr/share/man/man1/rrdinfo.1
|
||||
#usr/share/man/man1/rrdlast.1
|
||||
#usr/share/man/man1/rrdlastupdate.1
|
||||
#usr/share/man/man1/rrdresize.1
|
||||
#usr/share/man/man1/rrdrestore.1
|
||||
#usr/share/man/man1/rrdthreads.1
|
||||
@@ -39,114 +49,105 @@ usr/lib/librrd_th.so.2.0.8
|
||||
#usr/share/man/man1/rrdxport.1
|
||||
#usr/share/man/man3/RRDp.3
|
||||
#usr/share/man/man3/RRDs.3
|
||||
#usr/share/rrdtool-1.2.15
|
||||
#usr/share/rrdtool-1.2.15/include
|
||||
#usr/share/rrdtool-1.2.15/include/rrd.h
|
||||
usr/lib/perl5/site_perl/5.8.8/RRDp.pm
|
||||
usr/lib/perl5/site_perl/5.8.8/i586-linux/RRDs.pm
|
||||
#usr/lib/perl5/site_perl/5.8.8/i586-linux/auto/RRDp
|
||||
#usr/lib/perl5/site_perl/5.8.8/i586-linux/auto/RRDp/.packlist
|
||||
#usr/lib/perl5/site_perl/5.8.8/i586-linux/auto/RRDs
|
||||
#usr/lib/perl5/site_perl/5.8.8/i586-linux/auto/RRDs/.packlist
|
||||
usr/lib/perl5/site_perl/5.8.8/i586-linux/auto/RRDs/RRDs.bs
|
||||
usr/lib/perl5/site_perl/5.8.8/i586-linux/auto/RRDs/RRDs.so
|
||||
usr/lib/perl5/site_perl/5.8.8/i586-linux/ntmake.pl
|
||||
#usr/share/rrdtool-1.2.15/share
|
||||
#usr/share/rrdtool-1.2.15/share/doc
|
||||
#usr/share/rrdtool-1.2.15/share/doc/rrdtool-1.2.15
|
||||
#usr/share/rrdtool-1.2.15/share/doc/rrdtool-1.2.15/html
|
||||
#usr/share/rrdtool-1.2.15/share/doc/rrdtool-1.2.15/html/RRDp.html
|
||||
#usr/share/rrdtool-1.2.15/share/doc/rrdtool-1.2.15/html/RRDs.html
|
||||
#usr/share/rrdtool-1.2.15/share/doc/rrdtool-1.2.15/html/bin_dec_hex.html
|
||||
#usr/share/rrdtool-1.2.15/share/doc/rrdtool-1.2.15/html/cdeftutorial.html
|
||||
#usr/share/rrdtool-1.2.15/share/doc/rrdtool-1.2.15/html/index.html
|
||||
#usr/share/rrdtool-1.2.15/share/doc/rrdtool-1.2.15/html/rpntutorial.html
|
||||
#usr/share/rrdtool-1.2.15/share/doc/rrdtool-1.2.15/html/rrd-beginners.html
|
||||
#usr/share/rrdtool-1.2.15/share/doc/rrdtool-1.2.15/html/rrdbuild.html
|
||||
#usr/share/rrdtool-1.2.15/share/doc/rrdtool-1.2.15/html/rrdcgi.html
|
||||
#usr/share/rrdtool-1.2.15/share/doc/rrdtool-1.2.15/html/rrdcreate.html
|
||||
#usr/share/rrdtool-1.2.15/share/doc/rrdtool-1.2.15/html/rrddump.html
|
||||
#usr/share/rrdtool-1.2.15/share/doc/rrdtool-1.2.15/html/rrdfetch.html
|
||||
#usr/share/rrdtool-1.2.15/share/doc/rrdtool-1.2.15/html/rrdfirst.html
|
||||
#usr/share/rrdtool-1.2.15/share/doc/rrdtool-1.2.15/html/rrdgraph.html
|
||||
#usr/share/rrdtool-1.2.15/share/doc/rrdtool-1.2.15/html/rrdgraph_data.html
|
||||
#usr/share/rrdtool-1.2.15/share/doc/rrdtool-1.2.15/html/rrdgraph_examples.html
|
||||
#usr/share/rrdtool-1.2.15/share/doc/rrdtool-1.2.15/html/rrdgraph_graph.html
|
||||
#usr/share/rrdtool-1.2.15/share/doc/rrdtool-1.2.15/html/rrdgraph_rpn.html
|
||||
#usr/share/rrdtool-1.2.15/share/doc/rrdtool-1.2.15/html/rrdinfo.html
|
||||
#usr/share/rrdtool-1.2.15/share/doc/rrdtool-1.2.15/html/rrdlast.html
|
||||
#usr/share/rrdtool-1.2.15/share/doc/rrdtool-1.2.15/html/rrdresize.html
|
||||
#usr/share/rrdtool-1.2.15/share/doc/rrdtool-1.2.15/html/rrdrestore.html
|
||||
#usr/share/rrdtool-1.2.15/share/doc/rrdtool-1.2.15/html/rrdthreads.html
|
||||
#usr/share/rrdtool-1.2.15/share/doc/rrdtool-1.2.15/html/rrdtool.html
|
||||
#usr/share/rrdtool-1.2.15/share/doc/rrdtool-1.2.15/html/rrdtune.html
|
||||
#usr/share/rrdtool-1.2.15/share/doc/rrdtool-1.2.15/html/rrdtutorial.html
|
||||
#usr/share/rrdtool-1.2.15/share/doc/rrdtool-1.2.15/html/rrdupdate.html
|
||||
#usr/share/rrdtool-1.2.15/share/doc/rrdtool-1.2.15/html/rrdxport.html
|
||||
#usr/share/rrdtool-1.2.15/share/doc/rrdtool-1.2.15/txt
|
||||
#usr/share/rrdtool-1.2.15/share/doc/rrdtool-1.2.15/txt/bin_dec_hex.pod
|
||||
#usr/share/rrdtool-1.2.15/share/doc/rrdtool-1.2.15/txt/bin_dec_hex.txt
|
||||
#usr/share/rrdtool-1.2.15/share/doc/rrdtool-1.2.15/txt/cdeftutorial.pod
|
||||
#usr/share/rrdtool-1.2.15/share/doc/rrdtool-1.2.15/txt/cdeftutorial.txt
|
||||
#usr/share/rrdtool-1.2.15/share/doc/rrdtool-1.2.15/txt/rpntutorial.pod
|
||||
#usr/share/rrdtool-1.2.15/share/doc/rrdtool-1.2.15/txt/rpntutorial.txt
|
||||
#usr/share/rrdtool-1.2.15/share/doc/rrdtool-1.2.15/txt/rrd-beginners.pod
|
||||
#usr/share/rrdtool-1.2.15/share/doc/rrdtool-1.2.15/txt/rrd-beginners.txt
|
||||
#usr/share/rrdtool-1.2.15/share/doc/rrdtool-1.2.15/txt/rrdbuild.pod
|
||||
#usr/share/rrdtool-1.2.15/share/doc/rrdtool-1.2.15/txt/rrdbuild.txt
|
||||
#usr/share/rrdtool-1.2.15/share/doc/rrdtool-1.2.15/txt/rrdcgi.pod
|
||||
#usr/share/rrdtool-1.2.15/share/doc/rrdtool-1.2.15/txt/rrdcgi.txt
|
||||
#usr/share/rrdtool-1.2.15/share/doc/rrdtool-1.2.15/txt/rrdcreate.pod
|
||||
#usr/share/rrdtool-1.2.15/share/doc/rrdtool-1.2.15/txt/rrdcreate.txt
|
||||
#usr/share/rrdtool-1.2.15/share/doc/rrdtool-1.2.15/txt/rrddump.pod
|
||||
#usr/share/rrdtool-1.2.15/share/doc/rrdtool-1.2.15/txt/rrddump.txt
|
||||
#usr/share/rrdtool-1.2.15/share/doc/rrdtool-1.2.15/txt/rrdfetch.pod
|
||||
#usr/share/rrdtool-1.2.15/share/doc/rrdtool-1.2.15/txt/rrdfetch.txt
|
||||
#usr/share/rrdtool-1.2.15/share/doc/rrdtool-1.2.15/txt/rrdfirst.pod
|
||||
#usr/share/rrdtool-1.2.15/share/doc/rrdtool-1.2.15/txt/rrdfirst.txt
|
||||
#usr/share/rrdtool-1.2.15/share/doc/rrdtool-1.2.15/txt/rrdgraph.pod
|
||||
#usr/share/rrdtool-1.2.15/share/doc/rrdtool-1.2.15/txt/rrdgraph.txt
|
||||
#usr/share/rrdtool-1.2.15/share/doc/rrdtool-1.2.15/txt/rrdgraph_data.pod
|
||||
#usr/share/rrdtool-1.2.15/share/doc/rrdtool-1.2.15/txt/rrdgraph_data.txt
|
||||
#usr/share/rrdtool-1.2.15/share/doc/rrdtool-1.2.15/txt/rrdgraph_examples.pod
|
||||
#usr/share/rrdtool-1.2.15/share/doc/rrdtool-1.2.15/txt/rrdgraph_examples.txt
|
||||
#usr/share/rrdtool-1.2.15/share/doc/rrdtool-1.2.15/txt/rrdgraph_graph.pod
|
||||
#usr/share/rrdtool-1.2.15/share/doc/rrdtool-1.2.15/txt/rrdgraph_graph.txt
|
||||
#usr/share/rrdtool-1.2.15/share/doc/rrdtool-1.2.15/txt/rrdgraph_rpn.pod
|
||||
#usr/share/rrdtool-1.2.15/share/doc/rrdtool-1.2.15/txt/rrdgraph_rpn.txt
|
||||
#usr/share/rrdtool-1.2.15/share/doc/rrdtool-1.2.15/txt/rrdinfo.pod
|
||||
#usr/share/rrdtool-1.2.15/share/doc/rrdtool-1.2.15/txt/rrdinfo.txt
|
||||
#usr/share/rrdtool-1.2.15/share/doc/rrdtool-1.2.15/txt/rrdlast.pod
|
||||
#usr/share/rrdtool-1.2.15/share/doc/rrdtool-1.2.15/txt/rrdlast.txt
|
||||
#usr/share/rrdtool-1.2.15/share/doc/rrdtool-1.2.15/txt/rrdresize.pod
|
||||
#usr/share/rrdtool-1.2.15/share/doc/rrdtool-1.2.15/txt/rrdresize.txt
|
||||
#usr/share/rrdtool-1.2.15/share/doc/rrdtool-1.2.15/txt/rrdrestore.pod
|
||||
#usr/share/rrdtool-1.2.15/share/doc/rrdtool-1.2.15/txt/rrdrestore.txt
|
||||
#usr/share/rrdtool-1.2.15/share/doc/rrdtool-1.2.15/txt/rrdthreads.pod
|
||||
#usr/share/rrdtool-1.2.15/share/doc/rrdtool-1.2.15/txt/rrdthreads.txt
|
||||
#usr/share/rrdtool-1.2.15/share/doc/rrdtool-1.2.15/txt/rrdtool.pod
|
||||
#usr/share/rrdtool-1.2.15/share/doc/rrdtool-1.2.15/txt/rrdtool.txt
|
||||
#usr/share/rrdtool-1.2.15/share/doc/rrdtool-1.2.15/txt/rrdtune.pod
|
||||
#usr/share/rrdtool-1.2.15/share/doc/rrdtool-1.2.15/txt/rrdtune.txt
|
||||
#usr/share/rrdtool-1.2.15/share/doc/rrdtool-1.2.15/txt/rrdtutorial.pod
|
||||
#usr/share/rrdtool-1.2.15/share/doc/rrdtool-1.2.15/txt/rrdtutorial.txt
|
||||
#usr/share/rrdtool-1.2.15/share/doc/rrdtool-1.2.15/txt/rrdupdate.pod
|
||||
#usr/share/rrdtool-1.2.15/share/doc/rrdtool-1.2.15/txt/rrdupdate.txt
|
||||
#usr/share/rrdtool-1.2.15/share/doc/rrdtool-1.2.15/txt/rrdxport.pod
|
||||
#usr/share/rrdtool-1.2.15/share/doc/rrdtool-1.2.15/txt/rrdxport.txt
|
||||
#usr/share/rrdtool-1.2.15/share/man
|
||||
#usr/share/rrdtool-1.2.15/share/man/man3
|
||||
#usr/share/rrdtool-1.2.15/share/man/man3/RRDp.3
|
||||
#usr/share/rrdtool-1.2.15/share/man/man3/RRDs.3
|
||||
#usr/share/rrdtool-1.2.15/share/rrdtool
|
||||
#usr/share/rrdtool-1.2.15/share/rrdtool/examples
|
||||
#usr/share/rrdtool-1.2.15/share/rrdtool/examples/4charts.pl
|
||||
#usr/share/rrdtool-1.2.15/share/rrdtool/examples/bigtops.pl
|
||||
#usr/share/rrdtool-1.2.15/share/rrdtool/examples/cgi-demo.cgi
|
||||
#usr/share/rrdtool-1.2.15/share/rrdtool/examples/minmax.pl
|
||||
#usr/share/rrdtool-1.2.15/share/rrdtool/examples/piped-demo.pl
|
||||
#usr/share/rrdtool-1.2.15/share/rrdtool/examples/shared-demo.pl
|
||||
#usr/share/rrdtool-1.2.15/share/rrdtool/examples/stripes.pl
|
||||
#usr/share/rrdtool-1.2.15/share/rrdtool/fonts
|
||||
usr/share/rrdtool-1.2.15/share/rrdtool/fonts/DejaVuSansMono-Roman.ttf
|
||||
#usr/share/rrdtool-1.2.30
|
||||
#usr/share/rrdtool-1.2.30/include
|
||||
#usr/share/rrdtool-1.2.30/include/rrd.h
|
||||
#usr/share/rrdtool-1.2.30/share
|
||||
#usr/share/rrdtool-1.2.30/share/doc
|
||||
#usr/share/rrdtool-1.2.30/share/doc/rrdtool-1.2.30
|
||||
#usr/share/rrdtool-1.2.30/share/doc/rrdtool-1.2.30/html
|
||||
#usr/share/rrdtool-1.2.30/share/doc/rrdtool-1.2.30/html/RRDp.html
|
||||
#usr/share/rrdtool-1.2.30/share/doc/rrdtool-1.2.30/html/RRDs.html
|
||||
#usr/share/rrdtool-1.2.30/share/doc/rrdtool-1.2.30/html/bin_dec_hex.html
|
||||
#usr/share/rrdtool-1.2.30/share/doc/rrdtool-1.2.30/html/cdeftutorial.html
|
||||
#usr/share/rrdtool-1.2.30/share/doc/rrdtool-1.2.30/html/index.html
|
||||
#usr/share/rrdtool-1.2.30/share/doc/rrdtool-1.2.30/html/rpntutorial.html
|
||||
#usr/share/rrdtool-1.2.30/share/doc/rrdtool-1.2.30/html/rrd-beginners.html
|
||||
#usr/share/rrdtool-1.2.30/share/doc/rrdtool-1.2.30/html/rrdbuild.html
|
||||
#usr/share/rrdtool-1.2.30/share/doc/rrdtool-1.2.30/html/rrdcgi.html
|
||||
#usr/share/rrdtool-1.2.30/share/doc/rrdtool-1.2.30/html/rrdcreate.html
|
||||
#usr/share/rrdtool-1.2.30/share/doc/rrdtool-1.2.30/html/rrddump.html
|
||||
#usr/share/rrdtool-1.2.30/share/doc/rrdtool-1.2.30/html/rrdfetch.html
|
||||
#usr/share/rrdtool-1.2.30/share/doc/rrdtool-1.2.30/html/rrdfirst.html
|
||||
#usr/share/rrdtool-1.2.30/share/doc/rrdtool-1.2.30/html/rrdgraph.html
|
||||
#usr/share/rrdtool-1.2.30/share/doc/rrdtool-1.2.30/html/rrdgraph_data.html
|
||||
#usr/share/rrdtool-1.2.30/share/doc/rrdtool-1.2.30/html/rrdgraph_examples.html
|
||||
#usr/share/rrdtool-1.2.30/share/doc/rrdtool-1.2.30/html/rrdgraph_graph.html
|
||||
#usr/share/rrdtool-1.2.30/share/doc/rrdtool-1.2.30/html/rrdgraph_rpn.html
|
||||
#usr/share/rrdtool-1.2.30/share/doc/rrdtool-1.2.30/html/rrdinfo.html
|
||||
#usr/share/rrdtool-1.2.30/share/doc/rrdtool-1.2.30/html/rrdlast.html
|
||||
#usr/share/rrdtool-1.2.30/share/doc/rrdtool-1.2.30/html/rrdlastupdate.html
|
||||
#usr/share/rrdtool-1.2.30/share/doc/rrdtool-1.2.30/html/rrdresize.html
|
||||
#usr/share/rrdtool-1.2.30/share/doc/rrdtool-1.2.30/html/rrdrestore.html
|
||||
#usr/share/rrdtool-1.2.30/share/doc/rrdtool-1.2.30/html/rrdthreads.html
|
||||
#usr/share/rrdtool-1.2.30/share/doc/rrdtool-1.2.30/html/rrdtool.html
|
||||
#usr/share/rrdtool-1.2.30/share/doc/rrdtool-1.2.30/html/rrdtune.html
|
||||
#usr/share/rrdtool-1.2.30/share/doc/rrdtool-1.2.30/html/rrdtutorial.html
|
||||
#usr/share/rrdtool-1.2.30/share/doc/rrdtool-1.2.30/html/rrdupdate.html
|
||||
#usr/share/rrdtool-1.2.30/share/doc/rrdtool-1.2.30/html/rrdxport.html
|
||||
#usr/share/rrdtool-1.2.30/share/doc/rrdtool-1.2.30/txt
|
||||
#usr/share/rrdtool-1.2.30/share/doc/rrdtool-1.2.30/txt/bin_dec_hex.pod
|
||||
#usr/share/rrdtool-1.2.30/share/doc/rrdtool-1.2.30/txt/bin_dec_hex.txt
|
||||
#usr/share/rrdtool-1.2.30/share/doc/rrdtool-1.2.30/txt/cdeftutorial.pod
|
||||
#usr/share/rrdtool-1.2.30/share/doc/rrdtool-1.2.30/txt/cdeftutorial.txt
|
||||
#usr/share/rrdtool-1.2.30/share/doc/rrdtool-1.2.30/txt/rpntutorial.pod
|
||||
#usr/share/rrdtool-1.2.30/share/doc/rrdtool-1.2.30/txt/rpntutorial.txt
|
||||
#usr/share/rrdtool-1.2.30/share/doc/rrdtool-1.2.30/txt/rrd-beginners.pod
|
||||
#usr/share/rrdtool-1.2.30/share/doc/rrdtool-1.2.30/txt/rrd-beginners.txt
|
||||
#usr/share/rrdtool-1.2.30/share/doc/rrdtool-1.2.30/txt/rrdbuild.pod
|
||||
#usr/share/rrdtool-1.2.30/share/doc/rrdtool-1.2.30/txt/rrdbuild.txt
|
||||
#usr/share/rrdtool-1.2.30/share/doc/rrdtool-1.2.30/txt/rrdcgi.pod
|
||||
#usr/share/rrdtool-1.2.30/share/doc/rrdtool-1.2.30/txt/rrdcgi.txt
|
||||
#usr/share/rrdtool-1.2.30/share/doc/rrdtool-1.2.30/txt/rrdcreate.pod
|
||||
#usr/share/rrdtool-1.2.30/share/doc/rrdtool-1.2.30/txt/rrdcreate.txt
|
||||
#usr/share/rrdtool-1.2.30/share/doc/rrdtool-1.2.30/txt/rrddump.pod
|
||||
#usr/share/rrdtool-1.2.30/share/doc/rrdtool-1.2.30/txt/rrddump.txt
|
||||
#usr/share/rrdtool-1.2.30/share/doc/rrdtool-1.2.30/txt/rrdfetch.pod
|
||||
#usr/share/rrdtool-1.2.30/share/doc/rrdtool-1.2.30/txt/rrdfetch.txt
|
||||
#usr/share/rrdtool-1.2.30/share/doc/rrdtool-1.2.30/txt/rrdfirst.pod
|
||||
#usr/share/rrdtool-1.2.30/share/doc/rrdtool-1.2.30/txt/rrdfirst.txt
|
||||
#usr/share/rrdtool-1.2.30/share/doc/rrdtool-1.2.30/txt/rrdgraph.pod
|
||||
#usr/share/rrdtool-1.2.30/share/doc/rrdtool-1.2.30/txt/rrdgraph.txt
|
||||
#usr/share/rrdtool-1.2.30/share/doc/rrdtool-1.2.30/txt/rrdgraph_data.pod
|
||||
#usr/share/rrdtool-1.2.30/share/doc/rrdtool-1.2.30/txt/rrdgraph_data.txt
|
||||
#usr/share/rrdtool-1.2.30/share/doc/rrdtool-1.2.30/txt/rrdgraph_examples.pod
|
||||
#usr/share/rrdtool-1.2.30/share/doc/rrdtool-1.2.30/txt/rrdgraph_examples.txt
|
||||
#usr/share/rrdtool-1.2.30/share/doc/rrdtool-1.2.30/txt/rrdgraph_graph.pod
|
||||
#usr/share/rrdtool-1.2.30/share/doc/rrdtool-1.2.30/txt/rrdgraph_graph.txt
|
||||
#usr/share/rrdtool-1.2.30/share/doc/rrdtool-1.2.30/txt/rrdgraph_rpn.pod
|
||||
#usr/share/rrdtool-1.2.30/share/doc/rrdtool-1.2.30/txt/rrdgraph_rpn.txt
|
||||
#usr/share/rrdtool-1.2.30/share/doc/rrdtool-1.2.30/txt/rrdinfo.pod
|
||||
#usr/share/rrdtool-1.2.30/share/doc/rrdtool-1.2.30/txt/rrdinfo.txt
|
||||
#usr/share/rrdtool-1.2.30/share/doc/rrdtool-1.2.30/txt/rrdlast.pod
|
||||
#usr/share/rrdtool-1.2.30/share/doc/rrdtool-1.2.30/txt/rrdlast.txt
|
||||
#usr/share/rrdtool-1.2.30/share/doc/rrdtool-1.2.30/txt/rrdlastupdate.pod
|
||||
#usr/share/rrdtool-1.2.30/share/doc/rrdtool-1.2.30/txt/rrdlastupdate.txt
|
||||
#usr/share/rrdtool-1.2.30/share/doc/rrdtool-1.2.30/txt/rrdresize.pod
|
||||
#usr/share/rrdtool-1.2.30/share/doc/rrdtool-1.2.30/txt/rrdresize.txt
|
||||
#usr/share/rrdtool-1.2.30/share/doc/rrdtool-1.2.30/txt/rrdrestore.pod
|
||||
#usr/share/rrdtool-1.2.30/share/doc/rrdtool-1.2.30/txt/rrdrestore.txt
|
||||
#usr/share/rrdtool-1.2.30/share/doc/rrdtool-1.2.30/txt/rrdthreads.pod
|
||||
#usr/share/rrdtool-1.2.30/share/doc/rrdtool-1.2.30/txt/rrdthreads.txt
|
||||
#usr/share/rrdtool-1.2.30/share/doc/rrdtool-1.2.30/txt/rrdtool.pod
|
||||
#usr/share/rrdtool-1.2.30/share/doc/rrdtool-1.2.30/txt/rrdtool.txt
|
||||
#usr/share/rrdtool-1.2.30/share/doc/rrdtool-1.2.30/txt/rrdtune.pod
|
||||
#usr/share/rrdtool-1.2.30/share/doc/rrdtool-1.2.30/txt/rrdtune.txt
|
||||
#usr/share/rrdtool-1.2.30/share/doc/rrdtool-1.2.30/txt/rrdtutorial.pod
|
||||
#usr/share/rrdtool-1.2.30/share/doc/rrdtool-1.2.30/txt/rrdtutorial.txt
|
||||
#usr/share/rrdtool-1.2.30/share/doc/rrdtool-1.2.30/txt/rrdupdate.pod
|
||||
#usr/share/rrdtool-1.2.30/share/doc/rrdtool-1.2.30/txt/rrdupdate.txt
|
||||
#usr/share/rrdtool-1.2.30/share/doc/rrdtool-1.2.30/txt/rrdxport.pod
|
||||
#usr/share/rrdtool-1.2.30/share/doc/rrdtool-1.2.30/txt/rrdxport.txt
|
||||
#usr/share/rrdtool-1.2.30/share/rrdtool
|
||||
#usr/share/rrdtool-1.2.30/share/rrdtool/examples
|
||||
#usr/share/rrdtool-1.2.30/share/rrdtool/examples/4charts.pl
|
||||
#usr/share/rrdtool-1.2.30/share/rrdtool/examples/bigtops.pl
|
||||
#usr/share/rrdtool-1.2.30/share/rrdtool/examples/cgi-demo.cgi
|
||||
#usr/share/rrdtool-1.2.30/share/rrdtool/examples/minmax.pl
|
||||
#usr/share/rrdtool-1.2.30/share/rrdtool/examples/perftest.pl
|
||||
#usr/share/rrdtool-1.2.30/share/rrdtool/examples/piped-demo.pl
|
||||
#usr/share/rrdtool-1.2.30/share/rrdtool/examples/shared-demo.pl
|
||||
#usr/share/rrdtool-1.2.30/share/rrdtool/examples/stripes.pl
|
||||
#usr/share/rrdtool-1.2.30/share/rrdtool/fonts
|
||||
usr/share/rrdtool-1.2.30/share/rrdtool/fonts/DejaVuSansMono-Roman.ttf
|
||||
var/log/rrd
|
||||
|
||||
@@ -19,6 +19,7 @@ etc/ld.so.conf
|
||||
etc/logrotate.conf
|
||||
etc/mime.types
|
||||
etc/modprobe.d
|
||||
etc/modprobe.d/cfg80211
|
||||
etc/modules.conf
|
||||
etc/mtab
|
||||
etc/nsswitch.conf
|
||||
|
||||
123
config/rootfiles/common/strongswan
Normal file
123
config/rootfiles/common/strongswan
Normal file
@@ -0,0 +1,123 @@
|
||||
etc/ipsec.conf
|
||||
#etc/ipsec.d
|
||||
etc/ipsec.d/aacerts
|
||||
etc/ipsec.d/acerts
|
||||
etc/ipsec.d/cacerts
|
||||
etc/ipsec.d/certs
|
||||
etc/ipsec.d/crls
|
||||
etc/ipsec.d/ocspcerts
|
||||
etc/ipsec.d/private
|
||||
etc/ipsec.d/reqs
|
||||
etc/ipsec.secrets
|
||||
etc/strongswan.conf
|
||||
#usr/lib/libstrongswan.a
|
||||
#usr/lib/libstrongswan.la
|
||||
usr/lib/libstrongswan.so
|
||||
usr/lib/libstrongswan.so.0
|
||||
usr/lib/libstrongswan.so.0.0.0
|
||||
#usr/libexec/ipsec
|
||||
usr/libexec/ipsec/_copyright
|
||||
usr/libexec/ipsec/_pluto_adns
|
||||
usr/libexec/ipsec/_updown
|
||||
usr/libexec/ipsec/_updown_espmark
|
||||
usr/libexec/ipsec/charon
|
||||
usr/libexec/ipsec/openac
|
||||
usr/libexec/ipsec/pki
|
||||
#usr/libexec/ipsec/plugins
|
||||
#usr/libexec/ipsec/plugins/libstrongswan-aes.a
|
||||
#usr/libexec/ipsec/plugins/libstrongswan-aes.la
|
||||
usr/libexec/ipsec/plugins/libstrongswan-aes.so
|
||||
#usr/libexec/ipsec/plugins/libstrongswan-attr.a
|
||||
#usr/libexec/ipsec/plugins/libstrongswan-attr.la
|
||||
usr/libexec/ipsec/plugins/libstrongswan-attr.so
|
||||
#usr/libexec/ipsec/plugins/libstrongswan-des.a
|
||||
#usr/libexec/ipsec/plugins/libstrongswan-des.la
|
||||
usr/libexec/ipsec/plugins/libstrongswan-des.so
|
||||
#usr/libexec/ipsec/plugins/libstrongswan-dnskey.a
|
||||
#usr/libexec/ipsec/plugins/libstrongswan-dnskey.la
|
||||
usr/libexec/ipsec/plugins/libstrongswan-dnskey.so
|
||||
#usr/libexec/ipsec/plugins/libstrongswan-fips-prf.a
|
||||
#usr/libexec/ipsec/plugins/libstrongswan-fips-prf.la
|
||||
usr/libexec/ipsec/plugins/libstrongswan-fips-prf.so
|
||||
#usr/libexec/ipsec/plugins/libstrongswan-gmp.a
|
||||
#usr/libexec/ipsec/plugins/libstrongswan-gmp.la
|
||||
usr/libexec/ipsec/plugins/libstrongswan-gmp.so
|
||||
#usr/libexec/ipsec/plugins/libstrongswan-hmac.a
|
||||
#usr/libexec/ipsec/plugins/libstrongswan-hmac.la
|
||||
usr/libexec/ipsec/plugins/libstrongswan-hmac.so
|
||||
#usr/libexec/ipsec/plugins/libstrongswan-kernel-netlink.a
|
||||
#usr/libexec/ipsec/plugins/libstrongswan-kernel-netlink.la
|
||||
usr/libexec/ipsec/plugins/libstrongswan-kernel-netlink.so
|
||||
#usr/libexec/ipsec/plugins/libstrongswan-md5.a
|
||||
#usr/libexec/ipsec/plugins/libstrongswan-md5.la
|
||||
usr/libexec/ipsec/plugins/libstrongswan-md5.so
|
||||
#usr/libexec/ipsec/plugins/libstrongswan-pem.a
|
||||
#usr/libexec/ipsec/plugins/libstrongswan-pem.la
|
||||
usr/libexec/ipsec/plugins/libstrongswan-pem.so
|
||||
#usr/libexec/ipsec/plugins/libstrongswan-pgp.a
|
||||
#usr/libexec/ipsec/plugins/libstrongswan-pgp.la
|
||||
usr/libexec/ipsec/plugins/libstrongswan-pgp.so
|
||||
#usr/libexec/ipsec/plugins/libstrongswan-pkcs1.a
|
||||
#usr/libexec/ipsec/plugins/libstrongswan-pkcs1.la
|
||||
usr/libexec/ipsec/plugins/libstrongswan-pkcs1.so
|
||||
#usr/libexec/ipsec/plugins/libstrongswan-pubkey.a
|
||||
#usr/libexec/ipsec/plugins/libstrongswan-pubkey.la
|
||||
usr/libexec/ipsec/plugins/libstrongswan-pubkey.so
|
||||
#usr/libexec/ipsec/plugins/libstrongswan-random.a
|
||||
#usr/libexec/ipsec/plugins/libstrongswan-random.la
|
||||
usr/libexec/ipsec/plugins/libstrongswan-random.so
|
||||
#usr/libexec/ipsec/plugins/libstrongswan-resolve.a
|
||||
#usr/libexec/ipsec/plugins/libstrongswan-resolve.la
|
||||
usr/libexec/ipsec/plugins/libstrongswan-resolve.so
|
||||
#usr/libexec/ipsec/plugins/libstrongswan-sha1.a
|
||||
#usr/libexec/ipsec/plugins/libstrongswan-sha1.la
|
||||
usr/libexec/ipsec/plugins/libstrongswan-sha1.so
|
||||
#usr/libexec/ipsec/plugins/libstrongswan-sha2.a
|
||||
#usr/libexec/ipsec/plugins/libstrongswan-sha2.la
|
||||
usr/libexec/ipsec/plugins/libstrongswan-sha2.so
|
||||
#usr/libexec/ipsec/plugins/libstrongswan-stroke.a
|
||||
#usr/libexec/ipsec/plugins/libstrongswan-stroke.la
|
||||
usr/libexec/ipsec/plugins/libstrongswan-stroke.so
|
||||
#usr/libexec/ipsec/plugins/libstrongswan-updown.a
|
||||
#usr/libexec/ipsec/plugins/libstrongswan-updown.la
|
||||
usr/libexec/ipsec/plugins/libstrongswan-updown.so
|
||||
#usr/libexec/ipsec/plugins/libstrongswan-x509.a
|
||||
#usr/libexec/ipsec/plugins/libstrongswan-x509.la
|
||||
usr/libexec/ipsec/plugins/libstrongswan-x509.so
|
||||
#usr/libexec/ipsec/plugins/libstrongswan-xcbc.a
|
||||
#usr/libexec/ipsec/plugins/libstrongswan-xcbc.la
|
||||
usr/libexec/ipsec/plugins/libstrongswan-xcbc.so
|
||||
usr/libexec/ipsec/pluto
|
||||
usr/libexec/ipsec/scepclient
|
||||
usr/libexec/ipsec/starter
|
||||
usr/libexec/ipsec/stroke
|
||||
usr/libexec/ipsec/whack
|
||||
usr/sbin/ipsec
|
||||
#usr/share/man/man3/anyaddr.3
|
||||
#usr/share/man/man3/atoaddr.3
|
||||
#usr/share/man/man3/atoasr.3
|
||||
#usr/share/man/man3/atosa.3
|
||||
#usr/share/man/man3/atoul.3
|
||||
#usr/share/man/man3/goodmask.3
|
||||
#usr/share/man/man3/initaddr.3
|
||||
#usr/share/man/man3/initsubnet.3
|
||||
#usr/share/man/man3/keyblobtoid.3
|
||||
#usr/share/man/man3/portof.3
|
||||
#usr/share/man/man3/prng.3
|
||||
#usr/share/man/man3/rangetosubnet.3
|
||||
#usr/share/man/man3/sameaddr.3
|
||||
#usr/share/man/man3/subnetof.3
|
||||
#usr/share/man/man3/ttoaddr.3
|
||||
#usr/share/man/man3/ttodata.3
|
||||
#usr/share/man/man3/ttosa.3
|
||||
#usr/share/man/man3/ttoul.3
|
||||
#usr/share/man/man5/ipsec.conf.5
|
||||
#usr/share/man/man5/ipsec.secrets.5
|
||||
#usr/share/man/man8/_copyright.8
|
||||
#usr/share/man/man8/_updown.8
|
||||
#usr/share/man/man8/_updown_espmark.8
|
||||
#usr/share/man/man8/ipsec.8
|
||||
#usr/share/man/man8/openac.8
|
||||
#usr/share/man/man8/pluto.8
|
||||
#usr/share/man/man8/scepclient.8
|
||||
#usr/share/man/man8/starter.8
|
||||
@@ -15,6 +15,9 @@
|
||||
#opt/i586-uClibc/include/arpa/telnet.h
|
||||
#opt/i586-uClibc/include/arpa/tftp.h
|
||||
#opt/i586-uClibc/include/asm
|
||||
#opt/i586-uClibc/include/asm-generic
|
||||
#opt/i586-uClibc/include/asm-generic/errno-base.h
|
||||
#opt/i586-uClibc/include/asm-generic/errno.h
|
||||
#opt/i586-uClibc/include/asm/8253pit.h
|
||||
#opt/i586-uClibc/include/asm/a.out.h
|
||||
#opt/i586-uClibc/include/asm/agp.h
|
||||
@@ -54,10 +57,6 @@
|
||||
#opt/i586-uClibc/include/asm/irq.h
|
||||
#opt/i586-uClibc/include/asm/kdebug.h
|
||||
#opt/i586-uClibc/include/asm/kprobes.h
|
||||
#opt/i586-uClibc/include/asm/kvm.h
|
||||
#opt/i586-uClibc/include/asm/kvm_host.h
|
||||
#opt/i586-uClibc/include/asm/kvm_para.h
|
||||
#opt/i586-uClibc/include/asm/kvm_x86_emulate.h
|
||||
#opt/i586-uClibc/include/asm/ldt.h
|
||||
#opt/i586-uClibc/include/asm/linkage.h
|
||||
#opt/i586-uClibc/include/asm/mach-bigsmp
|
||||
@@ -171,7 +170,6 @@
|
||||
#opt/i586-uClibc/include/asm/srat.h
|
||||
#opt/i586-uClibc/include/asm/stat.h
|
||||
#opt/i586-uClibc/include/asm/suspend.h
|
||||
#opt/i586-uClibc/include/asm/svm.h
|
||||
#opt/i586-uClibc/include/asm/system.h
|
||||
#opt/i586-uClibc/include/asm/termbits.h
|
||||
#opt/i586-uClibc/include/asm/termios.h
|
||||
@@ -185,9 +183,7 @@
|
||||
#opt/i586-uClibc/include/asm/user.h
|
||||
#opt/i586-uClibc/include/asm/vga.h
|
||||
#opt/i586-uClibc/include/asm/vic.h
|
||||
#opt/i586-uClibc/include/asm/virtext.h
|
||||
#opt/i586-uClibc/include/asm/vm86.h
|
||||
#opt/i586-uClibc/include/asm/vmx.h
|
||||
#opt/i586-uClibc/include/asm/voyager.h
|
||||
#opt/i586-uClibc/include/assert.h
|
||||
#opt/i586-uClibc/include/atomic.h
|
||||
@@ -403,6 +399,7 @@
|
||||
#opt/i586-uClibc/include/linux/cramfs_fs_sb.h
|
||||
#opt/i586-uClibc/include/linux/crc32.h
|
||||
#opt/i586-uClibc/include/linux/crypto.h
|
||||
#opt/i586-uClibc/include/linux/cryptodev.h
|
||||
#opt/i586-uClibc/include/linux/ctype.h
|
||||
#opt/i586-uClibc/include/linux/cuda.h
|
||||
#opt/i586-uClibc/include/linux/cyclades.h
|
||||
@@ -597,10 +594,6 @@
|
||||
#opt/i586-uClibc/include/linux/kmalloc_sizes.h
|
||||
#opt/i586-uClibc/include/linux/kmod.h
|
||||
#opt/i586-uClibc/include/linux/kprobes.h
|
||||
#opt/i586-uClibc/include/linux/kvm.h
|
||||
#opt/i586-uClibc/include/linux/kvm_host.h
|
||||
#opt/i586-uClibc/include/linux/kvm_para.h
|
||||
#opt/i586-uClibc/include/linux/kvm_types.h
|
||||
#opt/i586-uClibc/include/linux/lapb.h
|
||||
#opt/i586-uClibc/include/linux/lcd.h
|
||||
#opt/i586-uClibc/include/linux/libata.h
|
||||
@@ -672,17 +665,35 @@
|
||||
#opt/i586-uClibc/include/linux/netdevice.h
|
||||
#opt/i586-uClibc/include/linux/netfilter
|
||||
#opt/i586-uClibc/include/linux/netfilter.h
|
||||
#opt/i586-uClibc/include/linux/netfilter/Kbuild
|
||||
#opt/i586-uClibc/include/linux/netfilter/nf_conntrack_amanda.h
|
||||
#opt/i586-uClibc/include/linux/netfilter/nf_conntrack_common.h
|
||||
#opt/i586-uClibc/include/linux/netfilter/nf_conntrack_tuple.h
|
||||
#opt/i586-uClibc/include/linux/netfilter/nf_conntrack_dccp.h
|
||||
#opt/i586-uClibc/include/linux/netfilter/nf_conntrack_ftp.h
|
||||
#opt/i586-uClibc/include/linux/netfilter/nf_conntrack_h323.h
|
||||
#opt/i586-uClibc/include/linux/netfilter/nf_conntrack_h323_asn1.h
|
||||
#opt/i586-uClibc/include/linux/netfilter/nf_conntrack_h323_types.h
|
||||
#opt/i586-uClibc/include/linux/netfilter/nf_conntrack_irc.h
|
||||
#opt/i586-uClibc/include/linux/netfilter/nf_conntrack_pptp.h
|
||||
#opt/i586-uClibc/include/linux/netfilter/nf_conntrack_proto_gre.h
|
||||
#opt/i586-uClibc/include/linux/netfilter/nf_conntrack_sane.h
|
||||
#opt/i586-uClibc/include/linux/netfilter/nf_conntrack_sctp.h
|
||||
#opt/i586-uClibc/include/linux/netfilter/nf_conntrack_sip.h
|
||||
#opt/i586-uClibc/include/linux/netfilter/nf_conntrack_tcp.h
|
||||
#opt/i586-uClibc/include/linux/netfilter/nf_conntrack_tftp.h
|
||||
#opt/i586-uClibc/include/linux/netfilter/nf_conntrack_tuple_common.h
|
||||
#opt/i586-uClibc/include/linux/netfilter/nf_nat.h
|
||||
#opt/i586-uClibc/include/linux/netfilter/nfnetlink.h
|
||||
#opt/i586-uClibc/include/linux/netfilter/nfnetlink_compat.h
|
||||
#opt/i586-uClibc/include/linux/netfilter/nfnetlink_conntrack.h
|
||||
#opt/i586-uClibc/include/linux/netfilter/nfnetlink_log.h
|
||||
#opt/i586-uClibc/include/linux/netfilter/nfnetlink_queue.h
|
||||
#opt/i586-uClibc/include/linux/netfilter/x_tables.h
|
||||
#opt/i586-uClibc/include/linux/netfilter/xt_CLASSIFY.h
|
||||
#opt/i586-uClibc/include/linux/netfilter/xt_CONNMARK.h
|
||||
#opt/i586-uClibc/include/linux/netfilter/xt_CONNSECMARK.h
|
||||
#opt/i586-uClibc/include/linux/netfilter/xt_DSCP.h
|
||||
#opt/i586-uClibc/include/linux/netfilter/xt_IMQ.h
|
||||
#opt/i586-uClibc/include/linux/netfilter/xt_LED.h
|
||||
#opt/i586-uClibc/include/linux/netfilter/xt_MARK.h
|
||||
#opt/i586-uClibc/include/linux/netfilter/xt_NFLOG.h
|
||||
#opt/i586-uClibc/include/linux/netfilter/xt_NFQUEUE.h
|
||||
@@ -690,6 +701,8 @@
|
||||
#opt/i586-uClibc/include/linux/netfilter/xt_SECMARK.h
|
||||
#opt/i586-uClibc/include/linux/netfilter/xt_TCPMSS.h
|
||||
#opt/i586-uClibc/include/linux/netfilter/xt_TCPOPTSTRIP.h
|
||||
#opt/i586-uClibc/include/linux/netfilter/xt_TPROXY.h
|
||||
#opt/i586-uClibc/include/linux/netfilter/xt_cluster.h
|
||||
#opt/i586-uClibc/include/linux/netfilter/xt_comment.h
|
||||
#opt/i586-uClibc/include/linux/netfilter/xt_connbytes.h
|
||||
#opt/i586-uClibc/include/linux/netfilter/xt_connlimit.h
|
||||
@@ -701,11 +714,13 @@
|
||||
#opt/i586-uClibc/include/linux/netfilter/xt_hashlimit.h
|
||||
#opt/i586-uClibc/include/linux/netfilter/xt_helper.h
|
||||
#opt/i586-uClibc/include/linux/netfilter/xt_iprange.h
|
||||
#opt/i586-uClibc/include/linux/netfilter/xt_layer7.h
|
||||
#opt/i586-uClibc/include/linux/netfilter/xt_length.h
|
||||
#opt/i586-uClibc/include/linux/netfilter/xt_limit.h
|
||||
#opt/i586-uClibc/include/linux/netfilter/xt_mac.h
|
||||
#opt/i586-uClibc/include/linux/netfilter/xt_mark.h
|
||||
#opt/i586-uClibc/include/linux/netfilter/xt_multiport.h
|
||||
#opt/i586-uClibc/include/linux/netfilter/xt_osf.h
|
||||
#opt/i586-uClibc/include/linux/netfilter/xt_owner.h
|
||||
#opt/i586-uClibc/include/linux/netfilter/xt_physdev.h
|
||||
#opt/i586-uClibc/include/linux/netfilter/xt_pkttype.h
|
||||
@@ -713,7 +728,9 @@
|
||||
#opt/i586-uClibc/include/linux/netfilter/xt_quota.h
|
||||
#opt/i586-uClibc/include/linux/netfilter/xt_rateest.h
|
||||
#opt/i586-uClibc/include/linux/netfilter/xt_realm.h
|
||||
#opt/i586-uClibc/include/linux/netfilter/xt_recent.h
|
||||
#opt/i586-uClibc/include/linux/netfilter/xt_sctp.h
|
||||
#opt/i586-uClibc/include/linux/netfilter/xt_socket.h
|
||||
#opt/i586-uClibc/include/linux/netfilter/xt_state.h
|
||||
#opt/i586-uClibc/include/linux/netfilter/xt_statistic.h
|
||||
#opt/i586-uClibc/include/linux/netfilter/xt_string.h
|
||||
@@ -764,30 +781,25 @@
|
||||
#opt/i586-uClibc/include/linux/netfilter_ipv4/ip_nat_protocol.h
|
||||
#opt/i586-uClibc/include/linux/netfilter_ipv4/ip_nat_rule.h
|
||||
#opt/i586-uClibc/include/linux/netfilter_ipv4/ip_queue.h
|
||||
#opt/i586-uClibc/include/linux/netfilter_ipv4/ip_set.h
|
||||
#opt/i586-uClibc/include/linux/netfilter_ipv4/ip_tables.h
|
||||
#opt/i586-uClibc/include/linux/netfilter_ipv4/ipt_CLASSIFY.h
|
||||
#opt/i586-uClibc/include/linux/netfilter_ipv4/ipt_CLUSTERIP.h
|
||||
#opt/i586-uClibc/include/linux/netfilter_ipv4/ipt_CONNMARK.h
|
||||
#opt/i586-uClibc/include/linux/netfilter_ipv4/ipt_DSCP.h
|
||||
#opt/i586-uClibc/include/linux/netfilter_ipv4/ipt_ECN.h
|
||||
#opt/i586-uClibc/include/linux/netfilter_ipv4/ipt_FTOS.h
|
||||
#opt/i586-uClibc/include/linux/netfilter_ipv4/ipt_LOG.h
|
||||
#opt/i586-uClibc/include/linux/netfilter_ipv4/ipt_MARK.h
|
||||
#opt/i586-uClibc/include/linux/netfilter_ipv4/ipt_REJECT.h
|
||||
#opt/i586-uClibc/include/linux/netfilter_ipv4/ipt_SAME.h
|
||||
#opt/i586-uClibc/include/linux/netfilter_ipv4/ipt_TCPMSS.h
|
||||
#opt/i586-uClibc/include/linux/netfilter_ipv4/ipt_TOS.h
|
||||
#opt/i586-uClibc/include/linux/netfilter_ipv4/ipt_TTL.h
|
||||
#opt/i586-uClibc/include/linux/netfilter_ipv4/ipt_ULOG.h
|
||||
#opt/i586-uClibc/include/linux/netfilter_ipv4/ipt_addrtype.h
|
||||
#opt/i586-uClibc/include/linux/netfilter_ipv4/ipt_ah.h
|
||||
#opt/i586-uClibc/include/linux/netfilter_ipv4/ipt_comment.h
|
||||
#opt/i586-uClibc/include/linux/netfilter_ipv4/ipt_connlimit.h
|
||||
#opt/i586-uClibc/include/linux/netfilter_ipv4/ipt_connmark.h
|
||||
#opt/i586-uClibc/include/linux/netfilter_ipv4/ipt_conntrack.h
|
||||
#opt/i586-uClibc/include/linux/netfilter_ipv4/ipt_dscp.h
|
||||
#opt/i586-uClibc/include/linux/netfilter_ipv4/ipt_dstlimit.h
|
||||
#opt/i586-uClibc/include/linux/netfilter_ipv4/ipt_ecn.h
|
||||
#opt/i586-uClibc/include/linux/netfilter_ipv4/ipt_esp.h
|
||||
#opt/i586-uClibc/include/linux/netfilter_ipv4/ipt_hashlimit.h
|
||||
@@ -801,12 +813,9 @@
|
||||
#opt/i586-uClibc/include/linux/netfilter_ipv4/ipt_owner.h
|
||||
#opt/i586-uClibc/include/linux/netfilter_ipv4/ipt_physdev.h
|
||||
#opt/i586-uClibc/include/linux/netfilter_ipv4/ipt_pkttype.h
|
||||
#opt/i586-uClibc/include/linux/netfilter_ipv4/ipt_policy.h
|
||||
#opt/i586-uClibc/include/linux/netfilter_ipv4/ipt_realm.h
|
||||
#opt/i586-uClibc/include/linux/netfilter_ipv4/ipt_recent.h
|
||||
#opt/i586-uClibc/include/linux/netfilter_ipv4/ipt_rpc.h
|
||||
#opt/i586-uClibc/include/linux/netfilter_ipv4/ipt_sctp.h
|
||||
#opt/i586-uClibc/include/linux/netfilter_ipv4/ipt_set.h
|
||||
#opt/i586-uClibc/include/linux/netfilter_ipv4/ipt_state.h
|
||||
#opt/i586-uClibc/include/linux/netfilter_ipv4/ipt_tcpmss.h
|
||||
#opt/i586-uClibc/include/linux/netfilter_ipv4/ipt_tos.h
|
||||
@@ -816,11 +825,8 @@
|
||||
#opt/i586-uClibc/include/linux/netfilter_ipv6
|
||||
#opt/i586-uClibc/include/linux/netfilter_ipv6.h
|
||||
#opt/i586-uClibc/include/linux/netfilter_ipv6/ip6_tables.h
|
||||
#opt/i586-uClibc/include/linux/netfilter_ipv6/ip6t_HL.h
|
||||
#opt/i586-uClibc/include/linux/netfilter_ipv6/ip6t_LOG.h
|
||||
#opt/i586-uClibc/include/linux/netfilter_ipv6/ip6t_MARK.h
|
||||
#opt/i586-uClibc/include/linux/netfilter_ipv6/ip6t_REJECT.h
|
||||
#opt/i586-uClibc/include/linux/netfilter_ipv6/ip6t_TCPMSS.h
|
||||
#opt/i586-uClibc/include/linux/netfilter_ipv6/ip6t_ah.h
|
||||
#opt/i586-uClibc/include/linux/netfilter_ipv6/ip6t_esp.h
|
||||
#opt/i586-uClibc/include/linux/netfilter_ipv6/ip6t_frag.h
|
||||
@@ -830,12 +836,10 @@
|
||||
#opt/i586-uClibc/include/linux/netfilter_ipv6/ip6t_limit.h
|
||||
#opt/i586-uClibc/include/linux/netfilter_ipv6/ip6t_mac.h
|
||||
#opt/i586-uClibc/include/linux/netfilter_ipv6/ip6t_mark.h
|
||||
#opt/i586-uClibc/include/linux/netfilter_ipv6/ip6t_mh.h
|
||||
#opt/i586-uClibc/include/linux/netfilter_ipv6/ip6t_multiport.h
|
||||
#opt/i586-uClibc/include/linux/netfilter_ipv6/ip6t_opts.h
|
||||
#opt/i586-uClibc/include/linux/netfilter_ipv6/ip6t_owner.h
|
||||
#opt/i586-uClibc/include/linux/netfilter_ipv6/ip6t_physdev.h
|
||||
#opt/i586-uClibc/include/linux/netfilter_ipv6/ip6t_policy.h
|
||||
#opt/i586-uClibc/include/linux/netfilter_ipv6/ip6t_rt.h
|
||||
#opt/i586-uClibc/include/linux/netlink.h
|
||||
#opt/i586-uClibc/include/linux/netrom.h
|
||||
|
||||
80
config/rootfiles/common/xz
Normal file
80
config/rootfiles/common/xz
Normal file
@@ -0,0 +1,80 @@
|
||||
usr/bin/lzcat
|
||||
usr/bin/lzcmp
|
||||
usr/bin/lzdiff
|
||||
usr/bin/lzegrep
|
||||
usr/bin/lzfgrep
|
||||
usr/bin/lzgrep
|
||||
usr/bin/lzless
|
||||
usr/bin/lzma
|
||||
usr/bin/lzmadec
|
||||
usr/bin/lzmainfo
|
||||
usr/bin/lzmore
|
||||
usr/bin/unlzma
|
||||
usr/bin/unxz
|
||||
usr/bin/xz
|
||||
usr/bin/xzcat
|
||||
usr/bin/xzcmp
|
||||
usr/bin/xzdec
|
||||
usr/bin/xzdiff
|
||||
usr/bin/xzegrep
|
||||
usr/bin/xzfgrep
|
||||
usr/bin/xzgrep
|
||||
usr/bin/xzless
|
||||
usr/bin/xzmore
|
||||
#usr/include/lzma
|
||||
#usr/include/lzma.h
|
||||
#usr/include/lzma/base.h
|
||||
#usr/include/lzma/bcj.h
|
||||
#usr/include/lzma/block.h
|
||||
#usr/include/lzma/check.h
|
||||
#usr/include/lzma/container.h
|
||||
#usr/include/lzma/delta.h
|
||||
#usr/include/lzma/filter.h
|
||||
#usr/include/lzma/index.h
|
||||
#usr/include/lzma/index_hash.h
|
||||
#usr/include/lzma/lzma.h
|
||||
#usr/include/lzma/stream_flags.h
|
||||
#usr/include/lzma/subblock.h
|
||||
#usr/include/lzma/version.h
|
||||
#usr/include/lzma/vli.h
|
||||
#usr/lib/liblzma.a
|
||||
#usr/lib/liblzma.la
|
||||
usr/lib/liblzma.so
|
||||
usr/lib/liblzma.so.0
|
||||
usr/lib/liblzma.so.0.0.0
|
||||
#usr/lib/pkgconfig/liblzma.pc
|
||||
#usr/share/doc/xz
|
||||
#usr/share/doc/xz/AUTHORS
|
||||
#usr/share/doc/xz/COPYING
|
||||
#usr/share/doc/xz/COPYING.GPLv2
|
||||
#usr/share/doc/xz/NEWS
|
||||
#usr/share/doc/xz/README
|
||||
#usr/share/doc/xz/THANKS
|
||||
#usr/share/doc/xz/TODO
|
||||
#usr/share/doc/xz/faq.txt
|
||||
#usr/share/doc/xz/history.txt
|
||||
#usr/share/doc/xz/lzma-file-format.txt
|
||||
#usr/share/doc/xz/xz-file-format.txt
|
||||
#usr/share/man/man1/lzcat.1
|
||||
#usr/share/man/man1/lzcmp.1
|
||||
#usr/share/man/man1/lzdiff.1
|
||||
#usr/share/man/man1/lzegrep.1
|
||||
#usr/share/man/man1/lzfgrep.1
|
||||
#usr/share/man/man1/lzgrep.1
|
||||
#usr/share/man/man1/lzless.1
|
||||
#usr/share/man/man1/lzma.1
|
||||
#usr/share/man/man1/lzmadec.1
|
||||
#usr/share/man/man1/lzmainfo.1
|
||||
#usr/share/man/man1/lzmore.1
|
||||
#usr/share/man/man1/unlzma.1
|
||||
#usr/share/man/man1/unxz.1
|
||||
#usr/share/man/man1/xz.1
|
||||
#usr/share/man/man1/xzcat.1
|
||||
#usr/share/man/man1/xzcmp.1
|
||||
#usr/share/man/man1/xzdec.1
|
||||
#usr/share/man/man1/xzdiff.1
|
||||
#usr/share/man/man1/xzegrep.1
|
||||
#usr/share/man/man1/xzfgrep.1
|
||||
#usr/share/man/man1/xzgrep.1
|
||||
#usr/share/man/man1/xzless.1
|
||||
#usr/share/man/man1/xzmore.1
|
||||
@@ -1 +0,0 @@
|
||||
../../../common/apache2
|
||||
@@ -1 +0,0 @@
|
||||
../../../common/eject
|
||||
@@ -1,25 +0,0 @@
|
||||
etc/system-release
|
||||
etc/collectd.conf
|
||||
lib/modules/2.6.27.42-ipfire/kernel/net
|
||||
lib/modules/2.6.27.42-ipfire-xen/kernel/net
|
||||
lib/modules/2.6.27.42-ipfire/mISDN/hfcsusb.ko
|
||||
lib/modules/2.6.27.42-ipfire-xen/mISDN/hfcsusb.ko
|
||||
lib/modules/2.6.27.42-ipfire/kernel/drivers/hwmon/coretemp.ko
|
||||
lib/modules/2.6.27.42-ipfire-xen/kernel/drivers/hwmon/coretemp.ko
|
||||
lib/modules/2.6.27.42-ipfire/kernel/drivers/net/et131x.ko
|
||||
lib/modules/2.6.27.42-ipfire-xen/kernel/drivers/net/et131x.ko
|
||||
lib/modules/2.6.27.42-ipfire/kernel/arch/x86/kernel/cpu/cpufreq/p4-clockmod.ko
|
||||
lib/modules/2.6.27.42-ipfire/kernel/drivers/net/wireless/ath/ath5k/ath5k.ko
|
||||
lib/modules/2.6.27.42-ipfire-xen/kernel/drivers/net/wireless/ath/ath5k/ath5k.ko
|
||||
srv/web/ipfire/cgi-bin/urlfilter.cgi
|
||||
srv/web/ipfire/cgi-bin/outgoingfw.cgi
|
||||
srv/web/ipfire/cgi-bin/remote.cgi
|
||||
srv/web/ipfire/cgi-bin/media.cgi
|
||||
srv/web/ipfire/cgi-bin/qos.cgi
|
||||
srv/web/ipfire/cgi-bin/hardwaregraphs.cgi
|
||||
usr/local/bin/sshctrl
|
||||
var/ipfire/langs/de.pl
|
||||
var/ipfire/langs/en.pl
|
||||
var/ipfire/langs/fr.pl
|
||||
opt/pakfire/lib/functions.pl
|
||||
opt/pakfire/lib/functions.sh
|
||||
@@ -1 +0,0 @@
|
||||
../../../common/openssh
|
||||
@@ -1 +0,0 @@
|
||||
../../../common/openssl
|
||||
@@ -1 +0,0 @@
|
||||
../../../common/squid
|
||||
2
config/rootfiles/oldcore/35/exclude
Normal file
2
config/rootfiles/oldcore/35/exclude
Normal file
@@ -0,0 +1,2 @@
|
||||
etc/ipsec.conf
|
||||
etc/ipsec.secrets
|
||||
1
config/rootfiles/oldcore/35/filelists/openswan
Symbolic link
1
config/rootfiles/oldcore/35/filelists/openswan
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../common/openswan
|
||||
2
config/rootfiles/oldcore/35/filelists/openswan-modules
Normal file
2
config/rootfiles/oldcore/35/filelists/openswan-modules
Normal file
@@ -0,0 +1,2 @@
|
||||
lib/modules/2.6.27.42-ipfire-xen/kernel/net/ipsec/ipsec.ko
|
||||
lib/modules/2.6.27.42-ipfire/kernel/net/ipsec/ipsec.ko
|
||||
@@ -65,6 +65,7 @@ usr/lib/perl5/site_perl/5.8.8/Dahdi/Xpp/Xbus.pm
|
||||
usr/lib/perl5/site_perl/5.8.8/Dahdi/Xpp/Xpd.pm
|
||||
usr/sbin/astribank_allow
|
||||
usr/sbin/astribank_hexload
|
||||
usr/sbin/astribank_is_starting
|
||||
usr/sbin/astribank_tool
|
||||
usr/sbin/dahdi_cfg
|
||||
usr/sbin/dahdi_genconf
|
||||
@@ -79,6 +80,7 @@ usr/sbin/fpga_load
|
||||
usr/sbin/fxotune
|
||||
usr/sbin/lsdahdi
|
||||
usr/sbin/sethdlc
|
||||
usr/sbin/twinstar
|
||||
usr/sbin/xpp_blink
|
||||
usr/sbin/xpp_sync
|
||||
#usr/share/dahdi
|
||||
@@ -101,6 +103,7 @@ usr/share/dahdi/waitfor_xpds
|
||||
usr/share/dahdi/xpp_fxloader
|
||||
#usr/share/man/man8/astribank_allow.8
|
||||
#usr/share/man/man8/astribank_hexload.8
|
||||
#usr/share/man/man8/astribank_is_starting.8
|
||||
#usr/share/man/man8/astribank_tool.8
|
||||
#usr/share/man/man8/dahdi_cfg.8
|
||||
#usr/share/man/man8/dahdi_genconf.8
|
||||
@@ -113,6 +116,7 @@ usr/share/dahdi/xpp_fxloader
|
||||
#usr/share/man/man8/fpga_load.8
|
||||
#usr/share/man/man8/fxotune.8
|
||||
#usr/share/man/man8/lsdahdi.8
|
||||
#usr/share/man/man8/twinstar.8
|
||||
#usr/share/man/man8/xpp_blink.8
|
||||
#usr/share/man/man8/xpp_sync.8
|
||||
#var/ipfire/asterisk
|
||||
|
||||
@@ -249,13 +249,13 @@ usr/share/foomatic/db/source/opt/gutenprint-ijs.5.2-stp_yellowdensity-1.xml
|
||||
usr/share/foomatic/db/source/opt/gutenprint-ijs.5.2-stp_yellowgamma-1.xml
|
||||
usr/share/foomatic/kitload.log
|
||||
#usr/share/gutenprint
|
||||
usr/share/gutenprint/5.2
|
||||
usr/share/gutenprint/5.2/xml
|
||||
#usr/share/gutenprint/5.2
|
||||
#usr/share/gutenprint/5.2/xml
|
||||
usr/share/gutenprint/5.2/xml/dither-matrix-1x1.xml
|
||||
usr/share/gutenprint/5.2/xml/dither-matrix-2x1.xml
|
||||
usr/share/gutenprint/5.2/xml/dither-matrix-4x1.xml
|
||||
usr/share/gutenprint/5.2/xml/escp2
|
||||
usr/share/gutenprint/5.2/xml/escp2/inks
|
||||
#usr/share/gutenprint/5.2/xml/escp2
|
||||
#usr/share/gutenprint/5.2/xml/escp2/inks
|
||||
usr/share/gutenprint/5.2/xml/escp2/inks/artisan.xml
|
||||
usr/share/gutenprint/5.2/xml/escp2/inks/b500.xml
|
||||
usr/share/gutenprint/5.2/xml/escp2/inks/c120.xml
|
||||
@@ -295,7 +295,7 @@ usr/share/gutenprint/5.2/xml/escp2/inks/ultrachrome.xml
|
||||
usr/share/gutenprint/5.2/xml/escp2/inks/wf40.xml
|
||||
usr/share/gutenprint/5.2/xml/escp2/inks/wf500.xml
|
||||
usr/share/gutenprint/5.2/xml/escp2/inks/x80.xml
|
||||
usr/share/gutenprint/5.2/xml/escp2/inputslots
|
||||
#usr/share/gutenprint/5.2/xml/escp2/inputslots
|
||||
usr/share/gutenprint/5.2/xml/escp2/inputslots/artisan.xml
|
||||
usr/share/gutenprint/5.2/xml/escp2/inputslots/b500.xml
|
||||
usr/share/gutenprint/5.2/xml/escp2/inputslots/cd.xml
|
||||
@@ -311,7 +311,7 @@ usr/share/gutenprint/5.2/xml/escp2/inputslots/rx680.xml
|
||||
usr/share/gutenprint/5.2/xml/escp2/inputslots/rx700.xml
|
||||
usr/share/gutenprint/5.2/xml/escp2/inputslots/spro5000.xml
|
||||
usr/share/gutenprint/5.2/xml/escp2/inputslots/standard_roll_feed.xml
|
||||
usr/share/gutenprint/5.2/xml/escp2/media
|
||||
#usr/share/gutenprint/5.2/xml/escp2/media
|
||||
usr/share/gutenprint/5.2/xml/escp2/media/artisan.xml
|
||||
usr/share/gutenprint/5.2/xml/escp2/media/b500.xml
|
||||
usr/share/gutenprint/5.2/xml/escp2/media/c120.xml
|
||||
@@ -351,9 +351,9 @@ usr/share/gutenprint/5.2/xml/escp2/media/standard_gen0.xml
|
||||
usr/share/gutenprint/5.2/xml/escp2/media/ultrachrome.xml
|
||||
usr/share/gutenprint/5.2/xml/escp2/media/wf500.xml
|
||||
usr/share/gutenprint/5.2/xml/escp2/media/x80.xml
|
||||
usr/share/gutenprint/5.2/xml/escp2/mediasizes
|
||||
#usr/share/gutenprint/5.2/xml/escp2/mediasizes
|
||||
usr/share/gutenprint/5.2/xml/escp2/mediasizes/standard.xml
|
||||
usr/share/gutenprint/5.2/xml/escp2/model
|
||||
#usr/share/gutenprint/5.2/xml/escp2/model
|
||||
usr/share/gutenprint/5.2/xml/escp2/model/model_0.xml
|
||||
usr/share/gutenprint/5.2/xml/escp2/model/model_1.xml
|
||||
usr/share/gutenprint/5.2/xml/escp2/model/model_10.xml
|
||||
@@ -455,13 +455,13 @@ usr/share/gutenprint/5.2/xml/escp2/model/model_96.xml
|
||||
usr/share/gutenprint/5.2/xml/escp2/model/model_97.xml
|
||||
usr/share/gutenprint/5.2/xml/escp2/model/model_98.xml
|
||||
usr/share/gutenprint/5.2/xml/escp2/model/model_99.xml
|
||||
usr/share/gutenprint/5.2/xml/escp2/qualitypresets
|
||||
#usr/share/gutenprint/5.2/xml/escp2/qualitypresets
|
||||
usr/share/gutenprint/5.2/xml/escp2/qualitypresets/p1_5.xml
|
||||
usr/share/gutenprint/5.2/xml/escp2/qualitypresets/picturemate.xml
|
||||
usr/share/gutenprint/5.2/xml/escp2/qualitypresets/standard.xml
|
||||
usr/share/gutenprint/5.2/xml/escp2/qualitypresets/v2880.xml
|
||||
usr/share/gutenprint/5.2/xml/escp2/qualitypresets/wf40.xml
|
||||
usr/share/gutenprint/5.2/xml/escp2/weaves
|
||||
#usr/share/gutenprint/5.2/xml/escp2/weaves
|
||||
usr/share/gutenprint/5.2/xml/escp2/weaves/pro7000.xml
|
||||
usr/share/gutenprint/5.2/xml/escp2/weaves/pro7500.xml
|
||||
usr/share/gutenprint/5.2/xml/escp2/weaves/pro7600.xml
|
||||
@@ -512,12 +512,12 @@ usr/share/locale/de/LC_MESSAGES/gutenprint.mo
|
||||
usr/share/locale/de/gutenprint_de.po
|
||||
#usr/share/locale/el/LC_MESSAGES/gutenprint.mo
|
||||
#usr/share/locale/el/gutenprint_el.po
|
||||
usr/share/locale/en_GB/LC_MESSAGES/gutenprint.mo
|
||||
usr/share/locale/en_GB/gutenprint_en_GB.po
|
||||
usr/share/locale/es/LC_MESSAGES/gutenprint.mo
|
||||
usr/share/locale/es/gutenprint_es.po
|
||||
usr/share/locale/fr/LC_MESSAGES/gutenprint.mo
|
||||
usr/share/locale/fr/gutenprint_fr.po
|
||||
#usr/share/locale/en_GB/LC_MESSAGES/gutenprint.mo
|
||||
#usr/share/locale/en_GB/gutenprint_en_GB.po
|
||||
#usr/share/locale/es/LC_MESSAGES/gutenprint.mo
|
||||
#usr/share/locale/es/gutenprint_es.po
|
||||
#usr/share/locale/fr/LC_MESSAGES/gutenprint.mo
|
||||
#usr/share/locale/fr/gutenprint_fr.po
|
||||
#usr/share/locale/hu/LC_MESSAGES/gutenprint.mo
|
||||
#usr/share/locale/hu/gutenprint_hu.po
|
||||
#usr/share/locale/it/LC_MESSAGES/gutenprint.mo
|
||||
@@ -532,8 +532,8 @@ usr/share/locale/fr/gutenprint_fr.po
|
||||
#usr/share/locale/pl/gutenprint_pl.po
|
||||
#usr/share/locale/pt/LC_MESSAGES/gutenprint.mo
|
||||
#usr/share/locale/pt/gutenprint_pt.po
|
||||
usr/share/locale/ru/LC_MESSAGES/gutenprint.mo
|
||||
usr/share/locale/ru/gutenprint_ru.po
|
||||
#usr/share/locale/ru/LC_MESSAGES/gutenprint.mo
|
||||
#usr/share/locale/ru/gutenprint_ru.po
|
||||
#usr/share/locale/sk/LC_MESSAGES/gutenprint.mo
|
||||
#usr/share/locale/sk/gutenprint_sk.po
|
||||
#usr/share/locale/sv/LC_MESSAGES/gutenprint.mo
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -86,7 +86,7 @@ CONFIG_GZIP=y
|
||||
CONFIG_TAR=y
|
||||
# CONFIG_FEATURE_TAR_CREATE is not set
|
||||
CONFIG_FEATURE_TAR_BZIP2=y
|
||||
# CONFIG_FEATURE_TAR_LZMA is not set
|
||||
CONFIG_FEATURE_TAR_LZMA=y
|
||||
# CONFIG_FEATURE_TAR_FROM is not set
|
||||
CONFIG_FEATURE_TAR_GZIP=y
|
||||
# CONFIG_FEATURE_TAR_COMPRESS is not set
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
== List of softwares used to build IPFire Version: 2.5 ==
|
||||
== List of softwares used to build IPFire Version: 2.6 ==
|
||||
* Archive-Tar-1.29
|
||||
* Archive-Zip-1.16
|
||||
* BerkeleyDB-0.27
|
||||
@@ -36,17 +36,13 @@
|
||||
* Unix-Syslog-0.100
|
||||
* XML-Parser-2.34
|
||||
* alsa-lib-1.0.22
|
||||
* alsa-lib-1.0.22-kmod-2.6.27.42-ipfire
|
||||
* alsa-lib-1.0.22-kmod-2.6.32.10-ipfire
|
||||
* amavisd-new-2.5.2
|
||||
* apcupsd-3.14.4
|
||||
* applejuice-0.31
|
||||
* arping-2.05
|
||||
* as86-0.16.17
|
||||
* asterisk-1.4.28
|
||||
* atl1c-kmod-2.6.27.42-ipfire
|
||||
* atl1c-kmod-2.6.27.42-ipfire-xen
|
||||
* atl2-2.0.5-kmod-2.6.27.42-ipfire
|
||||
* atl2-2.0.5-kmod-2.6.27.42-ipfire-xen
|
||||
* autoconf-2.59
|
||||
* automake-1.9.6
|
||||
* backup-ipfire
|
||||
@@ -65,24 +61,24 @@
|
||||
* cacti-0.8.7e
|
||||
* calamaris-2.59
|
||||
* capi4k-utils-2005-07-18
|
||||
* ccache-2.4
|
||||
* ccache-3.0pre0
|
||||
* cdrtools-2.01.01
|
||||
* centerim-4.22.1
|
||||
* clamav-0.95.3
|
||||
* cmake-2.4.8
|
||||
* collectd-4.5.3
|
||||
* compat-wireless-2.6.32.2-kmod-2.6.27.42-ipfire
|
||||
* compat-wireless-2.6.32.2-kmod-2.6.27.42-ipfire-xen
|
||||
* collectd-4.9.1
|
||||
* coreutils-5.96
|
||||
* cpio-2.6
|
||||
* cpufrequtils-007
|
||||
* cryptodev-20091126-kmod-2.6.32.10-ipfire
|
||||
* cryptodev-20091126-kmod-2.6.32.10-ipfire-xen
|
||||
* cups-1.4.2
|
||||
* curl-7.19.5
|
||||
* cyrus-imapd-2.2.12
|
||||
* cyrus-sasl-2.1.21
|
||||
* dahdi-2.2.0.2
|
||||
* dahdi-2.2.0.2-kmod-2.6.27.42-ipfire
|
||||
* dahdi-2.2.0.2-kmod-2.6.27.42-ipfire-xen
|
||||
* dahdi-2.2.1
|
||||
* dahdi-2.2.1-kmod-2.6.32.10-ipfire
|
||||
* dahdi-2.2.1-kmod-2.6.32.10-ipfire-xen
|
||||
* db-4.4.20
|
||||
* dbus-1.0.3
|
||||
* dhcp-3.1.0
|
||||
@@ -90,8 +86,6 @@
|
||||
* diffutils-2.8.1
|
||||
* dnsmasq-2.45
|
||||
* dosfstools-2.11
|
||||
* e1000e-1.0.2.5-kmod-2.6.27.42-ipfire
|
||||
* e1000e-1.0.2.5-kmod-2.6.27.42-ipfire-xen
|
||||
* e2fsprogs-1.39
|
||||
* ebtables-v2.0.8-2
|
||||
* ed-0.2
|
||||
@@ -99,8 +93,6 @@
|
||||
* elinks-0.11.6
|
||||
* esniper-2-19-0
|
||||
* espgs-8.15.1
|
||||
* et131x-kmod-2.6.27.42-ipfire
|
||||
* et131x-kmod-2.6.27.42-ipfire-xen
|
||||
* etherwake-1.09
|
||||
* ethtool-3
|
||||
* expat-2.0.0
|
||||
@@ -118,7 +110,7 @@
|
||||
* foomatic-3.0-20070813
|
||||
* freefont-20060126
|
||||
* freetype-2.1.10
|
||||
* fuse-2.7.4
|
||||
* fuse-2.8.3
|
||||
* fwhits
|
||||
* gawk-3.1.5
|
||||
* gcc-4.0.4
|
||||
@@ -141,8 +133,6 @@
|
||||
* hdparm-8.9
|
||||
* hostapd-0.7.1
|
||||
* hplip-2.7.10
|
||||
* hso-1.9-kmod-2.6.27.42-ipfire
|
||||
* hso-1.9-kmod-2.6.27.42-ipfire-xen
|
||||
* htop-0.8.1
|
||||
* httpd-2.2.15
|
||||
* hwdata
|
||||
@@ -157,7 +147,7 @@
|
||||
* iperf-2.0.4
|
||||
* ipfireseeder-1.00
|
||||
* iproute2-2.6.16-060323
|
||||
* iptables-1.4.2
|
||||
* iptables-1.4.6
|
||||
* iptstate-2.1
|
||||
* iputils-ss020927
|
||||
* iw-0.9.15
|
||||
@@ -166,10 +156,9 @@
|
||||
* jpegsrc.v6b
|
||||
* kbd-1.12
|
||||
* klibc-1.5.14
|
||||
* kqemu-1.4.0pre1-kmod-2.6.27.42-ipfire
|
||||
* kqemu-1.4.0pre1-kmod-2.6.27.42-ipfire-xen
|
||||
* kqemu-1.4.0pre1-kmod-2.6.32.10-ipfire
|
||||
* kqemu-1.4.0pre1-kmod-2.6.32.10-ipfire-xen
|
||||
* kudzu-1.2.64
|
||||
* kvm-kmod-2.6.31.5-kmod-2.6.27.42-ipfire
|
||||
* l7-protocols-2009-05-10
|
||||
* lame-3.97
|
||||
* lcd4linux-0.10.1-RC2
|
||||
@@ -186,6 +175,7 @@
|
||||
* libnet-1.1.2.1
|
||||
* libnl-1.1
|
||||
* libogg-1.1.4
|
||||
* liboping-1.3.4
|
||||
* libpcap-1.0.0
|
||||
* libpng-1.2.12
|
||||
* libpri-1.4.10.2
|
||||
@@ -200,9 +190,10 @@
|
||||
* libwww-perl-5.803
|
||||
* libxml2-2.6.26
|
||||
* libxslt-1.1.17
|
||||
* linux-2.6.27.42-ipfire
|
||||
* linux-2.6.27.42-ipfire-xen
|
||||
* linux-2.6.32.10-ipfire
|
||||
* linux-2.6.32.10-ipfire-xen
|
||||
* linux-atm-2.4.1
|
||||
* linux-firmware-20100318
|
||||
* linux-libc-headers-2.6.12.0
|
||||
* lm_sensors-3.1.2
|
||||
* logrotate-3.7.1
|
||||
@@ -211,11 +202,9 @@
|
||||
* lynis-1.2.9
|
||||
* lzo-2.02
|
||||
* m4-1.4.4
|
||||
* mISDN_20090906-kmod-2.6.27.42-ipfire
|
||||
* mISDN_20090906-kmod-2.6.27.42-ipfire-xen
|
||||
* mISDNuser_20090906
|
||||
* madwifi-hal-0.10.5.6-r4119-20100201-kmod-2.6.27.42-ipfire
|
||||
* madwifi-hal-0.10.5.6-r4119-20100201-kmod-2.6.27.42-ipfire-xen
|
||||
* madwifi-hal-0.10.5.6-r4119-20100201-kmod-2.6.32.10-ipfire
|
||||
* madwifi-hal-0.10.5.6-r4119-20100201-kmod-2.6.32.10-ipfire-xen
|
||||
* make-3.81
|
||||
* man-db-2.4.3
|
||||
* man-pages-2.34
|
||||
@@ -263,9 +252,6 @@
|
||||
* openmailadmin-1.0.0
|
||||
* openssh-5.4p1
|
||||
* openssl-0.9.8n
|
||||
* openswan-2.6.23
|
||||
* openswan-2.6.23-kmod-2.6.27.42-ipfire
|
||||
* openswan-2.6.23-kmod-2.6.27.42-ipfire-xen
|
||||
* openvpn-2.1_rc20
|
||||
* p7zip_4.65
|
||||
* pam_mysql-0.7RC1
|
||||
@@ -287,17 +273,11 @@
|
||||
* psmisc-22.2
|
||||
* qemu-0.11.0-kqemu
|
||||
* qemu-0.12.2
|
||||
* r8101-kmod-2.6.27.42-ipfire
|
||||
* r8101-kmod-2.6.27.42-ipfire-xen
|
||||
* r8168-8.014.00-kmod-2.6.27.42-ipfire
|
||||
* r8168-8.014.00-kmod-2.6.27.42-ipfire-xen
|
||||
* r8169-6.011.00-kmod-2.6.27.42-ipfire
|
||||
* r8169-6.011.00-kmod-2.6.27.42-ipfire-xen
|
||||
* readline-5.1
|
||||
* reiser4progs-1.0.5
|
||||
* reiserfsprogs-3.6.19
|
||||
* rp-pppoe-3.8
|
||||
* rrdtool-1.2.15
|
||||
* rrdtool-1.2.30
|
||||
* rssdler-0.4.0a
|
||||
* rsync-3.0.7
|
||||
* rtorrent-0.8.6
|
||||
@@ -316,16 +296,17 @@
|
||||
* spandsp-0.0.6pre12
|
||||
* splix-2.0.0-rc2
|
||||
* sqlite-3.6.10
|
||||
* squashfs3.4
|
||||
* squashfs-lzma-cvs20100214
|
||||
* squid-2.7.STABLE7
|
||||
* squidGuard-1.4.1
|
||||
* squidclamav-5.2
|
||||
* sshfs-fuse-2.2
|
||||
* sslh-1.7a
|
||||
* streamripper-1.63.5
|
||||
* strongswan-4.3.6
|
||||
* sudo-1.6.8p12
|
||||
* sysfsutils-1.3.0
|
||||
* sysklogd-1.4.1
|
||||
* sysklogd-1.5
|
||||
* syslinux-3.62
|
||||
* sysstat-6.0.2
|
||||
* sysvinit-2.86
|
||||
@@ -348,8 +329,8 @@
|
||||
* usb_modeswitch-1.0.6
|
||||
* usbutils-0.72
|
||||
* util-linux-2.12r
|
||||
* v4l-dvb-9defbd461e5f-kmod-2.6.27.42-ipfire
|
||||
* v4l-dvb-9defbd461e5f-kmod-2.6.27.42-ipfire-xen
|
||||
* v4l-dvb-690055993011-kmod-2.6.32.10-ipfire
|
||||
* v4l-dvb-690055993011-kmod-2.6.32.10-ipfire-xen
|
||||
* vdr-1.6.0
|
||||
* vdradmin-am-3.6.5
|
||||
* vim-7.0
|
||||
@@ -367,5 +348,6 @@
|
||||
* wpa_supplicant-0.6.9
|
||||
* xfsprogs-2.9.4
|
||||
* xvidcore-1.2.1
|
||||
* xz-4.999.9beta
|
||||
* zerofree-1.0.1
|
||||
* zlib-1.2.3
|
||||
|
||||
@@ -57,7 +57,7 @@ if (open(IP, "${General::swroot}/red/local-ipaddress")) {
|
||||
push(@colour, ${Header::colourfw} );
|
||||
}
|
||||
|
||||
my @vpn = ` route -n | grep ipsec | awk '{ print \$1" "\$3}'`;
|
||||
my @vpn = `grep "rightsubnet=" /etc/ipsec.conf | cut -f2 -d"=" | sed "s|/| |g"`;
|
||||
foreach my $route (@vpn) {
|
||||
chomp($route);
|
||||
my @temp = split(/[\t ]+/, $route);
|
||||
|
||||
@@ -337,7 +337,7 @@ END
|
||||
if ( `cat /var/ipfire/vpn/settings | grep ^ENABLED=on` ||
|
||||
`cat /var/ipfire/vpn/settings | grep ^ENABLED_BLUE=on` ) {
|
||||
my $ipsecip = `cat /var/ipfire/vpn/settings | grep ^VPN_IP= | cut -c 8-`;
|
||||
my @status = `/usr/sbin/ipsec auto --status`;
|
||||
my @status = `/usr/local/bin/ipsecctrl I`;
|
||||
my %confighash = ();
|
||||
&General::readhasharray("${General::swroot}/vpn/config", \%confighash);
|
||||
print <<END;
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
###############################################################################
|
||||
# #
|
||||
# IPFire.org - A linux based firewall #
|
||||
# Copyright (C) 2007 Michael Tremer & Christian Schmidt #
|
||||
# Copyright (C) 2010 IPFire Team #
|
||||
# #
|
||||
# This program is free software: you can redistribute it and/or modify #
|
||||
# it under the terms of the GNU General Public License as published by #
|
||||
@@ -23,100 +23,414 @@ require '/var/ipfire/general-functions.pl';
|
||||
require "${General::swroot}/lang.pl";
|
||||
require "${General::swroot}/header.pl";
|
||||
|
||||
#use warnings;
|
||||
#use CGI::Carp 'fatalsToBrowser';
|
||||
|
||||
my $debug = 0;
|
||||
my @iplines;
|
||||
my $string = "";
|
||||
my $lines = 0;
|
||||
my @ipmanlines;
|
||||
my $manlines = 0;
|
||||
my @ipnatlines;
|
||||
my $natlines = 0;
|
||||
my %chains;
|
||||
my %chainsman;
|
||||
my %chainsnat;
|
||||
my $chainname;
|
||||
my $selectedchain;
|
||||
my %netsettings = ();
|
||||
my %cgiparams=();
|
||||
|
||||
&Header::getcgihash(\%cgiparams);
|
||||
|
||||
system('/usr/local/bin/getipstat');
|
||||
|
||||
&Header::showhttpheaders();
|
||||
&Header::openpage($Lang::tr{'ipts'}, 1, '');
|
||||
&Header::openbigbox('100%', 'LEFT');
|
||||
|
||||
# This debug is used to see what inputs are done via the cgi and
|
||||
# what parameters are to be executed
|
||||
|
||||
if ( $debug ){
|
||||
&Header::openbox('100%', 'center', 'DEBUG');
|
||||
my $debugCount = 0;
|
||||
foreach my $line (sort keys %cgiparams) {
|
||||
print "$line = '$cgiparams{$line}'<br />\n";
|
||||
$debugCount++;
|
||||
}
|
||||
print " Count: $debugCount\n";
|
||||
&Header::closebox();
|
||||
}
|
||||
|
||||
&Header::openbox('100%', 'LEFT', $Lang::tr{'ipts'}.':');
|
||||
|
||||
# If the cgi is called the first time the default chain is
|
||||
# used, otherwise if user selected a chains in the selectboxes
|
||||
# those one are displayed, it is possible to change all 3 at
|
||||
# the same time
|
||||
|
||||
if ( $cgiparams{'selectedchain'} ne "" ){
|
||||
my @multi = split(/\|/,$cgiparams{'selectedchain'});
|
||||
$selectedchain = $multi[0];
|
||||
} else {
|
||||
$selectedchain = "INPUT";
|
||||
}
|
||||
|
||||
print <<END
|
||||
|
||||
<DIV align='left'>
|
||||
<PRE>
|
||||
<DIV align='left'>
|
||||
END
|
||||
;
|
||||
|
||||
# We´ll open the txt files and extract each line, if the line
|
||||
# start with an Chain the the name, start- and endline of the
|
||||
# chain is extracted into a hash
|
||||
|
||||
open (FILE, '/srv/web/ipfire/html/iptables.txt');
|
||||
while (<FILE>)
|
||||
{
|
||||
$iplines[$lines] = $_;
|
||||
while (<FILE>){
|
||||
|
||||
$iplines[$lines] = $_;
|
||||
|
||||
if ( $_ =~ /^Chain/ ){
|
||||
|
||||
my @chainstring = split(/ /,$_);
|
||||
|
||||
if ( $chainname ne "" ){
|
||||
$chains{$chainname."end"} = $lines-2;
|
||||
}
|
||||
|
||||
$chainname = $chainstring[1];
|
||||
$chains{$chainname."start"} = $lines;
|
||||
}
|
||||
|
||||
$lines++;
|
||||
}
|
||||
|
||||
}
|
||||
close (FILE);
|
||||
foreach $_ (@iplines) {
|
||||
print "$_"; }
|
||||
|
||||
print <<END
|
||||
</PRE>
|
||||
</DIV>
|
||||
<BR>
|
||||
# now the chain hash is extracted to get the correct name of the chain
|
||||
# all chains are displayed as a select box and can be choosen for display
|
||||
# after this all corresponding lines for the chain are extraced and seperated
|
||||
# into table rows, sometimes we need to handle leading blank so the offset is
|
||||
# needed, some lines need to chomp trailing seperators. The interfaces and
|
||||
# network addresses should be colorized by an extra function to make a nice
|
||||
# colored gui
|
||||
|
||||
END
|
||||
;
|
||||
print "<form method='post' action='$ENV{'SCRIPT_NAME'}'>\n<select name='selectedchain' style='width: 250px'>\n";
|
||||
foreach (keys(%chains)){
|
||||
|
||||
if ( $_ =~ /end$/ ){
|
||||
next;
|
||||
} else {
|
||||
$_ =~ s/start$//gi;
|
||||
}
|
||||
|
||||
print " <option value='".$_;
|
||||
if ( $_ eq $selectedchain ){
|
||||
print "' selected='selected' >".$_."</option>\n";
|
||||
} else {
|
||||
print "'>".$_."</option>\n";
|
||||
}
|
||||
}
|
||||
print "</select><input type='submit' name='ACTION' value='$Lang::tr{'update'}' /><form><br /><br />\n\n";
|
||||
|
||||
$string = $iplines[$chains{$selectedchain."start"}];
|
||||
$string =~ s/\s$//gi;
|
||||
|
||||
print "<strong>".$string."</strong><br />\n\n";
|
||||
print "<table width='100%' cellspacing='1'>\n<tr>\n";
|
||||
foreach (split(/ +/,$iplines[$chains{$selectedchain."start"}+1])){
|
||||
if ( $_ =~ /[^a-zA-Z]/ ){chomp($_);}
|
||||
print " <th align='left'><strong>".$_."</strong></th>\n";
|
||||
}
|
||||
|
||||
print "</tr>\n";
|
||||
|
||||
print "<tr>\n";
|
||||
print " <td width='0'></td>\n <td width='35'></td>\n <td width='35'></td>\n";
|
||||
print " <td width='130'></td>\n <td width='30'></td>\n";
|
||||
print " <td width='30'></td>\n <td width='40'></td>\n";
|
||||
print " <td width='40'></td>\n <td width='95'></td>\n";
|
||||
print " <td width='95'></td>\n <td width='260'></td>\n";
|
||||
print "</tr>\n";
|
||||
|
||||
|
||||
for(my $i = $chains{$selectedchain."start"}+2; $i <= $chains{$selectedchain."end"}; $i++) {
|
||||
print "<tr>\n";
|
||||
|
||||
my @iptablesline = split(/ +/,$iplines[$i]);
|
||||
my $offset=0;
|
||||
|
||||
if ( $iptablesline[0] eq "" ){
|
||||
$offset=1;
|
||||
}
|
||||
|
||||
print " <td></td>\n <td>".$iptablesline[0+$offset]."</td>\n <td>".$iptablesline[1+$offset]."</td>\n";
|
||||
print " <td>".$iptablesline[2+$offset]."</td>\n <td>".$iptablesline[3+$offset]."</td>\n";
|
||||
print " <td>".$iptablesline[4+$offset]."</td>\n <td>".&Header::colorize($iptablesline[5+$offset])."</td>\n";
|
||||
print " <td>".&Header::colorize($iptablesline[6+$offset])."</td>\n";
|
||||
print " <td>".&Header::colorize($iptablesline[7+$offset])."</td>\n";
|
||||
print " <td>".&Header::colorize($iptablesline[8+$offset])."</td>\n <td>";
|
||||
|
||||
for (my $i=9+$offset; $i <= $#iptablesline; $i++){
|
||||
$string = $iptablesline[$i];
|
||||
$string =~ s/\s$//gi;
|
||||
print " ".$string;
|
||||
}
|
||||
print "</td>\n</tr>\n";
|
||||
}
|
||||
print "</table></DIV><br />";
|
||||
&Header::closebox();
|
||||
|
||||
## MANGLE
|
||||
&Header::openbox('100%', 'LEFT', $Lang::tr{'iptmangles'}.':');
|
||||
|
||||
# If the cgi is called the first time the default chain is
|
||||
# used, otherwise if user selected a chains in the selectboxes
|
||||
# those one are displayed, it is possible to change all 3 at
|
||||
# the same time
|
||||
|
||||
if ( $cgiparams{'selectedchain'} ne "" ){
|
||||
my @multi = split(/\|/,$cgiparams{'selectedchain'});
|
||||
$selectedchain = $multi[1];
|
||||
} else {
|
||||
$selectedchain = "PREROUTING";
|
||||
}
|
||||
|
||||
print <<END
|
||||
|
||||
<DIV align='left'>
|
||||
<PRE>
|
||||
<DIV align='left'>
|
||||
END
|
||||
;
|
||||
open (FILEMAN, '/srv/web/ipfire/html/iptablesmangle.txt');
|
||||
while (<FILEMAN>)
|
||||
{
|
||||
$ipmanlines[$manlines] = $_;
|
||||
|
||||
# We´ll open the txt files and extract each line, if the line
|
||||
# start with an Chain the the name, start- and endline of the
|
||||
# chain is extracted into a hash
|
||||
|
||||
open (FILE, '/srv/web/ipfire/html/iptablesmangle.txt');
|
||||
while (<FILE>){
|
||||
|
||||
$ipmlines[$manlines] = $_;
|
||||
|
||||
if ( $_ =~ /^Chain/ ){
|
||||
|
||||
my @chainstring = split(/ /,$_);
|
||||
|
||||
if ( $chainname ne "" ){
|
||||
$chainsman{$chainname."end"} = $manlines-2;
|
||||
}
|
||||
|
||||
$chainname = $chainstring[1];
|
||||
$chainsman{$chainname."start"} = $manlines;
|
||||
}
|
||||
|
||||
$manlines++;
|
||||
}
|
||||
close (FILEMAN);
|
||||
foreach $_ (@ipmanlines) {
|
||||
print "$_"; }
|
||||
|
||||
}
|
||||
close (FILE);
|
||||
|
||||
print <<END
|
||||
</PRE>
|
||||
</DIV>
|
||||
<BR>
|
||||
# now the chain hash is extracted to get the correct name of the chain
|
||||
# all chains are displayed as a select box and can be choosen for display
|
||||
# after this all corresponding lines for the chain are extraced and seperated
|
||||
# into table rows, sometimes we need to handle leading blank so the offset is
|
||||
# needed, some lines need to chomp trailing seperators. The interfaces and
|
||||
# network addresses should be colorized by an extra function to make a nice
|
||||
# colored gui
|
||||
|
||||
END
|
||||
;
|
||||
print "<form method='post' action='$ENV{'SCRIPT_NAME'}'>\n<select name='selectedchain' style='width: 250px'>\n";
|
||||
foreach (keys(%chainsman)){
|
||||
|
||||
if ( $_ =~ /end$/ ){
|
||||
next;
|
||||
} else {
|
||||
$_ =~ s/start$//gi;
|
||||
}
|
||||
|
||||
print " <option value='".$_;
|
||||
if ( $_ eq $selectedchain ){
|
||||
print "' selected='selected' >".$_."</option>\n";
|
||||
} else {
|
||||
print "'>".$_."</option>\n";
|
||||
}
|
||||
}
|
||||
print "</select><input type='submit' name='ACTION' value='$Lang::tr{'update'}' /><form><br /><br />\n\n";
|
||||
|
||||
$string = $ipmanlines[$chainsman{$selectedchain."start"}];
|
||||
$string =~ s/\s$//gi;
|
||||
|
||||
print "<strong>".$string."</strong><br />\n\n";
|
||||
print "<table width='100%' cellspacing='1'>\n<tr>\n";
|
||||
foreach (split(/ +/,$ipmlines[$chainsman{$selectedchain."start"}+1])){
|
||||
if ( $_ =~ /[^a-zA-Z]/ ){chomp($_);}
|
||||
print " <th align='left'><strong>".$_."</strong></th>\n";
|
||||
}
|
||||
|
||||
print "</tr>\n";
|
||||
|
||||
print "<tr>\n";
|
||||
print " <td width='0'></td>\n <td width='35'></td>\n <td width='35'></td>\n";
|
||||
print " <td width='130'></td>\n <td width='30'></td>\n";
|
||||
print " <td width='30'></td>\n <td width='40'></td>\n";
|
||||
print " <td width='40'></td>\n <td width='95'></td>\n";
|
||||
print " <td width='95'></td>\n <td width='260'></td>\n";
|
||||
print "</tr>\n";
|
||||
|
||||
for(my $i = $chainsman{$selectedchain."start"}+2; $i <= $chainsman{$selectedchain."end"}; $i++) {
|
||||
print "<tr>\n";
|
||||
my @iptablesline = split(/ +/,$ipmlines[$i]);
|
||||
my $offset=0;
|
||||
|
||||
if ( $iptablesline[0] eq "" ){
|
||||
$offset=1;
|
||||
}
|
||||
|
||||
print " <td></td>\n <td>".$iptablesline[0+$offset]."</td>\n <td>".$iptablesline[1+$offset]."</td>\n";
|
||||
print " <td>".$iptablesline[2+$offset]."</td>\n <td>".$iptablesline[3+$offset]."</td>\n";
|
||||
print " <td>".$iptablesline[4+$offset]."</td>\n <td>".&Header::colorize($iptablesline[5+$offset])."</td>\n";
|
||||
print " <td>".&Header::colorize($iptablesline[6+$offset])."</td>\n";
|
||||
print " <td>".&Header::colorize($iptablesline[7+$offset])."</td>\n";
|
||||
print " <td>".&Header::colorize($iptablesline[8+$offset])."</td>\n <td>";
|
||||
|
||||
for (my $i=9+$offset; $i <= $#iptablesline; $i++){
|
||||
$string = $iptablesline[$i];
|
||||
$string =~ s/\s$//gi;
|
||||
|
||||
# mangles with marks need to be converted from hex to number to show the correct qos class
|
||||
|
||||
if ( $string =~ /^0x/){
|
||||
$string = hex($string);
|
||||
}
|
||||
|
||||
print " ".$string;
|
||||
}
|
||||
print "</td>\n</tr>\n";
|
||||
}
|
||||
print "</table></DIV><br />";
|
||||
&Header::closebox();
|
||||
|
||||
## NAT
|
||||
&Header::openbox('100%', 'LEFT', $Lang::tr{'iptnats'}.':');
|
||||
|
||||
# If the cgi is called the first time the default chain is
|
||||
# used, otherwise if user selected a chains in the selectboxes
|
||||
# those one are displayed, it is possible to change all 3 at
|
||||
# the same time
|
||||
|
||||
if ( $cgiparams{'selectedchain'} ne "" ){
|
||||
my @multi = split(/\|/,$cgiparams{'selectedchain'});
|
||||
$selectedchain = $multi[2];
|
||||
} else {
|
||||
$selectedchain = "PREROUTING";
|
||||
}
|
||||
|
||||
print <<END
|
||||
|
||||
<DIV align='left'>
|
||||
<PRE>
|
||||
<DIV align='left'>
|
||||
END
|
||||
;
|
||||
open (FILENAT, '/srv/web/ipfire/html/iptablesnat.txt');
|
||||
while (<FILENAT>)
|
||||
{
|
||||
$ipnatlines[$natlines] = $_;
|
||||
|
||||
# We´ll open the txt files and extract each line, if the line
|
||||
# start with an Chain the the name, start- and endline of the
|
||||
# chain is extracted into a hash
|
||||
|
||||
open (FILE, '/srv/web/ipfire/html/iptablesnat.txt');
|
||||
while (<FILE>){
|
||||
|
||||
$ipnatlines[$natlines] = $_;
|
||||
|
||||
if ( $_ =~ /^Chain/ ){
|
||||
|
||||
my @chainstring = split(/ /,$_);
|
||||
|
||||
if ( $chainname ne "" ){
|
||||
$chainsnat{$chainname."end"} = $natlines-2;
|
||||
}
|
||||
|
||||
$chainname = $chainstring[1];
|
||||
$chainsnat{$chainname."start"} = $natlines;
|
||||
}
|
||||
|
||||
$natlines++;
|
||||
}
|
||||
close (FILENAT);
|
||||
foreach $_ (@ipnatlines) {
|
||||
print "$_"; }
|
||||
|
||||
}
|
||||
close (FILE);
|
||||
|
||||
print <<END
|
||||
</PRE>
|
||||
</DIV>
|
||||
<BR>
|
||||
# now the chain hash is extracted to get the correct name of the chain
|
||||
# all chains are displayed as a select box and can be choosen for display
|
||||
# after this all corresponding lines for the chain are extraced and seperated
|
||||
# into table rows, sometimes we need to handle leading blank so the offset is
|
||||
# needed, some lines need to chomp trailing seperators. The interfaces and
|
||||
# network addresses should be colorized by an extra function to make a nice
|
||||
# colored gui
|
||||
|
||||
END
|
||||
;
|
||||
print "<form method='post' action='$ENV{'SCRIPT_NAME'}'>\n<select name='selectedchain' style='width: 250px'>\n";
|
||||
foreach (keys(%chainsnat)){
|
||||
|
||||
if ( $_ =~ /end$/ ){
|
||||
next;
|
||||
} else {
|
||||
$_ =~ s/start$//gi;
|
||||
}
|
||||
|
||||
print " <option value='".$_;
|
||||
if ( $_ eq $selectedchain ){
|
||||
print "' selected='selected' >".$_."</option>\n";
|
||||
} else {
|
||||
print "'>".$_."</option>\n";
|
||||
}
|
||||
}
|
||||
print "</select><input type='submit' name='ACTION' value='$Lang::tr{'update'}' /><form><br /><br />\n\n";
|
||||
|
||||
$string = $ipnatlines[$chainsnat{$selectedchain."start"}];
|
||||
$string =~ s/\s$//gi;
|
||||
|
||||
print "<strong>".$string."</strong><br />\n\n";
|
||||
print "<table width='100%' cellspacing='1'>\n<tr>\n";
|
||||
foreach (split(/ +/,$ipnatlines[$chainsnat{$selectedchain."start"}+1])){
|
||||
if ( $_ =~ /[^a-zA-Z]/ ){chomp($_);}
|
||||
print "<th align='left'><strong>".$_."</strong></th>\n";
|
||||
}
|
||||
|
||||
print "</tr>\n";
|
||||
|
||||
print "<tr>\n";
|
||||
print " <td width='0'></td>\n <td width='35'></td>\n <td width='35'></td>\n";
|
||||
print " <td width='130'></td>\n <td width='30'></td>\n";
|
||||
print " <td width='30'></td>\n <td width='40'></td>\n";
|
||||
print " <td width='40'></td>\n <td width='95'></td>\n";
|
||||
print " <td width='95'></td>\n <td width='260'></td>\n";
|
||||
print "</tr>\n";
|
||||
|
||||
for(my $i = $chainsnat{$selectedchain."start"}+2; $i <= $chainsnat{$selectedchain."end"}; $i++) {
|
||||
print "<tr>\n";
|
||||
my @iptablesline = split(/ +/,$ipnatlines[$i]);
|
||||
my $offset=0;
|
||||
|
||||
if ( $iptablesline[0] eq "" ){
|
||||
$offset=1;
|
||||
}
|
||||
|
||||
print " <td></td>\n<td>".$iptablesline[0+$offset]."</td>\n <td>".$iptablesline[1+$offset]."</td>\n";
|
||||
print " <td>".$iptablesline[2+$offset]."</td>\n <td>".$iptablesline[3+$offset]."</td>\n";
|
||||
print " <td>".$iptablesline[4+$offset]."</td>\n <td>".&Header::colorize($iptablesline[5+$offset])."</td>\n";
|
||||
print " <td>".&Header::colorize($iptablesline[6+$offset])."</td>\n";
|
||||
print " <td>".&Header::colorize($iptablesline[7+$offset])."</td>\n";
|
||||
print " <td>".&Header::colorize($iptablesline[8+$offset])."</td>\n <td>";
|
||||
|
||||
for (my $i=9+$offset; $i <= $#iptablesline; $i++){
|
||||
$string = $iptablesline[$i];
|
||||
$string =~ s/\s$//gi;
|
||||
print " ".$string;
|
||||
}
|
||||
print "</td>\n</tr>\n";
|
||||
}
|
||||
print "</table></DIV><br />";
|
||||
&Header::closebox();
|
||||
&Header::closebigbox();
|
||||
&Header::closepage();
|
||||
|
||||
system(rm -f "/srv/web/ipfire/html/iptables.txt");
|
||||
system(rm -f "/srv/web/ipfire/html/iptablesmangle.txt");
|
||||
system(rm -f "/srv/web/ipfire/html/iptablesnat.txt");
|
||||
system(rm -f "/srv/web/ipfire/html/iptablesnat.txt");
|
||||
@@ -32,6 +32,7 @@ $logsettings{'LOGWATCH_LEVEL'} = 'Low';
|
||||
$logsettings{'LOGWATCH_KEEP'} = '56';
|
||||
my @VS = ('15','50','100','150','250','500');
|
||||
$logsettings{'ENABLE_REMOTELOG'} = 'off';
|
||||
$logsettings{'ENABLE_ASYNCLOG'} = 'off';
|
||||
$logsettings{'REMOTELOG_ADDR'} = '';
|
||||
$logsettings{'VARMESSAGES'} = 'cron.none;daemon.*;local0.*;local2.*;*.info;mail.none;authpriv.*';
|
||||
$logsettings{'ACTION'} = '';
|
||||
@@ -66,6 +67,10 @@ if ($logsettings{'ACTION'} eq $Lang::tr{'save'})
|
||||
|
||||
&General::readhash("${General::swroot}/logging/settings", \%logsettings);
|
||||
|
||||
$checked{'ENABLE_ASYNCLOG'}{'off'} = '';
|
||||
$checked{'ENABLE_ASYNCLOG'}{'on'} = '';
|
||||
$checked{'ENABLE_ASYNCLOG'}{$logsettings{'ENABLE_ASYNCLOG'}} = "checked='checked'";
|
||||
|
||||
$checked{'ENABLE_REMOTELOG'}{'off'} = '';
|
||||
$checked{'ENABLE_REMOTELOG'}{'on'} = '';
|
||||
$checked{'ENABLE_REMOTELOG'}{$logsettings{'ENABLE_REMOTELOG'}} = "checked='checked'";
|
||||
@@ -150,6 +155,9 @@ END
|
||||
print <<END
|
||||
<table width='100%'>
|
||||
<tr>
|
||||
<td class='base' colspan='2'><input type='checkbox' name='ENABLE_ASYNCLOG' $checked{'ENABLE_ASYNCLOG'}{'on'} />$Lang::tr{'Async logging enabled'}</td>
|
||||
<tr>
|
||||
</tr>
|
||||
<td>$Lang::tr{'log var messages'}</td><td><input type='text' name='VARMESSAGES' size='50' value='$logsettings{'VARMESSAGES'}' /></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
@@ -55,7 +55,7 @@ if ( $querry[0] =~ "fwhits"){
|
||||
&Header::openpage($Lang::tr{'network traffic graphs others'}, 1, '');
|
||||
&Header::openbigbox('100%', 'left');
|
||||
|
||||
my @pinggraphs = `ls -dA /var/log/rrd/collectd/localhost/ping/*`;
|
||||
my @pinggraphs = `ls -dA /var/log/rrd/collectd/localhost/ping/ping-*`;
|
||||
foreach (@pinggraphs){
|
||||
$_ =~ /(.*)\/ping\/ping-(.*)\.rrd/;
|
||||
push(@pings,$2);
|
||||
|
||||
@@ -248,9 +248,9 @@ sub writeipsecfiles {
|
||||
foreach my $key (keys %lconfighash) {
|
||||
next if ($lconfighash{$key}[0] ne 'on');
|
||||
$interfaces .= "%defaultroute " if ($interfaces !~ /defaultroute/ && $lconfighash{$key}[26] eq 'RED');
|
||||
$interfaces .= "ipsec1=$netsettings{'GREEN_DEV'} " if ($interfaces !~ /ipsec1/ && $lconfighash{$key}[26] eq 'GREEN');
|
||||
$interfaces .= "ipsec2=$netsettings{'BLUE_DEV'} " if ($interfaces !~ /ipsec2/ && $lconfighash{$key}[26] eq 'BLUE');
|
||||
$interfaces .= "ipsec3=$netsettings{'ORANGE_DEV'} " if ($interfaces !~ /ipsec3/ && $lconfighash{$key}[26] eq 'ORANGE');
|
||||
#$interfaces .= "ipsec1=$netsettings{'GREEN_DEV'} " if ($interfaces !~ /ipsec1/ && $lconfighash{$key}[26] eq 'GREEN');
|
||||
#$interfaces .= "ipsec2=$netsettings{'BLUE_DEV'} " if ($interfaces !~ /ipsec2/ && $lconfighash{$key}[26] eq 'BLUE');
|
||||
#$interfaces .= "ipsec3=$netsettings{'ORANGE_DEV'} " if ($interfaces !~ /ipsec3/ && $lconfighash{$key}[26] eq 'ORANGE');
|
||||
}
|
||||
print CONF $interfaces . "\"\n";
|
||||
|
||||
@@ -264,6 +264,8 @@ sub writeipsecfiles {
|
||||
# deprecated in ipsec.conf version 2
|
||||
#print CONF "\tplutoload=%search\n";
|
||||
#print CONF "\tplutostart=%search\n";
|
||||
#Disable IKEv2 deamon
|
||||
print CONF "\tcharonstart=no\n";
|
||||
print CONF "\tuniqueids=yes\n";
|
||||
print CONF "\tnat_traversal=yes\n";
|
||||
print CONF "\toverridemtu=$lvpnsettings{'VPN_OVERRIDE_MTU'}\n" if ($lvpnsettings{'VPN_OVERRIDE_MTU'} ne '');
|
||||
@@ -283,7 +285,8 @@ sub writeipsecfiles {
|
||||
print CONF "\n\n";
|
||||
print CONF "conn %default\n";
|
||||
print CONF "\tkeyingtries=0\n";
|
||||
print CONF "\tdisablearrivalcheck=no\n";
|
||||
#strongswan doesn't know this
|
||||
#print CONF "\tdisablearrivalcheck=no\n";
|
||||
print CONF "\n";
|
||||
|
||||
if (-f "${General::swroot}/certs/hostkey.pem") {
|
||||
@@ -312,6 +315,7 @@ sub writeipsecfiles {
|
||||
print CONF "\tleft=$localside\n";
|
||||
print CONF "\tleftnexthop=%defaultroute\n" if ($lconfighash{$key}[26] eq 'RED' && $lvpnsettings{'VPN_IP'} ne '%defaultroute');
|
||||
print CONF "\tleftsubnet=$lconfighash{$key}[8]\n";
|
||||
print CONF "\tleftfirewall=yes\n";
|
||||
|
||||
print CONF "\tright=$lconfighash{$key}[10]\n";
|
||||
if ($lconfighash{$key}[3] eq 'net') {
|
||||
@@ -2383,7 +2387,7 @@ EOF
|
||||
&General::readhasharray("${General::swroot}/vpn/config", \%confighash);
|
||||
$cgiparams{'CA_NAME'} = '';
|
||||
|
||||
my @status = `/usr/sbin/ipsec auto --status`;
|
||||
my @status = `/usr/local/bin/ipsecctrl I`;
|
||||
|
||||
# suggest a default name for this side
|
||||
if ($cgiparams{'VPN_IP'} eq '' && -e "${General::swroot}/red/active") {
|
||||
|
||||
@@ -4,6 +4,7 @@
|
||||
'Act as' => 'Konfiguriert als',
|
||||
'Add Port Rule' => 'Port Regel hinzufügen',
|
||||
'Add Rule' => 'Regel hinzufügen',
|
||||
'Async logging enabled' => 'Aktiviere asynchrones schreiben des Syslogs',
|
||||
'optional at cmd' => 'zusätzlicher Modembefehl',
|
||||
'Choose Rule' => 'Wählen sie <u>eine</u> der untenstehenden Regeln aus.',
|
||||
'Class' => 'Klasse',
|
||||
|
||||
@@ -4,6 +4,7 @@
|
||||
'Act as' => 'Act as:',
|
||||
'Add Port Rule' => 'Add port rule',
|
||||
'Add Rule' => 'Add rule',
|
||||
'Async logging enabled' => 'Enable asynchronous writing of the syslog file',
|
||||
'optional at cmd' => 'optional AT command',
|
||||
'Choose Rule' => 'Choose <u>one</u> of the following rules.',
|
||||
'Class' => 'Class',
|
||||
|
||||
@@ -4,6 +4,7 @@
|
||||
'Act as' => 'Act as:',
|
||||
'Add Port Rule' => 'Add port rule',
|
||||
'Add Rule' => 'Add rule',
|
||||
'Async logging enabled' => 'Activer <20>criture asynchrone de syslogs',
|
||||
'optional at cmd' => 'optional AT command',
|
||||
'Choose Rule' => 'Choose <u>one</u> of the following rules.',
|
||||
'Class' => 'Class',
|
||||
|
||||
@@ -194,12 +194,12 @@ define PAK
|
||||
sed -e 's/KVER/$(KVER)/g' -i /install/packages/package/ROOTFILES
|
||||
chmod 755 /install/packages/package/{{,un}install,update}.sh
|
||||
cd / && tar cf /install/packages/package/files.tmp --files-from=/install/packages/package/ROOTFILES --exclude='#*' \
|
||||
--preserve --numeric-owner
|
||||
-p --numeric-owner
|
||||
# Double tar to remove double files
|
||||
tar xf /install/packages/package/files.tmp -C /install/packages/package/tmp/ \
|
||||
--preserve --numeric-owner
|
||||
-p --numeric-owner
|
||||
rm -f /install/packages/package/files.tmp
|
||||
cd /install/packages/package/tmp/ && tar -c --preserve --numeric-owner -f /install/packages/package/files *
|
||||
cd /install/packages/package/tmp/ && tar -c -p --numeric-owner -f /install/packages/package/files *
|
||||
rm -r /install/packages/package/tmp
|
||||
-cat /install/packages/package/ROOTFILES | grep -v "#" > /install/packages/package/ROOTFILES.tmp
|
||||
mv /install/packages/package/ROOTFILES.tmp /install/packages/package/ROOTFILES
|
||||
|
||||
12
lfs/ccache
12
lfs/ccache
@@ -24,10 +24,10 @@
|
||||
|
||||
include Config
|
||||
|
||||
VER = 2.4
|
||||
VER = 3.0pre0
|
||||
|
||||
THISAPP = ccache-$(VER)
|
||||
DL_FILE = $(THISAPP).tar.gz
|
||||
DL_FILE = $(THISAPP).tar.bz2
|
||||
DL_FROM = $(URL_IPFIRE)
|
||||
DIR_APP = $(DIR_SRC)/$(THISAPP)
|
||||
TARGET = $(DIR_INFO)/$(THISAPP)
|
||||
@@ -40,7 +40,7 @@ objects = $(DL_FILE)
|
||||
|
||||
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
|
||||
|
||||
$(DL_FILE)_MD5 = 73c1ed1e767c1752dd0f548ec1e66ce7
|
||||
$(DL_FILE)_MD5 = 3704f1cd486b1e63638fd17910c42e9f
|
||||
|
||||
install : $(TARGET)
|
||||
|
||||
@@ -69,9 +69,9 @@ $(subst %,%_MD5,$(objects)) :
|
||||
|
||||
$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
|
||||
@$(PREBUILD)
|
||||
@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
|
||||
cd $(DIR_APP) && patch -p0 < $(DIR_SRC)/src/patches/$(THISAPP).patch
|
||||
cd $(DIR_APP) && CFLAGS="-O2 -static" ./configure --prefix=$(ROOT)/usr/local
|
||||
@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar jxf $(DIR_DL)/$(DL_FILE)
|
||||
cd $(DIR_APP) && patch -p1 < $(DIR_SRC)/src/patches/$(THISAPP)-no_compiler_mtime.patch
|
||||
cd $(DIR_APP) && CFLAGS="-O2 -static -DDEFAULT_MAXSIZE=2097152" ./configure --prefix=$(ROOT)/usr/local
|
||||
cd $(DIR_APP) && make $(MAKETUNING) $(EXTRA_MAKE)
|
||||
cd $(DIR_APP) && make install
|
||||
ln -sf ccache $(ROOT)/usr/local/bin/gcc
|
||||
|
||||
@@ -66,7 +66,7 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
|
||||
tar -x -C /tmp -f /$(SNAME).tar
|
||||
rm -f /$(SNAME).tar
|
||||
@mkdir /tmp/sys
|
||||
cd /tmp && tar jcf /install/cdrom/$(SNAME)-$(VERSION).tbz2 * && rm -rf *
|
||||
cd /tmp && tar cf /install/cdrom/$(SNAME)-$(VERSION).tlz --lzma * && rm -rf *
|
||||
|
||||
# Other files
|
||||
sed 's/VERSION/$(VERSION)/' $(DIR_SRC)/config/cdrom/README.txt > /install/cdrom/README.txt
|
||||
|
||||
10
lfs/collectd
10
lfs/collectd
@@ -25,7 +25,7 @@
|
||||
include Config
|
||||
|
||||
PKG_NAME = collectd
|
||||
VER = 4.5.3
|
||||
VER = 4.9.1
|
||||
|
||||
THISAPP = collectd-$(VER)
|
||||
DL_FILE = $(THISAPP).tar.bz2
|
||||
@@ -44,7 +44,7 @@ objects = $(DL_FILE)
|
||||
|
||||
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
|
||||
|
||||
$(DL_FILE)_MD5 = f368200c4bedd64baba46094906e81ee
|
||||
$(DL_FILE)_MD5 = 5753496651c8c84afaea1fe290876bfc
|
||||
|
||||
install : $(TARGET)
|
||||
|
||||
@@ -77,8 +77,8 @@ $(subst %,%_MD5,$(objects)) :
|
||||
$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
|
||||
@$(PREBUILD)
|
||||
@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar jxf $(DIR_DL)/$(DL_FILE)
|
||||
cd $(DIR_APP) && sed -i 's|with_libiptc="no (Linux iptables header.*|with_libiptc="yes"|g' \
|
||||
./configure
|
||||
#cd $(DIR_APP) && sed -i 's|with_libiptc="no (Linux iptables header.*|with_libiptc="yes"|g' \
|
||||
# ./configure
|
||||
cd $(DIR_APP) && ./configure --prefix=/usr --localstatedir=/var \
|
||||
--disable-{apple_sensors,csv,ipvs,mbmon,memcached,mysql} \
|
||||
--disable-{netlink,nginx,nut,perl,serial,snmp,tape,vserver,xmms} \
|
||||
@@ -87,7 +87,7 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
|
||||
--enable-{interface,iptables,irq,load,logfile,memory,multimeter} \
|
||||
--enable-{network,nfs,ntpd,ping,processes,rrdtool,sensors,swap,syslog} \
|
||||
--enable-{tcpconns,unixsock,users,wireless} \
|
||||
--with-rrdtool=/usr/share/rrdtool-1.2.15
|
||||
--with-librrd=/usr/share/rrdtool-1.2.30
|
||||
cd $(DIR_APP) && make install
|
||||
cp -vf $(DIR_SRC)/config/collectd/collectd.* /etc/
|
||||
ln -f -s ../init.d/collectd /etc/rc.d/rc0.d/K50collectd
|
||||
|
||||
@@ -70,7 +70,7 @@ core/%:
|
||||
--exclude='proc/*' --exclude='tmp/ROOTFILES' \
|
||||
--exclude-from=$(DIR_SRC)/config/rootfiles/$@/exclude
|
||||
mv -f /tmp/ROOTFILES /install/packages/package/ROOTFILES
|
||||
tar --preserve --numeric-owner -x -C /tmp -f /$(SNAME).tar
|
||||
tar -p --numeric-owner -x -C /tmp -f /$(SNAME).tar
|
||||
rm -f /$(SNAME).tar
|
||||
cd /tmp && tar cf /install/packages/package/files * && rm -rf *
|
||||
cat /install/packages/package/ROOTFILES | grep -v "#" > /install/packages/package/ROOTFILES.tmp
|
||||
|
||||
90
lfs/cryptodev
Normal file
90
lfs/cryptodev
Normal file
@@ -0,0 +1,90 @@
|
||||
###############################################################################
|
||||
# #
|
||||
# IPFire.org - A linux based firewall #
|
||||
# Copyright (C) 2007 Michael Tremer & Christian Schmidt #
|
||||
# #
|
||||
# This program 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 3 of the License, or #
|
||||
# (at your option) any later version. #
|
||||
# #
|
||||
# This program 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 this program. If not, see <http://www.gnu.org/licenses/>. #
|
||||
# #
|
||||
###############################################################################
|
||||
|
||||
###############################################################################
|
||||
# Definitions
|
||||
###############################################################################
|
||||
|
||||
include Config
|
||||
|
||||
ifeq "$(XEN)" "1"
|
||||
VERSUFIX=ipfire-xen
|
||||
else
|
||||
VERSUFIX=ipfire
|
||||
endif
|
||||
|
||||
VER = 20091126
|
||||
|
||||
THISAPP = cryptodev-$(VER)
|
||||
DL_FILE = $(THISAPP).tar.bz2
|
||||
DL_FROM = $(URL_IPFIRE)
|
||||
DIR_APP = $(DIR_SRC)/$(THISAPP)
|
||||
TARGET = $(DIR_INFO)/$(THISAPP)-kmod-$(KVER)-$(VERSUFIX)
|
||||
|
||||
###############################################################################
|
||||
# Top-level Rules
|
||||
###############################################################################
|
||||
|
||||
objects = $(DL_FILE)
|
||||
|
||||
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
|
||||
|
||||
$(DL_FILE)_MD5 = 26ffa32ef75bea7e980ab66166616e95
|
||||
|
||||
install : $(TARGET)
|
||||
|
||||
check : $(patsubst %,$(DIR_CHK)/%,$(objects))
|
||||
|
||||
download :$(patsubst %,$(DIR_DL)/%,$(objects))
|
||||
|
||||
md5 : $(subst %,%_MD5,$(objects))
|
||||
|
||||
dist:
|
||||
$(PAK)
|
||||
|
||||
###############################################################################
|
||||
# Downloading, checking, md5sum
|
||||
###############################################################################
|
||||
|
||||
$(patsubst %,$(DIR_CHK)/%,$(objects)) :
|
||||
@$(CHECK)
|
||||
|
||||
$(patsubst %,$(DIR_DL)/%,$(objects)) :
|
||||
@$(LOAD)
|
||||
|
||||
$(subst %,%_MD5,$(objects)) :
|
||||
@$(MD5)
|
||||
|
||||
###############################################################################
|
||||
# Installation Details
|
||||
###############################################################################
|
||||
|
||||
$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
|
||||
@$(PREBUILD)
|
||||
@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar jxf $(DIR_DL)/$(DL_FILE)
|
||||
cd $(DIR_APP) && make build \
|
||||
KERNEL_DIR=/lib/modules/$(KVER)-$(VERSUFIX)/build
|
||||
|
||||
-mkdir -pv /usr/include/crypto
|
||||
cd $(DIR_APP) && make install \
|
||||
KERNEL_DIR=/lib/modules/$(KVER)-$(VERSUFIX)/build
|
||||
ln -svf ../crypto/cryptodev.h /usr/include/linux/cryptodev.h
|
||||
@rm -rf $(DIR_APP)
|
||||
@$(POSTBUILD)
|
||||
25
lfs/dahdi
25
lfs/dahdi
@@ -30,10 +30,10 @@ else
|
||||
VERSUFIX=ipfire
|
||||
endif
|
||||
|
||||
VER = 2.2.0.2
|
||||
TVER = 2.2.0
|
||||
VER = 2.2.1
|
||||
TVER = 2.2.1
|
||||
|
||||
DL_FILE = dahdi-linux-$(VER)-with-vpmadt032-1.17.0.tar.gz
|
||||
DL_FILE = dahdi-linux-$(VER).tar.gz
|
||||
DL_FILE1 = dahdi-tools-$(TVER).tar.gz
|
||||
|
||||
THISAPP = dahdi-$(VER)
|
||||
@@ -58,16 +58,16 @@ endif
|
||||
# Top-level Rules
|
||||
###############################################################################
|
||||
|
||||
objects = $(DL_FILE) $(DL_FILE1) dahdi-linux-2.2.0.2-firmware.tar.bz2
|
||||
objects = $(DL_FILE) $(DL_FILE1) dahdi-linux-2.2.1-firmware.tar.bz2
|
||||
|
||||
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
|
||||
$(DL_FILE1) = $(DL_FROM)/$(DL_FILE1)
|
||||
dahdi-linux-2.2.0.2-firmware.tar.bz2 = $(DL_FROM)/dahdi-linux-2.2.0.2-firmware.tar.bz2
|
||||
dahdi-linux-2.2.1-firmware.tar.bz2 = $(DL_FROM)/dahdi-linux-2.2.1-firmware.tar.bz2
|
||||
|
||||
$(DL_FILE)_MD5 = 46e4abbe743830045364fc716d293e88
|
||||
$(DL_FILE1)_MD5 = 04e7097929851f744f777400125180db
|
||||
dahdi-linux-2.2.1-firmware.tar.bz2_MD5 = ccc50ded1641cd619e8d3a4615a6ad19
|
||||
|
||||
$(DL_FILE)_MD5 = 5cbabd47cf780305e2cba6ccec42c754
|
||||
$(DL_FILE1)_MD5 = a018f452f3851a312ff51705ac44de37
|
||||
dahdi-linux-2.2.0.2-firmware.tar.bz2_MD5 = 7d7c774d214a528b49c9a08b5350a652
|
||||
|
||||
|
||||
install : $(TARGET)
|
||||
|
||||
@@ -100,15 +100,14 @@ $(subst %,%_MD5,$(objects)) :
|
||||
$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
|
||||
@$(PREBUILD)
|
||||
|
||||
ifeq "$(KMOD)" "1"
|
||||
rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
|
||||
cd $(DIR_SRC) && tar jxf $(DIR_DL)/dahdi-linux-2.2.1-firmware.tar.bz2
|
||||
cd $(DIR_APP) && make $(MAKETUNING) clean all KVERS=$(KVER)
|
||||
|
||||
ifeq "$(KMOD)" "1"
|
||||
cd $(DIR_APP) && make install-modules KVERS=$(KVER)-$(VERSUFIX)
|
||||
@rm -rf $(DIR_APP)
|
||||
else
|
||||
rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
|
||||
cd $(DIR_SRC) && tar jxf $(DIR_DL)/dahdi-linux-2.2.0.2-firmware.tar.bz2
|
||||
cd $(DIR_APP) && make $(MAKETUNING) clean all KVERS=$(KVER)
|
||||
cd $(DIR_APP) && make install-devices install-include \
|
||||
install-firmware install-xpp-firm KVERS=$(KVER)-$(VERSUFIX)
|
||||
@rm -rf $(DIR_APP)
|
||||
|
||||
@@ -81,7 +81,7 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
|
||||
mount -o loop $(IMGvar) $(MNThdd)/var
|
||||
|
||||
# Install IPFire
|
||||
tar -C $(MNThdd)/ -xvjf /install/cdrom/$(SNAME)-$(VERSION).tbz2
|
||||
tar -C $(MNThdd)/ -xvf /install/cdrom/$(SNAME)-$(VERSION).tlz --lzma
|
||||
echo "LANGUAGE=en" >> $(MNThdd)/var/ipfire/main/settings
|
||||
echo "HOSTNAME=$(SNAME)" >> $(MNThdd)/var/ipfire/main/settings
|
||||
echo "THEME=ipfire" >> $(MNThdd)/var/ipfire/main/settings
|
||||
@@ -106,8 +106,8 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
|
||||
ln -s ipfirerd-$(KVER)-emergency.img $(MNThdd)/boot/ipfirerd-$(KVER).img
|
||||
|
||||
# Copy grub files manually
|
||||
cp -f $(MNThdd)/usr/lib/grub/i386-pc/* $(MNThdd)/boot/grub/
|
||||
chroot $(MNThdd) /usr/sbin/grub-set-default 0
|
||||
cp -f $(MNThdd)/usr/share/grub/i386-pc/* $(MNThdd)/boot/grub/
|
||||
#chroot $(MNThdd) /usr/sbin/grub-set-default 0
|
||||
|
||||
# Create a script for rebuild-initrd and setup
|
||||
echo "#!/bin/bash" > $(MNThdd)/etc/rc.d/rcsysinit.d/S75firstsetup
|
||||
|
||||
4
lfs/fuse
4
lfs/fuse
@@ -24,7 +24,7 @@
|
||||
|
||||
include Config
|
||||
|
||||
VER = 2.7.4
|
||||
VER = 2.8.3
|
||||
|
||||
THISAPP = fuse-$(VER)
|
||||
DL_FILE = $(THISAPP).tar.gz
|
||||
@@ -40,7 +40,7 @@ objects = $(DL_FILE)
|
||||
|
||||
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
|
||||
|
||||
$(DL_FILE)_MD5 = 4879f06570d2225667534c37fea04213
|
||||
$(DL_FILE)_MD5 = 517c8384f915e40647bda9f71579fd97
|
||||
|
||||
install : $(TARGET)
|
||||
|
||||
|
||||
42
lfs/grub
42
lfs/grub
@@ -73,15 +73,45 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
|
||||
@$(PREBUILD)
|
||||
@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
|
||||
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/grub-0.97-disk_geometry-1.patch
|
||||
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/grub-0.95-graphics.patch
|
||||
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/grub-0.90-append.patch
|
||||
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/grub-0.90-symlinkmenulst.patch
|
||||
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/grub-0.91-splashimagehelp.patch
|
||||
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/grub-0.93-configfile.patch
|
||||
cd $(DIR_APP) && patch -Np0 < $(DIR_SRC)/src/patches/grub-0.93-endedit.patch
|
||||
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/grub-0.93-graphics-bootterm.patch
|
||||
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/grub-0.95-xpmjunk.patch
|
||||
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/grub-0.95-splash-error-term.patch
|
||||
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/grub-0.93-special-device-names.patch
|
||||
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/grub-0.95-moreraid.patch
|
||||
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/grub-0.94-i2o.patch
|
||||
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/grub-0.97_grub-install_virtio.patch
|
||||
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/grub-0.95-graphics.patch
|
||||
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/grub-0.95-hiddenmenu-tweak.patch
|
||||
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/grub-0.95-md.patch
|
||||
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/grub-0.95-md-rework.patch
|
||||
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/grub-0.95-md-mbr.patch
|
||||
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/grub-0.95-moreraid.patch
|
||||
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/grub-0.95-nonmbr.patch
|
||||
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/grub-0.95-odirect.patch
|
||||
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/grub-0.95-recheck-bad.patch
|
||||
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/grub-0.95-staticcurses.patch
|
||||
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/grub-0.95-xpmjunk.patch
|
||||
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/grub-0.97-cmdline-size.patch
|
||||
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/grub-0.97-datadir.patch
|
||||
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/grub-0.97-dmraid.patch
|
||||
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/grub-0.97-dmraid-partition-names.patch
|
||||
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/grub-0.97-install.in.patch
|
||||
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/grub-0.97-mactel-kbd.patch
|
||||
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/grub-0.97-mpath.patch
|
||||
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/grub-0.97-nxstack.patch
|
||||
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/grub-0.97-nx-multiinstall.patch
|
||||
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/grub-0.97-once.patch
|
||||
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/grub-0.95-splash-error-term.patch
|
||||
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/grub-0.94-installcopyonly.patch
|
||||
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/grub-0.97-prototypes.patch
|
||||
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/grub-0.97-stderr.patch
|
||||
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/grub-0.97-bz429187-cciss.patch
|
||||
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/grub-0.97-dmraid-recheck-bad.patch
|
||||
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/grub-0.97-mdadm-path.patch
|
||||
|
||||
# XXX Does not work anymore
|
||||
#cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/grub-0.97_grub-install_virtio.patch
|
||||
|
||||
cd $(DIR_APP) && perl -pi -e 's,/usr/lib/grub/i386-pc,/usr/share/grub/i386-pc,' docs/grub.texi
|
||||
cd $(DIR_APP) && sed -i 's/AM_INIT_AUTOMAKE/&\nAM_PROG_AS/' configure.ac
|
||||
@@ -94,7 +124,7 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
|
||||
|
||||
# grub files
|
||||
mkdir -vp /boot/grub
|
||||
cp -v /usr/lib/grub/i386-pc/stage{1,2} /boot/grub
|
||||
cp -v /usr/share/grub/i386-pc/stage{1,2} /boot/grub
|
||||
for i in $(DIR_SRC)/config/grub/*; do \
|
||||
[ -f $$i ] && cp -f $$i /boot/grub; \
|
||||
done
|
||||
|
||||
@@ -70,9 +70,9 @@ $(TARGET) :
|
||||
/install/initrd/lib/modules/$(KVER)-ipfire/dahdi
|
||||
|
||||
# ... acpi/dock.ko is needed for libata
|
||||
-mkdir -p /install/initrd/lib/modules/$(KVER)-ipfire/kernel/drivers/acpi
|
||||
cp -a /lib/modules/$(KVER)-ipfire/kernel/drivers/acpi/dock.ko \
|
||||
/install/initrd/lib/modules/$(KVER)-ipfire/kernel/drivers/acpi/dock.ko
|
||||
# -mkdir -p /install/initrd/lib/modules/$(KVER)-ipfire/kernel/drivers/acpi
|
||||
# cp -a /lib/modules/$(KVER)-ipfire/kernel/drivers/acpi/dock.ko \
|
||||
# /install/initrd/lib/modules/$(KVER)-ipfire/kernel/drivers/acpi/dock.ko
|
||||
|
||||
cp /opt/$(MACHINE)-uClibc/lib/libgcc_s.so.1 /install/initrd/lib/
|
||||
|
||||
|
||||
60
lfs/iptables
60
lfs/iptables
@@ -24,7 +24,7 @@
|
||||
|
||||
include Config
|
||||
|
||||
VER = 1.4.2
|
||||
VER = 1.4.6
|
||||
|
||||
THISAPP = iptables-$(VER)
|
||||
DL_FILE = $(THISAPP).tar.bz2
|
||||
@@ -36,18 +36,18 @@ TARGET = $(DIR_INFO)/$(THISAPP)
|
||||
# Top-level Rules
|
||||
###############################################################################
|
||||
objects = $(DL_FILE) \
|
||||
netfilter-layer7-v2.21.tar.gz \
|
||||
libnfnetlink-0.0.41.tar.bz2 \
|
||||
netfilter-layer7-v2.22.tar.gz \
|
||||
libnfnetlink-1.0.0.tar.bz2 \
|
||||
libnetfilter_queue-0.0.17.tar.bz2
|
||||
|
||||
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
|
||||
netfilter-layer7-v2.21.tar.gz = $(URL_IPFIRE)/netfilter-layer7-v2.21.tar.gz
|
||||
libnfnetlink-0.0.41.tar.bz2 = $(URL_IPFIRE)/libnfnetlink-0.0.41.tar.bz2
|
||||
netfilter-layer7-v2.22.tar.gz = $(URL_IPFIRE)/netfilter-layer7-v2.22.tar.gz
|
||||
libnfnetlink-1.0.0.tar.bz2 = $(URL_IPFIRE)/libnfnetlink-1.0.0.tar.bz2
|
||||
libnetfilter_queue-0.0.17.tar.bz2 = $(URL_IPFIRE)/libnetfilter_queue-0.0.17.tar.bz2
|
||||
|
||||
$(DL_FILE)_MD5 = a138d1c2e74321e0e4e228a9fb301c9a
|
||||
netfilter-layer7-v2.21.tar.gz_MD5 = 838422e7d9a06b42e682e9064e5210b5
|
||||
libnfnetlink-0.0.41.tar.bz2_MD5 = 5d844ea1f557bad0364d5b85cd10c796
|
||||
$(DL_FILE)_MD5 = c67cf30e281a924def6426be0973df56
|
||||
netfilter-layer7-v2.22.tar.gz_MD5 = 98dff8a3d5a31885b73341633f69501f
|
||||
libnfnetlink-1.0.0.tar.bz2_MD5 = 016fdec8389242615024c529acc1adb8
|
||||
libnetfilter_queue-0.0.17.tar.bz2_MD5 = 2cde35e678ead3a8f9eb896bf807a159
|
||||
|
||||
install : $(TARGET)
|
||||
@@ -77,21 +77,24 @@ $(subst %,%_MD5,$(objects)) :
|
||||
|
||||
$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
|
||||
@$(PREBUILD)
|
||||
@rm -rf $(DIR_APP) $(DIR_SRC)/libnfnetlink-0.0.41 $(DIR_SRC)/netfilter-layer7* $(DIR_SRC)/libnetfilter_queue-0.0.17
|
||||
@rm -rf $(DIR_APP) $(DIR_SRC)/libnfnetlink-1.0.0 $(DIR_SRC)/netfilter-layer7* $(DIR_SRC)/libnetfilter_queue-0.0.17
|
||||
|
||||
@cd $(DIR_SRC) && tar jxf $(DIR_DL)/$(DL_FILE)
|
||||
cd $(DIR_SRC) && tar zxf $(DIR_DL)/netfilter-layer7-v2.21.tar.gz
|
||||
cd $(DIR_APP) && cp -vf $(DIR_SRC)/netfilter-layer7-v2.21/iptables-1.4.1.1-for-kernel-2.6.20forward/* \
|
||||
-cd /usr/include && patch -Np1 < $(DIR_SRC)/src/patches/iptables-1.4.6-errorno_includes.patch
|
||||
cp -rf /usr/src/linux/include/linux/netfilter /usr/include/linux
|
||||
|
||||
# Layer7
|
||||
cd $(DIR_SRC) && tar zxf $(DIR_DL)/netfilter-layer7-v2.22.tar.gz
|
||||
cd $(DIR_APP) && cp -vf $(DIR_SRC)/netfilter-layer7-v2.22/iptables-1.4.3forward-for-kernel-2.6.20forward/* \
|
||||
./extensions/
|
||||
|
||||
# ipp2p 0.8.2-pomng
|
||||
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/iptables-1.4.1.1-ipp2p-0.8.2-pomng.patch
|
||||
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/iptables-1.4.6-ipp2p-0.8.2-pomng.patch
|
||||
|
||||
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/iptables-1.4.2-imq.patch
|
||||
# imq
|
||||
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/iptables-1.4.6-imq_test1.patch
|
||||
chmod +x $(DIR_APP)/extensions/.IMQ-test*
|
||||
|
||||
# hack to disable IPv6 compilation as the configuration variable does not work when ip6.h is present
|
||||
# cd $(DIR_APP) && sed -i -e 's/DO_IPV6:=1/DO_IPV6:=0/' Makefile
|
||||
cd $(DIR_APP) && ./configure --prefix=/usr --with-ksource=/usr/src/linux \
|
||||
--libdir=/lib --includedir=/usr/include --enable-libipq \
|
||||
--libexecdir=/lib --bindir=/sbin \
|
||||
@@ -99,21 +102,26 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
|
||||
cd $(DIR_APP) && make $(MAKETUNING)
|
||||
cd $(DIR_APP) && make install
|
||||
|
||||
cd $(DIR_APP) && cp -fva include/* /usr/include
|
||||
-mkdir /usr/include/libiptc
|
||||
cd $(DIR_APP) && cp -vf include/libiptc/{libiptc.h,ipt_kernel_headers.h} \
|
||||
/usr/include/libiptc
|
||||
cd $(DIR_APP) && cp -vf libiptc/{*.o,*.a} \
|
||||
/lib
|
||||
# Iptables doesn't install all headers
|
||||
mkdir -p /usr/include/net/netfilter
|
||||
cp -f $(DIR_APP)/include/net/netfilter/*.h /usr/include/net/netfilter/
|
||||
mkdir -p /usr/include/iptables
|
||||
cp -f $(DIR_APP)/include/iptables/*.h /usr/include/iptables/
|
||||
cp -f $(DIR_APP)/include/iptables.h /usr/include/
|
||||
mkdir -p /usr/include/libipulog
|
||||
cp -f $(DIR_APP)/include/libipulog/*.h /usr/include/libipulog/
|
||||
mkdir -p /usr/include/libiptc
|
||||
cp -f $(DIR_APP)/include/libiptc/*.h /usr/include/libiptc/
|
||||
|
||||
cd $(DIR_SRC) && tar xfj $(DIR_DL)/libnfnetlink-0.0.41.tar.bz2
|
||||
cd $(DIR_SRC)/libnfnetlink-0.0.41 && ./configure --prefix=/usr
|
||||
cd $(DIR_SRC)/libnfnetlink-0.0.41 && make $(MAKETUNING) $(EXTRA_MAKE)
|
||||
cd $(DIR_SRC)/libnfnetlink-0.0.41 && make install
|
||||
cd $(DIR_SRC) && tar xfj $(DIR_DL)/libnfnetlink-1.0.0.tar.bz2
|
||||
cd $(DIR_SRC)/libnfnetlink-1.0.0 && ./configure --prefix=/usr
|
||||
cd $(DIR_SRC)/libnfnetlink-1.0.0 && make $(MAKETUNING) $(EXTRA_MAKE)
|
||||
cd $(DIR_SRC)/libnfnetlink-1.0.0 && make install
|
||||
|
||||
cd $(DIR_SRC) && tar xfj $(DIR_DL)/libnetfilter_queue-0.0.17.tar.bz2
|
||||
cd $(DIR_SRC)/libnetfilter_queue-0.0.17 && ./configure --prefix=/usr
|
||||
cd $(DIR_SRC)/libnetfilter_queue-0.0.17 && make $(MAKETUNING) $(EXTRA_MAKE)
|
||||
cd $(DIR_SRC)/libnetfilter_queue-0.0.17 && make install
|
||||
@rm -rf $(DIR_APP) $(DIR_SRC)/libnfnetlink-0.0.41 $(DIR_SRC)/netfilter-layer7* $(DIR_SRC)/libnetfilter_queue-0.0.17
|
||||
|
||||
@rm -rf $(DIR_APP) $(DIR_SRC)/libnfnetlink-1.0.0 $(DIR_SRC)/netfilter-layer7* $(DIR_SRC)/libnetfilter_queue-0.0.17
|
||||
@$(POSTBUILD)
|
||||
|
||||
10
lfs/klibc
10
lfs/klibc
@@ -37,13 +37,16 @@ TARGET = $(DIR_INFO)/$(THISAPP)
|
||||
###############################################################################
|
||||
|
||||
objects = $(DL_FILE) \
|
||||
klibc-extras-2.2.tar.gz
|
||||
klibc-extras-2.2.tar.gz \
|
||||
klibc-1.5.14-linux2.6.27-includes.tar.bz2
|
||||
|
||||
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
|
||||
klibc-extras-2.2.tar.gz = $(DL_FROM)/klibc-extras-2.2.tar.gz
|
||||
klibc-1.5.14-linux2.6.27-includes.tar.bz2 = $(DL_FROM)/klibc-1.5.14-linux2.6.27-includes.tar.bz2
|
||||
|
||||
$(DL_FILE)_MD5 = 030d978a7f16800e8ccae12d6fb5e7ba
|
||||
klibc-extras-2.2.tar.gz_MD5 = 7e5042978531048c369f59ca1a13055b
|
||||
klibc-1.5.14-linux2.6.27-includes.tar.bz2_MD5 = 1f875129d35193e35d27ed2b61a80bb6
|
||||
|
||||
install : $(TARGET)
|
||||
|
||||
@@ -74,14 +77,13 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
|
||||
@$(PREBUILD)
|
||||
@rm -rf $(DIR_APP) $(DIR_SRC)/klibc* && cd $(DIR_SRC) && tar jxf $(DIR_DL)/$(DL_FILE) && \
|
||||
tar zxf $(DIR_DL)/klibc-extras-2.2.tar.gz
|
||||
cd $(DIR_APP) && ln -fs ../linux linux
|
||||
cd $(DIR_SRC) && tar jxf $(DIR_DL)/klibc-1.5.14-linux2.6.27-includes.tar.bz2
|
||||
|
||||
cd $(DIR_SRC)/klibc-extras && sed -i "s|^INSTALL = .*|INSTALL = /usr/bin/install -c -m 755|g" Makefile
|
||||
cd $(DIR_APP) && make $(MAKETUNING) $(EXTRA_MAKE)
|
||||
cd $(DIR_APP) && make install
|
||||
cd $(DIR_SRC)/klibc-extras && make $(MAKETUNING) $(EXTRA_MAKE)
|
||||
cd $(DIR_SRC)/klibc-extras && make install
|
||||
ln -sf sh.shared /usr/lib/klibc/bin/sh
|
||||
#mv /lib/klibc-*.so /lib/klibc-pFXBYGYRiBAAryaZ7Zw_ISKpcTk.so
|
||||
#mv /usr/lib/klibc/lib/klibc-*.so /usr/lib/klibc/lib/klibc-pFXBYGYRiBAAryaZ7Zw_ISKpcTk.so
|
||||
@rm -rf $(DIR_APP) $(DIR_SRC)/klibc*
|
||||
@$(POSTBUILD)
|
||||
|
||||
77
lfs/liboping
Normal file
77
lfs/liboping
Normal file
@@ -0,0 +1,77 @@
|
||||
###############################################################################
|
||||
# #
|
||||
# IPFire.org - A linux based firewall #
|
||||
# Copyright (C) 2007 Michael Tremer & Christian Schmidt #
|
||||
# #
|
||||
# This program 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 3 of the License, or #
|
||||
# (at your option) any later version. #
|
||||
# #
|
||||
# This program 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 this program. If not, see <http://www.gnu.org/licenses/>. #
|
||||
# #
|
||||
###############################################################################
|
||||
|
||||
###############################################################################
|
||||
# Definitions
|
||||
###############################################################################
|
||||
|
||||
include Config
|
||||
|
||||
VER = 1.3.4
|
||||
|
||||
THISAPP = liboping-$(VER)
|
||||
DL_FILE = $(THISAPP).tar.bz2
|
||||
DL_FROM = $(URL_IPFIRE)
|
||||
DIR_APP = $(DIR_SRC)/$(THISAPP)
|
||||
TARGET = $(DIR_INFO)/$(THISAPP)
|
||||
|
||||
###############################################################################
|
||||
# Top-level Rules
|
||||
###############################################################################
|
||||
|
||||
objects = $(DL_FILE)
|
||||
|
||||
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
|
||||
|
||||
$(DL_FILE)_MD5 = 208e185f75f9f8ac96e508bd9e17ef61
|
||||
|
||||
install : $(TARGET)
|
||||
|
||||
check : $(patsubst %,$(DIR_CHK)/%,$(objects))
|
||||
|
||||
download :$(patsubst %,$(DIR_DL)/%,$(objects))
|
||||
|
||||
md5 : $(subst %,%_MD5,$(objects))
|
||||
|
||||
###############################################################################
|
||||
# Downloading, checking, md5sum
|
||||
###############################################################################
|
||||
|
||||
$(patsubst %,$(DIR_CHK)/%,$(objects)) :
|
||||
@$(CHECK)
|
||||
|
||||
$(patsubst %,$(DIR_DL)/%,$(objects)) :
|
||||
@$(LOAD)
|
||||
|
||||
$(subst %,%_MD5,$(objects)) :
|
||||
@$(MD5)
|
||||
|
||||
###############################################################################
|
||||
# Installation Details
|
||||
###############################################################################
|
||||
|
||||
$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
|
||||
@$(PREBUILD)
|
||||
@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar jxf $(DIR_DL)/$(DL_FILE)
|
||||
cd $(DIR_APP) && ./configure --prefix=/usr
|
||||
cd $(DIR_APP) && make $(MAKETUNING)
|
||||
cd $(DIR_APP) && make install
|
||||
@rm -rf $(DIR_APP)
|
||||
@$(POSTBUILD)
|
||||
84
lfs/linux
84
lfs/linux
@@ -24,8 +24,8 @@
|
||||
|
||||
include Config
|
||||
|
||||
PATCHLEVEL = .42
|
||||
VER = 2.6.27.42
|
||||
PATCHLEVEL = .10
|
||||
VER = 2.6.32.10
|
||||
|
||||
THISAPP = linux-$(VER)
|
||||
DL_FILE = $(THISAPP).tar.bz2
|
||||
@@ -35,42 +35,44 @@ CFLAGS =
|
||||
CXXFLAGS =
|
||||
|
||||
PROG = linux-xen
|
||||
PAK_VER = 7
|
||||
PAK_VER = 8
|
||||
DEPS = ""
|
||||
|
||||
# Normal build or XEN build.
|
||||
#
|
||||
|
||||
ifeq "$(XEN)" "1"
|
||||
VERSUFIX=ipfire-xen
|
||||
else
|
||||
VERSUFIX=ipfire
|
||||
endif
|
||||
|
||||
TARGET = $(DIR_INFO)/linux-$(VER)-$(VERSUFIX)
|
||||
|
||||
###############################################################################
|
||||
# Top-level Rules
|
||||
###############################################################################
|
||||
objects =$(DL_FILE) \
|
||||
squashfs3.4.tar.gz \
|
||||
netfilter-layer7-v2.21.tar.gz \
|
||||
netfilter-layer7-v2.22.tar.gz \
|
||||
patch-2.6.16-nath323-1.3.bz2 \
|
||||
reiser4-for-2.6.27.19.patch.bz2 \
|
||||
reiser4-for-2.6.32.patch.bz2 \
|
||||
squashfs-lzma-linux-2.6.32-kernel-patches.tar.bz2 \
|
||||
linux-$(VER)-suse_xen_patches-1.tar.bz2
|
||||
|
||||
$(DL_FILE) = $(URL_IPFIRE)/$(DL_FILE)
|
||||
netfilter-layer7-v2.21.tar.gz = $(URL_IPFIRE)/netfilter-layer7-v2.21.tar.gz
|
||||
netfilter-layer7-v2.22.tar.gz = $(URL_IPFIRE)/netfilter-layer7-v2.21.tar.gz
|
||||
patch-2.6.16-nath323-1.3.bz2 = $(URL_IPFIRE)/patch-2.6.16-nath323-1.3.bz2
|
||||
squashfs3.4.tar.gz = $(URL_IPFIRE)/squashfs3.4.tar.gz
|
||||
reiser4-for-2.6.27.19.patch.bz2 = $(URL_IPFIRE)/reiser4-for-2.6.27.19.patch.bz2
|
||||
reiser4-for-2.6.32.patch.bz2 = $(URL_IPFIRE)/reiser4-for-2.6.32.patch.bz2
|
||||
squashfs-lzma-linux-2.6.32-kernel-patches.tar.bz2 = $(URL_IPFIRE)/squashfs-lzma-linux-2.6.32-kernel-patches.tar.bz2
|
||||
linux-$(VER)-suse_xen_patches-1.tar.bz2 = $(URL_IPFIRE)/linux-$(VER)-suse_xen_patches-1.tar.bz2
|
||||
|
||||
|
||||
$(DL_FILE)_MD5 = a33e6b22d70dd010525fc43cdda36792
|
||||
netfilter-layer7-v2.21.tar.gz_MD5 = 838422e7d9a06b42e682e9064e5210b5
|
||||
$(DL_FILE)_MD5 = 5d996507ad482a3a8c8e6b2d48e7994b
|
||||
netfilter-layer7-v2.22.tar.gz_MD5 = 98dff8a3d5a31885b73341633f69501f
|
||||
patch-2.6.16-nath323-1.3.bz2_MD5 = f926409ff703a307baf54b57ab75d138
|
||||
squashfs3.4.tar.gz_MD5 = 2a4d2995ad5aa6840c95a95ffa6b1da6
|
||||
reiser4-for-2.6.27.19.patch.bz2_MD5 = 22988387f64f299489b90b484b2642cc
|
||||
linux-$(VER)-suse_xen_patches-1.tar.bz2_MD5 = ddbde50f3bc303d947531402017a3055
|
||||
reiser4-for-2.6.32.patch.bz2_MD5 = 3246397973d9271eb8e6d7c97c5d2d91
|
||||
squashfs-lzma-linux-2.6.32-kernel-patches.tar.bz2_MD5 = d2a84311081023c7ffd28cdca67c45d4
|
||||
linux-$(VER)-suse_xen_patches-1.tar.bz2_MD5 = 96b0dc50256ced7c5c2b6d03a7f2d386
|
||||
|
||||
install : $(TARGET)
|
||||
|
||||
@@ -102,6 +104,7 @@ $(subst %,%_MD5,$(objects)) :
|
||||
$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
|
||||
@$(PREBUILD)
|
||||
@rm -rf $(DIR_APP) $(DIR_SRC)/linux $(DIR_SRC)/linux-*-suse_xen_patches $(DIR_SRC)/xen-* && cd $(DIR_SRC) && tar jxf $(DIR_DL)/$(DL_FILE)
|
||||
|
||||
ln -s linux-$(VER) /usr/src/linux
|
||||
|
||||
ifeq "$(XEN)" "1"
|
||||
@@ -115,50 +118,37 @@ ifeq "$(XEN)" "1"
|
||||
done
|
||||
rm -rf $(DIR_SRC)/linux-*-suse_xen_patches
|
||||
|
||||
# Fix strange patchset errors
|
||||
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/linux-2.6.32.8-xen-patch-fixes.patch
|
||||
|
||||
# Linux Intermediate Queueing Device
|
||||
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/imq-skbuff.patch
|
||||
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/linux-2.6.27.21-imq-test3-xen.patch
|
||||
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/linux-2.6.32.8-xen-imq-test2.patch
|
||||
else
|
||||
# Linux Intermediate Queueing Device
|
||||
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/linux-2.6.27.21-imq-test3.patch
|
||||
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/linux-2.6.32-imq-test2.patch
|
||||
endif
|
||||
|
||||
# Add Vodafone K3565-Z USB ID's to option driver
|
||||
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/linux-2.6.27.25-option_add_vf-k3565-z_usbids.patch
|
||||
|
||||
# Add Alix to Led Driver
|
||||
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/linux-2.6.24-leds-alix.patch
|
||||
|
||||
# Patch to fix Intel e100 wake on lan
|
||||
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/linux-2.6.27.39_e100-wakeonlan-fix.patch
|
||||
# Add patch to fix ath5k "no txbuf available"
|
||||
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/linux-2.6.32-ath5k_fix_setup_for_CAB_queue.patch
|
||||
|
||||
# Not report deprecated syscall 1.23 (for kudzu)
|
||||
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/linux-2.6.25.18-not_report_sysctl_1.23.patch
|
||||
ifeq "$(XEN)" ""
|
||||
# Reiser4
|
||||
-cd $(DIR_APP) && bzip2 -d -c $(DIR_DL)/reiser4-for-2.6.27.19.patch.bz2 | patch -Np1
|
||||
|
||||
# SquashFS (already in Suse Patchset)
|
||||
cd $(DIR_SRC) && rm -rf squashfs*
|
||||
cd $(DIR_SRC) && tar xfz $(DIR_DL)/squashfs3.4.tar.gz
|
||||
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/squashfs3.4/kernel-patches/linux-2.6.27-rc4/squashfs3.4-patch
|
||||
endif
|
||||
# Reiser4 (don't check if fail (some patches are already in xen patchset)
|
||||
-cd $(DIR_APP) && bzcat $(DIR_DL)/reiser4-for-2.6.32.patch.bz2 | patch -Np1
|
||||
|
||||
# ipp2p 0.8.2-pomng
|
||||
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/linux-2.6.27.19-ipp2p-0.8.2-pomng.patch
|
||||
|
||||
# Intel Atom Coretemp Patch
|
||||
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/linux-2.6.27-atom-coretemp.patch
|
||||
# Intel Atom P4-clockmod Patch
|
||||
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/linux-2.6.27-atom-clockmod.patch
|
||||
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/linux-2.6.32.8-ipp2p-0.8.2-pomng.patch
|
||||
|
||||
# Layer7-patch
|
||||
cd $(DIR_SRC) && rm -rf $(DIR_SRC)/netfilter-layer7-v2.21
|
||||
cd $(DIR_SRC) && tar xzf $(DIR_DL)/netfilter-layer7-v2.21.tar.gz
|
||||
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/netfilter-layer7-v2.21/kernel-2.6.25-2.6.28-layer7-2.21.patch
|
||||
cd $(DIR_SRC) && rm -rf $(DIR_SRC)/netfilter-layer7-v2.22
|
||||
cd $(DIR_SRC) && tar xzf $(DIR_DL)/netfilter-layer7-v2.22.tar.gz
|
||||
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/netfilter-layer7-v2.22/kernel-2.6.25-2.6.28-layer7-2.22.patch
|
||||
|
||||
# Squashfs LZMA support
|
||||
cd $(DIR_APP) && bzcat $(DIR_DL)/squashfs-lzma-linux-2.6.32-kernel-patches.tar.bz2 | patch -Np1
|
||||
|
||||
# Cleanup kernel source
|
||||
cd $(DIR_APP) && make mrproper
|
||||
|
||||
cp $(DIR_SRC)/config/kernel/kernel.config.$(MACHINE)-$(VERSUFIX) $(DIR_APP)/.config
|
||||
cd $(DIR_APP) && make CC="$(KGCC)" oldconfig
|
||||
@@ -188,10 +178,12 @@ endif
|
||||
# Rename ide-cd module to match with old kernel
|
||||
mv /lib/modules/$(VER)-$(VERSUFIX)/kernel/drivers/ide/ide-cd_mod.ko \
|
||||
/lib/modules/$(VER)-$(VERSUFIX)/kernel/drivers/ide/ide-cd.ko
|
||||
mv /lib/modules/$(VER)-$(VERSUFIX)/kernel/drivers/ide/ide-gd_mod.ko \
|
||||
/lib/modules/$(VER)-$(VERSUFIX)/kernel/drivers/ide/ide-disk.ko
|
||||
|
||||
# Remove mISDN modules
|
||||
rm -rvf /lib/modules/$(VER)-$(VERSUFIX)/kernel/drivers/isdn/mISDN
|
||||
rm -rvf /lib/modules/$(VER)-$(VERSUFIX)/kernel/drivers/isdn/hardware/mISDN
|
||||
# # Remove mISDN modules
|
||||
# rm -rvf /lib/modules/$(VER)-$(VERSUFIX)/kernel/drivers/isdn/mISDN
|
||||
# rm -rvf /lib/modules/$(VER)-$(VERSUFIX)/kernel/drivers/isdn/hardware/mISDN
|
||||
|
||||
@rm -rf $(DIR_SRC)/patch-o-matic* $(DIR_SRC)/iptables* $(DIR_SRC)/squashfs* $(DIR_SRC)/netfilter-layer7-*
|
||||
@$(POSTBUILD)
|
||||
|
||||
76
lfs/linux-firmware
Normal file
76
lfs/linux-firmware
Normal file
@@ -0,0 +1,76 @@
|
||||
###############################################################################
|
||||
# #
|
||||
# IPFire.org - A linux based firewall #
|
||||
# Copyright (C) 2010 Michael Tremer & Christian Schmidt #
|
||||
# #
|
||||
# This program 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 3 of the License, or #
|
||||
# (at your option) any later version. #
|
||||
# #
|
||||
# This program 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 this program. If not, see <http://www.gnu.org/licenses/>. #
|
||||
# #
|
||||
###############################################################################
|
||||
|
||||
###############################################################################
|
||||
# Definitions
|
||||
###############################################################################
|
||||
|
||||
include Config
|
||||
|
||||
VER = 20100318
|
||||
|
||||
THISAPP = linux-firmware-$(VER)
|
||||
DL_FILE = $(THISAPP).tar.bz2
|
||||
DL_FROM = $(URL_IPFIRE)
|
||||
DIR_APP = $(DIR_SRC)/$(THISAPP)
|
||||
TARGET = $(DIR_INFO)/$(THISAPP)
|
||||
|
||||
###############################################################################
|
||||
# Top-level Rules
|
||||
###############################################################################
|
||||
|
||||
objects = $(DL_FILE)
|
||||
|
||||
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
|
||||
|
||||
$(DL_FILE)_MD5 = 57e3ec91c81eee2443b0ab6d83c43633
|
||||
|
||||
install : $(TARGET)
|
||||
|
||||
check : $(patsubst %,$(DIR_CHK)/%,$(objects))
|
||||
|
||||
download :$(patsubst %,$(DIR_DL)/%,$(objects))
|
||||
|
||||
md5 : $(subst %,%_MD5,$(objects))
|
||||
|
||||
###############################################################################
|
||||
# Downloading, checking, md5sum
|
||||
###############################################################################
|
||||
|
||||
$(patsubst %,$(DIR_CHK)/%,$(objects)) :
|
||||
@$(CHECK)
|
||||
|
||||
$(patsubst %,$(DIR_DL)/%,$(objects)) :
|
||||
@$(LOAD)
|
||||
|
||||
$(subst %,%_MD5,$(objects)) :
|
||||
@$(MD5)
|
||||
|
||||
###############################################################################
|
||||
# Installation Details
|
||||
###############################################################################
|
||||
|
||||
$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
|
||||
@$(PREBUILD)
|
||||
@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar jxf $(DIR_DL)/$(DL_FILE)
|
||||
mkdir -p /lib/firmware
|
||||
cd $(DIR_APP) && cp -vr * /lib/firmware
|
||||
@rm -rf $(DIR_APP)
|
||||
@$(POSTBUILD)
|
||||
@@ -76,6 +76,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
|
||||
sed -i 's|^HOOKS=.*|HOOKS="base udev autodetect ide usb scsi pata sata virtio filesystems"|g' /etc/mkinitcpio.conf
|
||||
sed -i 's|^MODULES=.*|MODULES="reiser4 reiserfs ext3 ehci_hcd"|g' /etc/mkinitcpio.conf
|
||||
sed -i 's|ide-cd|ide-cd ide-generic|g' /lib/initcpio/install/ide
|
||||
|
||||
sed -i 's| gzip -9 | lzma |g' /sbin/mkinitcpio
|
||||
@rm -rf $(DIR_APP)
|
||||
@$(POSTBUILD)
|
||||
|
||||
@@ -70,13 +70,15 @@ $(subst %,%_MD5,$(objects)) :
|
||||
$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
|
||||
@$(PREBUILD)
|
||||
@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
|
||||
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/openssl-0.9.8n-cryptodev.diff
|
||||
ifeq "$(PADLOCK)" "1"
|
||||
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/openssl-0.9.8g-engine-padlock.patch
|
||||
endif
|
||||
@rm -rf /etc/ssl
|
||||
cd $(DIR_APP) && sed -i -e 's/mcpu/march/' config
|
||||
cd $(DIR_APP) && sed -i -e 's/-O3/-O2/' -e 's/-march=i486/-march=i586/' Configure
|
||||
cd $(DIR_APP) && ./config --openssldir=/etc/ssl --prefix=/usr shared
|
||||
cd $(DIR_APP) && ./Configure --openssldir=/etc/ssl --prefix=/usr shared linux-elf \
|
||||
zlib-dynamic no-asm 386
|
||||
cd $(DIR_APP) && make MANDIR=/usr/share/man
|
||||
cd $(DIR_APP) && make MANDIR=/usr/share/man install
|
||||
rm -rf /etc/ssl/lib
|
||||
|
||||
10
lfs/openswan
10
lfs/openswan
@@ -30,10 +30,10 @@ else
|
||||
VERSUFIX=ipfire
|
||||
endif
|
||||
|
||||
VER = 2.6.23
|
||||
VER = git-20100309
|
||||
|
||||
THISAPP = openswan-$(VER)
|
||||
DL_FILE = $(THISAPP).tar.gz
|
||||
THISAPP = openswan.git
|
||||
DL_FILE = openswan.$(VER).tar.gz
|
||||
DL_FROM = $(URL_IPFIRE)
|
||||
DIR_APP = $(DIR_SRC)/$(THISAPP)
|
||||
|
||||
@@ -51,7 +51,7 @@ objects = $(DL_FILE)
|
||||
|
||||
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
|
||||
|
||||
$(DL_FILE)_MD5 = c83053471e639bf3b97e3cf7796b7e83
|
||||
$(DL_FILE)_MD5 = f23b716b8ffb242436d8e713d93d209c
|
||||
|
||||
install : $(TARGET)
|
||||
|
||||
@@ -92,7 +92,7 @@ else
|
||||
-e 's%^KLIPSCOMPILE.*$$%KLIPSCOMPILE=$(CFLAGS)%' \
|
||||
-e 's%^XMLTO.*$$%#&%' Makefile.inc
|
||||
|
||||
cd $(DIR_APP) && patch -Np1 -i $(DIR_SRC)/src/patches/openswan-2.6.20_noxmlto.patch
|
||||
cd $(DIR_APP) && patch -Np1 -i $(DIR_SRC)/src/patches/openswan-2.6.24_noxmlto.patch
|
||||
|
||||
cd $(DIR_APP) && sed -i 's/-Werror//' programs/Makefile.program
|
||||
|
||||
|
||||
@@ -24,7 +24,7 @@
|
||||
|
||||
include Config
|
||||
|
||||
VER = 1.2.15
|
||||
VER = 1.2.30
|
||||
|
||||
THISAPP = rrdtool-$(VER)
|
||||
DL_FILE = $(THISAPP).tar.gz
|
||||
@@ -40,7 +40,7 @@ objects = $(DL_FILE)
|
||||
|
||||
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
|
||||
|
||||
$(DL_FILE)_MD5 = bde8b12c202bc4e27fb9a9588a0aaddf
|
||||
$(DL_FILE)_MD5 = 19b24f7184a8dbf7b48c1bbb565ad9fb
|
||||
|
||||
install : $(TARGET)
|
||||
|
||||
|
||||
@@ -24,10 +24,10 @@
|
||||
|
||||
include Config
|
||||
|
||||
VER = 3.4
|
||||
VER = cvs20100214
|
||||
|
||||
THISAPP = squashfs$(VER)
|
||||
DL_FILE = $(THISAPP).tar.gz
|
||||
THISAPP = squashfs-lzma-$(VER)
|
||||
DL_FILE = $(THISAPP).tar.bz2
|
||||
DL_FROM = $(URL_IPFIRE)
|
||||
DIR_APP = $(DIR_SRC)/$(THISAPP)
|
||||
TARGET = $(DIR_INFO)/$(THISAPP)
|
||||
@@ -40,7 +40,7 @@ objects = $(DL_FILE)
|
||||
|
||||
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
|
||||
|
||||
$(DL_FILE)_MD5 = 2a4d2995ad5aa6840c95a95ffa6b1da6
|
||||
$(DL_FILE)_MD5 = 6bcc0500dd126cb8cafa85f111f8496e
|
||||
|
||||
install : $(TARGET)
|
||||
|
||||
@@ -69,7 +69,7 @@ $(subst %,%_MD5,$(objects)) :
|
||||
|
||||
$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
|
||||
@$(PREBUILD)
|
||||
@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
|
||||
@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar jxf $(DIR_DL)/$(DL_FILE)
|
||||
cd $(DIR_APP)/squashfs-tools && make mksquashfs
|
||||
cd $(DIR_APP)/squashfs-tools && cp -f mksquashfs /bin
|
||||
@rm -rf $(DIR_APP)
|
||||
|
||||
@@ -69,9 +69,7 @@ $(TARGET) :
|
||||
-ln -sv bash /bin/sh
|
||||
|
||||
# Config files
|
||||
for i in $(DIR_SRC)/config/etc/*; do \
|
||||
[ -f $$i ] && cp $$i /etc; \
|
||||
done
|
||||
cp -rvf $(DIR_SRC)/config/etc/* /etc;
|
||||
touch /etc/mtab
|
||||
echo "$(NAME) v$(VERSION) - $(SLOGAN)" > /etc/issue
|
||||
echo "===============================" >> /etc/issue
|
||||
|
||||
98
lfs/strongswan
Normal file
98
lfs/strongswan
Normal file
@@ -0,0 +1,98 @@
|
||||
###############################################################################
|
||||
# #
|
||||
# IPFire.org - A linux based firewall #
|
||||
# Copyright (C) 2010 Michael Tremer & Christian Schmidt #
|
||||
# #
|
||||
# This program 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 3 of the License, or #
|
||||
# (at your option) any later version. #
|
||||
# #
|
||||
# This program 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 this program. If not, see <http://www.gnu.org/licenses/>. #
|
||||
# #
|
||||
###############################################################################
|
||||
|
||||
###############################################################################
|
||||
# Definitions
|
||||
###############################################################################
|
||||
|
||||
include Config
|
||||
|
||||
ifeq "$(XEN)" "1"
|
||||
VERSUFIX=ipfire-xen
|
||||
else
|
||||
VERSUFIX=ipfire
|
||||
endif
|
||||
|
||||
VER = 4.3.6
|
||||
|
||||
THISAPP = strongswan-$(VER)
|
||||
DL_FILE = $(THISAPP).tar.bz2
|
||||
DL_FROM = $(URL_IPFIRE)
|
||||
DIR_APP = $(DIR_SRC)/$(THISAPP)
|
||||
TARGET = $(DIR_INFO)/$(THISAPP)
|
||||
|
||||
###############################################################################
|
||||
# Top-level Rules
|
||||
###############################################################################
|
||||
|
||||
objects = $(DL_FILE)
|
||||
|
||||
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
|
||||
|
||||
$(DL_FILE)_MD5 = e071f46b6c463ce76900758734e6143e
|
||||
|
||||
install : $(TARGET)
|
||||
|
||||
check : $(patsubst %,$(DIR_CHK)/%,$(objects))
|
||||
|
||||
download :$(patsubst %,$(DIR_DL)/%,$(objects))
|
||||
|
||||
md5 : $(subst %,%_MD5,$(objects))
|
||||
|
||||
###############################################################################
|
||||
# Downloading, checking, md5sum
|
||||
###############################################################################
|
||||
|
||||
$(patsubst %,$(DIR_CHK)/%,$(objects)) :
|
||||
@$(CHECK)
|
||||
|
||||
$(patsubst %,$(DIR_DL)/%,$(objects)) :
|
||||
@$(LOAD)
|
||||
|
||||
$(subst %,%_MD5,$(objects)) :
|
||||
@$(MD5)
|
||||
|
||||
###############################################################################
|
||||
# Installation Details
|
||||
###############################################################################
|
||||
|
||||
$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
|
||||
@$(PREBUILD)
|
||||
@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar jxf $(DIR_DL)/$(DL_FILE)
|
||||
|
||||
cd $(DIR_APP) && patch -Np1 -i $(DIR_SRC)/src/patches/strongswan-4.3.6_ipfire.patch
|
||||
|
||||
cd $(DIR_APP) && ./configure --prefix="/usr" --sysconfdir="/etc"
|
||||
cd $(DIR_APP) && make $(MAKETUNING)
|
||||
cd $(DIR_APP) && make install
|
||||
|
||||
-rm -rfv /etc/rc*.d/*ipsec
|
||||
cd $(DIR_SRC) && cp src/initscripts/init.d/ipsec /etc/rc.d/init.d/ipsec
|
||||
rm -f /etc/ipsec.conf /etc/ipsec.secrets
|
||||
ln -sf $(CONFIG_ROOT)/vpn/ipsec.conf /etc/ipsec.conf
|
||||
ln -sf $(CONFIG_ROOT)/vpn/ipsec.secrets /etc/ipsec.secrets
|
||||
|
||||
rm -rf /etc/ipsec.d/{cacerts,certs,crls}
|
||||
ln -sf $(CONFIG_ROOT)/ca /etc/ipsec.d/cacerts
|
||||
ln -sf $(CONFIG_ROOT)/certs /etc/ipsec.d/certs
|
||||
ln -sf $(CONFIG_ROOT)/crls /etc/ipsec.d/crls
|
||||
|
||||
#@rm -rf $(DIR_APP)
|
||||
@$(POSTBUILD)
|
||||
14
lfs/sysklogd
14
lfs/sysklogd
@@ -24,10 +24,10 @@
|
||||
|
||||
include Config
|
||||
|
||||
VER = 1.4.1
|
||||
VER = 1.5
|
||||
|
||||
THISAPP = sysklogd-$(VER)
|
||||
DL_FILE = $(THISAPP).tar.bz2
|
||||
DL_FILE = $(THISAPP).tar.gz
|
||||
DL_FROM = $(URL_IPFIRE)
|
||||
DIR_APP = $(DIR_SRC)/$(THISAPP)
|
||||
TARGET = $(DIR_INFO)/$(THISAPP)
|
||||
@@ -40,7 +40,7 @@ objects = $(DL_FILE)
|
||||
|
||||
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
|
||||
|
||||
$(DL_FILE)_MD5 = f587720988bc1670071f31d3694ca0fb
|
||||
$(DL_FILE)_MD5 = e053094e8103165f98ddafe828f6ae4b
|
||||
|
||||
install : $(TARGET)
|
||||
|
||||
@@ -69,10 +69,10 @@ $(subst %,%_MD5,$(objects)) :
|
||||
|
||||
$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
|
||||
@$(PREBUILD)
|
||||
@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar jxf $(DIR_DL)/$(DL_FILE)
|
||||
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/$(THISAPP)-fixes-1.patch
|
||||
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/$(THISAPP)-8bit-1.patch
|
||||
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/$(THISAPP)_xen_empty_buffer_check.patch
|
||||
@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
|
||||
#cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/$(THISAPP)-fixes-1.patch
|
||||
#cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/$(THISAPP)-8bit-1.patch
|
||||
#cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/$(THISAPP)_xen_empty_buffer_check.patch
|
||||
cd $(DIR_APP) && make $(MAKETUNING)
|
||||
cd $(DIR_APP) && make install
|
||||
touch /var/log/{dhcpcd.log,messages,ovpnserver.log}
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user