Skip to content

Commit

Permalink
dist-upgrade
Browse files Browse the repository at this point in the history
systemd was pulled in by rsyslogd. time to think about another syslog.
  • Loading branch information
kaihendry committed Apr 14, 2012
1 parent 6639b93 commit d750d63
Show file tree
Hide file tree
Showing 1,919 changed files with 40,331 additions and 39,594 deletions.
68,289 changes: 34,146 additions & 34,143 deletions boot/System.map-3.2.0-2artax1-486

Large diffs are not rendered by default.

5 changes: 2 additions & 3 deletions boot/config-3.2.0-2artax1-486
@@ -1,6 +1,6 @@
#
# Automatically generated file; DO NOT EDIT.
# Linux/x86 3.2.12 Kernel Configuration
# Linux/x86 3.2.14 Kernel Configuration
#
# CONFIG_64BIT is not set
CONFIG_X86_32=y
Expand Down Expand Up @@ -1868,7 +1868,7 @@ CONFIG_PATA_HPT366=m
CONFIG_PATA_HPT37X=m
# CONFIG_PATA_HPT3X2N is not set
# CONFIG_PATA_HPT3X3 is not set
# CONFIG_PATA_IT8213 is not set
CONFIG_PATA_IT8213=m
CONFIG_PATA_IT821X=m
CONFIG_PATA_JMICRON=m
CONFIG_PATA_MARVELL=m
Expand Down Expand Up @@ -5036,7 +5036,6 @@ CONFIG_R8187SE=m
CONFIG_RTL8192U=m
CONFIG_RTL8192E=m
CONFIG_R8712U=m
# CONFIG_R8712_AP is not set
CONFIG_RTS_PSTOR=m
# CONFIG_RTS_PSTOR_DEBUG is not set
CONFIG_RTS5139=m
Expand Down
Binary file modified boot/vmlinuz-3.2.0-2artax1-486
Binary file not shown.
91 changes: 17 additions & 74 deletions etc/bash_completion.d/git
Expand Up @@ -60,18 +60,6 @@
# per-repository basis by setting the bash.showUpstream config
# variable.
#
#
# To submit patches:
#
# *) Read Documentation/SubmittingPatches
# *) Send all patches to the current maintainer:
#
# "Shawn O. Pearce" <spearce@spearce.org>
#
# *) Always CC the Git mailing list:
#
# git@vger.kernel.org
#

if [[ -n ${ZSH_VERSION-} ]]; then
autoload -U +X bashcompinit && bashcompinit
Expand Down Expand Up @@ -298,13 +286,13 @@ __git_ps1 ()
fi
fi
if [ -n "${GIT_PS1_SHOWSTASHSTATE-}" ]; then
git rev-parse --verify refs/stash >/dev/null 2>&1 && s="$"
git rev-parse --verify refs/stash >/dev/null 2>&1 && s="$"
fi

if [ -n "${GIT_PS1_SHOWUNTRACKEDFILES-}" ]; then
if [ -n "$(git ls-files --others --exclude-standard)" ]; then
u="%"
fi
if [ -n "$(git ls-files --others --exclude-standard)" ]; then
u="%"
fi
fi

if [ -n "${GIT_PS1_SHOWUPSTREAM-}" ]; then
Expand All @@ -313,7 +301,7 @@ __git_ps1 ()
fi

local f="$w$i$s$u"
printf "${1:- (%s)}" "$c${b##refs/heads/}${f:+ $f}$r$p"
printf -- "${1:- (%s)}" "$c${b##refs/heads/}${f:+ $f}$r$p"
fi
}

