mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-04-09 18:45:54 +02:00
Merge branch 'master' of ssh://arne_f@git.ipfire.org/pub/git/ipfire-2.x
This commit is contained in:
@@ -18,6 +18,7 @@ use strict;
|
||||
use Socket;
|
||||
use IO::Socket;
|
||||
use Net::SSLeay;
|
||||
use Net::IPv4Addr;
|
||||
|
||||
$|=1; # line buffering
|
||||
|
||||
@@ -407,6 +408,12 @@ sub NextIP
|
||||
);
|
||||
}
|
||||
|
||||
sub ipcidr
|
||||
{
|
||||
my ($ip,$cidr) = &Net::IPv4Addr::ipv4_parse(shift);
|
||||
return "$ip\/$cidr";
|
||||
}
|
||||
|
||||
sub validemail {
|
||||
my $mail = shift;
|
||||
return 0 if ( $mail !~ /^[0-9a-zA-Z\.\-\_]+\@[0-9a-zA-Z\.\-]+$/ );
|
||||
|
||||
36
config/client175/site.conf
Normal file
36
config/client175/site.conf
Normal file
@@ -0,0 +1,36 @@
|
||||
# Edit this file as needed and save it as: site.conf
|
||||
# The application will work without it but tag editing will not work
|
||||
# without saving this file as site.conf with the correct music_directory
|
||||
# set.
|
||||
|
||||
[global]
|
||||
# Change these to control a remote mpd instance. Be aware that tag editing
|
||||
# will not work if the music files cannot be opened with read/write access
|
||||
# from this server via the music_directory option configured below.
|
||||
mpd_host: "localhost"
|
||||
mpd_port: 6600
|
||||
|
||||
# Setting environment to production removes the verbose console output
|
||||
# and disables auto-reload on file changes.
|
||||
environment: "production"
|
||||
|
||||
# Only change socket_host if you have multiple network interfaces and want
|
||||
# to limit which one it listens on. "0.0.0.0" listens on all interfaces.
|
||||
server.socket_host: "0.0.0.0"
|
||||
|
||||
# Don't run this as root in order to use port 80! This app was not built
|
||||
# to be secure, it must be run with limited access.
|
||||
server.socket_port: 8800
|
||||
|
||||
# Location of the music directory, required for editing tags. This variable
|
||||
# is also used to identify the folder for a given file in local cover lookups.
|
||||
music_directory: "/var/mp3"
|
||||
|
||||
# List of local locations to search for cover art. The server will check
|
||||
# these locations for covers before using web services. The following
|
||||
# variables are available fo substitution:
|
||||
# {folder} Folder a given file is in
|
||||
# {artist} Artist name
|
||||
# {album} Album name
|
||||
# This variable must be in the form of a python list.
|
||||
local_covers: ["{folder}/folder.jpg", "{folder}/.folder.png"]
|
||||
@@ -39,4 +39,9 @@ clamav:x:109:
|
||||
amavis:x:110:
|
||||
mldonkey:x:111:
|
||||
audio:x:112:
|
||||
video:x:113:
|
||||
asterisk:x:114:
|
||||
nut:x:115:
|
||||
cdrom:x:116:
|
||||
usb:x:117:
|
||||
samba:x:1000:
|
||||
|
||||
@@ -22,4 +22,5 @@ amavis:x:110:110:Amavisd-new user:/var/amavis:
|
||||
cyrus:x:111:12:Cyrus user:/usr/cyrus:
|
||||
filter:x:112:12:Spam user:/home/filter:/bin/false
|
||||
mldonkey:x:113:111:Mldonkey user:/opt/mldonkey:/bin/false
|
||||
asterisk:x:114:114:Asterisk user:/var/empty:/bin/false
|
||||
samba:x:1000:1000:Samba User:/var/empty:/bin/false
|
||||
|
||||
@@ -39,8 +39,3 @@ title IPFire (single Processor)
|
||||
kernel /vmlinuz-KVER-ipfire root=ROOT rootdelay=10 panic=10 nosmp MOUNT
|
||||
initrd /ipfirerd-KVER.img
|
||||
savedefault 5
|
||||
title IPFire (all storage drivers)
|
||||
root (hd0,0)
|
||||
kernel /vmlinuz-KVER-ipfire root=ROOT rootdelay=10 panic=10 MOUNT
|
||||
initrd /ipfirerd-KVER-emergency.img
|
||||
savedefault 6
|
||||
|
||||
32
config/initrd/dhcpc/70-dhcpcd.exe
Executable file
32
config/initrd/dhcpc/70-dhcpcd.exe
Executable file
@@ -0,0 +1,32 @@
|
||||
#/bin/bash
|
||||
########################################################################
|
||||
# Begin
|
||||
#
|
||||
# Description : DHCP Client Script (initrd version)
|
||||
#
|
||||
# Authors : Arne Fitzenreiter - arne_f@ipfire.org
|
||||
#
|
||||
# Version : 02.00
|
||||
#
|
||||
# Notes :
|
||||
#
|
||||
########################################################################
|
||||
|
||||
dhcpcd_up()
|
||||
{
|
||||
set | grep "^new_" | sed "s|^new_||g" | \
|
||||
sed "s|'||g" | \
|
||||
sort > /var/ipfire/dhcpc/dhcpcd-$interface.info
|
||||
|
||||
DNS=`grep "domain_name_servers" /var/ipfire/dhcpc/dhcpcd-$interface.info | cut -d"=" -f2`
|
||||
DNS1=`echo $DNS | cut -d" " -f1`
|
||||
DNS2=`echo $DNS | cut -d" " -f2`
|
||||
|
||||
echo "nameserver $DNS1" > /etc/resolv.conf
|
||||
echo "nameserver $DNS2" >> /etc/resolv.conf
|
||||
|
||||
}
|
||||
|
||||
case "$reason" in
|
||||
BOUND|INFORM|REBIND|REBOOT|RENEW|TIMEOUT|STATIC) dhcpcd_up;;
|
||||
esac
|
||||
@@ -1,21 +1,16 @@
|
||||
#!/bin/sh
|
||||
# Clear screen
|
||||
/bin/clear
|
||||
|
||||
/usr/bin/clear
|
||||
echo "Shutting down..."
|
||||
echo "Sending all processes the TERM signal..."
|
||||
/bin/killall5 -15
|
||||
/sbin/killall5 -15
|
||||
sleep 3
|
||||
echo "Sending all processes the KILL signal..."
|
||||
/bin/killall5 -9
|
||||
/sbin/killall5 -9
|
||||
sleep 3
|
||||
echo "Unmounting filesystems"
|
||||
/bin/umount /tmp
|
||||
/bin/umount /sys
|
||||
/bin/umount /dev/pts
|
||||
/bin/umount /dev
|
||||
/bin/umount /root
|
||||
/bin/umount /proc
|
||||
echo "Unmounting root"
|
||||
echo "Unmounting filesystems..."
|
||||
/bin/umount -a > /dev/null 2>&1
|
||||
echo "Unmounting root..."
|
||||
/bin/mount -n -o remount,ro /
|
||||
/bin/reboot
|
||||
echo "Rebooting..."
|
||||
/sbin/reboot -f
|
||||
|
||||
@@ -1,11 +0,0 @@
|
||||
# System initialization.
|
||||
::sysinit:/etc/rc
|
||||
|
||||
# Run gettys in standard runlevels
|
||||
console::respawn:/bin/iowrap /dev/console /bin/ash --login -c "/bin/install /dev/tty2"
|
||||
tty2::respawn:/bin/iowrap /dev/tty2 /bin/ash --login
|
||||
tty3::respawn:/bin/iowrap /dev/tty3 /bin/ash --login
|
||||
|
||||
# Stuff to do before rebooting
|
||||
::ctrlaltdel:/etc/halt
|
||||
::shutdown:/etc/halt
|
||||
@@ -1,50 +0,0 @@
|
||||
#!/bin/ash
|
||||
|
||||
echo -n "Mounting filesystems: /tmp "
|
||||
mount -n -t tmpfs tmpfs /tmp -o mode=1777
|
||||
|
||||
echo -n "/proc "
|
||||
mount -n -t proc none /proc
|
||||
echo >/proc/sys/kernel/printk "1 4 1 7"
|
||||
|
||||
echo -n "/sys "
|
||||
mount -n -t sysfs sysfs /sys
|
||||
|
||||
echo -n "/dev "
|
||||
mount -n -t tmpfs tmpfs /dev -o mode=755
|
||||
mkdir -p -m 0755 /dev/pts
|
||||
mkdir -p -m 0755 /dev/shm
|
||||
|
||||
echo -n "/dev/pts "
|
||||
mount -n -t devpts devpts /dev/pts
|
||||
|
||||
echo "/root"
|
||||
mount -n -t ramfs none /root
|
||||
|
||||
echo -n -e "\033[9;0]"
|
||||
|
||||
ln -snf /proc/self/fd /dev/fd
|
||||
ln -snf /proc/self/fd/0 /dev/stdin
|
||||
ln -snf /proc/self/fd/1 /dev/stdout
|
||||
ln -snf /proc/self/fd/2 /dev/stderr
|
||||
ln -s /proc/kcore /dev/core
|
||||
|
||||
echo "Starting syslogd"
|
||||
syslogd -O /dev/tty4
|
||||
|
||||
echo "Loading scsi_mod & libata module"
|
||||
modprobe scsi_mod
|
||||
modprobe libata
|
||||
|
||||
echo "Starting udev daemon"
|
||||
/sbin/udevd --daemon
|
||||
/sbin/udevtrigger
|
||||
/sbin/udevsettle
|
||||
|
||||
sleep 3
|
||||
for file in /dev/.udev/failed/*/uevent ; do
|
||||
echo "add" >"${file}"
|
||||
done 2>/dev/null
|
||||
/sbin/udevsettle
|
||||
|
||||
echo "Loading Installer..."
|
||||
21
config/install/rc_installer
Normal file
21
config/install/rc_installer
Normal file
@@ -0,0 +1,21 @@
|
||||
#
|
||||
# IPFire Installer RC
|
||||
#
|
||||
|
||||
echo >/proc/sys/kernel/printk "1 4 1 7"
|
||||
echo -n -e "\033[9;0]"
|
||||
|
||||
ln -snf /proc/self/fd/0 /dev/stdin
|
||||
ln -snf /proc/self/fd/1 /dev/stdout
|
||||
ln -snf /proc/self/fd/2 /dev/stderr
|
||||
ln -s /proc/kcore /dev/core
|
||||
mount tmpfs -t tmpfs /tmp
|
||||
|
||||
echo "Starting shells on tty2 and tty3 ..."
|
||||
/usr/local/bin/iowrap /dev/tty2 /bin/bash &
|
||||
/usr/local/bin/iowrap /dev/tty3 /bin/bash &
|
||||
|
||||
echo "Loading Installer..."
|
||||
/bin/bash --login -c "/bin/install /dev/tty2"
|
||||
|
||||
/etc/halt
|
||||
@@ -1,3 +0,0 @@
|
||||
# sysfs is populated after the event is sent
|
||||
ACTION=="add", DEVPATH=="/devices/*", ENV{PHYSDEVBUS}=="?*", WAIT_FOR_SYSFS="bus"
|
||||
ACTION=="add", SUBSYSTEM=="scsi", WAIT_FOR_SYSFS="ioerr_cnt"
|
||||
@@ -1,2 +0,0 @@
|
||||
# Set group ownership for raw USB devices
|
||||
SUBSYSTEM=="usb_device", GROUP="usb"
|
||||
@@ -1,136 +0,0 @@
|
||||
# /etc/udev/rules.d/25-lfs.rules: Rule definitions for LFS.
|
||||
|
||||
# Core kernel devices
|
||||
|
||||
KERNEL=="ptmx", MODE="0666", GROUP="tty"
|
||||
KERNEL=="random", MODE="0444"
|
||||
KERNEL=="urandom", MODE="0444"
|
||||
KERNEL=="kmem", MODE="0640", GROUP="kmem"
|
||||
KERNEL=="mem", MODE="0640", GROUP="kmem"
|
||||
KERNEL=="port", MODE="0640", GROUP="kmem"
|
||||
KERNEL=="null", MODE="0666"
|
||||
KERNEL=="zero", MODE="0666"
|
||||
KERNEL=="full", MODE="0666"
|
||||
KERNEL=="aio", MODE="0444"
|
||||
KERNEL=="kmsg", MODE="0600"
|
||||
KERNEL=="rtc", MODE="0666"
|
||||
|
||||
# Comms devices
|
||||
|
||||
KERNEL=="ttyS[0-9]*", GROUP="dialout"
|
||||
KERNEL=="ttyUSB[0-9]*", GROUP="dialout"
|
||||
KERNEL=="rfcomm[0-9]*", GROUP="dialout"
|
||||
KERNEL=="tty[BCDEFHILMPRSTUVWX][0-9]*", GROUP="dialout"
|
||||
KERNEL=="ttyS[ACIR][0-9]*", GROUP="dialout"
|
||||
KERNEL=="ttyUSB[0-9]*", GROUP="dialout"
|
||||
KERNEL=="ttyACM[0-9]*", GROUP="dialout"
|
||||
KERNEL=="ippp[0-9]*", GROUP="dialout"
|
||||
KERNEL=="isdn[0-9]*", GROUP="dialout"
|
||||
KERNEL=="isdnctrl[0-9]*", GROUP="dialout"
|
||||
KERNEL=="capi", NAME="capi20", SYMLINK="isdn/capi20"
|
||||
KERNEL=="capi?*", NAME="capi/%n", GROUP="dialout"
|
||||
KERNEL=="dcbri[0-9]*", GROUP="dialout"
|
||||
KERNEL=="ircomm[0-9]*", GROUP="dialout"
|
||||
|
||||
# TTY's
|
||||
|
||||
KERNEL=="tty", MODE="0666", GROUP="tty"
|
||||
KERNEL=="tty[0-9]*", MODE="0666", GROUP="tty"
|
||||
KERNEL=="vcs*", MODE="0600"
|
||||
KERNEL=="console", MODE="0622", GROUP="tty"
|
||||
|
||||
# ALSA devices go in their own subdirectory
|
||||
|
||||
KERNEL=="controlC[0-9]*", GROUP="audio", NAME="snd/%k"
|
||||
KERNEL=="hw[CD0-9]*", GROUP="audio", NAME="snd/%k"
|
||||
KERNEL=="pcm[CD0-9cp]*", GROUP="audio", NAME="snd/%k"
|
||||
KERNEL=="midiC[D0-9]*", GROUP="audio", NAME="snd/%k"
|
||||
KERNEL=="timer", GROUP="audio", NAME="snd/%k"
|
||||
KERNEL=="seq", GROUP="audio", NAME="snd/%k"
|
||||
|
||||
# Sound devices
|
||||
|
||||
KERNEL=="admmidi*", GROUP="audio"
|
||||
KERNEL=="adsp*", GROUP="audio"
|
||||
KERNEL=="aload*", GROUP="audio"
|
||||
KERNEL=="amidi*", GROUP="audio"
|
||||
KERNEL=="amixer*", GROUP="audio"
|
||||
KERNEL=="audio*", GROUP="audio"
|
||||
KERNEL=="dmfm*", GROUP="audio"
|
||||
KERNEL=="dmmidi*", GROUP="audio"
|
||||
KERNEL=="dsp*", GROUP="audio"
|
||||
KERNEL=="midi*", GROUP="audio"
|
||||
KERNEL=="mixer*", GROUP="audio"
|
||||
KERNEL=="music", GROUP="audio"
|
||||
KERNEL=="sequencer*", GROUP="audio"
|
||||
|
||||
# Printing devices
|
||||
|
||||
KERNEL=="lp[0-9]*", GROUP="lp"
|
||||
KERNEL=="parport[0-9]*", GROUP="lp"
|
||||
KERNEL=="irlpt[0-9]*", GROUP="lp"
|
||||
|
||||
# Input devices go in their own subdirectory
|
||||
|
||||
KERNEL=="mice", MODE="0644", NAME="input/%k" SYMLINK="mouse"
|
||||
KERNEL=="mouse*", MODE="0644", NAME="input/%k"
|
||||
KERNEL=="event*", MODE="0644", NAME="input/%k"
|
||||
KERNEL=="js*", MODE="0644", NAME="input/%k"
|
||||
KERNEL=="ts*", MODE="0644", NAME="input/%k"
|
||||
|
||||
KERNEL=="psaux", MODE="0644"
|
||||
KERNEL=="js", MODE="0644"
|
||||
KERNEL=="djs", MODE="0644"
|
||||
|
||||
# USB devices go in their own subdirectory
|
||||
|
||||
SUBSYSTEM=="usb_device", PROGRAM="/bin/sh -c 'X=%k; X=$${X#usbdev}; B=$${X%%%%.*} D=$${X#*.}; echo bus/usb/$$B/$$D'", NAME="%c"
|
||||
KERNEL=="hiddev*", NAME="usb/%k"
|
||||
KERNEL=="auer*", NAME="usb/%k"
|
||||
KERNEL=="legousbtower*", NAME="usb/%k"
|
||||
KERNEL=="dabusb*", NAME="usb/%k"
|
||||
BUS=="usb", KERNEL=="lp[0-9]*", GROUP="lp", NAME="usb/%k"
|
||||
|
||||
# DRI devices are managed by the X server, so prevent udev from creating them
|
||||
|
||||
KERNEL=="card*", NAME=""
|
||||
|
||||
# Video devices
|
||||
|
||||
KERNEL=="fb[0-9]*", MODE="0620", GROUP="video"
|
||||
KERNEL=="agpgart", GROUP="video"
|
||||
KERNEL=="video[0-9]*", GROUP="video"
|
||||
KERNEL=="radio[0-9]*", GROUP="video"
|
||||
KERNEL=="vbi[0-9]*", GROUP="video"
|
||||
KERNEL=="vtx[0-9]*", GROUP="video"
|
||||
|
||||
# Storage/memory devices
|
||||
|
||||
KERNEL=="fd[0-9]*", GROUP="floppy"
|
||||
KERNEL=="ram[0-9]*", GROUP="disk"
|
||||
KERNEL=="raw[0-9]*", GROUP="disk", NAME="raw/%k"
|
||||
KERNEL=="hd*", GROUP="disk"
|
||||
KERNEL=="sd[a-z]", GROUP="disk"
|
||||
KERNEL=="sd[a-z][0-9]*", GROUP="disk"
|
||||
KERNEL=="sd[a-i][a-z]", GROUP="disk"
|
||||
KERNEL=="sd[a-i][a-z][0-9]*", GROUP="disk"
|
||||
KERNEL=="dasd[0-9]*", GROUP="disk"
|
||||
KERNEL=="loop[0-9]*", GROUP="disk"
|
||||
KERNEL=="md[0-9]*", GROUP="disk"
|
||||
|
||||
# dmsetup and lvm2 related programs create devicemapper devices so we prevent
|
||||
# udev from creating them
|
||||
|
||||
KERNEL=="dm-*", OPTIONS+="ignore_device"
|
||||
KERNEL=="device-mapper", OPTIONS+="ignore_device"
|
||||
|
||||
KERNEL=="ht[0-9]*", GROUP="tape"
|
||||
KERNEL=="nht[0-9]*", GROUP="tape"
|
||||
KERNEL=="pt[0-9]*", GROUP="tape"
|
||||
KERNEL=="npt[0-9]*", GROUP="tape"
|
||||
KERNEL=="st[0-9]*", GROUP="tape"
|
||||
KERNEL=="nst[0-9]*", GROUP="tape"
|
||||
|
||||
# Network devices
|
||||
|
||||
KERNEL=="tun", NAME="net/%k"
|
||||
@@ -1,18 +0,0 @@
|
||||
# /etc/udev/rules.d/26-modprobe.rules: Rules that require modprobe.
|
||||
|
||||
# Generic rule to allow loading modular drivers for existing hardware
|
||||
|
||||
ACTION=="add", ENV{MODALIAS}=="?*", RUN+="/sbin/modprobe $env{MODALIAS}"
|
||||
|
||||
# SCSI devices require different modules, dependent on their SYSFS{type}. All
|
||||
# of them require 'sg' though.
|
||||
#
|
||||
# module name sysfs types
|
||||
# sd 0 (TYPE_DISK), 7 (TYPE_MOD), 14 (TYPE_MOD)
|
||||
# st/osst 1 (TYPE_TAPE)
|
||||
# sr 4 (TYPE_WORM), 5 (TYPE_ROM)
|
||||
|
||||
SUBSYSTEM=="scsi_device", ACTION=="add", SYSFS{type}=="0|7|14", RUN+="/sbin/modprobe sd_mod"
|
||||
SUBSYSTEM=="scsi_device", ACTION=="add", SYSFS{type}=="1", RUN+="/sbin/modprobe st"
|
||||
SUBSYSTEM=="scsi_device", ACTION=="add", SYSFS{type}=="[45]", RUN+="/sbin/modprobe sr_mod"
|
||||
SUBSYSTEM=="scsi_device", ACTION=="add", RUN+="/sbin/modprobe sg"
|
||||
@@ -1,3 +0,0 @@
|
||||
# /etc/udev/rules.d/27-firmware.rules: Load firmware for devices that need it
|
||||
|
||||
ACTION=="add", SUBSYSTEM=="firmware", RUN+="firmware.sh"
|
||||
@@ -1,47 +0,0 @@
|
||||
# There are a number of modifiers that are allowed to be used in some of the
|
||||
# fields. See the udev man page for a full description of them.
|
||||
#
|
||||
# See the udev.rules.examples file for more examples of how to create rules
|
||||
#
|
||||
|
||||
# if this is a ide cdrom, name it the default name, and create a symlink to cdrom
|
||||
BUS="ide", KERNEL="*[!0-9]", PROGRAM="/bin/cat /proc/ide/%k/media", RESULT="cdrom", NAME="%k", SYMLINK="cdrom"
|
||||
|
||||
# create a symlink named after the device map name
|
||||
# note devmap_name comes with extras/multipath
|
||||
KERNEL="dm-[0-9]*", PROGRAM="/sbin/devmap_name %M %m", NAME="%k", SYMLINK="%c"
|
||||
|
||||
# DRI devices always go into a subdirectory (as per the LSB spec)
|
||||
KERNEL="card*", NAME="dri/card%n"
|
||||
|
||||
# alsa devices
|
||||
KERNEL="controlC[0-9]*", NAME="snd/%k"
|
||||
KERNEL="hw[CD0-9]*", NAME="snd/%k"
|
||||
KERNEL="pcm[CD0-9cp]*", NAME="snd/%k"
|
||||
KERNEL="midiC[D0-9]*", NAME="snd/%k"
|
||||
KERNEL="timer", NAME="snd/%k"
|
||||
KERNEL="seq", NAME="snd/%k"
|
||||
|
||||
# input devices
|
||||
KERNEL="mice", NAME="input/%k"
|
||||
KERNEL="mouse*", NAME="input/%k"
|
||||
KERNEL="event*", NAME="input/%k"
|
||||
KERNEL="js*", NAME="input/%k"
|
||||
KERNEL="ts*", NAME="input/%k"
|
||||
|
||||
# USB devices
|
||||
KERNEL="hiddev*", NAME="usb/%k"
|
||||
KERNEL="auer*", NAME="usb/%k"
|
||||
KERNEL="legousbtower*", NAME="usb/%k"
|
||||
KERNEL="dabusb*", NAME="usb/%k"
|
||||
BUS="usb", KERNEL="lp[0-9]*", NAME="usb/%k"
|
||||
|
||||
# CAPI devices
|
||||
KERNEL="capi", NAME="capi20", SYMLINK="isdn/capi20"
|
||||
KERNEL="capi*", NAME="capi/%n"
|
||||
|
||||
# Network devices
|
||||
KERNEL="tun", NAME="net/%k"
|
||||
|
||||
# raw devices
|
||||
KERNEL="raw[0-9]*", NAME="raw/%k"
|
||||
@@ -1,49 +0,0 @@
|
||||
# persistent storage links: /dev/{disk,tape}/{by-id,by-uuid,by-label,by-path,by-name}
|
||||
# scheme based on "Linux persistent device names", 2004, Hannes Reinecke <hare@suse.de>
|
||||
|
||||
ACTION!="add", GOTO="persistent_storage_end"
|
||||
SUBSYSTEM!="block", GOTO="persistent_storage_end"
|
||||
|
||||
# skip rules for inappropriate block devices
|
||||
KERNEL=="ram*|loop*|fd*|nbd*", GOTO="persistent_storage_end"
|
||||
|
||||
# never access removable ide devices, the drivers are causing event loops on open()
|
||||
KERNEL=="hd*[!0-9]", SYSFS{removable}=="1", DRIVER=="ide-cs|ide-floppy", GOTO="persistent_storage_end"
|
||||
KERNEL=="hd*[0-9]", SYSFS{../removable}=="1", GOTO="persistent_storage_end"
|
||||
|
||||
# for partitions import parent information
|
||||
KERNEL=="*[0-9]", IMPORT{parent}=="ID_*"
|
||||
|
||||
# by-id (hardware serial number)
|
||||
KERNEL=="hd*[!0-9]", IMPORT{program}="ata_id --export $tempnode"
|
||||
KERNEL=="hd*[!0-9]", ENV{ID_SERIAL}=="?*", SYMLINK+="disk/by-id/ata-$env{ID_MODEL}_$env{ID_SERIAL}"
|
||||
KERNEL=="hd*[0-9]", IMPORT{parent}=="ID_*", SYMLINK+="disk/by-id/ata-$env{ID_MODEL}_$env{ID_SERIAL}-part%n"
|
||||
|
||||
KERNEL=="sd*[!0-9]|sr*|st*", SYSFS{ieee1394_id}=="*", ENV{ID_SERIAL}="$sysfs{ieee1394_id}", ENV{ID_BUS}="ieee1394"
|
||||
KERNEL=="sd*[!0-9]|sr*|st*", ENV{ID_SERIAL}=="", IMPORT{program}="usb_id -x"
|
||||
KERNEL=="sd*[!0-9]|sr*|st*", ENV{ID_SERIAL}=="", IMPORT{program}="scsi_id -g -x -s %p -d $tempnode"
|
||||
KERNEL=="sd*[!0-9]|sr*|st*", ENV{ID_SERIAL}=="", IMPORT{program}="scsi_id -g -x -a -s %p -d $tempnode"
|
||||
KERNEL=="dasd*[!0-9]", IMPORT{program}="dasd_id --export $tempnode"
|
||||
KERNEL=="sd*[!0-9]|sr*|dasd*[!0-9]", ENV{ID_SERIAL}=="?*", SYMLINK+="disk/by-id/$env{ID_BUS}-$env{ID_SERIAL}"
|
||||
KERNEL=="sd*[0-9]|dasd*[0-9]", ENV{ID_SERIAL}=="?*", SYMLINK+="disk/by-id/$env{ID_BUS}-$env{ID_SERIAL}-part%n"
|
||||
KERNEL=="st*", ENV{ID_SERIAL}=="?*", SYMLINK+="tape/by-id/$env{ID_BUS}-$env{ID_SERIAL}"
|
||||
|
||||
# by-path (shortest physical path)
|
||||
KERNEL=="*[!0-9]|sr*", IMPORT{program}="path_id %p", SYMLINK+="disk/by-path/$env{ID_PATH}"
|
||||
KERNEL=="st*", IMPORT{program}="path_id %p", SYMLINK+="tape/by-path/$env{ID_PATH}"
|
||||
KERNEL=="sr*|st*", GOTO="persistent_storage_end"
|
||||
KERNEL=="*[0-9]", ENV{ID_PATH}=="?*", SYMLINK+="disk/by-path/$env{ID_PATH}-part%n"
|
||||
|
||||
# by-label/by-uuid (filesystem properties)
|
||||
KERNEL=="*[!0-9]", SYSFS{removable}=="1", GOTO="persistent_storage_end"
|
||||
IMPORT{program}="vol_id --export $tempnode"
|
||||
ENV{ID_FS_USAGE}=="filesystem|other", ENV{ID_FS_UUID}=="?*", SYMLINK+="disk/by-uuid/$env{ID_FS_UUID}"
|
||||
ENV{ID_FS_USAGE}=="filesystem|other", ENV{ID_FS_LABEL_SAFE}=="?*", SYMLINK+="disk/by-label/$env{ID_FS_LABEL_SAFE}"
|
||||
|
||||
# BIOS Enhanced Disk Device
|
||||
KERNEL=="*[!0-9]", IMPORT{program}="edd_id --export $tempnode"
|
||||
KERNEL=="*[!0-9]", ENV{ID_EDD}=="?*", SYMLINK+="disk/by-id/edd-$env{ID_EDD}"
|
||||
KERNEL=="*[0-9]", ENV{ID_EDD}=="?*", SYMLINK+="disk/by-id/edd-$env{ID_EDD}-part%n"
|
||||
|
||||
|
||||
LABEL="persistent_storage_end"
|
||||
@@ -1,3 +0,0 @@
|
||||
# /etc/udev/rules.d/81-cdrom.rules: Set CD-ROM permissions.
|
||||
|
||||
ACTION=="add", SUBSYSTEM=="block", ENV{ID_TYPE}=="cd", GROUP="cdrom"
|
||||
@@ -1,7 +0,0 @@
|
||||
# udev.conf
|
||||
|
||||
# The initial syslog(3) priority: "err", "info", "debug" or its
|
||||
# numerical equivalent. For runtime debugging, the daemons internal
|
||||
# state can be changed with: "udevcontrol log_priority=<value>".
|
||||
udev_log="err"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# Automatically generated make config: don't edit
|
||||
# Linux kernel version: 2.6.32.11
|
||||
# Sun Apr 18 15:29:55 2010
|
||||
# Linux kernel version: 2.6.32.25
|
||||
# Thu Nov 4 13:33:56 2010
|
||||
#
|
||||
# CONFIG_64BIT is not set
|
||||
CONFIG_X86_32=y
|
||||
@@ -54,6 +54,7 @@ CONFIG_X86_HT=y
|
||||
CONFIG_X86_TRAMPOLINE=y
|
||||
CONFIG_X86_32_LAZY_GS=y
|
||||
CONFIG_KTIME_SCALAR=y
|
||||
CONFIG_ARCH_CPU_PROBE_RELEASE=y
|
||||
CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
|
||||
CONFIG_CONSTRUCTORS=y
|
||||
|
||||
@@ -140,9 +141,10 @@ CONFIG_HAVE_PERF_EVENTS=y
|
||||
# CONFIG_PERF_COUNTERS is not set
|
||||
CONFIG_VM_EVENT_COUNTERS=y
|
||||
CONFIG_PCI_QUIRKS=y
|
||||
CONFIG_COMPAT_BRK=y
|
||||
CONFIG_SLAB=y
|
||||
# CONFIG_SLUB is not set
|
||||
CONFIG_SLUB_DEBUG=y
|
||||
# CONFIG_COMPAT_BRK is not set
|
||||
# CONFIG_SLAB is not set
|
||||
CONFIG_SLUB=y
|
||||
# CONFIG_SLOB is not set
|
||||
# CONFIG_PROFILING is not set
|
||||
CONFIG_HAVE_OPROFILE=y
|
||||
@@ -306,6 +308,7 @@ CONFIG_HIGHMEM=y
|
||||
CONFIG_ARCH_FLATMEM_ENABLE=y
|
||||
CONFIG_ARCH_SPARSEMEM_ENABLE=y
|
||||
CONFIG_ARCH_SELECT_MEMORY_MODEL=y
|
||||
CONFIG_ILLEGAL_POINTER_VALUE=0
|
||||
CONFIG_SELECT_MEMORY_MODEL=y
|
||||
CONFIG_FLATMEM_MANUAL=y
|
||||
# CONFIG_DISCONTIGMEM_MANUAL is not set
|
||||
@@ -584,7 +587,26 @@ CONFIG_TCP_CONG_ILLINOIS=m
|
||||
CONFIG_DEFAULT_RENO=y
|
||||
CONFIG_DEFAULT_TCP_CONG="reno"
|
||||
# CONFIG_TCP_MD5SIG is not set
|
||||
# CONFIG_IPV6 is not set
|
||||
CONFIG_IPV6=m
|
||||
# CONFIG_IPV6_PRIVACY is not set
|
||||
# CONFIG_IPV6_ROUTER_PREF is not set
|
||||
# CONFIG_IPV6_OPTIMISTIC_DAD is not set
|
||||
CONFIG_INET6_AH=m
|
||||
CONFIG_INET6_ESP=m
|
||||
CONFIG_INET6_IPCOMP=m
|
||||
CONFIG_IPV6_MIP6=m
|
||||
CONFIG_INET6_XFRM_TUNNEL=m
|
||||
CONFIG_INET6_TUNNEL=m
|
||||
CONFIG_INET6_XFRM_MODE_TRANSPORT=m
|
||||
CONFIG_INET6_XFRM_MODE_TUNNEL=m
|
||||
CONFIG_INET6_XFRM_MODE_BEET=m
|
||||
CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION=m
|
||||
CONFIG_IPV6_SIT=m
|
||||
CONFIG_IPV6_NDISC_NODETYPE=y
|
||||
CONFIG_IPV6_TUNNEL=m
|
||||
CONFIG_IPV6_MULTIPLE_TABLES=y
|
||||
# CONFIG_IPV6_SUBTREES is not set
|
||||
# CONFIG_IPV6_MROUTE is not set
|
||||
# CONFIG_NETWORK_SECMARK is not set
|
||||
CONFIG_NETFILTER=y
|
||||
# CONFIG_NETFILTER_DEBUG is not set
|
||||
@@ -670,7 +692,36 @@ CONFIG_NETFILTER_XT_MATCH_TCPMSS=m
|
||||
CONFIG_NETFILTER_XT_MATCH_TIME=m
|
||||
CONFIG_NETFILTER_XT_MATCH_U32=m
|
||||
CONFIG_NETFILTER_XT_MATCH_OSF=m
|
||||
# CONFIG_IP_VS is not set
|
||||
CONFIG_IP_VS=m
|
||||
CONFIG_IP_VS_IPV6=y
|
||||
# CONFIG_IP_VS_DEBUG is not set
|
||||
CONFIG_IP_VS_TAB_BITS=12
|
||||
|
||||
#
|
||||
# IPVS transport protocol load balancing support
|
||||
#
|
||||
# CONFIG_IP_VS_PROTO_TCP is not set
|
||||
# CONFIG_IP_VS_PROTO_UDP is not set
|
||||
# CONFIG_IP_VS_PROTO_ESP is not set
|
||||
# CONFIG_IP_VS_PROTO_AH is not set
|
||||
|
||||
#
|
||||
# IPVS scheduler
|
||||
#
|
||||
# CONFIG_IP_VS_RR is not set
|
||||
# CONFIG_IP_VS_WRR is not set
|
||||
# CONFIG_IP_VS_LC is not set
|
||||
# CONFIG_IP_VS_WLC is not set
|
||||
# CONFIG_IP_VS_LBLC is not set
|
||||
# CONFIG_IP_VS_LBLCR is not set
|
||||
# CONFIG_IP_VS_DH is not set
|
||||
# CONFIG_IP_VS_SH is not set
|
||||
# CONFIG_IP_VS_SED is not set
|
||||
# CONFIG_IP_VS_NQ is not set
|
||||
|
||||
#
|
||||
# IPVS application helper
|
||||
#
|
||||
|
||||
#
|
||||
# IP: Netfilter Configuration
|
||||
@@ -714,6 +765,27 @@ CONFIG_IP_NF_ARPTABLES=m
|
||||
CONFIG_IP_NF_ARPFILTER=m
|
||||
CONFIG_IP_NF_ARP_MANGLE=m
|
||||
CONFIG_IP_NF_MATCH_IPP2P=m
|
||||
|
||||
#
|
||||
# IPv6: Netfilter Configuration
|
||||
#
|
||||
CONFIG_NF_CONNTRACK_IPV6=m
|
||||
CONFIG_IP6_NF_QUEUE=m
|
||||
CONFIG_IP6_NF_IPTABLES=m
|
||||
CONFIG_IP6_NF_MATCH_AH=m
|
||||
CONFIG_IP6_NF_MATCH_EUI64=m
|
||||
CONFIG_IP6_NF_MATCH_FRAG=m
|
||||
CONFIG_IP6_NF_MATCH_OPTS=m
|
||||
CONFIG_IP6_NF_MATCH_HL=m
|
||||
CONFIG_IP6_NF_MATCH_IPV6HEADER=m
|
||||
CONFIG_IP6_NF_MATCH_MH=m
|
||||
CONFIG_IP6_NF_MATCH_RT=m
|
||||
CONFIG_IP6_NF_TARGET_HL=m
|
||||
CONFIG_IP6_NF_TARGET_LOG=m
|
||||
CONFIG_IP6_NF_FILTER=m
|
||||
CONFIG_IP6_NF_TARGET_REJECT=m
|
||||
CONFIG_IP6_NF_MANGLE=m
|
||||
CONFIG_IP6_NF_RAW=m
|
||||
CONFIG_BRIDGE_NF_EBTABLES=m
|
||||
CONFIG_BRIDGE_EBT_BROUTE=m
|
||||
CONFIG_BRIDGE_EBT_T_FILTER=m
|
||||
@@ -722,6 +794,7 @@ CONFIG_BRIDGE_EBT_802_3=m
|
||||
CONFIG_BRIDGE_EBT_AMONG=m
|
||||
CONFIG_BRIDGE_EBT_ARP=m
|
||||
CONFIG_BRIDGE_EBT_IP=m
|
||||
CONFIG_BRIDGE_EBT_IP6=m
|
||||
CONFIG_BRIDGE_EBT_LIMIT=m
|
||||
CONFIG_BRIDGE_EBT_MARK=m
|
||||
CONFIG_BRIDGE_EBT_PKTTYPE=m
|
||||
@@ -806,7 +879,7 @@ CONFIG_NET_CLS_U32=m
|
||||
CONFIG_CLS_U32_PERF=y
|
||||
CONFIG_CLS_U32_MARK=y
|
||||
CONFIG_NET_CLS_RSVP=m
|
||||
# CONFIG_NET_CLS_RSVP6 is not set
|
||||
CONFIG_NET_CLS_RSVP6=m
|
||||
CONFIG_NET_CLS_FLOW=m
|
||||
CONFIG_NET_EMATCH=y
|
||||
CONFIG_NET_EMATCH_STACK=32
|
||||
@@ -932,6 +1005,7 @@ CONFIG_LIB80211_CRYPT_CCMP=m
|
||||
CONFIG_LIB80211_CRYPT_TKIP=m
|
||||
# CONFIG_LIB80211_DEBUG is not set
|
||||
CONFIG_MAC80211=m
|
||||
CONFIG_MAC80211_HAS_RC=y
|
||||
CONFIG_MAC80211_RC_MINSTREL=y
|
||||
# CONFIG_MAC80211_RC_DEFAULT_PID is not set
|
||||
CONFIG_MAC80211_RC_DEFAULT_MINSTREL=y
|
||||
@@ -1117,90 +1191,7 @@ CONFIG_CB710_CORE=m
|
||||
# CONFIG_CB710_DEBUG is not set
|
||||
CONFIG_CB710_DEBUG_ASSUMPTIONS=y
|
||||
CONFIG_HAVE_IDE=y
|
||||
CONFIG_IDE=y
|
||||
|
||||
#
|
||||
# Please see Documentation/ide/ide.txt for help/info on IDE drives
|
||||
#
|
||||
CONFIG_IDE_XFER_MODE=y
|
||||
CONFIG_IDE_TIMINGS=y
|
||||
CONFIG_IDE_ATAPI=y
|
||||
CONFIG_IDE_LEGACY=y
|
||||
# CONFIG_BLK_DEV_IDE_SATA is not set
|
||||
CONFIG_IDE_GD=m
|
||||
CONFIG_IDE_GD_ATA=y
|
||||
# CONFIG_IDE_GD_ATAPI is not set
|
||||
CONFIG_BLK_DEV_IDECS=m
|
||||
CONFIG_BLK_DEV_DELKIN=m
|
||||
CONFIG_BLK_DEV_IDECD=m
|
||||
CONFIG_BLK_DEV_IDECD_VERBOSE_ERRORS=y
|
||||
# CONFIG_BLK_DEV_IDETAPE is not set
|
||||
CONFIG_BLK_DEV_IDEACPI=y
|
||||
# CONFIG_IDE_TASK_IOCTL is not set
|
||||
CONFIG_IDE_PROC_FS=y
|
||||
|
||||
#
|
||||
# IDE chipset support/bugfixes
|
||||
#
|
||||
CONFIG_IDE_GENERIC=m
|
||||
CONFIG_BLK_DEV_PLATFORM=m
|
||||
CONFIG_BLK_DEV_CMD640=m
|
||||
CONFIG_BLK_DEV_CMD640_ENHANCED=y
|
||||
CONFIG_BLK_DEV_IDEPNP=m
|
||||
CONFIG_BLK_DEV_IDEDMA_SFF=y
|
||||
|
||||
#
|
||||
# PCI IDE chipsets support
|
||||
#
|
||||
CONFIG_BLK_DEV_IDEPCI=y
|
||||
CONFIG_IDEPCI_PCIBUS_ORDER=y
|
||||
# CONFIG_BLK_DEV_OFFBOARD is not set
|
||||
CONFIG_BLK_DEV_GENERIC=m
|
||||
CONFIG_BLK_DEV_OPTI621=m
|
||||
CONFIG_BLK_DEV_RZ1000=m
|
||||
CONFIG_BLK_DEV_IDEDMA_PCI=y
|
||||
CONFIG_BLK_DEV_AEC62XX=m
|
||||
CONFIG_BLK_DEV_ALI15X3=m
|
||||
CONFIG_BLK_DEV_AMD74XX=m
|
||||
CONFIG_BLK_DEV_ATIIXP=m
|
||||
CONFIG_BLK_DEV_CMD64X=m
|
||||
CONFIG_BLK_DEV_TRIFLEX=m
|
||||
CONFIG_BLK_DEV_CS5520=m
|
||||
CONFIG_BLK_DEV_CS5530=m
|
||||
CONFIG_BLK_DEV_CS5535=m
|
||||
CONFIG_BLK_DEV_CS5536=m
|
||||
CONFIG_BLK_DEV_HPT366=m
|
||||
CONFIG_BLK_DEV_JMICRON=m
|
||||
CONFIG_BLK_DEV_SC1200=m
|
||||
CONFIG_BLK_DEV_PIIX=m
|
||||
CONFIG_BLK_DEV_IT8172=m
|
||||
CONFIG_BLK_DEV_IT8213=m
|
||||
CONFIG_BLK_DEV_IT821X=m
|
||||
CONFIG_BLK_DEV_NS87415=m
|
||||
CONFIG_BLK_DEV_PDC202XX_OLD=m
|
||||
CONFIG_BLK_DEV_PDC202XX_NEW=m
|
||||
CONFIG_BLK_DEV_SVWKS=m
|
||||
CONFIG_BLK_DEV_SIIMAGE=m
|
||||
CONFIG_BLK_DEV_SIS5513=m
|
||||
CONFIG_BLK_DEV_SLC90E66=m
|
||||
CONFIG_BLK_DEV_TRM290=m
|
||||
CONFIG_BLK_DEV_VIA82CXXX=m
|
||||
CONFIG_BLK_DEV_TC86C001=m
|
||||
|
||||
#
|
||||
# Other IDE chipsets support
|
||||
#
|
||||
|
||||
#
|
||||
# Note: most of these also require special kernel boot parameters
|
||||
#
|
||||
# CONFIG_BLK_DEV_4DRIVES is not set
|
||||
CONFIG_BLK_DEV_ALI14XX=m
|
||||
CONFIG_BLK_DEV_DTC2278=m
|
||||
CONFIG_BLK_DEV_HT6560B=m
|
||||
CONFIG_BLK_DEV_QD65XX=m
|
||||
CONFIG_BLK_DEV_UMC8672=m
|
||||
CONFIG_BLK_DEV_IDEDMA=y
|
||||
# CONFIG_IDE is not set
|
||||
|
||||
#
|
||||
# SCSI device support
|
||||
@@ -1486,17 +1477,7 @@ CONFIG_FIREWIRE_OHCI=m
|
||||
CONFIG_FIREWIRE_OHCI_DEBUG=y
|
||||
CONFIG_FIREWIRE_SBP2=m
|
||||
CONFIG_FIREWIRE_NET=m
|
||||
CONFIG_IEEE1394=m
|
||||
CONFIG_IEEE1394_OHCI1394=m
|
||||
CONFIG_IEEE1394_PCILYNX=m
|
||||
CONFIG_IEEE1394_SBP2=m
|
||||
# CONFIG_IEEE1394_SBP2_PHYS_DMA is not set
|
||||
CONFIG_IEEE1394_ETH1394_ROM_ENTRY=y
|
||||
CONFIG_IEEE1394_ETH1394=m
|
||||
CONFIG_IEEE1394_RAWIO=m
|
||||
CONFIG_IEEE1394_VIDEO1394=m
|
||||
# CONFIG_IEEE1394_DV1394 is not set
|
||||
# CONFIG_IEEE1394_VERBOSEDEBUG is not set
|
||||
# CONFIG_IEEE1394 is not set
|
||||
# CONFIG_I2O is not set
|
||||
# CONFIG_MACINTOSH_DRIVERS is not set
|
||||
CONFIG_NETDEVICES=y
|
||||
@@ -2740,11 +2721,6 @@ CONFIG_DVB_CAPTURE_DRIVERS=y
|
||||
#
|
||||
# CONFIG_DVB_DM1105 is not set
|
||||
|
||||
#
|
||||
# Supported FireWire (IEEE 1394) Adapters
|
||||
#
|
||||
# CONFIG_DVB_FIREDTV is not set
|
||||
|
||||
#
|
||||
# Supported Earthsoft PT1 Adapters
|
||||
#
|
||||
@@ -3360,7 +3336,6 @@ CONFIG_LEDS_BD2802=m
|
||||
#
|
||||
CONFIG_LEDS_TRIGGERS=y
|
||||
CONFIG_LEDS_TRIGGER_TIMER=m
|
||||
CONFIG_LEDS_TRIGGER_IDE_DISK=y
|
||||
CONFIG_LEDS_TRIGGER_HEARTBEAT=m
|
||||
CONFIG_LEDS_TRIGGER_BACKLIGHT=m
|
||||
CONFIG_LEDS_TRIGGER_DEFAULT_ON=m
|
||||
@@ -3593,7 +3568,7 @@ CONFIG_XFS_FS=m
|
||||
CONFIG_XFS_QUOTA=y
|
||||
CONFIG_XFS_POSIX_ACL=y
|
||||
# CONFIG_XFS_RT is not set
|
||||
CONFIG_XFS_DEBUG=y
|
||||
# CONFIG_XFS_DEBUG is not set
|
||||
# CONFIG_GFS2_FS is not set
|
||||
# CONFIG_OCFS2_FS is not set
|
||||
# CONFIG_BTRFS_FS is not set
|
||||
@@ -3685,10 +3660,7 @@ CONFIG_JFFS2_CMODE_PRIORITY=y
|
||||
# CONFIG_JFFS2_CMODE_FAVOURLZO is not set
|
||||
# CONFIG_UBIFS_FS is not set
|
||||
# CONFIG_CRAMFS is not set
|
||||
CONFIG_SQUASHFS=y
|
||||
CONFIG_SQUASHFS_LZMA=y
|
||||
# CONFIG_SQUASHFS_EMBEDDED is not set
|
||||
CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3
|
||||
# CONFIG_SQUASHFS is not set
|
||||
# CONFIG_VXFS_FS is not set
|
||||
# CONFIG_MINIX_FS is not set
|
||||
# CONFIG_OMFS_FS is not set
|
||||
@@ -3808,16 +3780,18 @@ CONFIG_TRACE_IRQFLAGS_SUPPORT=y
|
||||
CONFIG_ENABLE_MUST_CHECK=y
|
||||
CONFIG_FRAME_WARN=1024
|
||||
# CONFIG_MAGIC_SYSRQ is not set
|
||||
# CONFIG_STRIP_ASM_SYMS is not set
|
||||
CONFIG_UNUSED_SYMBOLS=y
|
||||
CONFIG_STRIP_ASM_SYMS=y
|
||||
# CONFIG_UNUSED_SYMBOLS is not set
|
||||
# CONFIG_DEBUG_FS is not set
|
||||
# CONFIG_HEADERS_CHECK is not set
|
||||
# CONFIG_DEBUG_KERNEL is not set
|
||||
# CONFIG_SLUB_DEBUG_ON is not set
|
||||
CONFIG_SLUB_STATS=y
|
||||
CONFIG_DEBUG_BUGVERBOSE=y
|
||||
CONFIG_DEBUG_MEMORY_INIT=y
|
||||
CONFIG_ARCH_WANT_FRAME_POINTERS=y
|
||||
CONFIG_FRAME_POINTER=y
|
||||
CONFIG_RCU_CPU_STALL_DETECTOR=y
|
||||
# CONFIG_RCU_CPU_STALL_DETECTOR is not set
|
||||
# CONFIG_LATENCYTOP is not set
|
||||
# CONFIG_SYSCTL_SYSCALL_CHECK is not set
|
||||
CONFIG_USER_STACKTRACE_SUPPORT=y
|
||||
@@ -4021,7 +3995,6 @@ CONFIG_LZO_DECOMPRESS=m
|
||||
CONFIG_DECOMPRESS_GZIP=y
|
||||
CONFIG_DECOMPRESS_BZIP2=y
|
||||
CONFIG_DECOMPRESS_LZMA=y
|
||||
CONFIG_DECOMPRESS_LZMA_NEEDED=y
|
||||
CONFIG_TEXTSEARCH=y
|
||||
CONFIG_TEXTSEARCH_KMP=m
|
||||
CONFIG_TEXTSEARCH_BM=m
|
||||
|
||||
4023
config/kernel/kernel.config.i586-ipfire-pae
Normal file
4023
config/kernel/kernel.config.i586-ipfire-pae
Normal file
File diff suppressed because it is too large
Load Diff
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# Automatically generated make config: don't edit
|
||||
# Linux kernel version: 2.6.32.11
|
||||
# Mon Apr 19 11:38:34 2010
|
||||
# Linux kernel version: 2.6.32.18
|
||||
# Sat Aug 14 21:05:53 2010
|
||||
#
|
||||
# CONFIG_64BIT is not set
|
||||
CONFIG_X86_32=y
|
||||
@@ -49,8 +49,6 @@ CONFIG_X86_NO_TSS=y
|
||||
CONFIG_X86_NO_IDT=y
|
||||
CONFIG_X86_32_LAZY_GS=y
|
||||
CONFIG_KTIME_SCALAR=y
|
||||
CONFIG_SUSE_KERNEL=y
|
||||
# CONFIG_KERNEL_DESKTOP is not set
|
||||
CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
|
||||
CONFIG_CONSTRUCTORS=y
|
||||
|
||||
@@ -132,11 +130,11 @@ CONFIG_AIO=y
|
||||
#
|
||||
CONFIG_VM_EVENT_COUNTERS=y
|
||||
CONFIG_PCI_QUIRKS=y
|
||||
CONFIG_COMPAT_BRK=y
|
||||
CONFIG_SLAB=y
|
||||
# CONFIG_SLUB is not set
|
||||
CONFIG_SLUB_DEBUG=y
|
||||
# CONFIG_COMPAT_BRK is not set
|
||||
# CONFIG_SLAB is not set
|
||||
CONFIG_SLUB=y
|
||||
# CONFIG_SLOB is not set
|
||||
CONFIG_DEFAULT_VM_DIRTY_RATIO=40
|
||||
# CONFIG_PROFILING is not set
|
||||
CONFIG_HAVE_OPROFILE=y
|
||||
# CONFIG_KPROBES is not set
|
||||
@@ -163,7 +161,6 @@ CONFIG_MODULE_FORCE_UNLOAD=y
|
||||
# CONFIG_MODVERSIONS is not set
|
||||
# CONFIG_MODULE_SRCVERSION_ALL is not set
|
||||
CONFIG_STOP_MACHINE=y
|
||||
# CONFIG_UTRACE is not set
|
||||
CONFIG_BLOCK=y
|
||||
CONFIG_LBDAF=y
|
||||
# CONFIG_BLK_DEV_BSG is not set
|
||||
@@ -219,10 +216,10 @@ CONFIG_M586TSC=y
|
||||
# CONFIG_GENERIC_CPU is not set
|
||||
CONFIG_X86_GENERIC=y
|
||||
CONFIG_X86_CPU=y
|
||||
CONFIG_X86_L1_CACHE_BYTES=128
|
||||
CONFIG_X86_INTERNODE_CACHE_BYTES=128
|
||||
CONFIG_X86_L1_CACHE_BYTES=64
|
||||
CONFIG_X86_INTERNODE_CACHE_BYTES=64
|
||||
CONFIG_X86_CMPXCHG=y
|
||||
CONFIG_X86_L1_CACHE_SHIFT=7
|
||||
CONFIG_X86_L1_CACHE_SHIFT=5
|
||||
CONFIG_X86_XADD=y
|
||||
# CONFIG_X86_PPRO_FENCE is not set
|
||||
CONFIG_X86_WP_WORKS_OK=y
|
||||
@@ -263,6 +260,7 @@ CONFIG_PAGE_OFFSET=0xC0000000
|
||||
CONFIG_HIGHMEM=y
|
||||
CONFIG_X86_PAE=y
|
||||
CONFIG_ARCH_PHYS_ADDR_T_64BIT=y
|
||||
CONFIG_ILLEGAL_POINTER_VALUE=0
|
||||
CONFIG_SELECT_MEMORY_MODEL=y
|
||||
CONFIG_FLATMEM_MANUAL=y
|
||||
# CONFIG_DISCONTIGMEM_MANUAL is not set
|
||||
@@ -279,13 +277,10 @@ CONFIG_HAVE_MLOCK=y
|
||||
CONFIG_HAVE_MLOCKED_PAGE_BIT=y
|
||||
# CONFIG_KSM is not set
|
||||
CONFIG_DEFAULT_MMAP_MIN_ADDR=4096
|
||||
# CONFIG_PRECACHE is not set
|
||||
# CONFIG_PRESWAP is not set
|
||||
# CONFIG_HIGHPTE is not set
|
||||
CONFIG_MTRR=y
|
||||
# CONFIG_X86_PAT is not set
|
||||
CONFIG_SECCOMP=y
|
||||
# CONFIG_SECCOMP_DISABLE_TSC is not set
|
||||
# CONFIG_CC_STACKPROTECTOR is not set
|
||||
CONFIG_HZ_100=y
|
||||
# CONFIG_HZ_250 is not set
|
||||
@@ -471,7 +466,26 @@ CONFIG_TCP_CONG_ILLINOIS=m
|
||||
CONFIG_DEFAULT_RENO=y
|
||||
CONFIG_DEFAULT_TCP_CONG="reno"
|
||||
# CONFIG_TCP_MD5SIG is not set
|
||||
# CONFIG_IPV6 is not set
|
||||
CONFIG_IPV6=m
|
||||
# CONFIG_IPV6_PRIVACY is not set
|
||||
# CONFIG_IPV6_ROUTER_PREF is not set
|
||||
# CONFIG_IPV6_OPTIMISTIC_DAD is not set
|
||||
CONFIG_INET6_AH=m
|
||||
CONFIG_INET6_ESP=m
|
||||
CONFIG_INET6_IPCOMP=m
|
||||
CONFIG_IPV6_MIP6=m
|
||||
CONFIG_INET6_XFRM_TUNNEL=m
|
||||
CONFIG_INET6_TUNNEL=m
|
||||
CONFIG_INET6_XFRM_MODE_TRANSPORT=m
|
||||
CONFIG_INET6_XFRM_MODE_TUNNEL=m
|
||||
CONFIG_INET6_XFRM_MODE_BEET=m
|
||||
CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION=m
|
||||
CONFIG_IPV6_SIT=m
|
||||
CONFIG_IPV6_NDISC_NODETYPE=y
|
||||
CONFIG_IPV6_TUNNEL=m
|
||||
CONFIG_IPV6_MULTIPLE_TABLES=y
|
||||
# CONFIG_IPV6_SUBTREES is not set
|
||||
# CONFIG_IPV6_MROUTE is not set
|
||||
# CONFIG_NETWORK_SECMARK is not set
|
||||
CONFIG_NETFILTER=y
|
||||
# CONFIG_NETFILTER_DEBUG is not set
|
||||
@@ -501,7 +515,6 @@ CONFIG_NF_CONNTRACK_PPTP=m
|
||||
CONFIG_NF_CONNTRACK_SANE=m
|
||||
CONFIG_NF_CONNTRACK_SIP=m
|
||||
CONFIG_NF_CONNTRACK_TFTP=m
|
||||
CONFIG_NF_CONNTRACK_SLP=m
|
||||
CONFIG_NF_CT_NETLINK=m
|
||||
CONFIG_NETFILTER_TPROXY=m
|
||||
CONFIG_NETFILTER_XTABLES=m
|
||||
@@ -558,7 +571,36 @@ CONFIG_NETFILTER_XT_MATCH_TCPMSS=m
|
||||
CONFIG_NETFILTER_XT_MATCH_TIME=m
|
||||
CONFIG_NETFILTER_XT_MATCH_U32=m
|
||||
CONFIG_NETFILTER_XT_MATCH_OSF=m
|
||||
# CONFIG_IP_VS is not set
|
||||
CONFIG_IP_VS=m
|
||||
CONFIG_IP_VS_IPV6=y
|
||||
# CONFIG_IP_VS_DEBUG is not set
|
||||
CONFIG_IP_VS_TAB_BITS=12
|
||||
|
||||
#
|
||||
# IPVS transport protocol load balancing support
|
||||
#
|
||||
# CONFIG_IP_VS_PROTO_TCP is not set
|
||||
# CONFIG_IP_VS_PROTO_UDP is not set
|
||||
# CONFIG_IP_VS_PROTO_ESP is not set
|
||||
# CONFIG_IP_VS_PROTO_AH is not set
|
||||
|
||||
#
|
||||
# IPVS scheduler
|
||||
#
|
||||
# CONFIG_IP_VS_RR is not set
|
||||
# CONFIG_IP_VS_WRR is not set
|
||||
# CONFIG_IP_VS_LC is not set
|
||||
# CONFIG_IP_VS_WLC is not set
|
||||
# CONFIG_IP_VS_LBLC is not set
|
||||
# CONFIG_IP_VS_LBLCR is not set
|
||||
# CONFIG_IP_VS_DH is not set
|
||||
# CONFIG_IP_VS_SH is not set
|
||||
# CONFIG_IP_VS_SED is not set
|
||||
# CONFIG_IP_VS_NQ is not set
|
||||
|
||||
#
|
||||
# IPVS application helper
|
||||
#
|
||||
|
||||
#
|
||||
# IP: Netfilter Configuration
|
||||
@@ -572,7 +614,6 @@ CONFIG_IP_NF_MATCH_ADDRTYPE=m
|
||||
CONFIG_IP_NF_MATCH_AH=m
|
||||
CONFIG_IP_NF_MATCH_ECN=m
|
||||
CONFIG_IP_NF_MATCH_TTL=m
|
||||
CONFIG_IP_NF_MATCH_IPV4OPTIONS=m
|
||||
CONFIG_IP_NF_FILTER=m
|
||||
CONFIG_IP_NF_TARGET_REJECT=m
|
||||
CONFIG_IP_NF_TARGET_LOG=m
|
||||
@@ -603,6 +644,27 @@ CONFIG_IP_NF_ARPTABLES=m
|
||||
CONFIG_IP_NF_ARPFILTER=m
|
||||
CONFIG_IP_NF_ARP_MANGLE=m
|
||||
CONFIG_IP_NF_MATCH_IPP2P=m
|
||||
|
||||
#
|
||||
# IPv6: Netfilter Configuration
|
||||
#
|
||||
CONFIG_NF_CONNTRACK_IPV6=m
|
||||
CONFIG_IP6_NF_QUEUE=m
|
||||
CONFIG_IP6_NF_IPTABLES=m
|
||||
CONFIG_IP6_NF_MATCH_AH=m
|
||||
CONFIG_IP6_NF_MATCH_EUI64=m
|
||||
CONFIG_IP6_NF_MATCH_FRAG=m
|
||||
CONFIG_IP6_NF_MATCH_OPTS=m
|
||||
CONFIG_IP6_NF_MATCH_HL=m
|
||||
CONFIG_IP6_NF_MATCH_IPV6HEADER=m
|
||||
CONFIG_IP6_NF_MATCH_MH=m
|
||||
CONFIG_IP6_NF_MATCH_RT=m
|
||||
CONFIG_IP6_NF_TARGET_HL=m
|
||||
CONFIG_IP6_NF_TARGET_LOG=m
|
||||
CONFIG_IP6_NF_FILTER=m
|
||||
CONFIG_IP6_NF_TARGET_REJECT=m
|
||||
CONFIG_IP6_NF_MANGLE=m
|
||||
CONFIG_IP6_NF_RAW=m
|
||||
CONFIG_BRIDGE_NF_EBTABLES=m
|
||||
CONFIG_BRIDGE_EBT_BROUTE=m
|
||||
CONFIG_BRIDGE_EBT_T_FILTER=m
|
||||
@@ -611,6 +673,7 @@ CONFIG_BRIDGE_EBT_802_3=m
|
||||
CONFIG_BRIDGE_EBT_AMONG=m
|
||||
CONFIG_BRIDGE_EBT_ARP=m
|
||||
CONFIG_BRIDGE_EBT_IP=m
|
||||
CONFIG_BRIDGE_EBT_IP6=m
|
||||
CONFIG_BRIDGE_EBT_LIMIT=m
|
||||
CONFIG_BRIDGE_EBT_MARK=m
|
||||
CONFIG_BRIDGE_EBT_PKTTYPE=m
|
||||
@@ -695,7 +758,7 @@ CONFIG_NET_CLS_U32=m
|
||||
CONFIG_CLS_U32_PERF=y
|
||||
CONFIG_CLS_U32_MARK=y
|
||||
CONFIG_NET_CLS_RSVP=m
|
||||
# CONFIG_NET_CLS_RSVP6 is not set
|
||||
CONFIG_NET_CLS_RSVP6=m
|
||||
CONFIG_NET_CLS_FLOW=m
|
||||
CONFIG_NET_EMATCH=y
|
||||
CONFIG_NET_EMATCH_STACK=32
|
||||
@@ -821,6 +884,7 @@ CONFIG_LIB80211_CRYPT_CCMP=m
|
||||
CONFIG_LIB80211_CRYPT_TKIP=m
|
||||
# CONFIG_LIB80211_DEBUG is not set
|
||||
CONFIG_MAC80211=m
|
||||
CONFIG_MAC80211_HAS_RC=y
|
||||
CONFIG_MAC80211_RC_MINSTREL=y
|
||||
# CONFIG_MAC80211_RC_DEFAULT_PID is not set
|
||||
CONFIG_MAC80211_RC_DEFAULT_MINSTREL=y
|
||||
@@ -834,7 +898,6 @@ CONFIG_RFKILL=m
|
||||
CONFIG_RFKILL_LEDS=y
|
||||
CONFIG_RFKILL_INPUT=y
|
||||
# CONFIG_NET_9P is not set
|
||||
# CONFIG_NETVM is not set
|
||||
|
||||
#
|
||||
# Device Drivers
|
||||
@@ -976,7 +1039,6 @@ CONFIG_BLK_DEV_RAM_SIZE=16384
|
||||
# CONFIG_BLK_DEV_XIP is not set
|
||||
# CONFIG_CDROM_PKTCDVD is not set
|
||||
CONFIG_ATA_OVER_ETH=m
|
||||
# CONFIG_CIPHER_TWOFISH is not set
|
||||
# CONFIG_BLK_DEV_HD is not set
|
||||
CONFIG_MISC_DEVICES=y
|
||||
# CONFIG_IBM_ASM is not set
|
||||
@@ -1002,75 +1064,7 @@ CONFIG_CB710_CORE=m
|
||||
# CONFIG_CB710_DEBUG is not set
|
||||
CONFIG_CB710_DEBUG_ASSUMPTIONS=y
|
||||
CONFIG_HAVE_IDE=y
|
||||
CONFIG_IDE=y
|
||||
|
||||
#
|
||||
# Please see Documentation/ide/ide.txt for help/info on IDE drives
|
||||
#
|
||||
CONFIG_IDE_XFER_MODE=y
|
||||
CONFIG_IDE_TIMINGS=y
|
||||
CONFIG_IDE_ATAPI=y
|
||||
# CONFIG_BLK_DEV_IDE_SATA is not set
|
||||
CONFIG_IDE_GD=m
|
||||
CONFIG_IDE_GD_ATA=y
|
||||
# CONFIG_IDE_GD_ATAPI is not set
|
||||
CONFIG_BLK_DEV_IDECS=m
|
||||
CONFIG_BLK_DEV_DELKIN=m
|
||||
CONFIG_BLK_DEV_IDECD=m
|
||||
CONFIG_BLK_DEV_IDECD_VERBOSE_ERRORS=y
|
||||
# CONFIG_BLK_DEV_IDETAPE is not set
|
||||
CONFIG_BLK_DEV_IDEACPI=y
|
||||
# CONFIG_IDE_TASK_IOCTL is not set
|
||||
CONFIG_IDE_PROC_FS=y
|
||||
|
||||
#
|
||||
# IDE chipset support/bugfixes
|
||||
#
|
||||
CONFIG_IDE_GENERIC=m
|
||||
CONFIG_BLK_DEV_PLATFORM=m
|
||||
CONFIG_BLK_DEV_CMD640=m
|
||||
CONFIG_BLK_DEV_CMD640_ENHANCED=y
|
||||
CONFIG_BLK_DEV_IDEPNP=m
|
||||
CONFIG_BLK_DEV_IDEDMA_SFF=y
|
||||
|
||||
#
|
||||
# PCI IDE chipsets support
|
||||
#
|
||||
CONFIG_BLK_DEV_IDEPCI=y
|
||||
CONFIG_IDEPCI_PCIBUS_ORDER=y
|
||||
# CONFIG_BLK_DEV_OFFBOARD is not set
|
||||
CONFIG_BLK_DEV_GENERIC=m
|
||||
CONFIG_BLK_DEV_OPTI621=m
|
||||
CONFIG_BLK_DEV_RZ1000=m
|
||||
CONFIG_BLK_DEV_IDEDMA_PCI=y
|
||||
CONFIG_BLK_DEV_AEC62XX=m
|
||||
CONFIG_BLK_DEV_ALI15X3=m
|
||||
CONFIG_BLK_DEV_AMD74XX=m
|
||||
CONFIG_BLK_DEV_ATIIXP=m
|
||||
CONFIG_BLK_DEV_CMD64X=m
|
||||
CONFIG_BLK_DEV_TRIFLEX=m
|
||||
CONFIG_BLK_DEV_CS5520=m
|
||||
CONFIG_BLK_DEV_CS5530=m
|
||||
CONFIG_BLK_DEV_CS5535=m
|
||||
CONFIG_BLK_DEV_CS5536=m
|
||||
CONFIG_BLK_DEV_HPT366=m
|
||||
CONFIG_BLK_DEV_JMICRON=m
|
||||
CONFIG_BLK_DEV_SC1200=m
|
||||
CONFIG_BLK_DEV_PIIX=m
|
||||
CONFIG_BLK_DEV_IT8172=m
|
||||
CONFIG_BLK_DEV_IT8213=m
|
||||
CONFIG_BLK_DEV_IT821X=m
|
||||
CONFIG_BLK_DEV_NS87415=m
|
||||
CONFIG_BLK_DEV_PDC202XX_OLD=m
|
||||
CONFIG_BLK_DEV_PDC202XX_NEW=m
|
||||
CONFIG_BLK_DEV_SVWKS=m
|
||||
CONFIG_BLK_DEV_SIIMAGE=m
|
||||
CONFIG_BLK_DEV_SIS5513=m
|
||||
CONFIG_BLK_DEV_SLC90E66=m
|
||||
CONFIG_BLK_DEV_TRM290=m
|
||||
CONFIG_BLK_DEV_VIA82CXXX=m
|
||||
CONFIG_BLK_DEV_TC86C001=m
|
||||
CONFIG_BLK_DEV_IDEDMA=y
|
||||
# CONFIG_IDE is not set
|
||||
|
||||
#
|
||||
# SCSI device support
|
||||
@@ -1117,7 +1111,6 @@ CONFIG_SCSI_CXGB3_ISCSI=m
|
||||
CONFIG_SCSI_BNX2_ISCSI=m
|
||||
CONFIG_BE2ISCSI=m
|
||||
CONFIG_BLK_DEV_3W_XXXX_RAID=m
|
||||
CONFIG_SCSI_HPSA=m
|
||||
CONFIG_SCSI_3W_9XXX=m
|
||||
CONFIG_SCSI_ACARD=m
|
||||
CONFIG_SCSI_AACRAID=m
|
||||
@@ -1297,14 +1290,12 @@ CONFIG_DM_MULTIPATH=m
|
||||
CONFIG_DM_MULTIPATH_QL=m
|
||||
CONFIG_DM_MULTIPATH_ST=m
|
||||
CONFIG_DM_DELAY=m
|
||||
CONFIG_DM_RAID45=m
|
||||
CONFIG_DM_UEVENT=y
|
||||
CONFIG_FUSION=y
|
||||
CONFIG_FUSION_SPI=m
|
||||
CONFIG_FUSION_FC=m
|
||||
CONFIG_FUSION_SAS=m
|
||||
CONFIG_FUSION_MAX_SGE=128
|
||||
CONFIG_FUSION_MAX_FC_SGE=256
|
||||
CONFIG_FUSION_CTL=m
|
||||
# CONFIG_FUSION_LOGGING is not set
|
||||
|
||||
@@ -1324,17 +1315,7 @@ CONFIG_FIREWIRE_OHCI=m
|
||||
CONFIG_FIREWIRE_OHCI_DEBUG=y
|
||||
CONFIG_FIREWIRE_SBP2=m
|
||||
CONFIG_FIREWIRE_NET=m
|
||||
CONFIG_IEEE1394=m
|
||||
CONFIG_IEEE1394_OHCI1394=m
|
||||
CONFIG_IEEE1394_PCILYNX=m
|
||||
CONFIG_IEEE1394_SBP2=m
|
||||
# CONFIG_IEEE1394_SBP2_PHYS_DMA is not set
|
||||
CONFIG_IEEE1394_ETH1394_ROM_ENTRY=y
|
||||
CONFIG_IEEE1394_ETH1394=m
|
||||
CONFIG_IEEE1394_RAWIO=m
|
||||
CONFIG_IEEE1394_VIDEO1394=m
|
||||
# CONFIG_IEEE1394_DV1394 is not set
|
||||
# CONFIG_IEEE1394_VERBOSEDEBUG is not set
|
||||
# CONFIG_IEEE1394 is not set
|
||||
# CONFIG_I2O is not set
|
||||
# CONFIG_MACINTOSH_DRIVERS is not set
|
||||
CONFIG_NETDEVICES=y
|
||||
@@ -2445,11 +2426,6 @@ CONFIG_DVB_CAPTURE_DRIVERS=y
|
||||
#
|
||||
# CONFIG_DVB_DM1105 is not set
|
||||
|
||||
#
|
||||
# Supported FireWire (IEEE 1394) Adapters
|
||||
#
|
||||
# CONFIG_DVB_FIREDTV is not set
|
||||
|
||||
#
|
||||
# Supported Earthsoft PT1 Adapters
|
||||
#
|
||||
@@ -2627,11 +2603,6 @@ CONFIG_LOGO=y
|
||||
CONFIG_LOGO_LINUX_MONO=y
|
||||
CONFIG_LOGO_LINUX_VGA16=y
|
||||
CONFIG_LOGO_LINUX_CLUT224=y
|
||||
|
||||
#
|
||||
# Bootsplash configuration
|
||||
#
|
||||
# CONFIG_BOOTSPLASH is not set
|
||||
CONFIG_SOUND=m
|
||||
CONFIG_SOUND_OSS_CORE=y
|
||||
CONFIG_SOUND_OSS_CORE_PRECLAIM=y
|
||||
@@ -3019,7 +2990,6 @@ CONFIG_USB_BERRY_CHARGE=m
|
||||
CONFIG_USB_LED=m
|
||||
CONFIG_USB_CYPRESS_CY7C63=m
|
||||
CONFIG_USB_CYTHERM=m
|
||||
# CONFIG_USB_PHIDGET is not set
|
||||
# CONFIG_USB_IDMOUSE is not set
|
||||
CONFIG_USB_FTDI_ELAN=m
|
||||
# CONFIG_USB_APPLEDISPLAY is not set
|
||||
@@ -3111,7 +3081,6 @@ CONFIG_LEDS_BD2802=m
|
||||
#
|
||||
CONFIG_LEDS_TRIGGERS=y
|
||||
CONFIG_LEDS_TRIGGER_TIMER=m
|
||||
CONFIG_LEDS_TRIGGER_IDE_DISK=y
|
||||
CONFIG_LEDS_TRIGGER_HEARTBEAT=m
|
||||
CONFIG_LEDS_TRIGGER_BACKLIGHT=m
|
||||
CONFIG_LEDS_TRIGGER_DEFAULT_ON=m
|
||||
@@ -3218,7 +3187,6 @@ CONFIG_XEN_INTERFACE_VERSION=0x00030207
|
||||
CONFIG_XEN_PRIVILEGED_GUEST=y
|
||||
# CONFIG_XEN_UNPRIVILEGED_GUEST is not set
|
||||
CONFIG_XEN_PRIVCMD=y
|
||||
CONFIG_XEN_DOMCTL=y
|
||||
CONFIG_XEN_XENBUS_DEV=y
|
||||
CONFIG_XEN_NETDEV_ACCEL_SFC_UTIL=y
|
||||
CONFIG_XEN_BACKEND=y
|
||||
@@ -3345,7 +3313,6 @@ CONFIG_THINKPAD_ACPI_VIDEO=y
|
||||
CONFIG_THINKPAD_ACPI_HOTKEY_POLL=y
|
||||
CONFIG_INTEL_MENLOW=m
|
||||
CONFIG_ACPI_WMI=m
|
||||
CONFIG_MSI_WMI=m
|
||||
CONFIG_ACPI_ASUS=m
|
||||
CONFIG_TOPSTAR_LAPTOP=m
|
||||
CONFIG_ACPI_TOSHIBA=m
|
||||
@@ -3373,7 +3340,6 @@ CONFIG_EXT3_FS=m
|
||||
# CONFIG_EXT3_DEFAULTS_TO_ORDERED is not set
|
||||
CONFIG_EXT3_FS_XATTR=y
|
||||
CONFIG_EXT3_FS_POSIX_ACL=y
|
||||
# CONFIG_EXT3_FS_NFS4ACL is not set
|
||||
CONFIG_EXT3_FS_SECURITY=y
|
||||
CONFIG_EXT4_FS=m
|
||||
CONFIG_EXT4_FS_XATTR=y
|
||||
@@ -3388,7 +3354,6 @@ CONFIG_REISER4_FS=m
|
||||
CONFIG_REISERFS_FS=m
|
||||
# CONFIG_REISERFS_CHECK is not set
|
||||
CONFIG_REISERFS_PROC_INFO=y
|
||||
# CONFIG_REISERFS_DEFAULTS_TO_BARRIERS_ENABLED is not set
|
||||
CONFIG_REISERFS_FS_XATTR=y
|
||||
CONFIG_REISERFS_FS_POSIX_ACL=y
|
||||
CONFIG_REISERFS_FS_SECURITY=y
|
||||
@@ -3398,13 +3363,11 @@ CONFIG_JFS_SECURITY=y
|
||||
# CONFIG_JFS_DEBUG is not set
|
||||
CONFIG_JFS_STATISTICS=y
|
||||
CONFIG_FS_POSIX_ACL=y
|
||||
# CONFIG_FS_NFS4ACL is not set
|
||||
CONFIG_XFS_FS=m
|
||||
CONFIG_XFS_QUOTA=y
|
||||
# CONFIG_XFS_DMAPI is not set
|
||||
CONFIG_XFS_POSIX_ACL=y
|
||||
# CONFIG_XFS_RT is not set
|
||||
CONFIG_XFS_DEBUG=y
|
||||
# CONFIG_XFS_DEBUG is not set
|
||||
# CONFIG_GFS2_FS is not set
|
||||
# CONFIG_OCFS2_FS is not set
|
||||
# CONFIG_BTRFS_FS is not set
|
||||
@@ -3414,7 +3377,6 @@ CONFIG_FSNOTIFY=y
|
||||
CONFIG_DNOTIFY=y
|
||||
CONFIG_INOTIFY=y
|
||||
CONFIG_INOTIFY_USER=y
|
||||
# CONFIG_DMAPI is not set
|
||||
CONFIG_QUOTA=y
|
||||
CONFIG_QUOTA_NETLINK_INTERFACE=y
|
||||
CONFIG_PRINT_QUOTA_WARNING=y
|
||||
@@ -3489,10 +3451,7 @@ CONFIG_JFFS2_CMODE_PRIORITY=y
|
||||
# CONFIG_JFFS2_CMODE_FAVOURLZO is not set
|
||||
# CONFIG_UBIFS_FS is not set
|
||||
# CONFIG_CRAMFS is not set
|
||||
CONFIG_SQUASHFS=y
|
||||
CONFIG_SQUASHFS_LZMA=y
|
||||
# CONFIG_SQUASHFS_EMBEDDED is not set
|
||||
CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3
|
||||
# CONFIG_SQUASHFS is not set
|
||||
# CONFIG_VXFS_FS is not set
|
||||
# CONFIG_MINIX_FS is not set
|
||||
# CONFIG_OMFS_FS is not set
|
||||
@@ -3507,7 +3466,6 @@ CONFIG_NFS_FS=m
|
||||
CONFIG_NFS_V3=y
|
||||
CONFIG_NFS_V3_ACL=y
|
||||
CONFIG_NFS_V4=y
|
||||
# CONFIG_NFS_SWAP is not set
|
||||
# CONFIG_NFS_V4_1 is not set
|
||||
CONFIG_NFSD=m
|
||||
CONFIG_NFSD_V2_ACL=y
|
||||
@@ -3521,7 +3479,6 @@ CONFIG_NFS_ACL_SUPPORT=m
|
||||
CONFIG_NFS_COMMON=y
|
||||
CONFIG_SUNRPC=m
|
||||
CONFIG_SUNRPC_GSS=m
|
||||
# CONFIG_SUNRPC_SWAP is not set
|
||||
CONFIG_RPCSEC_GSS_KRB5=m
|
||||
# CONFIG_RPCSEC_GSS_SPKM3 is not set
|
||||
CONFIG_SMB_FS=m
|
||||
@@ -3613,16 +3570,18 @@ CONFIG_TRACE_IRQFLAGS_SUPPORT=y
|
||||
CONFIG_ENABLE_MUST_CHECK=y
|
||||
CONFIG_FRAME_WARN=1024
|
||||
# CONFIG_MAGIC_SYSRQ is not set
|
||||
# CONFIG_STRIP_ASM_SYMS is not set
|
||||
CONFIG_UNUSED_SYMBOLS=y
|
||||
CONFIG_STRIP_ASM_SYMS=y
|
||||
# CONFIG_UNUSED_SYMBOLS is not set
|
||||
# CONFIG_DEBUG_FS is not set
|
||||
# CONFIG_HEADERS_CHECK is not set
|
||||
# CONFIG_DEBUG_KERNEL is not set
|
||||
# CONFIG_SLUB_DEBUG_ON is not set
|
||||
CONFIG_SLUB_STATS=y
|
||||
CONFIG_DEBUG_BUGVERBOSE=y
|
||||
CONFIG_DEBUG_MEMORY_INIT=y
|
||||
CONFIG_ARCH_WANT_FRAME_POINTERS=y
|
||||
CONFIG_FRAME_POINTER=y
|
||||
CONFIG_RCU_CPU_STALL_DETECTOR=y
|
||||
# CONFIG_RCU_CPU_STALL_DETECTOR is not set
|
||||
# CONFIG_LATENCYTOP is not set
|
||||
# CONFIG_SYSCTL_SYSCALL_CHECK is not set
|
||||
CONFIG_USER_STACKTRACE_SUPPORT=y
|
||||
|
||||
47
config/miniupnpd/miniupnpd.conf
Normal file
47
config/miniupnpd/miniupnpd.conf
Normal file
@@ -0,0 +1,47 @@
|
||||
|
||||
# LAN network interfaces IPs / networks
|
||||
# there can be multiple listening ips for SSDP traffic.
|
||||
# should be under the form nnn.nnn.nnn.nnn/nn
|
||||
# HTTP is available on all interfaces
|
||||
# port for HTTP (descriptions and SOAP) traffic. set 0 for autoselect.
|
||||
port=0
|
||||
|
||||
# chain names for netfilter (not used for pf or ipf).
|
||||
upnp_forward_chain=UPNPFW
|
||||
upnp_nat_chain=UPNPFW
|
||||
|
||||
# bitrates reported by daemon in bits per second
|
||||
bitrate_up=1000000
|
||||
bitrate_down=10000000
|
||||
|
||||
# "secure" mode : when enabled, UPnP client are allowed to add mappings only
|
||||
# to their IP.
|
||||
secure_mode=yes
|
||||
|
||||
# report system uptime instead of daemon uptime
|
||||
system_uptime=yes
|
||||
|
||||
# notify interval in seconds. default is 30 seconds.
|
||||
notify_interval=60
|
||||
|
||||
# unused rules cleaning.
|
||||
# never remove any rule before this threshold for the number
|
||||
# of redirections is exceeded. default to 20
|
||||
#clean_ruleset_threshold=10
|
||||
# clean process work interval in seconds. default to 0 (disabled).
|
||||
# a 600 seconds (10 minutes) interval makes sense
|
||||
clean_ruleset_interval=600
|
||||
|
||||
# serial and model number the daemon will report to clients
|
||||
# in its XML description
|
||||
serial=12345678
|
||||
model_number=1
|
||||
|
||||
# UPnP permission rules
|
||||
# (allow|deny) (external port range) ip/mask (internal port range)
|
||||
# A port range is <min port>-<max port> or <port> if there is only
|
||||
# one port in the range.
|
||||
# ip/mask format must be nn.nn.nn.nn/nn
|
||||
# it is advised to only allow redirection of port above 1024
|
||||
# and to finish the rule set with "deny 0-65535 0.0.0.0/0 0-65535"
|
||||
allow 0-65535 0.0.0.0/0 0-65535
|
||||
@@ -1,32 +0,0 @@
|
||||
#! /bin/sh
|
||||
# Implement blacklisting for udev-loaded modules
|
||||
# Includes module checking
|
||||
# - Aaron Griffin & Tobias Powalowski for Archlinux
|
||||
[ $# -ne 1 ] && exit 1
|
||||
|
||||
if [ -f /proc/cmdline ]; then
|
||||
for cmd in $(cat /proc/cmdline); do
|
||||
case $cmd in
|
||||
*=*) eval $cmd ;;
|
||||
esac
|
||||
done
|
||||
fi
|
||||
|
||||
# get the real names from modaliases
|
||||
i="$(/bin/modprobe -i --show-depends $1 | minised "s#^insmod /lib.*/\(.*\)\.ko.*#\1#g" | minised 's|-|_|g')"
|
||||
# add disablemodules= from commandline to blacklist
|
||||
k="$(echo ${disablemodules} | minised 's|-|_|g' | minised 's|,| |g')"
|
||||
|
||||
if [ "${k}" != "" ] ; then
|
||||
for o in ${k}; do
|
||||
echo "${o}.ko" >> /disablemodules
|
||||
done
|
||||
for n in ${i}; do
|
||||
if /bin/ugrep "^$n.ko" /disablemodules 2>&1 >/dev/null; then
|
||||
exit 1
|
||||
fi
|
||||
done
|
||||
fi
|
||||
/bin/modprobe $1
|
||||
|
||||
# vim: set et ts=4:
|
||||
@@ -1,115 +0,0 @@
|
||||
#! /bin/sh
|
||||
#
|
||||
# start_udev
|
||||
# script to initialize /dev by using udev.
|
||||
#
|
||||
# Modified for Archlinux by Tobias Powalowski <tpowa@archlinux.org>
|
||||
#
|
||||
# Inspired by:
|
||||
#
|
||||
# Copyright (C) 2004 Greg Kroah-Hartman <greg@kroah.com>
|
||||
#
|
||||
# Released under the GPL v2 only.
|
||||
#
|
||||
# This needs to be run at the earliest possible point in the boot
|
||||
# process.
|
||||
#
|
||||
# Based on the udev init.d script
|
||||
#
|
||||
# Thanks go out to the Gentoo developers for proving
|
||||
# that this is possible to do.
|
||||
#
|
||||
# Yes, it's very verbose, feel free to turn off all of the echo calls,
|
||||
# they were there to make me feel better that everything was working
|
||||
# properly during development...
|
||||
|
||||
prog=udev
|
||||
sysfs_dir=/sys
|
||||
bin=/sbin/udev
|
||||
udevd=/sbin/udevd
|
||||
udev_root="/dev"
|
||||
|
||||
trigger_device_events ()
|
||||
{
|
||||
/sbin/udevtrigger
|
||||
}
|
||||
|
||||
wait_for_queue ()
|
||||
{
|
||||
# disabled because it hangs network boot
|
||||
#loop=20
|
||||
#while ! [ "$loop" -gt 0 -a -d /dev/.udev/queue ]; do
|
||||
# sleep 0.1;
|
||||
# loop=$(($loop - 1))
|
||||
#done
|
||||
/sbin/udevsettle
|
||||
}
|
||||
|
||||
make_extra_nodes ()
|
||||
{
|
||||
# there are a few things that sysfs does not export for us.
|
||||
# these things go here (and remember to remove them in
|
||||
# remove_extra_nodes()
|
||||
#
|
||||
# Thanks to Gentoo for the initial list of these.
|
||||
ln -sf /proc/self/fd $udev_root/fd
|
||||
ln -sf /proc/self/fd/0 $udev_root/stdin
|
||||
ln -sf /proc/self/fd/1 $udev_root/stdout
|
||||
ln -sf /proc/self/fd/2 $udev_root/stderr
|
||||
ln -sf /proc/kcore $udev_root/core
|
||||
}
|
||||
|
||||
udev_init ()
|
||||
{
|
||||
# don't use udev if sysfs is not mounted.
|
||||
if [ ! -d $sysfs_dir/block ]; then
|
||||
exit 1
|
||||
fi
|
||||
|
||||
#echo "mounting... ramfs at $udev_root"
|
||||
mount -t ramfs none $udev_root
|
||||
|
||||
# propogate /udev from /sys
|
||||
#echo "Creating initial udev device nodes:"
|
||||
|
||||
#echo "making extra nodes"
|
||||
make_extra_nodes
|
||||
|
||||
# check if udevd is already running
|
||||
#echo "start udev daemon"
|
||||
/sbin/udevd --daemon
|
||||
|
||||
case "$(uname -r)" in
|
||||
2.6.[0-9]|2.6.[0-9][!0-9]*) ;;
|
||||
*) if [ -f "/sys/class/tty/console/uevent" ]; then
|
||||
#echo "Kernel >= 2.6.15 and supports uevents"
|
||||
# trigger the sorted events
|
||||
echo -e '\000\000\000\000' > /proc/sys/kernel/hotplug
|
||||
# catch events that are real fast
|
||||
mkdir -p /dev/.udev/queue
|
||||
else
|
||||
# for older kernels without uevents will be removed when udevstart dies in udev
|
||||
echo "Kernel does not support uevents, you need a kernel >= 2.6.15!"
|
||||
exit 1
|
||||
fi
|
||||
;;
|
||||
esac
|
||||
}
|
||||
|
||||
udev_uevents ()
|
||||
{
|
||||
# configure all devices
|
||||
trigger_device_events
|
||||
# until we know how to do better, just wait for _all_ events to finish
|
||||
wait_for_queue
|
||||
}
|
||||
|
||||
if [ $# -eq 0 ]; then
|
||||
udev_init
|
||||
udev_uevents
|
||||
fi
|
||||
|
||||
[ "$1" = "init" ] && udev_init
|
||||
[ "$1" = "uevents" ] && udev_uevents
|
||||
|
||||
exit 0
|
||||
@@ -1,71 +0,0 @@
|
||||
# Udev rules for Archlinux by Tobias Powalowski <tpowa@archlinux.org>
|
||||
#
|
||||
# This ruleset should provide a DevFS-compatible device tree.
|
||||
#
|
||||
# There are a number of modifiers that are allowed to be used in some
|
||||
# of the different fields. They provide the following subsitutions:
|
||||
#
|
||||
# %n the "kernel number" of the device.
|
||||
# For example, 'sda3' has a "kernel number" of '3'
|
||||
# %k the kernel name for the device.
|
||||
# %M the kernel major number for the device
|
||||
# %m the kernel minor number for the device
|
||||
# %b the bus id for the device
|
||||
# %c the string returned by the PROGRAM
|
||||
# %s{filename} the content of a sysfs attribute.
|
||||
# %% the '%' char itself.
|
||||
#
|
||||
# There are a number of modifiers that are allowed to be used in some of the
|
||||
# fields. See the udev man page for a full description of them.
|
||||
# global stuff
|
||||
#
|
||||
|
||||
#####################################
|
||||
# Early rules - begin
|
||||
#####################################
|
||||
# wait for sysfs
|
||||
ACTION=="add", DEVPATH=="/devices/*", ENV{PHYSDEVBUS}=="?*", WAIT_FOR_SYSFS="bus"
|
||||
ACTION=="add", SUBSYSTEM=="scsi", WAIT_FOR_SYSFS="ioerr_cnt"
|
||||
|
||||
#####################################
|
||||
# Early rules -end
|
||||
#####################################
|
||||
|
||||
#####################################
|
||||
###### Hotplug rules - begin
|
||||
#####################################
|
||||
# check if the device has already been claimed by a driver
|
||||
ENV{PHYSDEVDRIVER}=="?*", GOTO="hotplug_driver_loaded"
|
||||
|
||||
# Modaliases to load
|
||||
ACTION=="add", ENV{MODALIAS}=="?*", RUN+="/lib/udev/load-modules.sh $env{MODALIAS}"
|
||||
# SCSI addon modules
|
||||
ACTION=="add", SUBSYSTEM=="scsi", SYSFS{type}=="[07]", RUN+="/lib/udev/load-modules.sh sd_mod"
|
||||
ACTION=="add", SUBSYSTEM=="scsi", SYSFS{type}=="14", RUN+="/lib/udev/load-modules.sh sd_mod"
|
||||
ACTION=="add", SUBSYSTEM=="scsi", SYSFS{type}=="[45]", RUN+="/lib/udev/load-modules.sh sr_mod"
|
||||
ACTION=="add", SUBSYSTEM=="scsi", SYSFS{type}=="1", SYSFS{vendor}=="Onstream", SYSFS{model}!="ADR*", RUN+="/lib/udev/load-modules.sh osst"
|
||||
ACTION=="add", SUBSYSTEM=="scsi", SYSFS{type}=="1", SYSFS{vendor}=="Onstream", SYSFS{model}=="ADR*", RUN+="/lib/udev/load-modules.sh st"
|
||||
ACTION=="add", SUBSYSTEM=="scsi", SYSFS{type}=="1", SYSFS{vendor}!="Onstream", RUN+="/lib/udev/load-modules.sh st"
|
||||
ACTION=="add", SUBSYSTEM=="scsi", SYSFS{type}=="[23689]", RUN+="/lib/udev/load-modules.sh sg"
|
||||
|
||||
LABEL="hotplug_driver_loaded"
|
||||
|
||||
# FIRMWARE
|
||||
ACTION=="add", SUBSYSTEM=="firmware", ENV{FIRMWARE}=="?*", RUN+="/lib/udev/firmware.sh"
|
||||
#####################################
|
||||
##### Hotplug rules - end
|
||||
#####################################
|
||||
|
||||
#####################################
|
||||
###### CD/DVD symlinks - begin
|
||||
#####################################
|
||||
ACTION=="add", BUS=="ide", KERNEL=="hd[a-z]", IMPORT="/lib/udev/cdrom_id --export $tempnode"
|
||||
ACTION=="add", BUS=="scsi", KERNEL=="sr[0-9]*", IMPORT="/lib/udev/cdrom_id --export $tempnode"
|
||||
ACTION=="add", BUS=="scsi", KERNEL=="scd[a-z]", IMPORT="/lib/udev/cdrom_id --export $tempnode"
|
||||
ENV{ID_CDROM}=="?*", SYMLINK+="cd/cdrom-%b"
|
||||
ENV{ID_CDROM_CD_RW}=="?*", SYMLINK+="cd/cdrw-%b"
|
||||
ENV{ID_CDROM_DVD}=="?*", SYMLINK+="cd/dvd-%b"
|
||||
ENV{ID_CDROM_DVD_R}=="?*", SYMLINK+="cd/dvd-%b"
|
||||
#####################################
|
||||
###### CD/DVD symlinks - end
|
||||
#####################################
|
||||
@@ -1,7 +0,0 @@
|
||||
# vim: set ft=sh:
|
||||
run_hook ()
|
||||
{
|
||||
msg -n ":: Loading udev..."
|
||||
/etc/start_udev
|
||||
msg "done."
|
||||
}
|
||||
@@ -1,26 +0,0 @@
|
||||
# vim:set ft=sh:
|
||||
|
||||
install ()
|
||||
{
|
||||
MODULES=""
|
||||
BINARIES=""
|
||||
FILES=" /etc/udev/udev.conf"
|
||||
SCRIPT="udev"
|
||||
add_file /lib/initcpio/udev/udevd /sbin/udevd
|
||||
add_file /lib/initcpio/udev/udevtrigger /sbin/udevtrigger
|
||||
add_file /lib/initcpio/udev/udevsettle /sbin/udevsettle
|
||||
add_file /lib/initcpio/udev/udev.rules /etc/udev/rules.d/udev.rules
|
||||
add_file /lib/initcpio/udev/start_udev /etc/start_udev
|
||||
add_file /lib/initcpio/udev/firmware.sh /lib/udev/firmware.sh
|
||||
add_file /lib/initcpio/udev/cdrom_id /lib/udev/cdrom_id
|
||||
add_file /lib/initcpio/udev/load-modules.sh /lib/udev/load-modules.sh
|
||||
}
|
||||
|
||||
help ()
|
||||
{
|
||||
cat <<HELPEOF
|
||||
This hook will use udev to create your root device node
|
||||
and detect the needed modules for your root device.
|
||||
It is recommended to use this hook instead of modload.
|
||||
HELPEOF
|
||||
}
|
||||
@@ -1,24 +0,0 @@
|
||||
# vim: set ft=sh:
|
||||
|
||||
install ()
|
||||
{
|
||||
MODULES=" $(checked_modules "block/virtio_blk") "
|
||||
|
||||
MODULES=$(echo ${MODULES}) #trim whitespace
|
||||
if [ "x${MODULES}" != "x" ]; then
|
||||
MODULES="${MODULES} virtio_pci"
|
||||
fi
|
||||
|
||||
BINARIES=""
|
||||
FILES=""
|
||||
SCRIPT=""
|
||||
}
|
||||
|
||||
help ()
|
||||
{
|
||||
cat<<HELPEOF
|
||||
This hook loads the necessary modules for an virtio root device.
|
||||
Detection will take place at runtime. To minimize the modules
|
||||
in the image, add the autodetect hook too.
|
||||
HELPEOF
|
||||
}
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
1
config/proxy/errors.ipfire/de/ERR_DIR_LISTING
Normal file
1
config/proxy/errors.ipfire/de/ERR_DIR_LISTING
Normal file
@@ -0,0 +1 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>Verzeichnis: %U</title> <style type="text/css"><!-- %l body :lang(fa) { direction: rtl; font-size: 100%; font-family: Tahoma, Roya, sans-serif; float: right; } :lang(he) { direction: rtl; float: right; } --></style> </head><body> <div id="titles"> <h2>Verzeichnis: <a href="%U">%U</a>/</h2> </div> <hr> <div id="content"> <h4>Verzeichnisinhalt:</h4> <blockquote id="data"> <pre id="dirmsg">%z</pre> </blockquote> <table id="dirlisting" summary="Verzeichnis Auflistung"> <tr> <th><a href="../"><img border="0" src="/squid-internal-static/icons/anthony-dirup.gif" alt="Übergeordnetes Verzeichnis"></a></th> <th nowrap="nowrap"><a href="../">Übergeordnetes Verzeichnis</a> (<a href="/">Stammverzeichnis</a>)</th> </tr> %g </table> </div> <hr> <div id="footer"> <p>Erzeugt am %T von %h (%s)</p> <!-- %c --> </div> </body></html>
|
||||
1
config/proxy/errors.ipfire/de/ERR_ESI
Normal file
1
config/proxy/errors.ipfire/de/ERR_ESI
Normal file
@@ -0,0 +1 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>FEHLER: Die angeforderte URL konnte nicht gefunden werden</title> <style type="text/css"><!-- %l body :lang(fa) { direction: rtl; font-size: 100%; font-family: Tahoma, Roya, sans-serif; float: right; } :lang(he) { direction: rtl; float: right; } --></style> </head><body> <div id="titles"> <h1>ERROR</h1> <h2>The requested URL could not be retrieved</h2> </div> <hr> <div id="content"> <p>Der folgende Fehler wurde beim Versuch die URL <a href="%U">%U</a> zu holen festgestellt:</p> <blockquote id="error"> <p><b>ESI-Verarbeitung fehlgeschlagen.</b></p> </blockquote> <p>Der ESI-Prozessor meldete:</p> <blockquote id="data"> <pre>%Z</pre> </blockquote> <p>Das heißt, dass der Ersatz nicht in der Lage war das ESI Template zu verarbeiten. Bitte melden sie diesen Fehler dem Webmaster.</p> <p>Ihr Webmaster ist <a href="mailto:%w">%w</a>.</p> <br> </div> <hr> <div id="footer"> <p>Erzeugt am %T von %h (%s)</p> <!-- %c --> </div> </body></html>
|
||||
1
config/proxy/errors.ipfire/de/ERR_ICAP_FAILURE
Normal file
1
config/proxy/errors.ipfire/de/ERR_ICAP_FAILURE
Normal file
@@ -0,0 +1 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>FEHLER: Die angeforderte URL konnte nicht gefunden werden</title> <style type="text/css"><!-- %l body :lang(fa) { direction: rtl; font-size: 100%; font-family: Tahoma, Roya, sans-serif; float: right; } :lang(he) { direction: rtl; float: right; } --></style> </head><body> <div id="titles"> <h1>ERROR</h1> <h2>The requested URL could not be retrieved</h2> </div> <hr> <div id="content"> <p>Der folgende Fehler wurde beim Versuch die URL <a href="%U">%U</a> zu holen festgestellt:</p> <blockquote id="error"> <p><b>ICAP Protokoll Fehler.</b></p> </blockquote> <p id="sysmsg">Das System antwortete: <i>%E</i></p> <p>Das heißt, dass etwas mit der ICAP Kommunikation nicht stimmt.</p> <p>Mögliche Probleme sind:</p> <ul> <li><p>Der ICAP Server ist nicht erreichbar.</p></li> <li><p>Die Antwort des ICAP Servers war ungültig.</p></li> </ul> <br> </div> <hr> <div id="footer"> <p>Erzeugt am %T von %h (%s)</p> <!-- %c --> </div> </body></html>
|
||||
1
config/proxy/errors.ipfire/de/ERR_SECURE_CONNECT_FAIL
Normal file
1
config/proxy/errors.ipfire/de/ERR_SECURE_CONNECT_FAIL
Normal file
@@ -0,0 +1 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>FEHLER: Die angeforderte URL konnte nicht gefunden werden</title> <style type="text/css"><!-- %l body :lang(fa) { direction: rtl; font-size: 100%; font-family: Tahoma, Roya, sans-serif; float: right; } :lang(he) { direction: rtl; float: right; } --></style> </head><body> <div id="titles"> <h1>ERROR</h1> <h2>The requested URL could not be retrieved</h2> </div> <hr> <div id="content"> <p>Der folgende Fehler wurde beim Versuch die URL <a href="%U">%U</a> zu holen festgestellt:</p> <blockquote id="error"> <p><b>Konnte keine sichere Verbindung zu %I herstellen</b></p> </blockquote> <p id="sysmsg">Das System antwortete: <i>%E</i></p> <p>Dieser Proxy und der Zielhost waren nicht in der Lage Sicherheitseinstellungen auszuhandeln die beidseitig akzeptiert werden. Es ist möglich dass der Zielhost keine sicheren Verbindungen unterstützte oder der Proxy nicht mit dem Sicherheitszertifikat des Hosts einverstanden ist.</p> <p>Ihr Cache Administrator ist <a href="mailto:%w%W">%w</a>.</p> <br> </div> <hr> <div id="footer"> <p>Erzeugt am %T von %h (%s)</p> <!-- %c --> </div> </body></html>
|
||||
1
config/proxy/errors.ipfire/de/ERR_UNSUP_HTTPVERSION
Normal file
1
config/proxy/errors.ipfire/de/ERR_UNSUP_HTTPVERSION
Normal file
@@ -0,0 +1 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>FEHLER: Die angeforderte URL konnte nicht gefunden werden</title> <style type="text/css"><!-- %l body :lang(fa) { direction: rtl; font-size: 100%; font-family: Tahoma, Roya, sans-serif; float: right; } :lang(he) { direction: rtl; float: right; } --></style> </head><body> <div id="titles"> <h1>ERROR</h1> <h2>Nicht unterstützte HTTP Version</h2> </div> <hr> <div id="content"> <p>Der folgende Fehler wurde beim Versuch die URL <a href="%U">%U</a> zu holen festgestellt:</p> <blockquote id="error"> <p><b>Unsupported HTTP version</b></p> </blockquote> <p>Dieser Squid akzeptiert die angeforderte HTTP Version nicht.</p> <p>Ihr Cache Administrator ist <a href="mailto:%w%W">%w</a>.</p> <br> </div> <hr> <div id="footer"> <p>Erzeugt am %T von %h (%s)</p> <!-- %c --> </div> </body></html>
|
||||
1
config/proxy/errors.ipfire/en/ERR_DIR_LISTING
Normal file
1
config/proxy/errors.ipfire/en/ERR_DIR_LISTING
Normal file
@@ -0,0 +1 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>Directory: %U</title> <style type="text/css"><!-- %l body :lang(fa) { direction: rtl; font-size: 100%; font-family: Tahoma, Roya, sans-serif; float: right; } :lang(he) { direction: rtl; float: right; } --></style> </head><body> <div id="titles"> <h2>Directory: <a href="%U">%U</a>/</h2> </div> <hr> <div id="content"> <h4>Directory Content:</h4> <blockquote id="data"> <pre id="dirmsg">%z</pre> </blockquote> <table id="dirlisting" summary="Directory Listing"> <tr> <th><a href="../"><img border="0" src="/squid-internal-static/icons/anthony-dirup.gif" alt="Parent Directory"></a></th> <th nowrap="nowrap"><a href="../">Parent Directory</a> (<a href="/">Root Directory</a>)</th> </tr> %g </table> </div> <hr> <div id="footer"> <p>Generated %T by %h (%s)</p> <!-- %c --> </div> </body></html>
|
||||
1
config/proxy/errors.ipfire/en/ERR_ESI
Normal file
1
config/proxy/errors.ipfire/en/ERR_ESI
Normal file
@@ -0,0 +1 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>ERROR: The requested URL could not be retrieved</title> <style type="text/css"><!-- %l body :lang(fa) { direction: rtl; font-size: 100%; font-family: Tahoma, Roya, sans-serif; float: right; } :lang(he) { direction: rtl; float: right; } --></style> </head><body> <div id="titles"> <h1>ERROR</h1> <h2>The requested URL could not be retrieved</h2> </div> <hr> <div id="content"> <p>The following error was encountered while trying to retrieve the URL: <a href="%U">%U</a></p> <blockquote id="error"> <p><b>ESI Processing failed.</b></p> </blockquote> <p>The ESI processor returned:</p> <blockquote id="data"> <pre>%Z</pre> </blockquote> <p>This means that the surrogate was not able to process the ESI template. Please report this error to the webmaster.</p> <p>Your webmaster is <a href="mailto:%w">%w</a>.</p> <br> </div> <hr> <div id="footer"> <p>Generated %T by %h (%s)</p> <!-- %c --> </div> </body></html>
|
||||
1
config/proxy/errors.ipfire/en/ERR_ICAP_FAILURE
Normal file
1
config/proxy/errors.ipfire/en/ERR_ICAP_FAILURE
Normal file
@@ -0,0 +1 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>ERROR: The requested URL could not be retrieved</title> <style type="text/css"><!-- %l body :lang(fa) { direction: rtl; font-size: 100%; font-family: Tahoma, Roya, sans-serif; float: right; } :lang(he) { direction: rtl; float: right; } --></style> </head><body> <div id="titles"> <h1>ERROR</h1> <h2>The requested URL could not be retrieved</h2> </div> <hr> <div id="content"> <p>The following error was encountered while trying to retrieve the URL: <a href="%U">%U</a></p> <blockquote id="error"> <p><b>ICAP protocol error.</b></p> </blockquote> <p id="sysmsg">The system returned: <i>%E</i></p> <p>This means that some aspect of the ICAP communication failed.</p> <p>Some possible problems are:</p> <ul> <li><p>The ICAP server is not reachable.</p></li> <li><p>An Illegal response was received from the ICAP server.</p></li> </ul> <br> </div> <hr> <div id="footer"> <p>Generated %T by %h (%s)</p> <!-- %c --> </div> </body></html>
|
||||
1
config/proxy/errors.ipfire/en/ERR_SECURE_CONNECT_FAIL
Normal file
1
config/proxy/errors.ipfire/en/ERR_SECURE_CONNECT_FAIL
Normal file
@@ -0,0 +1 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>ERROR: The requested URL could not be retrieved</title> <style type="text/css"><!-- %l body :lang(fa) { direction: rtl; font-size: 100%; font-family: Tahoma, Roya, sans-serif; float: right; } :lang(he) { direction: rtl; float: right; } --></style> </head><body> <div id="titles"> <h1>ERROR</h1> <h2>The requested URL could not be retrieved</h2> </div> <hr> <div id="content"> <p>The following error was encountered while trying to retrieve the URL: <a href="%U">%U</a></p> <blockquote id="error"> <p><b>Failed to establish a secure connection to %I</b></p> </blockquote> <p id="sysmsg">The system returned: <i>%E</i></p> <p>This proxy and the remote host failed to negotiate a mutually acceptable security settings for handling your request. It is possible that the remote host does not support secure connections, or the proxy is not satisfied with the host security credentials.</p> <p>Your cache administrator is <a href="mailto:%w%W">%w</a>.</p> <br> </div> <hr> <div id="footer"> <p>Generated %T by %h (%s)</p> <!-- %c --> </div> </body></html>
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user