diff options
| author | Manuel Traut <manut@mecka.net> | 2013-03-10 12:13:49 +0100 |
|---|---|---|
| committer | Manuel Traut <manut@mecka.net> | 2013-03-10 12:13:49 +0100 |
| commit | 9c0f862749f30800837a45aff5abdcb529867dbc (patch) | |
| tree | b0ca51fff64f12fac03aea4afaa1fa722376844b /beagle/debian-rfs/lib | |
| parent | 33b79c725448efd2c9a72e2ae9a1fb04270492f5 (diff) | |
| parent | cea5039322781f6085dd47954af5584ca3f78911 (diff) | |
Merge branch 'schulung'
updates from current linutronix schulung.git
Conflicts:
Makefile
configpres.tex
flash-memory/ubi/handout_ubi_de.tex
handout.tex
index.txt
pres_master.tex
vorl.tex
vorl1.tex
vorl2.tex
vorl3.tex
vorl4.tex
vorl5.tex
Signed-off-by: Manuel Traut <manut@mecka.net>
Diffstat (limited to 'beagle/debian-rfs/lib')
167 files changed, 0 insertions, 1125 deletions
diff --git a/beagle/debian-rfs/lib/init/bootclean.sh b/beagle/debian-rfs/lib/init/bootclean.sh deleted file mode 100644 index 02e6cef..0000000 --- a/beagle/debian-rfs/lib/init/bootclean.sh +++ /dev/null @@ -1,190 +0,0 @@ -#!/bin/sh -# -# bootclean -# -# Clean /tmp. Clean /var/run and /var/lock if not mounted as tmpfs -# -# DO NOT RUN AFTER S:55bootmisc.sh and do not run this script directly -# in runlevel S. Instead write an initscript to call it. -# - -. /lib/init/vars.sh - -. /lib/lsb/init-functions - -# Should be called outside verbose message block -mkflagfile() -{ - # Prevent symlink attack (See #264234.) - [ -L "$1" ] && log_warning_msg "bootclean: Deleting symbolic link '$1'." - rm -f "$1" || { log_failure_msg "bootclean: Failure deleting '$1'." ; return 1 ; } - # No user processes should be running, so no one should be able to introduce - # a symlink here. As an extra precaution, set noclobber. - set -o noclobber - :> "$1" || { log_failure_msg "bootclean: Failure creating '$1'." ; return 1 ; } - return 0 -} - -clean_tmp() { - cd /tmp || { log_failure_msg "bootclean: Could not cd to /tmp." ; return 1 ; } - - # - # Only clean out /tmp if it is world-writable. This ensures - # it really is a/the temp directory we're cleaning. - # - [ "$(find . -maxdepth 0 -perm -002)" = "." ] || return 0 - - if [ ! "$TMPTIME" ] - then - log_warning_msg "Using default TMPTIME 0." - TMPTIME=0 - fi - - [ "$VERBOSE" = no ] || log_action_begin_msg "Cleaning /tmp" - - # - # Remove regardless of TMPTIME setting - # - rm -f .X*-lock - - # - # Don't clean remaining files if TMPTIME is negative or 'infinite' - # - case "$TMPTIME" in - -*|infinite|infinity) - [ "$VERBOSE" = no ] || log_action_end_msg 0 "skipped" - return 0 - ;; - esac - - # - # Wipe /tmp, excluding system files, but including lost+found - # - # If TMPTIME is set to 0, we do not use any ctime expression - # at all, so we can also delete files with timestamps - # in the future! - # - if [ "$TMPTIME" = 0 ] - then - TEXPR="" - DEXPR="" - else - TEXPR="-mtime +$TMPTIME -ctime +$TMPTIME -atime +$TMPTIME" - DEXPR="-mtime +$TMPTIME -ctime +$TMPTIME" - fi - - EXCEPT='! -name . - ! ( -path ./lost+found -uid 0 ) - ! ( -path ./quota.user -uid 0 ) - ! ( -path ./aquota.user -uid 0 ) - ! ( -path ./quota.group -uid 0 ) - ! ( -path ./aquota.group -uid 0 ) - ! ( -path ./.journal -uid 0 ) - ! ( -path ./.clean -uid 0 ) - ! ( -path './...security*' -uid 0 )' - - mkflagfile /tmp/.clean || return 1 - - report_err() - { - if [ "$VERBOSE" = no ] - then - log_failure_msg "bootclean: Failure cleaning /tmp." - else - log_action_end_msg 1 "bootclean: Failure cleaning /tmp" - fi - } - - # - # First remove all old files... - # - find . -depth -xdev $TEXPR $EXCEPT ! -type d -delete \ - || { report_err ; return 1 ; } - - # - # ...and then all empty directories - # - find . -depth -xdev $DEXPR $EXCEPT -type d -empty -delete \ - || { report_err ; return 1 ; } - - [ "$VERBOSE" = no ] || log_action_end_msg 0 - return 0 -} - -clean_lock() { - if [ yes = "$RAMLOCK" ] ; then - return 0 - fi - - cd /var/lock || { log_failure_msg "bootclean: Could not cd to /var/lock." ; return 1 ; } - - [ "$VERBOSE" = no ] || log_action_begin_msg "Cleaning /var/lock" - report_err() - { - if [ "$VERBOSE" = no ] - then - log_failure_msg "bootclean: Failure cleaning /var/lock." - else - log_action_end_msg 1 "bootclean: Failure cleaning /var/lock" - fi - } - find . ! -type d -delete \ - || { report_err ; return 1 ; } - [ "$VERBOSE" = no ] || log_action_end_msg 0 - mkflagfile /var/lock/.clean || return 1 - return 0 -} - -clean_run() { - if [ yes = "$RAMRUN" ] ; then - return 0 - fi - - cd /var/run || { log_action_end_msg 1 "bootclean: Could not cd to /var/run." ; return 1 ; } - - [ "$VERBOSE" = no ] || log_action_begin_msg "Cleaning /var/run" - report_err() - { - if [ "$VERBOSE" = no ] - then - log_failure_msg "bootclean: Failure cleaning /var/run." - else - log_action_end_msg 1 "bootclean: Failure cleaning /var/run" - fi - } - find . ! -xtype d ! -name utmp ! -name innd.pid -delete \ - || { report_err ; return 1 ; } - [ "$VERBOSE" = no ] || log_action_end_msg 0 - mkflagfile /var/run/.clean || return 1 - return 0 -} - -which find >/dev/null 2>&1 || exit 1 -log_begin_msg "Cleaning up temporary files..." - -# If there are flag files that have not been created by root -# then remove them -for D in /tmp /var/run /var/lock -do - if [ -f $D/.clean ] - then - which stat >/dev/null 2>&1 && cleanuid="$(stat -c %u $D/.clean)" - # Poor's man stat %u, since stat (and /usr) might not be - # available in some bootup stages - [ "$cleanuid" ] || cleanuid="$(find $D/.clean -printf %U)" - [ "$cleanuid" ] || { log_failure_msg "bootclean: Could not stat '$D/.clean'." ; exit 1 ; } - if [ "$cleanuid" -ne 0 ] - then - rm -f $D/.clean || { log_failure_msg "bootclean: Could not delete '$D/.clean'." ; exit 1 ; } - fi - fi -done - -[ -f /tmp/.clean ] && [ -f /var/run/.clean ] && [ -f /var/lock/.clean ] && { log_end_msg 0 ; exit 0 ; } - -ES=0 -[ -d /tmp ] && ! [ -f /tmp/.clean ] && { clean_tmp || ES=1 ; } -[ -d /var/run ] && ! [ -f /var/run/.clean ] && { clean_run || ES=1 ; } -[ -d /var/lock ] && ! [ -f /var/lock/.clean ] && { clean_lock || ES=1 ; } -log_end_msg $ES -exit $ES diff --git a/beagle/debian-rfs/lib/init/mount-functions.sh b/beagle/debian-rfs/lib/init/mount-functions.sh deleted file mode 100644 index 007d127..0000000 --- a/beagle/debian-rfs/lib/init/mount-functions.sh +++ /dev/null @@ -1,165 +0,0 @@ -# -# Functions used by several mount* scripts in initscripts package -# -# Sourcer must source /lib/lsb/init-functions.sh - -# $1: directory -is_empty_dir() { - for FILE in $1/* $1/.* - do - case "$FILE" in - "$1/.*") return 0 ;; - "$1/*"|"$1/."|"$1/..") continue ;; - *) return 1 ;; - esac - done - return 0 -} - - -selinux_enabled () { - which selinuxenabled >/dev/null 2>&1 && selinuxenabled -} - - -# Called before mtab is writable to mount kernel and device file systems. -# $1: file system type -# $2: alternative file system type (or empty string if none) -# $3: mount point -# $4: mount device name -# $5... : extra mount program options -domount () { - MTPT="$3" - KERNEL="$(uname -s)" - # Figure out filesystem type - FSTYPE= - if [ "$1" = proc ] - then - case "$KERNEL" in - Linux|GNU) FSTYPE=proc ;; - *FreeBSD) FSTYPE=linprocfs ;; - *) FSTYPE=procfs ;; - esac - elif [ "$1" = tmpfs ] - then # always accept tmpfs, to mount /lib/init/rw before /proc - FSTYPE=$1 - elif grep -E -qs "$1\$" /proc/filesystems - then - FSTYPE=$1 - elif grep -E -qs "$2\$" /proc/filesystems - then - FSTYPE=$2 - fi - - if [ ! "$FSTYPE" ] - then - if [ "$2" ] - then - log_warning_msg "Filesystem types '$1' and '$2' are not supported. Skipping mount." - else - log_warning_msg "Filesystem type '$1' is not supported. Skipping mount." - fi - return - fi - - # We give file system type as device name if not specified as - # an argument - if [ "$4" ] ; then - DEVNAME=$4 - else - DEVNAME=$FSTYPE - fi - - # Get the options from /etc/fstab. - OPTS= - if [ -f /etc/fstab ] - then - exec 9<&0 </etc/fstab - - while read TAB_DEV TAB_MTPT TAB_FSTYPE TAB_OPTS TAB_REST - do - case "$TAB_DEV" in (""|\#*) continue ;; esac - [ "$MTPT" = "$TAB_MTPT" ] || continue - [ "$FSTYPE" = "$TAB_FSTYPE" ] || continue - case "$TAB_OPTS" in - noauto|*,noauto|noauto,*|*,noauto,*) - exec 0<&9 9<&- - return - ;; - ?*) - OPTS="-o$TAB_OPTS" - ;; - esac - break - done - - exec 0<&9 9<&- - fi - - if [ ! -d "$MTPT" ] - then - log_warning_msg "Mount point '$MTPT' does not exist. Skipping mount." - return - fi - - if mountpoint -q "$MTPT" - then - return # Already mounted - fi - - if [ "$VERBOSE" != "no" ]; then - is_empty_dir "$MTPT" >/dev/null 2>&1 || log_warning_msg "Files under mount point '$MTPT' will be hidden." - fi - mount -n -t $FSTYPE $5 $OPTS $DEVNAME $MTPT - if [ "$FSTYPE" = "tmpfs" -a -x /sbin/restorecon ]; then - /sbin/restorecon $MTPT - fi -} - -# -# Preserve /var/run and /var/lock mountpoints -# -pre_mountall () -{ - # We may end up mounting something over top of /var, either directly - # or because /var is a symlink to something that's mounted. So keep - # copies of the /var/run and /var/lock mounts elsewhere on the root - # filesystem so they can be moved back. - if [ yes = "$RAMRUN" ] ; then - mkdir /lib/init/rw/var.run - mount -n --bind /var/run /lib/init/rw/var.run - fi - if [ yes = "$RAMLOCK" ] ; then - mkdir /lib/init/rw/var.lock - mount -n --bind /var/lock /lib/init/rw/var.lock - fi -} - -# -# Restore /var/run and /var/lock mountpoints if something was mounted -# as /var/. Avoid mounting them back over themselves if nothing was -# mounted as /var/ by checking if /var/run/ and /var/lock/ are still -# mount points. Enabling RAMRUN and RAMLOCK while listing /var/run or -# /var/lock in /etc/fstab is not supported. -# -post_mountall () -{ - if [ yes = "$RAMRUN" ] ; then - [ -d /var/run ] || mkdir /var/run - if mountpoint -q /var/run ; then - umount /lib/init/rw/var.run - else - mount -n --move /lib/init/rw/var.run /var/run - fi - rmdir /lib/init/rw/var.run - fi - if [ yes = "$RAMLOCK" ] ; then - [ -d /var/lock ] || mkdir /var/lock - if mountpoint -q /var/lock ; then - umount /lib/init/rw/var.lock - else - mount -n --move /lib/init/rw/var.lock /var/lock - fi - rmdir /lib/init/rw/var.lock - fi -} diff --git a/beagle/debian-rfs/lib/init/splash-functions-base b/beagle/debian-rfs/lib/init/splash-functions-base deleted file mode 100644 index 8319dab..0000000 --- a/beagle/debian-rfs/lib/init/splash-functions-base +++ /dev/null @@ -1,93 +0,0 @@ -# This script contains hooks to allow init scripts to control -# a splash program during boot and shutdown. -# -# To override these, provide a /lib/init/splash-functions scripts -# with new functions (it is sourced at the end of this file) -# -# Note that scripts have a number of constraints: -# 1) Should avoid using any binaries not found in the initramfs so that -# the same hooks can be used there. -# 2) This also means that bashisms can't be used. -# 3) Scripts must work when running under "set -e". -# 4) "local" should be used to avoid overwriting global variables. - - -# Detects whether a splash is running -splash_running() { return 1; } - -# Tells the splash to quit -splash_stop() { return 0; } - -# Tells the splash to start if not already running -splash_start() { return 1; } - -# Tells the splash the current boot/shutdown progress -# $1 contains the progress as a percentage value between -100 and 100 -# Positive values indicate boot progress -# Negative values indicate shutdown progress -splash_progress() -{ - local progress tmp - progress="$1" - - splash_running || return 0 - - # Sanity check step 1 - must match ^-[0-9]*$ - tmp="$progress" - - # Strip trailing numbers - while [ "${tmp%[0-9]}" != "$tmp" ]; do - tmp="${tmp%[0-9]}" - done - - # Now "-" or no characters should remain - if [ -n "$tmp" ] && [ "$tmp" != "-" ]; then - return 1 - fi - - # Sanity check step 2 - check for values >= -100 and <= 100 - if [ "$progress" != "${progress#-}" ]; then - # Negative value - if [ "$progress" -lt -100 ]; then - return 1 - fi - else - # Positive value - if [ "$progress" -gt 100 ]; then - return 1 - fi - fi - - # Sanity checks passed - custom_splash_progress "$progress" || return 1 - return 0 -} - -# Customizations should replace this function instead of splash_progress above -custom_splash_progress() { return 0; } - - -# Tells the splash that a task which may take an unknown amount of -# time has started (such as a fsck). This is useful to make sure the -# splash doesn't time out and to give visual feedback to the user. -splash_start_indefinite() { return 0; } - -# Tells the splash that an indefinite task is done -splash_stop_indefinite() { return 0; } - -# Gets user input from a splash -# $1 contains the text for the user prompt -# $2 describes the type of input: -# regular = regular input, e.g. a user name -# password = input which should not be echoed to screen, e.g. a password -# enter = A "press enter to continue" type of prompt -# -# Returns 1 if no user input is possible -# Should be called with an alternative non-splash input fallback: -# INPUT="$(splash_user_input "Enter password:" password)" || \ -# INPUT="$(manual_method)" -splash_user_input() { return 1; } - -# Allow these functions to be overridden with custom scripts. This is -# the official API hook. -if [ -e /lib/init/splash-functions ] ; then . /lib/init/splash-functions ; fi diff --git a/beagle/debian-rfs/lib/init/swap-functions.sh b/beagle/debian-rfs/lib/init/swap-functions.sh deleted file mode 100644 index 48a2326..0000000 --- a/beagle/debian-rfs/lib/init/swap-functions.sh +++ /dev/null @@ -1,28 +0,0 @@ -# -# Functions that assist in turning on swap. -# - -# $1 is a string used to log the type of swap expected to be activated -swaponagain() { - # - # Execute swapon command again to pick up any swap partitions - # that have shown up since the last swapon. - # - # Ignore 255 status due to swap already being enabled - # - if [ "$NOSWAP" = yes ] - then - [ "$VERBOSE" = no ] || log_warning_msg "Not activating swap as requested via bootoption noswap." - else - if [ "$VERBOSE" = no ] - then - log_action_begin_msg "Activating $1 swap" - swapon -a -e 2>/dev/null || : # Stifle "Device or resource busy" - log_action_end_msg 0 - else - log_daemon_msg "Will now activate $1 swap" - swapon -a -e -v - log_action_end_msg $? - fi - fi -} diff --git a/beagle/debian-rfs/lib/init/usplash-fsck-functions.sh b/beagle/debian-rfs/lib/init/usplash-fsck-functions.sh deleted file mode 100644 index 7235e20..0000000 --- a/beagle/debian-rfs/lib/init/usplash-fsck-functions.sh +++ /dev/null @@ -1,178 +0,0 @@ -# -# Functions for reporting fsck progress in usplash -# -# (C) 2008 Canonical Ltd. -# Author: Martin Pitt <martin.pitt@ubuntu.com> -# - -# convert a "pass cur max" progress triple from fsck to a progress percentage -# based on calc_percent() from e2fsck -fsck_progress_to_percent() { - if [ $1 = 1 ]; then - PERCENT=$(($2 * 70 / $3)) - elif [ $1 = 2 ]; then - PERCENT=$(($2 * 20 / $3 + 70)) - elif [ $1 = 3 ]; then - PERCENT=$(($2 * 2 / $3 + 90)) - elif [ $1 = 4 ]; then - PERCENT=$(($2 * 3 / $3 + 92)) - elif [ $1 = 5 ]; then - PERCENT=$(($2 * 5 / $3 + 95)) - else - PERCENT=100 - fi -} - -# read current fsck status ($PASS, $CUR, $MAX) from file descriptor 4 -# this assumes that fsck was started in the background ($!) -get_fsck_status() -{ - local a b c S - - unset a - # only consider the last line - while true; do - PASS=$a - CUR=$b - MAX=$c - read a b c rest <&4 - if [ -n "$PASS" ] && [ -z "$a" ]; then - break; - fi - - # if we did not read anything, check if the process is still - # actually running, or just waiting to be reaped - if [ -z "$PASS" ] && [ -z "$a" ]; then - S=`ps -o state --no-headers -p $!` || break - [ "$S" != "Z" ] || break - # do not spin while waiting for fsck to start up - sleep 0.1 - fi - done -} - -# Set $NAME to a human readable description of which partitions are currently -# being checked. Set $CLEAN if this is only a routine check on clean -# partitions which can be skipped. -get_checked_names () -{ - local DEVS DUMP LABEL - - FSCKPROCS=$(ps --no-headers -C 'fsck.ext2 fsck.ext3 fsck.ext4 fsck.ext4dev' -o pid,args | grep /dev) - DEVS=$(echo "$FSCKPROCS" | sed 's_^.*\(/dev/[^[:space:]]*\).*$_\1_') - FSCKPIDS=$(echo "$FSCKPROCS" | sed 's_^[[:space:]]*\([[:digit:]]\+\).*$_\1_') - - if [ -z "$DEVS" ]; then - unset NAME - return 0 - fi - - CLEAN=1 - unset NAME - for DEV in $DEVS; do - DUMP=$(dumpe2fs -h $DEV) - if ! echo "$DUMP" | grep -q 'state:[[:space:]]*clean$'; then - unset CLEAN - fi - - LABEL=$(blkid $DEV | sed -rn '/LABEL="([^"]+)"/ { s/^.*LABEL="//; s/".*$//; p }') - [ -z "$NAME" ] || NAME="$NAME, " - if [ -n "$LABEL" ]; then - NAME="$NAME$LABEL ($DEV)" - else - NAME="$NAME$DEV" - fi - done -} - -# Return true if usplash is active -usplash_running() { - if pidof usplash ; then - return 0 - else - return 1 - fi -} - -# Read fsck progress from file $1 and display progress in usplash. -usplash_progress() { - exec 4<$1 - unset CANCEL - ESCAPE=`/bin/echo -ne "\x1B"` - FIRST=1 - PREVPERCENT=0 - - while true; do - sleep 0.5 - get_fsck_status - [ -n "$PASS" ] || break - - fsck_progress_to_percent "$PASS" "$CUR" "$MAX" - - # check if fsck advanced to the next drive - if [ "$PREVPERCENT" -gt "$PERCENT" ]; then - if [ -n "$CANCEL" ]; then - usplash_write "STATUS skip " - else - usplash_write "STATUS " - fi - FIRST=1 - fi - PREVPERCENT=$PERCENT - - # lazy initialization of output and progress report on the first - # progress line that we receive; this avoids starting the output - # for clean or non-ext[234] partitions - if [ -n "$FIRST" ]; then - usplash_write "TIMEOUT 0" - - # show which device is being checked - get_checked_names - [ -n "$NAME" ] || break - - usplash_write "VERBOSE on" - if [ "$CLEAN" ]; then - usplash_write "TEXT Routine check of drives: $NAME..." - usplash_write "TEXT Press ESC to skip" - else - usplash_write "TEXT Unclean shutdown, checking drives:" - usplash_write "TEXT $NAME..." - fi - - unset FIRST - fi - - usplash_write "STATUS $PERCENT% (stage $PASS/5, $CUR/$MAX) " - echo "Checking drive $NAME: $PERCENT% (stage $PASS/5, $CUR/$MAX)" >/dev/console - - # ESC interrupts check for clean drives - if [ -n "$CLEAN" ]; then - if FAIL_NO_USPLASH=1 usplash_write "INPUTCHAR"; then - read ch < /dev/.initramfs/usplash_outfifo - if [ "$ch" = "$ESCAPE" ]; then - kill $FSCKPIDS - CANCEL=1 - continue # there might be more drives, so do not break - fi - fi - fi - done - - if [ -n "$CANCEL" ]; then - usplash_write "STATUS skip " - else - usplash_write "STATUS " - fi - usplash_write "VERBOSE default" - usplash_write "TEXT Drive checks finished." - usplash_write "TIMEOUT 15" - wait %1 # to collect fsck's exit code - EXITCODE=$? - [ -n "$CANCEL" ] && FSCKCODE=0 || FSCKCODE=$EXITCODE - if [ "$FSCKCODE" -gt 1 ]; then - # non-correctable failure which requires sulogin: quit usplash and - # restore stdin/out/err - usplash_write "QUIT" - exec </dev/console >/dev/console 2>/dev/console - fi -} diff --git a/beagle/debian-rfs/lib/init/vars.sh b/beagle/debian-rfs/lib/init/vars.sh deleted file mode 100644 index 1b4769b..0000000 --- a/beagle/debian-rfs/lib/init/vars.sh +++ /dev/null @@ -1,39 +0,0 @@ -# -# Set rcS vars -# - -# Source conffile -if [ -f /etc/default/rcS ]; then - . /etc/default/rcS -fi - -# Parse kernel command line -if [ -r /proc/cmdline ]; then - for ARG in $(cat /proc/cmdline); do - case $ARG in - - # check for bootoption 'noswap' and do not activate swap - # partitions/files when it is set. - noswap) - NOSWAP=yes - break - ;; - - # Accept the same 'quiet' option as the kernel, but only - # during boot and shutdown. Only use this rule when the - # variables set by init.d/rc is present. - quiet) - if [ "$RUNLEVEL" ] && [ "$PREVLEVEL" ] ; then - VERBOSE="no" - fi - break - ;; - esac - done -fi - -# But allow both rcS and the kernel options 'quiet' to be overrided -# when INIT_VERBOSE=yes is used as well. -if [ "$INIT_VERBOSE" ] ; then - VERBOSE="$INIT_VERBOSE" -fi diff --git a/beagle/debian-rfs/lib/ld-2.11.2.so b/beagle/debian-rfs/lib/ld-2.11.2.so Binary files differdeleted file mode 100755 index 9cb4009..0000000 --- a/beagle/debian-rfs/lib/ld-2.11.2.so +++ /dev/null diff --git a/beagle/debian-rfs/lib/ld-linux.so.3 b/beagle/debian-rfs/lib/ld-linux.so.3 deleted file mode 120000 index e165495..0000000 --- a/beagle/debian-rfs/lib/ld-linux.so.3 +++ /dev/null @@ -1 +0,0 @@ -ld-2.11.2.so
\ No newline at end of file diff --git a/beagle/debian-rfs/lib/libBrokenLocale-2.11.2.so b/beagle/debian-rfs/lib/libBrokenLocale-2.11.2.so Binary files differdeleted file mode 100644 index 47b09bf..0000000 --- a/beagle/debian-rfs/lib/libBrokenLocale-2.11.2.so +++ /dev/null diff --git a/beagle/debian-rfs/lib/libBrokenLocale.so.1 b/beagle/debian-rfs/lib/libBrokenLocale.so.1 deleted file mode 120000 index 3625f19..0000000 --- a/beagle/debian-rfs/lib/libBrokenLocale.so.1 +++ /dev/null @@ -1 +0,0 @@ -libBrokenLocale-2.11.2.so
\ No newline at end of file diff --git a/beagle/debian-rfs/lib/libSegFault.so b/beagle/debian-rfs/lib/libSegFault.so Binary files differdeleted file mode 100644 index 6a6eb31..0000000 --- a/beagle/debian-rfs/lib/libSegFault.so +++ /dev/null diff --git a/beagle/debian-rfs/lib/libacl.so.1 b/beagle/debian-rfs/lib/libacl.so.1 deleted file mode 120000 index 09bf057..0000000 --- a/beagle/debian-rfs/lib/libacl.so.1 +++ /dev/null @@ -1 +0,0 @@ -libacl.so.1.1.0
\ No newline at end of file diff --git a/beagle/debian-rfs/lib/libacl.so.1.1.0 b/beagle/debian-rfs/lib/libacl.so.1.1.0 Binary files differdeleted file mode 100644 index 2d829c0..0000000 --- a/beagle/debian-rfs/lib/libacl.so.1.1.0 +++ /dev/null diff --git a/beagle/debian-rfs/lib/libanl-2.11.2.so b/beagle/debian-rfs/lib/libanl-2.11.2.so Binary files differdeleted file mode 100644 index 76ebc70..0000000 --- a/beagle/debian-rfs/lib/libanl-2.11.2.so +++ /dev/null diff --git a/beagle/debian-rfs/lib/libanl.so.1 b/beagle/debian-rfs/lib/libanl.so.1 deleted file mode 120000 index b4ba076..0000000 --- a/beagle/debian-rfs/lib/libanl.so.1 +++ /dev/null @@ -1 +0,0 @@ -libanl-2.11.2.so
\ No newline at end of file diff --git a/beagle/debian-rfs/lib/libattr.so.1 b/beagle/debian-rfs/lib/libattr.so.1 deleted file mode 120000 index 3bf0788..0000000 --- a/beagle/debian-rfs/lib/libattr.so.1 +++ /dev/null @@ -1 +0,0 @@ -libattr.so.1.1.0
\ No newline at end of file diff --git a/beagle/debian-rfs/lib/libattr.so.1.1.0 b/beagle/debian-rfs/lib/libattr.so.1.1.0 Binary files differdeleted file mode 100644 index 3d7238c..0000000 --- a/beagle/debian-rfs/lib/libattr.so.1.1.0 +++ /dev/null diff --git a/beagle/debian-rfs/lib/libblkid.so.1 b/beagle/debian-rfs/lib/libblkid.so.1 deleted file mode 120000 index e4f69c7..0000000 --- a/beagle/debian-rfs/lib/libblkid.so.1 +++ /dev/null @@ -1 +0,0 @@ -libblkid.so.1.1.0
\ No newline at end of file diff --git a/beagle/debian-rfs/lib/libblkid.so.1.1.0 b/beagle/debian-rfs/lib/libblkid.so.1.1.0 Binary files differdeleted file mode 100644 index c89d95f..0000000 --- a/beagle/debian-rfs/lib/libblkid.so.1.1.0 +++ /dev/null diff --git a/beagle/debian-rfs/lib/libbz2.so.1 b/beagle/debian-rfs/lib/libbz2.so.1 deleted file mode 120000 index e743541..0000000 --- a/beagle/debian-rfs/lib/libbz2.so.1 +++ /dev/null @@ -1 +0,0 @@ -libbz2.so.1.0.4
\ No newline at end of file diff --git a/beagle/debian-rfs/lib/libbz2.so.1.0 b/beagle/debian-rfs/lib/libbz2.so.1.0 deleted file mode 120000 index e743541..0000000 --- a/beagle/debian-rfs/lib/libbz2.so.1.0 +++ /dev/null @@ -1 +0,0 @@ -libbz2.so.1.0.4
\ No newline at end of file diff --git a/beagle/debian-rfs/lib/libbz2.so.1.0.4 b/beagle/debian-rfs/lib/libbz2.so.1.0.4 Binary files differdeleted file mode 100644 index 9f86dd3..0000000 --- a/beagle/debian-rfs/lib/libbz2.so.1.0.4 +++ /dev/null diff --git a/beagle/debian-rfs/lib/libc-2.11.2.so b/beagle/debian-rfs/lib/libc-2.11.2.so Binary files differdeleted file mode 100755 index ab4dad3..0000000 --- a/beagle/debian-rfs/lib/libc-2.11.2.so +++ /dev/null diff --git a/beagle/debian-rfs/lib/libc.so.6 b/beagle/debian-rfs/lib/libc.so.6 deleted file mode 120000 index 9aef9e9..0000000 --- a/beagle/debian-rfs/lib/libc.so.6 +++ /dev/null @@ -1 +0,0 @@ -libc-2.11.2.so
\ No newline at end of file diff --git a/beagle/debian-rfs/lib/libcidn-2.11.2.so b/beagle/debian-rfs/lib/libcidn-2.11.2.so Binary files differdeleted file mode 100644 index 2386326..0000000 --- a/beagle/debian-rfs/lib/libcidn-2.11.2.so +++ /dev/null diff --git a/beagle/debian-rfs/lib/libcidn.so.1 b/beagle/debian-rfs/lib/libcidn.so.1 deleted file mode 120000 index b4959ee..0000000 --- a/beagle/debian-rfs/lib/libcidn.so.1 +++ /dev/null @@ -1 +0,0 @@ -libcidn-2.11.2.so
\ No newline at end of file diff --git a/beagle/debian-rfs/lib/libcom_err.so.2 b/beagle/debian-rfs/lib/libcom_err.so.2 deleted file mode 120000 index e989efb..0000000 --- a/beagle/debian-rfs/lib/libcom_err.so.2 +++ /dev/null @@ -1 +0,0 @@ -libcom_err.so.2.1
\ No newline at end of file diff --git a/beagle/debian-rfs/lib/libcom_err.so.2.1 b/beagle/debian-rfs/lib/libcom_err.so.2.1 Binary files differdeleted file mode 100644 index b60157e..0000000 --- a/beagle/debian-rfs/lib/libcom_err.so.2.1 +++ /dev/null diff --git a/beagle/debian-rfs/lib/libcrypt-2.11.2.so b/beagle/debian-rfs/lib/libcrypt-2.11.2.so Binary files differdeleted file mode 100644 index fca4e7c..0000000 --- a/beagle/debian-rfs/lib/libcrypt-2.11.2.so +++ /dev/null diff --git a/beagle/debian-rfs/lib/libcrypt.so.1 b/beagle/debian-rfs/lib/libcrypt.so.1 deleted file mode 120000 index 3fe42b3..0000000 --- a/beagle/debian-rfs/lib/libcrypt.so.1 +++ /dev/null @@ -1 +0,0 @@ -libcrypt-2.11.2.so
\ No newline at end of file diff --git a/beagle/debian-rfs/lib/libdl-2.11.2.so b/beagle/debian-rfs/lib/libdl-2.11.2.so Binary files differdeleted file mode 100644 index 63339b2..0000000 --- a/beagle/debian-rfs/lib/libdl-2.11.2.so +++ /dev/null diff --git a/beagle/debian-rfs/lib/libdl.so.2 b/beagle/debian-rfs/lib/libdl.so.2 deleted file mode 120000 index 30b67f7..0000000 --- a/beagle/debian-rfs/lib/libdl.so.2 +++ /dev/null @@ -1 +0,0 @@ -libdl-2.11.2.so
\ No newline at end of file diff --git a/beagle/debian-rfs/lib/libe2p.so.2 b/beagle/debian-rfs/lib/libe2p.so.2 deleted file mode 120000 index 177bc5c..0000000 --- a/beagle/debian-rfs/lib/libe2p.so.2 +++ /dev/null @@ -1 +0,0 @@ -libe2p.so.2.3
\ No newline at end of file diff --git a/beagle/debian-rfs/lib/libe2p.so.2.3 b/beagle/debian-rfs/lib/libe2p.so.2.3 Binary files differdeleted file mode 100644 index 70beb4d..0000000 --- a/beagle/debian-rfs/lib/libe2p.so.2.3 +++ /dev/null diff --git a/beagle/debian-rfs/lib/libext2fs.so.2 b/beagle/debian-rfs/lib/libext2fs.so.2 deleted file mode 120000 index 60d5fb9..0000000 --- a/beagle/debian-rfs/lib/libext2fs.so.2 +++ /dev/null @@ -1 +0,0 @@ -libext2fs.so.2.4
\ No newline at end of file diff --git a/beagle/debian-rfs/lib/libext2fs.so.2.4 b/beagle/debian-rfs/lib/libext2fs.so.2.4 Binary files differdeleted file mode 100644 index 5991885..0000000 --- a/beagle/debian-rfs/lib/libext2fs.so.2.4 +++ /dev/null diff --git a/beagle/debian-rfs/lib/libgcc_s.so.1 b/beagle/debian-rfs/lib/libgcc_s.so.1 Binary files differdeleted file mode 100644 index 32b6825..0000000 --- a/beagle/debian-rfs/lib/libgcc_s.so.1 +++ /dev/null diff --git a/beagle/debian-rfs/lib/libm-2.11.2.so b/beagle/debian-rfs/lib/libm-2.11.2.so Binary files differdeleted file mode 100644 index cce0caa..0000000 --- a/beagle/debian-rfs/lib/libm-2.11.2.so +++ /dev/null diff --git a/beagle/debian-rfs/lib/libm.so.6 b/beagle/debian-rfs/lib/libm.so.6 deleted file mode 120000 index c1c0ce0..0000000 --- a/beagle/debian-rfs/lib/libm.so.6 +++ /dev/null @@ -1 +0,0 @@ -libm-2.11.2.so
\ No newline at end of file diff --git a/beagle/debian-rfs/lib/libmemusage.so b/beagle/debian-rfs/lib/libmemusage.so Binary files differdeleted file mode 100644 index 6134b00..0000000 --- a/beagle/debian-rfs/lib/libmemusage.so +++ /dev/null diff --git a/beagle/debian-rfs/lib/libncurses.so.5 b/beagle/debian-rfs/lib/libncurses.so.5 deleted file mode 120000 index 89ed099..0000000 --- a/beagle/debian-rfs/lib/libncurses.so.5 +++ /dev/null @@ -1 +0,0 @@ -libncurses.so.5.7
\ No newline at end of file diff --git a/beagle/debian-rfs/lib/libncurses.so.5.7 b/beagle/debian-rfs/lib/libncurses.so.5.7 Binary files differdeleted file mode 100644 index bef110c..0000000 --- a/beagle/debian-rfs/lib/libncurses.so.5.7 +++ /dev/null diff --git a/beagle/debian-rfs/lib/libnsl-2.11.2.so b/beagle/debian-rfs/lib/libnsl-2.11.2.so Binary files differdeleted file mode 100644 index d8189c9..0000000 --- a/beagle/debian-rfs/lib/libnsl-2.11.2.so +++ /dev/null diff --git a/beagle/debian-rfs/lib/libnsl.so.1 b/beagle/debian-rfs/lib/libnsl.so.1 deleted file mode 120000 index 56f2a34..0000000 --- a/beagle/debian-rfs/lib/libnsl.so.1 +++ /dev/null @@ -1 +0,0 @@ -libnsl-2.11.2.so
\ No newline at end of file diff --git a/beagle/debian-rfs/lib/libnss_compat-2.11.2.so b/beagle/debian-rfs/lib/libnss_compat-2.11.2.so Binary files differdeleted file mode 100644 index 18ba671..0000000 --- a/beagle/debian-rfs/lib/libnss_compat-2.11.2.so +++ /dev/null diff --git a/beagle/debian-rfs/lib/libnss_compat.so.2 b/beagle/debian-rfs/lib/libnss_compat.so.2 deleted file mode 120000 index 1378d78..0000000 --- a/beagle/debian-rfs/lib/libnss_compat.so.2 +++ /dev/null @@ -1 +0,0 @@ -libnss_compat-2.11.2.so
\ No newline at end of file diff --git a/beagle/debian-rfs/lib/libnss_dns-2.11.2.so b/beagle/debian-rfs/lib/libnss_dns-2.11.2.so Binary files differdeleted file mode 100644 index 35898f4..0000000 --- a/beagle/debian-rfs/lib/libnss_dns-2.11.2.so +++ /dev/null diff --git a/beagle/debian-rfs/lib/libnss_dns.so.2 b/beagle/debian-rfs/lib/libnss_dns.so.2 deleted file mode 120000 index 870d4ad..0000000 --- a/beagle/debian-rfs/lib/libnss_dns.so.2 +++ /dev/null @@ -1 +0,0 @@ -libnss_dns-2.11.2.so
\ No newline at end of file diff --git a/beagle/debian-rfs/lib/libnss_files-2.11.2.so b/beagle/debian-rfs/lib/libnss_files-2.11.2.so Binary files differdeleted file mode 100644 index bb5b63f..0000000 --- a/beagle/debian-rfs/lib/libnss_files-2.11.2.so +++ /dev/null diff --git a/beagle/debian-rfs/lib/libnss_files.so.2 b/beagle/debian-rfs/lib/libnss_files.so.2 deleted file mode 120000 index 88feeed..0000000 --- a/beagle/debian-rfs/lib/libnss_files.so.2 +++ /dev/null @@ -1 +0,0 @@ -libnss_files-2.11.2.so
\ No newline at end of file diff --git a/beagle/debian-rfs/lib/libnss_hesiod-2.11.2.so b/beagle/debian-rfs/lib/libnss_hesiod-2.11.2.so Binary files differdeleted file mode 100644 index ede2702..0000000 --- a/beagle/debian-rfs/lib/libnss_hesiod-2.11.2.so +++ /dev/null diff --git a/beagle/debian-rfs/lib/libnss_hesiod.so.2 b/beagle/debian-rfs/lib/libnss_hesiod.so.2 deleted file mode 120000 index 831743f..0000000 --- a/beagle/debian-rfs/lib/libnss_hesiod.so.2 +++ /dev/null @@ -1 +0,0 @@ -libnss_hesiod-2.11.2.so
\ No newline at end of file diff --git a/beagle/debian-rfs/lib/libnss_nis-2.11.2.so b/beagle/debian-rfs/lib/libnss_nis-2.11.2.so Binary files differdeleted file mode 100644 index 70b6c1d..0000000 --- a/beagle/debian-rfs/lib/libnss_nis-2.11.2.so +++ /dev/null diff --git a/beagle/debian-rfs/lib/libnss_nis.so.2 b/beagle/debian-rfs/lib/libnss_nis.so.2 deleted file mode 120000 index 4b2a02a..0000000 --- a/beagle/debian-rfs/lib/libnss_nis.so.2 +++ /dev/null @@ -1 +0,0 @@ -libnss_nis-2.11.2.so
\ No newline at end of file diff --git a/beagle/debian-rfs/lib/libnss_nisplus-2.11.2.so b/beagle/debian-rfs/lib/libnss_nisplus-2.11.2.so Binary files differdeleted file mode 100644 index fa9e4cd..0000000 --- a/beagle/debian-rfs/lib/libnss_nisplus-2.11.2.so +++ /dev/null diff --git a/beagle/debian-rfs/lib/libnss_nisplus.so.2 b/beagle/debian-rfs/lib/libnss_nisplus.so.2 deleted file mode 120000 index 48aeb6d..0000000 --- a/beagle/debian-rfs/lib/libnss_nisplus.so.2 +++ /dev/null @@ -1 +0,0 @@ -libnss_nisplus-2.11.2.so
\ No newline at end of file diff --git a/beagle/debian-rfs/lib/libpam.so.0 b/beagle/debian-rfs/lib/libpam.so.0 deleted file mode 120000 index b8b4a0c..0000000 --- a/beagle/debian-rfs/lib/libpam.so.0 +++ /dev/null @@ -1 +0,0 @@ -libpam.so.0.82.2
\ No newline at end of file diff --git a/beagle/debian-rfs/lib/libpam.so.0.82.2 b/beagle/debian-rfs/lib/libpam.so.0.82.2 Binary files differdeleted file mode 100644 index 40f3194..0000000 --- a/beagle/debian-rfs/lib/libpam.so.0.82.2 +++ /dev/null diff --git a/beagle/debian-rfs/lib/libpam_misc.so.0 b/beagle/debian-rfs/lib/libpam_misc.so.0 deleted file mode 120000 index c5922dc..0000000 --- a/beagle/debian-rfs/lib/libpam_misc.so.0 +++ /dev/null @@ -1 +0,0 @@ -libpam_misc.so.0.82.0
\ No newline at end of file diff --git a/beagle/debian-rfs/lib/libpam_misc.so.0.82.0 b/beagle/debian-rfs/lib/libpam_misc.so.0.82.0 Binary files differdeleted file mode 100644 index 0bc8de1..0000000 --- a/beagle/debian-rfs/lib/libpam_misc.so.0.82.0 +++ /dev/null diff --git a/beagle/debian-rfs/lib/libpamc.so.0 b/beagle/debian-rfs/lib/libpamc.so.0 deleted file mode 120000 index ca497ea..0000000 --- a/beagle/debian-rfs/lib/libpamc.so.0 +++ /dev/null @@ -1 +0,0 @@ -libpamc.so.0.82.1
\ No newline at end of file diff --git a/beagle/debian-rfs/lib/libpamc.so.0.82.1 b/beagle/debian-rfs/lib/libpamc.so.0.82.1 Binary files differdeleted file mode 100644 index 2f93a83..0000000 --- a/beagle/debian-rfs/lib/libpamc.so.0.82.1 +++ /dev/null diff --git a/beagle/debian-rfs/lib/libpcprofile.so b/beagle/debian-rfs/lib/libpcprofile.so Binary files differdeleted file mode 100644 index 2c889ad..0000000 --- a/beagle/debian-rfs/lib/libpcprofile.so +++ /dev/null diff --git a/beagle/debian-rfs/lib/libpthread-2.11.2.so b/beagle/debian-rfs/lib/libpthread-2.11.2.so Binary files differdeleted file mode 100755 index eaf1beb..0000000 --- a/beagle/debian-rfs/lib/libpthread-2.11.2.so +++ /dev/null diff --git a/beagle/debian-rfs/lib/libpthread.so.0 b/beagle/debian-rfs/lib/libpthread.so.0 deleted file mode 120000 index d3f105a..0000000 --- a/beagle/debian-rfs/lib/libpthread.so.0 +++ /dev/null @@ -1 +0,0 @@ -libpthread-2.11.2.so
\ No newline at end of file diff --git a/beagle/debian-rfs/lib/libresolv-2.11.2.so b/beagle/debian-rfs/lib/libresolv-2.11.2.so Binary files differdeleted file mode 100644 index 0ba58e0..0000000 --- a/beagle/debian-rfs/lib/libresolv-2.11.2.so +++ /dev/null diff --git a/beagle/debian-rfs/lib/libresolv.so.2 b/beagle/debian-rfs/lib/libresolv.so.2 deleted file mode 120000 index 0e93257..0000000 --- a/beagle/debian-rfs/lib/libresolv.so.2 +++ /dev/null @@ -1 +0,0 @@ -libresolv-2.11.2.so
\ No newline at end of file diff --git a/beagle/debian-rfs/lib/librt-2.11.2.so b/beagle/debian-rfs/lib/librt-2.11.2.so Binary files differdeleted file mode 100644 index c06872b..0000000 --- a/beagle/debian-rfs/lib/librt-2.11.2.so +++ /dev/null diff --git a/beagle/debian-rfs/lib/librt.so.1 b/beagle/debian-rfs/lib/librt.so.1 deleted file mode 120000 index c1b1aab..0000000 --- a/beagle/debian-rfs/lib/librt.so.1 +++ /dev/null @@ -1 +0,0 @@ -librt-2.11.2.so
\ No newline at end of file diff --git a/beagle/debian-rfs/lib/libselinux.so.1 b/beagle/debian-rfs/lib/libselinux.so.1 Binary files differdeleted file mode 100644 index 43be98d..0000000 --- a/beagle/debian-rfs/lib/libselinux.so.1 +++ /dev/null diff --git a/beagle/debian-rfs/lib/libsepol.so.1 b/beagle/debian-rfs/lib/libsepol.so.1 Binary files differdeleted file mode 100644 index c942851..0000000 --- a/beagle/debian-rfs/lib/libsepol.so.1 +++ /dev/null diff --git a/beagle/debian-rfs/lib/libslang.so.2 b/beagle/debian-rfs/lib/libslang.so.2 deleted file mode 120000 index 53c4845..0000000 --- a/beagle/debian-rfs/lib/libslang.so.2 +++ /dev/null @@ -1 +0,0 @@ -libslang.so.2.2.2
\ No newline at end of file diff --git a/beagle/debian-rfs/lib/libslang.so.2.2.2 b/beagle/debian-rfs/lib/libslang.so.2.2.2 Binary files differdeleted file mode 100644 index 709cea7..0000000 --- a/beagle/debian-rfs/lib/libslang.so.2.2.2 +++ /dev/null diff --git a/beagle/debian-rfs/lib/libss.so.2 b/beagle/debian-rfs/lib/libss.so.2 deleted file mode 120000 index 9839f3a..0000000 --- a/beagle/debian-rfs/lib/libss.so.2 +++ /dev/null @@ -1 +0,0 @@ -libss.so.2.0
\ No newline at end of file diff --git a/beagle/debian-rfs/lib/libss.so.2.0 b/beagle/debian-rfs/lib/libss.so.2.0 Binary files differdeleted file mode 100644 index f3c653c..0000000 --- a/beagle/debian-rfs/lib/libss.so.2.0 +++ /dev/null diff --git a/beagle/debian-rfs/lib/libthread_db-1.0.so b/beagle/debian-rfs/lib/libthread_db-1.0.so Binary files differdeleted file mode 100644 index 4177bd0..0000000 --- a/beagle/debian-rfs/lib/libthread_db-1.0.so +++ /dev/null diff --git a/beagle/debian-rfs/lib/libthread_db.so.1 b/beagle/debian-rfs/lib/libthread_db.so.1 deleted file mode 120000 index bc52514..0000000 --- a/beagle/debian-rfs/lib/libthread_db.so.1 +++ /dev/null @@ -1 +0,0 @@ -libthread_db-1.0.so
\ No newline at end of file diff --git a/beagle/debian-rfs/lib/libtic.so.5 b/beagle/debian-rfs/lib/libtic.so.5 deleted file mode 120000 index 0584f3f..0000000 --- a/beagle/debian-rfs/lib/libtic.so.5 +++ /dev/null @@ -1 +0,0 @@ -libtic.so.5.7
\ No newline at end of file diff --git a/beagle/debian-rfs/lib/libtic.so.5.7 b/beagle/debian-rfs/lib/libtic.so.5.7 Binary files differdeleted file mode 100644 index 4d2493e..0000000 --- a/beagle/debian-rfs/lib/libtic.so.5.7 +++ /dev/null diff --git a/beagle/debian-rfs/lib/libutil-2.11.2.so b/beagle/debian-rfs/lib/libutil-2.11.2.so Binary files differdeleted file mode 100644 index 0e678bc..0000000 --- a/beagle/debian-rfs/lib/libutil-2.11.2.so +++ /dev/null diff --git a/beagle/debian-rfs/lib/libutil.so.1 b/beagle/debian-rfs/lib/libutil.so.1 deleted file mode 120000 index 34a2279..0000000 --- a/beagle/debian-rfs/lib/libutil.so.1 +++ /dev/null @@ -1 +0,0 @@ -libutil-2.11.2.so
\ No newline at end of file diff --git a/beagle/debian-rfs/lib/libuuid.so.1 b/beagle/debian-rfs/lib/libuuid.so.1 deleted file mode 120000 index 774fbfe..0000000 --- a/beagle/debian-rfs/lib/libuuid.so.1 +++ /dev/null @@ -1 +0,0 @@ -libuuid.so.1.3.0
\ No newline at end of file diff --git a/beagle/debian-rfs/lib/libuuid.so.1.3.0 b/beagle/debian-rfs/lib/libuuid.so.1.3.0 Binary files differdeleted file mode 100644 index 4af3063..0000000 --- a/beagle/debian-rfs/lib/libuuid.so.1.3.0 +++ /dev/null diff --git a/beagle/debian-rfs/lib/lsb/init-functions b/beagle/debian-rfs/lib/lsb/init-functions deleted file mode 100644 index 0514b0f..0000000 --- a/beagle/debian-rfs/lib/lsb/init-functions +++ /dev/null @@ -1,373 +0,0 @@ -# /lib/lsb/init-functions for Debian -*- shell-script -*- -# -#Copyright (c) 2002-08 Chris Lawrence -#All rights reserved. -# -#Redistribution and use in source and binary forms, with or without -#modification, are permitted provided that the following conditions -#are met: -#1. Redistributions of source code must retain the above copyright -# notice, this list of conditions and the following disclaimer. -#2. Redistributions in binary form must reproduce the above copyright -# notice, this list of conditions and the following disclaimer in the -# documentation and/or other materials provided with the distribution. -#3. Neither the name of the author nor the names of other contributors -# may be used to endorse or promote products derived from this software -# without specific prior written permission. -# -#THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR -#IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -#WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -#ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE -#LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -#CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -#SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR -#BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, -#WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE -#OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, -#EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -start_daemon () { - local force nice pidfile exec i args - force=0 - nice=0 - pidfile=/dev/null - - OPTIND=1 - while getopts fn:p: opt ; do - case "$opt" in - f) force=1;; - n) nice="$OPTARG";; - p) pidfile="$OPTARG";; - esac - done - - shift $(($OPTIND - 1)) - if [ "$1" = '--' ]; then - shift - fi - - exec="$1"; shift - - args="--start --nicelevel $nice --quiet --oknodo" - if [ $force = 1 ]; then - /sbin/start-stop-daemon $args --chdir "$PWD" --startas $exec --pidfile /dev/null -- "$@" - elif [ $pidfile ]; then - /sbin/start-stop-daemon $args --chdir "$PWD" --exec $exec --oknodo --pidfile "$pidfile" -- "$@" - else - /sbin/start-stop-daemon $args --chdir "$PWD" --exec $exec -- "$@" - fi -} - -pidofproc () { - local pidfile line i pids= status specified pid - pidfile= - specified= - - OPTIND=1 - while getopts p: opt ; do - case "$opt" in - p) pidfile="$OPTARG"; specified=1;; - esac - done - shift $(($OPTIND - 1)) - - base=${1##*/} - if [ ! "$specified" ]; then - pidfile="/var/run/$base.pid" - fi - - if [ -n "${pidfile:-}" -a -r "$pidfile" ]; then - read pid < "$pidfile" - if [ -n "${pid:-}" ]; then - if $(kill -0 "${pid:-}" 2> /dev/null); then - echo "$pid" - return 0 - elif ps "${pid:-}" >/dev/null 2>&1; then - echo "$pid" - return 0 # program is running, but not owned by this user - else - return 1 # program is dead and /var/run pid file exists - fi - fi - fi - if [ -x /bin/pidof -a ! "$specified" ]; then - status="0" - /bin/pidof -o %PPID -x $1 || status="$?" - if [ "$status" = 1 ]; then - return 3 # program is not running - fi - return 0 - fi - return 4 # Unable to determine status -} - -# start-stop-daemon uses the same algorithm as "pidofproc" above. -killproc () { - local pidfile sig status base i name_param is_term_sig - pidfile= - name_param= - is_term_sig=no - - OPTIND=1 - while getopts p: opt ; do - case "$opt" in - p) pidfile="$OPTARG";; - esac - done - shift $(($OPTIND - 1)) - - base=${1##*/} - if [ ! $pidfile ]; then - name_param="--name $base --pidfile /var/run/$base.pid" - else - name_param="--pidfile $pidfile" - fi - - sig=$(echo ${2:-} | sed -e 's/^-\(.*\)/\1/') - sig=$(echo $sig | sed -e 's/^SIG\(.*\)/\1/') - if [ -z "$sig" -o "$sig" = 15 -o "$sig" = TERM ]; then - is_term_sig=yes - fi - status=0 - if [ ! "$is_term_sig" = yes ]; then - if [ -n "$sig" ]; then - /sbin/start-stop-daemon --stop --signal "$sig" --quiet $name_param || status="$?" - else - /sbin/start-stop-daemon --stop --quiet $name_param || status="$?" - fi - else - /sbin/start-stop-daemon --stop --quiet --oknodo $name_param || status="$?" - fi - if [ "$status" = 1 ]; then - if [ -n "$sig" ]; then - return 0 - fi - return 3 # program is not running - fi - - if [ "$status" = 0 -a "$is_term_sig" = yes -a "$pidfile" ]; then - pidofproc -p "$pidfile" "$1" >/dev/null || rm -f "$pidfile" - fi - return 0 -} - -# Return LSB status -status_of_proc () { - local pidfile daemon name status - - pidfile= - OPTIND=1 - while getopts p: opt ; do - case "$opt" in - p) pidfile="$OPTARG";; - esac - done - shift $(($OPTIND - 1)) - - if [ -n "$pidfile" ]; then - pidfile="-p $pidfile" - fi - daemon="$1" - name="$2" - - status="0" - pidofproc $pidfile $daemon >/dev/null || status="$?" - if [ "$status" = 0 ]; then - log_success_msg "$name is running" - return 0 - elif [ "$status" = 4 ]; then - log_failure_msg "could not access PID file for $name" - return $status - else - log_failure_msg "$name is not running" - return $status - fi -} - -log_use_fancy_output () { - TPUT=/usr/bin/tput - EXPR=/usr/bin/expr - if [ -t 1 ] && [ "x${TERM:-}" != "x" ] && [ "x${TERM:-}" != "xdumb" ] && [ -x $TPUT ] && [ -x $EXPR ] && $TPUT hpa 60 >/dev/null 2>&1 && $TPUT setaf 1 >/dev/null 2>&1; then - [ -z $FANCYTTY ] && FANCYTTY=1 || true - else - FANCYTTY=0 - fi - case "$FANCYTTY" in - 1|Y|yes|true) true;; - *) false;; - esac -} - -log_success_msg () { - if [ -n "${1:-}" ]; then - log_begin_msg $@ - fi - log_end_msg 0 -} - -log_failure_msg () { - if [ -n "${1:-}" ]; then - log_begin_msg $@ "..." - fi - log_end_msg 1 || true -} - -log_warning_msg () { - if [ -n "${1:-}" ]; then - log_begin_msg $@ "..." - fi - log_end_msg 255 || true -} - -# -# NON-LSB HELPER FUNCTIONS -# -# int get_lsb_header_val (char *scriptpathname, char *key) -get_lsb_header_val () { - if [ ! -f "$1" ] || [ -z "${2:-}" ]; then - return 1 - fi - LSB_S="### BEGIN INIT INFO" - LSB_E="### END INIT INFO" - sed -n "/$LSB_S/,/$LSB_E/ s/# $2: \(.*\)/\1/p" $1 -} - -# int log_begin_message (char *message) -log_begin_msg () { - if [ -z "${1:-}" ]; then - return 1 - fi - echo -n "$@" -} - -# Sample usage: -# log_daemon_msg "Starting GNOME Login Manager" "gdm" -# -# On Debian, would output "Starting GNOME Login Manager: gdm" -# On Ubuntu, would output " * Starting GNOME Login Manager..." -# -# If the second argument is omitted, logging suitable for use with -# log_progress_msg() is used: -# -# log_daemon_msg "Starting remote filesystem services" -# -# On Debian, would output "Starting remote filesystem services:" -# On Ubuntu, would output " * Starting remote filesystem services..." - -log_daemon_msg () { - if [ -z "${1:-}" ]; then - return 1 - fi - log_daemon_msg_pre "$@" - - if [ -z "${2:-}" ]; then - echo -n "$1:" - return - fi - - echo -n "$1: $2" - log_daemon_msg_post "$@" -} - -# #319739 -# -# Per policy docs: -# -# log_daemon_msg "Starting remote file system services" -# log_progress_msg "nfsd"; start-stop-daemon --start --quiet nfsd -# log_progress_msg "mountd"; start-stop-daemon --start --quiet mountd -# log_progress_msg "ugidd"; start-stop-daemon --start --quiet ugidd -# log_end_msg 0 -# -# You could also do something fancy with log_end_msg here based on the -# return values of start-stop-daemon; this is left as an exercise for -# the reader... -# -# On Ubuntu, one would expect log_progress_msg to be a no-op. -log_progress_msg () { - if [ -z "${1:-}" ]; then - return 1 - fi - echo -n " $@" -} - - -# int log_end_message (int exitstatus) -log_end_msg () { - # If no arguments were passed, return - if [ -z "${1:-}" ]; then - return 1 - fi - - retval=$1 - - log_end_msg_pre "$@" - - # Only do the fancy stuff if we have an appropriate terminal - # and if /usr is already mounted - if log_use_fancy_output; then - RED=`$TPUT setaf 1` - YELLOW=`$TPUT setaf 3` - NORMAL=`$TPUT op` - else - RED='' - YELLOW='' - NORMAL='' - fi - - if [ $1 -eq 0 ]; then - echo "." - elif [ $1 -eq 255 ]; then - /bin/echo -e " ${YELLOW}(warning).${NORMAL}" - else - /bin/echo -e " ${RED}failed!${NORMAL}" - fi - log_end_msg_post "$@" - return $retval -} - -log_action_msg () { - echo "$@." -} - -log_action_begin_msg () { - echo -n "$@..." -} - -log_action_cont_msg () { - echo -n "$@..." -} - -log_action_end_msg () { - log_action_end_msg_pre "$@" - if [ -z "${2:-}" ]; then - end="." - else - end=" ($2)." - fi - - if [ $1 -eq 0 ]; then - echo "done${end}" - else - if log_use_fancy_output; then - RED=`$TPUT setaf 1` - NORMAL=`$TPUT op` - /bin/echo -e "${RED}failed${end}${NORMAL}" - else - echo "failed${end}" - fi - fi - log_action_end_msg_post "$@" -} - -# Hooks for /etc/lsb-base-logging.sh -log_daemon_msg_pre () { :; } -log_daemon_msg_post () { :; } -log_end_msg_pre () { :; } -log_end_msg_post () { :; } -log_action_end_msg_pre () { :; } -log_action_end_msg_post () { :; } - -FANCYTTY= -[ -e /etc/lsb-base-logging.sh ] && . /etc/lsb-base-logging.sh || true diff --git a/beagle/debian-rfs/lib/security/pam_access.so b/beagle/debian-rfs/lib/security/pam_access.so Binary files differdeleted file mode 100644 index 011bb11..0000000 --- a/beagle/debian-rfs/lib/security/pam_access.so +++ /dev/null diff --git a/beagle/debian-rfs/lib/security/pam_debug.so b/beagle/debian-rfs/lib/security/pam_debug.so Binary files differdeleted file mode 100644 index 5a0c825..0000000 --- a/beagle/debian-rfs/lib/security/pam_debug.so +++ /dev/null diff --git a/beagle/debian-rfs/lib/security/pam_deny.so b/beagle/debian-rfs/lib/security/pam_deny.so Binary files differdeleted file mode 100644 index af9325f..0000000 --- a/beagle/debian-rfs/lib/security/pam_deny.so +++ /dev/null diff --git a/beagle/debian-rfs/lib/security/pam_echo.so b/beagle/debian-rfs/lib/security/pam_echo.so Binary files differdeleted file mode 100644 index 38c65b9..0000000 --- a/beagle/debian-rfs/lib/security/pam_echo.so +++ /dev/null diff --git a/beagle/debian-rfs/lib/security/pam_env.so b/beagle/debian-rfs/lib/security/pam_env.so Binary files differdeleted file mode 100644 index 4abcf92..0000000 --- a/beagle/debian-rfs/lib/security/pam_env.so +++ /dev/null diff --git a/beagle/debian-rfs/lib/security/pam_exec.so b/beagle/debian-rfs/lib/security/pam_exec.so Binary files differdeleted file mode 100644 index 343f3be..0000000 --- a/beagle/debian-rfs/lib/security/pam_exec.so +++ /dev/null diff --git a/beagle/debian-rfs/lib/security/pam_faildelay.so b/beagle/debian-rfs/lib/security/pam_faildelay.so Binary files differdeleted file mode 100644 index 1a43dc3..0000000 --- a/beagle/debian-rfs/lib/security/pam_faildelay.so +++ /dev/null diff --git a/beagle/debian-rfs/lib/security/pam_filter.so b/beagle/debian-rfs/lib/security/pam_filter.so Binary files differdeleted file mode 100644 index 01f9d29..0000000 --- a/beagle/debian-rfs/lib/security/pam_filter.so +++ /dev/null diff --git a/beagle/debian-rfs/lib/security/pam_ftp.so b/beagle/debian-rfs/lib/security/pam_ftp.so Binary files differdeleted file mode 100644 index ed7a4b4..0000000 --- a/beagle/debian-rfs/lib/security/pam_ftp.so +++ /dev/null diff --git a/beagle/debian-rfs/lib/security/pam_group.so b/beagle/debian-rfs/lib/security/pam_group.so Binary files differdeleted file mode 100644 index 86212c5..0000000 --- a/beagle/debian-rfs/lib/security/pam_group.so +++ /dev/null diff --git a/beagle/debian-rfs/lib/security/pam_issue.so b/beagle/debian-rfs/lib/security/pam_issue.so Binary files differdeleted file mode 100644 index bc4c7c6..0000000 --- a/beagle/debian-rfs/lib/security/pam_issue.so +++ /dev/null diff --git a/beagle/debian-rfs/lib/security/pam_keyinit.so b/beagle/debian-rfs/lib/security/pam_keyinit.so Binary files differdeleted file mode 100644 index 47ea76b..0000000 --- a/beagle/debian-rfs/lib/security/pam_keyinit.so +++ /dev/null diff --git a/beagle/debian-rfs/lib/security/pam_lastlog.so b/beagle/debian-rfs/lib/security/pam_lastlog.so Binary files differdeleted file mode 100644 index fd28ca9..0000000 --- a/beagle/debian-rfs/lib/security/pam_lastlog.so +++ /dev/null diff --git a/beagle/debian-rfs/lib/security/pam_limits.so b/beagle/debian-rfs/lib/security/pam_limits.so Binary files differdeleted file mode 100644 index 9dc61db..0000000 --- a/beagle/debian-rfs/lib/security/pam_limits.so +++ /dev/null diff --git a/beagle/debian-rfs/lib/security/pam_listfile.so b/beagle/debian-rfs/lib/security/pam_listfile.so Binary files differdeleted file mode 100644 index 68b5637..0000000 --- a/beagle/debian-rfs/lib/security/pam_listfile.so +++ /dev/null diff --git a/beagle/debian-rfs/lib/security/pam_localuser.so b/beagle/debian-rfs/lib/security/pam_localuser.so Binary files differdeleted file mode 100644 index 0c6faa3..0000000 --- a/beagle/debian-rfs/lib/security/pam_localuser.so +++ /dev/null diff --git a/beagle/debian-rfs/lib/security/pam_loginuid.so b/beagle/debian-rfs/lib/security/pam_loginuid.so Binary files differdeleted file mode 100644 index d8e9e4b..0000000 --- a/beagle/debian-rfs/lib/security/pam_loginuid.so +++ /dev/null diff --git a/beagle/debian-rfs/lib/security/pam_mail.so b/beagle/debian-rfs/lib/security/pam_mail.so Binary files differdeleted file mode 100644 index 9863147..0000000 --- a/beagle/debian-rfs/lib/security/pam_mail.so +++ /dev/null diff --git a/beagle/debian-rfs/lib/security/pam_mkhomedir.so b/beagle/debian-rfs/lib/security/pam_mkhomedir.so Binary files differdeleted file mode 100644 index a18d480..0000000 --- a/beagle/debian-rfs/lib/security/pam_mkhomedir.so +++ /dev/null diff --git a/beagle/debian-rfs/lib/security/pam_motd.so b/beagle/debian-rfs/lib/security/pam_motd.so Binary files differdeleted file mode 100644 index e202c2b..0000000 --- a/beagle/debian-rfs/lib/security/pam_motd.so +++ /dev/null diff --git a/beagle/debian-rfs/lib/security/pam_namespace.so b/beagle/debian-rfs/lib/security/pam_namespace.so Binary files differdeleted file mode 100644 index f60f4ae..0000000 --- a/beagle/debian-rfs/lib/security/pam_namespace.so +++ /dev/null diff --git a/beagle/debian-rfs/lib/security/pam_nologin.so b/beagle/debian-rfs/lib/security/pam_nologin.so Binary files differdeleted file mode 100644 index e2b5b80..0000000 --- a/beagle/debian-rfs/lib/security/pam_nologin.so +++ /dev/null diff --git a/beagle/debian-rfs/lib/security/pam_permit.so b/beagle/debian-rfs/lib/security/pam_permit.so Binary files differdeleted file mode 100644 index 3b70919..0000000 --- a/beagle/debian-rfs/lib/security/pam_permit.so +++ /dev/null diff --git a/beagle/debian-rfs/lib/security/pam_pwhistory.so b/beagle/debian-rfs/lib/security/pam_pwhistory.so Binary files differdeleted file mode 100644 index 55b0cff..0000000 --- a/beagle/debian-rfs/lib/security/pam_pwhistory.so +++ /dev/null diff --git a/beagle/debian-rfs/lib/security/pam_rhosts.so b/beagle/debian-rfs/lib/security/pam_rhosts.so Binary files differdeleted file mode 100644 index 26c6213..0000000 --- a/beagle/debian-rfs/lib/security/pam_rhosts.so +++ /dev/null diff --git a/beagle/debian-rfs/lib/security/pam_rootok.so b/beagle/debian-rfs/lib/security/pam_rootok.so Binary files differdeleted file mode 100644 index 097b3c0..0000000 --- a/beagle/debian-rfs/lib/security/pam_rootok.so +++ /dev/null diff --git a/beagle/debian-rfs/lib/security/pam_securetty.so b/beagle/debian-rfs/lib/security/pam_securetty.so Binary files differdeleted file mode 100644 index e96d7d0..0000000 --- a/beagle/debian-rfs/lib/security/pam_securetty.so +++ /dev/null diff --git a/beagle/debian-rfs/lib/security/pam_selinux.so b/beagle/debian-rfs/lib/security/pam_selinux.so Binary files differdeleted file mode 100644 index a786114..0000000 --- a/beagle/debian-rfs/lib/security/pam_selinux.so +++ /dev/null diff --git a/beagle/debian-rfs/lib/security/pam_sepermit.so b/beagle/debian-rfs/lib/security/pam_sepermit.so Binary files differdeleted file mode 100644 index 2fe47e5..0000000 --- a/beagle/debian-rfs/lib/security/pam_sepermit.so +++ /dev/null diff --git a/beagle/debian-rfs/lib/security/pam_shells.so b/beagle/debian-rfs/lib/security/pam_shells.so Binary files differdeleted file mode 100644 index 27b4648..0000000 --- a/beagle/debian-rfs/lib/security/pam_shells.so +++ /dev/null diff --git a/beagle/debian-rfs/lib/security/pam_stress.so b/beagle/debian-rfs/lib/security/pam_stress.so Binary files differdeleted file mode 100644 index cc15d6b..0000000 --- a/beagle/debian-rfs/lib/security/pam_stress.so +++ /dev/null diff --git a/beagle/debian-rfs/lib/security/pam_succeed_if.so b/beagle/debian-rfs/lib/security/pam_succeed_if.so Binary files differdeleted file mode 100644 index 54f599a..0000000 --- a/beagle/debian-rfs/lib/security/pam_succeed_if.so +++ /dev/null diff --git a/beagle/debian-rfs/lib/security/pam_tally.so b/beagle/debian-rfs/lib/security/pam_tally.so Binary files differdeleted file mode 100644 index 3f14fae..0000000 --- a/beagle/debian-rfs/lib/security/pam_tally.so +++ /dev/null diff --git a/beagle/debian-rfs/lib/security/pam_tally2.so b/beagle/debian-rfs/lib/security/pam_tally2.so Binary files differdeleted file mode 100644 index 23082bd..0000000 --- a/beagle/debian-rfs/lib/security/pam_tally2.so +++ /dev/null diff --git a/beagle/debian-rfs/lib/security/pam_time.so b/beagle/debian-rfs/lib/security/pam_time.so Binary files differdeleted file mode 100644 index e3cb67d..0000000 --- a/beagle/debian-rfs/lib/security/pam_time.so +++ /dev/null diff --git a/beagle/debian-rfs/lib/security/pam_timestamp.so b/beagle/debian-rfs/lib/security/pam_timestamp.so Binary files differdeleted file mode 100644 index b3e9efc..0000000 --- a/beagle/debian-rfs/lib/security/pam_timestamp.so +++ /dev/null diff --git a/beagle/debian-rfs/lib/security/pam_umask.so b/beagle/debian-rfs/lib/security/pam_umask.so Binary files differdeleted file mode 100644 index 74f1a17..0000000 --- a/beagle/debian-rfs/lib/security/pam_umask.so +++ /dev/null diff --git a/beagle/debian-rfs/lib/security/pam_unix.so b/beagle/debian-rfs/lib/security/pam_unix.so Binary files differdeleted file mode 100644 index a447501..0000000 --- a/beagle/debian-rfs/lib/security/pam_unix.so +++ /dev/null diff --git a/beagle/debian-rfs/lib/security/pam_userdb.so b/beagle/debian-rfs/lib/security/pam_userdb.so Binary files differdeleted file mode 100644 index 4d6b594..0000000 --- a/beagle/debian-rfs/lib/security/pam_userdb.so +++ /dev/null diff --git a/beagle/debian-rfs/lib/security/pam_warn.so b/beagle/debian-rfs/lib/security/pam_warn.so Binary files differdeleted file mode 100644 index e211770..0000000 --- a/beagle/debian-rfs/lib/security/pam_warn.so +++ /dev/null diff --git a/beagle/debian-rfs/lib/security/pam_wheel.so b/beagle/debian-rfs/lib/security/pam_wheel.so Binary files differdeleted file mode 100644 index 700482c..0000000 --- a/beagle/debian-rfs/lib/security/pam_wheel.so +++ /dev/null diff --git a/beagle/debian-rfs/lib/security/pam_xauth.so b/beagle/debian-rfs/lib/security/pam_xauth.so Binary files differdeleted file mode 100644 index 3863177..0000000 --- a/beagle/debian-rfs/lib/security/pam_xauth.so +++ /dev/null diff --git a/beagle/debian-rfs/lib/terminfo/E/Eterm b/beagle/debian-rfs/lib/terminfo/E/Eterm Binary files differdeleted file mode 100644 index f6337a4..0000000 --- a/beagle/debian-rfs/lib/terminfo/E/Eterm +++ /dev/null diff --git a/beagle/debian-rfs/lib/terminfo/E/Eterm-color b/beagle/debian-rfs/lib/terminfo/E/Eterm-color deleted file mode 120000 index 74aebd7..0000000 --- a/beagle/debian-rfs/lib/terminfo/E/Eterm-color +++ /dev/null @@ -1 +0,0 @@ -Eterm
\ No newline at end of file diff --git a/beagle/debian-rfs/lib/terminfo/a/ansi b/beagle/debian-rfs/lib/terminfo/a/ansi Binary files differdeleted file mode 100644 index 6de7978..0000000 --- a/beagle/debian-rfs/lib/terminfo/a/ansi +++ /dev/null diff --git a/beagle/debian-rfs/lib/terminfo/c/cons25 b/beagle/debian-rfs/lib/terminfo/c/cons25 Binary files differdeleted file mode 100644 index 09d473c..0000000 --- a/beagle/debian-rfs/lib/terminfo/c/cons25 +++ /dev/null diff --git a/beagle/debian-rfs/lib/terminfo/c/cons25-debian b/beagle/debian-rfs/lib/terminfo/c/cons25-debian Binary files differdeleted file mode 100644 index b379983..0000000 --- a/beagle/debian-rfs/lib/terminfo/c/cons25-debian +++ /dev/null diff --git a/beagle/debian-rfs/lib/terminfo/c/cygwin b/beagle/debian-rfs/lib/terminfo/c/cygwin Binary files differdeleted file mode 100644 index 3d72886..0000000 --- a/beagle/debian-rfs/lib/terminfo/c/cygwin +++ /dev/null diff --git a/beagle/debian-rfs/lib/terminfo/d/dumb b/beagle/debian-rfs/lib/terminfo/d/dumb Binary files differdeleted file mode 100644 index fd4091a..0000000 --- a/beagle/debian-rfs/lib/terminfo/d/dumb +++ /dev/null diff --git a/beagle/debian-rfs/lib/terminfo/h/hurd b/beagle/debian-rfs/lib/terminfo/h/hurd Binary files differdeleted file mode 100644 index 2d48ecb..0000000 --- a/beagle/debian-rfs/lib/terminfo/h/hurd +++ /dev/null diff --git a/beagle/debian-rfs/lib/terminfo/l/linux b/beagle/debian-rfs/lib/terminfo/l/linux Binary files differdeleted file mode 100644 index 2055b0a..0000000 --- a/beagle/debian-rfs/lib/terminfo/l/linux +++ /dev/null diff --git a/beagle/debian-rfs/lib/terminfo/m/mach b/beagle/debian-rfs/lib/terminfo/m/mach Binary files differdeleted file mode 100644 index 94699c2..0000000 --- a/beagle/debian-rfs/lib/terminfo/m/mach +++ /dev/null diff --git a/beagle/debian-rfs/lib/terminfo/m/mach-bold b/beagle/debian-rfs/lib/terminfo/m/mach-bold Binary files differdeleted file mode 100644 index 1b72fcc..0000000 --- a/beagle/debian-rfs/lib/terminfo/m/mach-bold +++ /dev/null diff --git a/beagle/debian-rfs/lib/terminfo/m/mach-color b/beagle/debian-rfs/lib/terminfo/m/mach-color Binary files differdeleted file mode 100644 index 0e63d81..0000000 --- a/beagle/debian-rfs/lib/terminfo/m/mach-color +++ /dev/null diff --git a/beagle/debian-rfs/lib/terminfo/p/pcansi b/beagle/debian-rfs/lib/terminfo/p/pcansi Binary files differdeleted file mode 100644 index b24fba9..0000000 --- a/beagle/debian-rfs/lib/terminfo/p/pcansi +++ /dev/null diff --git a/beagle/debian-rfs/lib/terminfo/r/rxvt b/beagle/debian-rfs/lib/terminfo/r/rxvt Binary files differdeleted file mode 100644 index 6ba1a8e..0000000 --- a/beagle/debian-rfs/lib/terminfo/r/rxvt +++ /dev/null diff --git a/beagle/debian-rfs/lib/terminfo/r/rxvt-basic b/beagle/debian-rfs/lib/terminfo/r/rxvt-basic Binary files differdeleted file mode 100644 index 1b43804..0000000 --- a/beagle/debian-rfs/lib/terminfo/r/rxvt-basic +++ /dev/null diff --git a/beagle/debian-rfs/lib/terminfo/r/rxvt-m b/beagle/debian-rfs/lib/terminfo/r/rxvt-m deleted file mode 120000 index f61abac..0000000 --- a/beagle/debian-rfs/lib/terminfo/r/rxvt-m +++ /dev/null @@ -1 +0,0 @@ -rxvt-basic
\ No newline at end of file diff --git a/beagle/debian-rfs/lib/terminfo/r/rxvt-unicode b/beagle/debian-rfs/lib/terminfo/r/rxvt-unicode Binary files differdeleted file mode 100644 index 981d9dc..0000000 --- a/beagle/debian-rfs/lib/terminfo/r/rxvt-unicode +++ /dev/null diff --git a/beagle/debian-rfs/lib/terminfo/s/screen b/beagle/debian-rfs/lib/terminfo/s/screen Binary files differdeleted file mode 100644 index de83253..0000000 --- a/beagle/debian-rfs/lib/terminfo/s/screen +++ /dev/null diff --git a/beagle/debian-rfs/lib/terminfo/s/screen-256color b/beagle/debian-rfs/lib/terminfo/s/screen-256color Binary files differdeleted file mode 100644 index 3fff4af..0000000 --- a/beagle/debian-rfs/lib/terminfo/s/screen-256color +++ /dev/null diff --git a/beagle/debian-rfs/lib/terminfo/s/screen-256color-bce b/beagle/debian-rfs/lib/terminfo/s/screen-256color-bce Binary files differdeleted file mode 100644 index 257fd95..0000000 --- a/beagle/debian-rfs/lib/terminfo/s/screen-256color-bce +++ /dev/null diff --git a/beagle/debian-rfs/lib/terminfo/s/screen-bce b/beagle/debian-rfs/lib/terminfo/s/screen-bce Binary files differdeleted file mode 100644 index b8247b1..0000000 --- a/beagle/debian-rfs/lib/terminfo/s/screen-bce +++ /dev/null diff --git a/beagle/debian-rfs/lib/terminfo/s/screen-s b/beagle/debian-rfs/lib/terminfo/s/screen-s Binary files differdeleted file mode 100644 index 907baa1..0000000 --- a/beagle/debian-rfs/lib/terminfo/s/screen-s +++ /dev/null diff --git a/beagle/debian-rfs/lib/terminfo/s/screen-w b/beagle/debian-rfs/lib/terminfo/s/screen-w Binary files differdeleted file mode 100644 index cd3f4b3..0000000 --- a/beagle/debian-rfs/lib/terminfo/s/screen-w +++ /dev/null diff --git a/beagle/debian-rfs/lib/terminfo/s/sun b/beagle/debian-rfs/lib/terminfo/s/sun Binary files differdeleted file mode 100644 index 1976f97..0000000 --- a/beagle/debian-rfs/lib/terminfo/s/sun +++ /dev/null diff --git a/beagle/debian-rfs/lib/terminfo/v/vt100 b/beagle/debian-rfs/lib/terminfo/v/vt100 Binary files differdeleted file mode 100644 index 1a7176d..0000000 --- a/beagle/debian-rfs/lib/terminfo/v/vt100 +++ /dev/null diff --git a/beagle/debian-rfs/lib/terminfo/v/vt102 b/beagle/debian-rfs/lib/terminfo/v/vt102 Binary files differdeleted file mode 100644 index b9a393c..0000000 --- a/beagle/debian-rfs/lib/terminfo/v/vt102 +++ /dev/null diff --git a/beagle/debian-rfs/lib/terminfo/v/vt220 b/beagle/debian-rfs/lib/terminfo/v/vt220 Binary files differdeleted file mode 100644 index b3d4d9f..0000000 --- a/beagle/debian-rfs/lib/terminfo/v/vt220 +++ /dev/null diff --git a/beagle/debian-rfs/lib/terminfo/v/vt52 b/beagle/debian-rfs/lib/terminfo/v/vt52 Binary files differdeleted file mode 100644 index b3f466f..0000000 --- a/beagle/debian-rfs/lib/terminfo/v/vt52 +++ /dev/null diff --git a/beagle/debian-rfs/lib/terminfo/w/wsvt25 b/beagle/debian-rfs/lib/terminfo/w/wsvt25 Binary files differdeleted file mode 100644 index 453853a..0000000 --- a/beagle/debian-rfs/lib/terminfo/w/wsvt25 +++ /dev/null diff --git a/beagle/debian-rfs/lib/terminfo/w/wsvt25m b/beagle/debian-rfs/lib/terminfo/w/wsvt25m Binary files differdeleted file mode 100644 index 5da627b..0000000 --- a/beagle/debian-rfs/lib/terminfo/w/wsvt25m +++ /dev/null diff --git a/beagle/debian-rfs/lib/terminfo/x/xterm b/beagle/debian-rfs/lib/terminfo/x/xterm Binary files differdeleted file mode 100644 index ec28cf0..0000000 --- a/beagle/debian-rfs/lib/terminfo/x/xterm +++ /dev/null diff --git a/beagle/debian-rfs/lib/terminfo/x/xterm-256color b/beagle/debian-rfs/lib/terminfo/x/xterm-256color Binary files differdeleted file mode 100644 index 345939d..0000000 --- a/beagle/debian-rfs/lib/terminfo/x/xterm-256color +++ /dev/null diff --git a/beagle/debian-rfs/lib/terminfo/x/xterm-color b/beagle/debian-rfs/lib/terminfo/x/xterm-color Binary files differdeleted file mode 100644 index fc461db..0000000 --- a/beagle/debian-rfs/lib/terminfo/x/xterm-color +++ /dev/null diff --git a/beagle/debian-rfs/lib/terminfo/x/xterm-debian b/beagle/debian-rfs/lib/terminfo/x/xterm-debian Binary files differdeleted file mode 100644 index ace87d2..0000000 --- a/beagle/debian-rfs/lib/terminfo/x/xterm-debian +++ /dev/null diff --git a/beagle/debian-rfs/lib/terminfo/x/xterm-mono b/beagle/debian-rfs/lib/terminfo/x/xterm-mono Binary files differdeleted file mode 100644 index 9375a8b..0000000 --- a/beagle/debian-rfs/lib/terminfo/x/xterm-mono +++ /dev/null diff --git a/beagle/debian-rfs/lib/terminfo/x/xterm-r5 b/beagle/debian-rfs/lib/terminfo/x/xterm-r5 Binary files differdeleted file mode 100644 index 64449b8..0000000 --- a/beagle/debian-rfs/lib/terminfo/x/xterm-r5 +++ /dev/null diff --git a/beagle/debian-rfs/lib/terminfo/x/xterm-r6 b/beagle/debian-rfs/lib/terminfo/x/xterm-r6 Binary files differdeleted file mode 100644 index 9d22f0c..0000000 --- a/beagle/debian-rfs/lib/terminfo/x/xterm-r6 +++ /dev/null diff --git a/beagle/debian-rfs/lib/terminfo/x/xterm-vt220 b/beagle/debian-rfs/lib/terminfo/x/xterm-vt220 Binary files differdeleted file mode 100644 index 7d9fa35..0000000 --- a/beagle/debian-rfs/lib/terminfo/x/xterm-vt220 +++ /dev/null diff --git a/beagle/debian-rfs/lib/terminfo/x/xterm-xfree86 b/beagle/debian-rfs/lib/terminfo/x/xterm-xfree86 Binary files differdeleted file mode 100644 index 3dd2d9d..0000000 --- a/beagle/debian-rfs/lib/terminfo/x/xterm-xfree86 +++ /dev/null diff --git a/beagle/debian-rfs/lib/udev/hwclock-set b/beagle/debian-rfs/lib/udev/hwclock-set deleted file mode 100755 index 2dcc8ee..0000000 --- a/beagle/debian-rfs/lib/udev/hwclock-set +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/sh -# Reset the System Clock to UTC if the hardware clock from which it -# was copied by the kernel was in localtime. - -dev=$1 - -if [ -f /etc/default/rcS ] ; then - . /etc/default/rcS -fi - -if [ yes != "$UTC" ] ; then - if [ yes = "$BADYEAR" ] ; then - /sbin/hwclock --rtc=$dev --systz --localtime --noadjfile --badyear - else - /sbin/hwclock --rtc=$dev --systz --localtime --noadjfile - fi -fi diff --git a/beagle/debian-rfs/lib/udev/rules.d/85-hwclock.rules b/beagle/debian-rfs/lib/udev/rules.d/85-hwclock.rules deleted file mode 100644 index e1e66e2..0000000 --- a/beagle/debian-rfs/lib/udev/rules.d/85-hwclock.rules +++ /dev/null @@ -1,4 +0,0 @@ -# Reset the System Clock to UTC if the hardware clock from which it was -# copied by the kernel was in localtime. - -KERNEL=="rtc0", RUN+="/lib/udev/hwclock-set $root/$name" |