Expand Down Expand Up @@ -495,11 +483,8 @@ fi
# 4: A suffix to be appended to each possible completion word (optional).
__gitcomp ()
{
local cur_="$cur"
local cur_="${3-$cur}"

if [ $# -gt 2 ]; then
cur_="$3"
fi
case "$cur_" in
--*=)
COMPREPLY=()
Expand All @@ -524,18 +509,8 @@ __gitcomp ()
# appended.
__gitcomp_nl ()
{
local s=$'\n' IFS=' '$'\t'$'\n'
local cur_="$cur" suffix=" "

if [ $# -gt 2 ]; then
cur_="$3"
if [ $# -gt 3 ]; then
suffix="$4"
fi
fi

IFS=$s
COMPREPLY=($(compgen -P "${2-}" -S "$suffix" -W "$1" -- "$cur_"))
local IFS=$'\n'
COMPREPLY=($(compgen -P "${2-}" -S "${4- }" -W "$1" -- "${3-$cur}"))
}

__git_heads ()
Expand Down Expand Up @@ -643,13 +618,8 @@ __git_refs_remotes ()

__git_remotes ()
{
local i ngoff IFS=$'\n' d="$(__gitdir)"
__git_shopt -q nullglob || ngoff=1
__git_shopt -s nullglob
for i in "$d/remotes"/*; do
echo ${i#$d/remotes/}
done
[ "$ngoff" ] && __git_shopt -u nullglob
local i IFS=$'\n' d="$(__gitdir)"
test -d "$d/remotes" && ls -1 "$d/remotes"
for i in $(git --git-dir="$d" config --get-regexp 'remote\..*\.url' 2>/dev/null); do
i="${i#remote.}"
echo "${i/.url*/}"
Expand All @@ -676,7 +646,8 @@ __git_merge_strategies=
# is needed.
__git_compute_merge_strategies ()
{
: ${__git_merge_strategies:=$(__git_list_merge_strategies)}
test -n "$__git_merge_strategies" ||
__git_merge_strategies=$(__git_list_merge_strategies)
}

__git_complete_revlist_file ()
Expand Down Expand Up @@ -854,7 +825,8 @@ __git_list_all_commands ()
__git_all_commands=
__git_compute_all_commands ()
{
: ${__git_all_commands:=$(__git_list_all_commands)}
test -n "$__git_all_commands" ||
__git_all_commands=$(__git_list_all_commands)
}

__git_list_porcelain_commands ()
Expand Down Expand Up @@ -947,7 +919,8 @@ __git_porcelain_commands=
__git_compute_porcelain_commands ()
{
__git_compute_all_commands
: ${__git_porcelain_commands:=$(__git_list_porcelain_commands)}
test -n "$__git_porcelain_commands" ||
__git_porcelain_commands=$(__git_list_porcelain_commands)
}

__git_pretty_aliases ()
Expand Down Expand Up @@ -1152,7 +1125,7 @@ _git_branch ()
__gitcomp "
--color --no-color --verbose --abbrev= --no-abbrev
--track --no-track --contains --merged --no-merged
--set-upstream
--set-upstream --edit-description --list
"
;;
*)
Expand Down Expand Up @@ -2733,33 +2706,3 @@ if [ Cygwin = "$(uname -o 2>/dev/null)" ]; then
complete -o bashdefault -o default -o nospace -F _git git.exe 2>/dev/null \
|| complete -o default -o nospace -F _git git.exe
fi

if [[ -n ${ZSH_VERSION-} ]]; then
__git_shopt () {
local option
if [ $# -ne 2 ]; then
echo "USAGE: $0 (-q|-s|-u) <option>" >&2
return 1
fi
case "$2" in
nullglob)
option="$2"
;;
*)
echo "$0: invalid option: $2" >&2
return 1
esac
case "$1" in
-q) setopt | grep -q "$option" ;;
-u) unsetopt "$option" ;;
-s) setopt "$option" ;;
*)
echo "$0: invalid flag: $1" >&2
return 1
esac
}
else
__git_shopt () {
shopt "$@"
}
fi
6 changes: 2 additions & 4 deletions etc/default/rsyslog
@@ -1,8 +1,6 @@
# Options for rsyslogd
# -m 0 disables 'MARK' messages (deprecated, only used in compat mode < 3)
# -r enables logging from remote machines (deprecated, only used in compat mode < 3)
# -x disables DNS lookups on messages received with -r
# -x disables DNS lookups for remote messages
# -c compatibility mode
# See rsyslogd(8) for more details
RSYSLOGD_OPTIONS="-c4"
RSYSLOGD_OPTIONS="-c5"

29 changes: 14 additions & 15 deletions etc/init.d/rsyslog
Expand Up @@ -23,7 +23,7 @@ NAME=rsyslog

RSYSLOGD=rsyslogd
RSYSLOGD_BIN=/usr/sbin/rsyslogd
RSYSLOGD_OPTIONS="-c4"
RSYSLOGD_OPTIONS="-c5"
RSYSLOGD_PIDFILE=/var/run/rsyslogd.pid

SCRIPTNAME=/etc/init.d/$NAME
Expand Down Expand Up @@ -52,29 +52,29 @@ do_start()

do_stop()
{
NAME="$RSYSLOGD"
DAEMON="$RSYSLOGD_BIN"
PIDFILE="$RSYSLOGD_PIDFILE"

# Return
# 0 if daemon has been stopped
# 1 if daemon was already stopped
# other if daemon could not be stopped or a failure occurred
start-stop-daemon --stop --quiet --retry=TERM/30/KILL/5 --pidfile $PIDFILE --name $NAME
start-stop-daemon --stop --quiet --retry=TERM/30/KILL/5 --pidfile $PIDFILE --exec $DAEMON
}

#
# Tell rsyslogd to reload its configuration
# Tell rsyslogd to close all open files
#
do_reload() {
NAME="$RSYSLOGD"
do_rotate() {
DAEMON="$RSYSLOGD_BIN"
PIDFILE="$RSYSLOGD_PIDFILE"

start-stop-daemon --stop --signal HUP --quiet --pidfile $PIDFILE --name $NAME
start-stop-daemon --stop --signal HUP --quiet --pidfile $PIDFILE --exec $DAEMON
}

create_xconsole() {
XCONSOLE=/dev/xconsole
if [ "$(uname -s)" = "GNU/kFreeBSD" ]; then
if [ "$(uname -s)" != "Linux" ]; then
XCONSOLE=/var/run/xconsole
ln -sf $XCONSOLE /dev/xconsole
fi
Expand All @@ -88,8 +88,7 @@ create_xconsole() {
sendsigs_omit() {
OMITDIR=/lib/init/rw/sendsigs.omit.d
mkdir -p $OMITDIR
rm -f $OMITDIR/rsyslog
ln -s $RSYSLOGD_PIDFILE $OMITDIR/rsyslog
ln -sf $RSYSLOGD_PIDFILE $OMITDIR/rsyslog
}

case "$1" in
Expand Down Expand Up @@ -117,20 +116,20 @@ case "$1" in
esac

;;
reload|force-reload)
log_daemon_msg "Reloading $DESC" "$RSYSLOGD"
do_reload
rotate)
log_daemon_msg "Closing open files" "$RSYSLOGD"
do_rotate
log_end_msg $?
;;
restart)
restart|force-reload)
$0 stop
$0 start
;;
status)
status_of_proc -p $RSYSLOGD_PIDFILE $RSYSLOGD_BIN $RSYSLOGD && exit 0 || exit $?
;;
*)
echo "Usage: $SCRIPTNAME {start|stop|restart|reload|force-reload|status}" >&2
echo "Usage: $SCRIPTNAME {start|stop|rotate|restart|force-reload|status}" >&2
exit 3
;;
esac
Expand Down
Binary file modified etc/ld.so.cache
Binary file not shown.
4 changes: 2 additions & 2 deletions etc/logcheck/ignore.d.server/rsyslog
@@ -1,5 +1,5 @@
^\w{3} [ :0-9]{11} [._[:alnum:]-]+ kernel: imklog [0-9.]+, log source = /proc/kmsg started.$
^\w{3} [ :0-9]{11} [._[:alnum:]-]+ kernel: Kernel logging \(proc\) stopped.$
^\w{3} [ :0-9]{11} [._[:alnum:]-]+ rsyslogd: \[origin software="rsyslogd" swVersion="[0-9.]+" x-pid="[0-9]+" x-info="http://www.rsyslog.com"\] \(re\)start$
^\w{3} [ :0-9]{11} [._[:alnum:]-]+ rsyslogd: \[origin software="rsyslogd" swVersion="[0-9.]+" x-pid="[0-9]+" x-info="http://www.rsyslog.com"\] start$
^\w{3} [ :0-9]{11} [._[:alnum:]-]+ rsyslogd: \[origin software="rsyslogd" swVersion="[0-9.]+" x-pid="[0-9]+" x-info="http://www.rsyslog.com"\] exiting on signal [0-9]+.$
^\w{3} [ :0-9]{11} [._[:alnum:]-]+ rsyslogd: \[origin software="rsyslogd" swVersion="[0-9.]+" x-pid="[0-9]+" x-info="http://www.rsyslog.com"\] rsyslogd was HUPed, type '(restart|lightweight)'\.$
^\w{3} [ :0-9]{11} [._[:alnum:]-]+ rsyslogd: \[origin software="rsyslogd" swVersion="[0-9.]+" x-pid="[0-9]+" x-info="http://www.rsyslog.com"\] rsyslogd was HUPed$
4 changes: 2 additions & 2 deletions etc/logrotate.d/rsyslog
Expand Up @@ -7,7 +7,7 @@
delaycompress
compress
postrotate
invoke-rc.d rsyslog reload > /dev/null
invoke-rc.d rsyslog rotate > /dev/null
endscript
}

Expand All @@ -32,6 +32,6 @@
delaycompress
sharedscripts
postrotate
invoke-rc.d rsyslog reload > /dev/null
invoke-rc.d rsyslog rotate > /dev/null
endscript
}
5 changes: 3 additions & 2 deletions etc/network/if-up.d/mountnfs
Expand Up @@ -98,9 +98,10 @@ do_start() {
# and/or rpc.idmapd, and loads the right kernel modules if
# applicable) if we use Kerberos and/or NFSv4 mounts.
#
if [ "$start_nfs" = yes ] && [ -x /etc/init.d/portmap ] && [ -x /etc/init.d/nfs-common ]
if [ "$start_nfs" = yes ] && [ -x /etc/init.d/nfs-common ]
then
/etc/init.d/portmap start
[ -x /etc/init.d/portmap ] && /etc/init.d/portmap start
[ -x /etc/init.d/rpcbind ] && /etc/init.d/rpcbind start
/etc/init.d/nfs-common start
fi

Expand Down
1 change: 1 addition & 0 deletions etc/systemd/system/multi-user.target.wants/rsyslog.service
1 change: 1 addition & 0 deletions etc/systemd/system/syslog.service
Binary file modified lib/libe2p.so.2.3
Binary file not shown.
Binary file modified lib/libext2fs.so.2.4
Binary file not shown.
Binary file modified lib/libpng12.so.0.44.0
Binary file not shown.
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/arch/x86/kernel/apm.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/arch/x86/kvm/kvm-amd.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/arch/x86/kvm/kvm-intel.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/arch/x86/kvm/kvm.ko
Binary file not shown.
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/crypto/async_tx/async_pq.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/crypto/async_tx/async_tx.ko
Binary file not shown.
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/crypto/ccm.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/crypto/rmd128.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/crypto/rmd160.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/crypto/rmd256.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/crypto/rmd320.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/crypto/sha1_generic.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/crypto/sha256_generic.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/crypto/sha512_generic.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/crypto/tcrypt.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/crypto/tea.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/acpi/battery.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/acpi/pci_slot.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/acpi/processor.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/acpi/video.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/ata/acard-ahci.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/ata/ahci.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/ata/ata_generic.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/ata/ata_piix.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/ata/libahci.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/ata/libata.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/ata/pata_ali.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/ata/pata_amd.ko
Binary file not shown.
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/ata/pata_artop.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/ata/pata_atiixp.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/ata/pata_atp867x.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/ata/pata_cmd64x.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/ata/pata_cs5520.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/ata/pata_cs5530.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/ata/pata_cs5535.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/ata/pata_cs5536.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/ata/pata_efar.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/ata/pata_hpt366.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/ata/pata_hpt37x.ko
Binary file not shown.
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/ata/pata_it821x.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/ata/pata_jmicron.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/ata/pata_legacy.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/ata/pata_marvell.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/ata/pata_mpiix.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/ata/pata_netcell.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/ata/pata_ninja32.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/ata/pata_ns87410.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/ata/pata_ns87415.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/ata/pata_oldpiix.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/ata/pata_opti.ko
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/ata/pata_piccolo.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/ata/pata_rdc.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/ata/pata_rz1000.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/ata/pata_sc1200.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/ata/pata_sch.ko
Binary file not shown.
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/ata/pata_sil680.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/ata/pata_sis.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/ata/pata_triflex.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/ata/pata_via.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/ata/pdc_adma.ko
Binary file not shown.
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/ata/sata_mv.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/ata/sata_nv.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/ata/sata_promise.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/ata/sata_qstor.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/ata/sata_sil.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/ata/sata_sil24.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/ata/sata_sis.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/ata/sata_svw.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/ata/sata_sx4.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/ata/sata_uli.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/ata/sata_via.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/ata/sata_vsc.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/atm/ambassador.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/atm/eni.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/atm/firestream.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/atm/fore_200e.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/atm/he.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/atm/horizon.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/atm/idt77252.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/atm/iphase.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/atm/lanai.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/atm/nicstar.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/atm/solos-pci.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/atm/uPD98402.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/atm/zatm.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/bcma/bcma.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/block/DAC960.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/block/aoe/aoe.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/block/cciss.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/block/drbd/drbd.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/block/floppy.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/block/loop.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/block/nbd.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/block/osdblk.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/block/paride/pcd.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/block/paride/pf.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/block/pktcdvd.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/block/rbd.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/block/sx8.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/block/umem.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/block/xd.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/bluetooth/ath3k.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/bluetooth/bpa10x.ko
Binary file not shown.
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/bluetooth/btmrvl.ko
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/bluetooth/btusb.ko
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/cdrom/cdrom.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/char/applicom.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/char/dtlk.ko
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/char/raw.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/char/sonypi.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/char/tpm/tpm.ko
Binary file not shown.
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/connector/cn.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/cpufreq/longhaul.ko
Binary file not shown.
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/crypto/hifn_795x.ko
Binary file not shown.
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/dca/dca.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/dma/ioat/ioatdma.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/edac/amd76x_edac.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/edac/e752x_edac.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/edac/e7xxx_edac.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/edac/edac_core.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/edac/i3000_edac.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/edac/i5000_edac.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/edac/i5100_edac.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/edac/i5400_edac.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/edac/i7300_edac.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/edac/i82860_edac.ko
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/edac/r82600_edac.ko
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/firewire/nosy.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/firmware/dcdbas.ko
Binary file not shown.
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/firmware/efivars.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/gpio/gpio-ml-ioh.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/gpio/gpio-pch.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/gpu/drm/drm.ko
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/gpu/drm/i915/i915.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/gpu/drm/mga/mga.ko
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/gpu/drm/sis/sis.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/gpu/drm/ttm/ttm.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/gpu/drm/via/via.ko
Binary file not shown.
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/hid/hid-chicony.ko
Binary file not shown.
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/hid/hid-picolcd.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/hid/hid-wiimote.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/hid/hid.ko
Binary file not shown.
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/hv/hv_utils.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/hv/hv_vmbus.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/hwmon/ad7414.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/hwmon/ad7418.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/hwmon/adm1021.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/hwmon/adm1025.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/hwmon/adm1026.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/hwmon/adm1029.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/hwmon/adm1031.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/hwmon/adm9240.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/hwmon/ads1015.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/hwmon/ads7828.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/hwmon/adt7411.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/hwmon/adt7462.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/hwmon/adt7470.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/hwmon/adt7475.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/hwmon/amc6821.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/hwmon/asb100.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/hwmon/asc7621.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/hwmon/atxp1.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/hwmon/coretemp.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/hwmon/dme1737.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/hwmon/ds1621.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/hwmon/ds620.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/hwmon/emc1403.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/hwmon/emc2103.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/hwmon/emc6w201.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/hwmon/f75375s.ko
Binary file not shown.
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/hwmon/fschmd.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/hwmon/g760a.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/hwmon/gl518sm.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/hwmon/gl520sm.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/hwmon/k8temp.ko
Binary file not shown.
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/hwmon/lm63.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/hwmon/lm75.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/hwmon/lm77.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/hwmon/lm78.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/hwmon/lm80.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/hwmon/lm83.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/hwmon/lm85.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/hwmon/lm87.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/hwmon/lm90.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/hwmon/lm92.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/hwmon/lm93.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/hwmon/lm95241.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/hwmon/lm95245.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/hwmon/ltc4151.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/hwmon/ltc4215.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/hwmon/ltc4245.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/hwmon/ltc4261.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/hwmon/max16065.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/hwmon/max1619.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/hwmon/max1668.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/hwmon/max6639.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/hwmon/max6642.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/hwmon/max6650.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/hwmon/pcf8591.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/hwmon/sht21.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/hwmon/sis5595.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/hwmon/smm665.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/hwmon/smsc47m192.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/hwmon/thmc50.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/hwmon/tmp102.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/hwmon/tmp401.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/hwmon/tmp421.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/hwmon/via686a.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/hwmon/vt8231.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/hwmon/w83781d.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/hwmon/w83791d.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/hwmon/w83792d.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/hwmon/w83793.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/hwmon/w83795.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/hwmon/w83l785ts.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/hwmon/w83l786ng.ko
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/i2c/i2c-core.ko
Binary file not shown.
Binary file modified lib/modules/3.2.0-2artax1-486/kernel/drivers/i2c/i2c-dev.ko
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 comments on commit d750d63

Please sign in to comment.