summaryrefslogtreecommitdiffstats
path: root/initramfs/uclib-rootfs/usr
diff options
context:
space:
mode:
authorDirk von Suchodoletz2010-08-22 14:24:58 +0200
committerDirk von Suchodoletz2010-08-22 14:24:58 +0200
commitaf9978a0e800ac031e1da1d4d7bab7c2113139e3 (patch)
treeef7066788f344a0582b8a1535cc72aa2279bf586 /initramfs/uclib-rootfs/usr
parentPushing new eglibc to start the replacement of old uclib stuff ... (diff)
downloadcore-af9978a0e800ac031e1da1d4d7bab7c2113139e3.tar.gz
core-af9978a0e800ac031e1da1d4d7bab7c2113139e3.tar.xz
core-af9978a0e800ac031e1da1d4d7bab7c2113139e3.zip
...
Diffstat (limited to 'initramfs/uclib-rootfs/usr')
-rwxr-xr-xinitramfs/uclib-rootfs/usr/bin/getent43
-rwxr-xr-xinitramfs/uclib-rootfs/usr/bin/ncurses5-config156
-rwxr-xr-xinitramfs/uclib-rootfs/usr/bin/stracebin173636 -> 0 bytes
-rwxr-xr-xinitramfs/uclib-rootfs/usr/lib/libc.so5
l---------initramfs/uclib-rootfs/usr/lib/libcrypt.so1
l---------initramfs/uclib-rootfs/usr/lib/libdl.so1
l---------initramfs/uclib-rootfs/usr/lib/libm.so1
l---------initramfs/uclib-rootfs/usr/lib/libnsl.so1
l---------initramfs/uclib-rootfs/usr/lib/libpthread.so1
l---------initramfs/uclib-rootfs/usr/lib/libresolv.so1
l---------initramfs/uclib-rootfs/usr/lib/librt.so1
l---------initramfs/uclib-rootfs/usr/lib/libthread_db.so1
l---------initramfs/uclib-rootfs/usr/lib/libutil.so1
-rwxr-xr-xinitramfs/uclib-rootfs/usr/lib/libz.so11
l---------initramfs/uclib-rootfs/usr/sbin/udhcpd1
15 files changed, 0 insertions, 225 deletions
diff --git a/initramfs/uclib-rootfs/usr/bin/getent b/initramfs/uclib-rootfs/usr/bin/getent
deleted file mode 100755
index 30d515b7..00000000
--- a/initramfs/uclib-rootfs/usr/bin/getent
+++ /dev/null
@@ -1,43 +0,0 @@
-#!/bin/sh
-# $Header: /var/cvs/uClibc/extra/scripts/getent,v 1.2 2005/02/02 14:18:01 solar Exp $
-#
-# Closely (not perfectly) emulate the behavior of glibc's getent utility
-#
-#passwd|shadow|group|aliases|hosts|networks|ethers|netgroup|protocols|services|rpc
-# only returns the first match (by design)
-# dns based search is not supported (hosts,networks)
-# case-insensitive matches not supported (ethers; others?)
-# may return false-positives (hosts,protocols,rpc,services,ethers)
-
-export PATH="${PATH}:/bin:/usr/bin"
-
-file="/etc/$1"
-case $1 in
- passwd|group)
- match="^$2:\|^[^:]*:[^:]*:$2:" ;;
- shadow)
- match="^$2:" ;;
- networks|netgroup)
- match="^[[:space:]]*$2\>" ;;
- hosts|protocols|rpc|services|ethers)
- match="\<$2\>" ;;
- aliases)
- match="^[[:space:]]*$2[[:space:]]*:" ;;
- ""|-h|--help)
- echo "USAGE: $0 database [key]"
- exit 0 ;;
- *)
- echo "$0: Unknown database: $1" 1>&2
- exit 1 ;;
-esac
-
-if [ ! -f "$file" ] ; then
- echo "$0: Could not find database file for $1" 1>&2
- exit 1
-fi
-
-if [ $# -eq 1 ] ; then
- exec cat "$file"
-else
- sed "s/#.*//; /$match/q; d" "$file" | grep . || exit 2
-fi
diff --git a/initramfs/uclib-rootfs/usr/bin/ncurses5-config b/initramfs/uclib-rootfs/usr/bin/ncurses5-config
deleted file mode 100755
index bef48cd7..00000000
--- a/initramfs/uclib-rootfs/usr/bin/ncurses5-config
+++ /dev/null
@@ -1,156 +0,0 @@
-#!/bin/sh
-# $Id: ncurses-config.in,v 1.11 2006/10/28 20:22:52 tom Exp $
-##############################################################################
-# Copyright (c) 2006 Free Software Foundation, Inc. #
-# #
-# Permission is hereby granted, free of charge, to any person obtaining a #
-# copy of this software and associated documentation files (the "Software"), #
-# to deal in the Software without restriction, including without limitation #
-# the rights to use, copy, modify, merge, publish, distribute, distribute #
-# with modifications, sublicense, and/or sell copies of the Software, and to #
-# permit persons to whom the Software is furnished to do so, subject to the #
-# following conditions: #
-# #
-# The above copyright notice and this permission notice shall be included in #
-# all copies or substantial portions of the Software. #
-# #
-# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR #
-# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, #
-# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL #
-# THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER #
-# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING #
-# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER #
-# DEALINGS IN THE SOFTWARE. #
-# #
-# Except as contained in this notice, the name(s) of the above copyright #
-# holders shall not be used in advertising or otherwise to promote the sale, #
-# use or other dealings in this Software without prior written #
-# authorization. #
-##############################################################################
-#
-# Author: Thomas E. Dickey, 2006
-
-prefix="/usr"
-exec_prefix="${prefix}"
-
-bindir="${exec_prefix}/bin"
-libdir="/lib"
-datadir="/usr/share"
-mandir="/usr/share/man"
-
-THIS="ncurses"
-
-test $# = 0 && exec /bin/sh $0 --error
-
-while test $# -gt 0; do
- case "$1" in
- -*=*)
- ARG=`echo "$1" | sed 's/[-_a-zA-Z0-9]*=//'`
- ;;
- *)
- ARG=
- ;;
- esac
-
- case "$1" in
- # basic configuration
- --prefix=*)
- prefix="$ARG"
- test -z "$exec_prefix" && exec_prefix="$ARG"
- ;;
- --prefix)
- echo "$prefix"
- ;;
- --exec-prefix=*)
- exec_prefix="$ARG"
- ;;
- --exec-prefix)
- echo "$exec_prefix"
- ;;
- # compile/link
- --cflags)
- INCS=
- if test "${prefix}/include" != /usr/include ; then
- INCS="-I${prefix}/include"
- fi
- if test "" != no ; then
- INCS="$INCS -I${prefix}/include/${THIS}"
- fi
- sed -e 's,^[ ]*,,' -e 's, [ ]*, ,g' -e 's,[ ]*$,,' <<-ENDECHO
- $INCS
-ENDECHO
- ;;
- --libs)
- sed -e 's,^[ ]*,,' -e 's, [ ]*, ,g' -e 's,[ ]*$,,' <<-ENDECHO
- -L${exec_prefix}/lib -l${THIS}
-ENDECHO
- ;;
- # identification
- --version)
- echo "5.6.20061217"
- ;;
- --abi-version)
- echo "5"
- ;;
- --mouse-version)
- echo "1"
- ;;
- # locations
- --bindir)
- echo "${bindir}"
- ;;
- --datadir)
- echo "${datadir}"
- ;;
- --libdir)
- echo "${libdir}"
- ;;
- --mandir)
- echo "${mandir}"
- ;;
- --terminfo)
- echo "/usr/share/terminfo"
- ;;
- --terminfo-dirs)
- echo "/etc/terminfo:/usr/share/terminfo"
- ;;
- --termpath)
- echo ""
- ;;
- # general info
- --help)
- cat <<ENDHELP
-Usage: ${THIS}-config [options]
-
-Options:
- --prefix echos the package-prefix of ${THIS}
- --prefix=ARG sets the package-prefix of ${THIS}
- --exec-prefix echos the executable-prefix of ${THIS}
- --exec-prefix=ARG sets the executable-prefix of ${THIS}
-
- --cflags echos the C compiler flags needed to compile with ${THIS}
- --libs echos the libraries needed to link with ${THIS}
-
- --version echos the release+patchdate version of ${THIS}
- --abi-version echos the ABI version of ${THIS}
- --mouse-version echos the mouse-interface version of ${THIS}
-
- --bindir echos the directory containing ${THIS} programs
- --datadir echos the directory containing ${THIS} data
- --libdir echos the directory containing ${THIS} libraries
- --mandir echos the directory containing ${THIS} manpages
- --terminfo echos the \$TERMINFO terminfo database path
- --terminfo-dirs echos the \$TERMINFO_DIRS directory list
- --termpath echos the \$TERMPATH termcap list
-
- --help prints this message
-ENDHELP
- ;;
- --error|*)
- /bin/sh $0 --help 1>&2
- exit 1
- ;;
- esac
- shift
-done
-# vile:shmode
diff --git a/initramfs/uclib-rootfs/usr/bin/strace b/initramfs/uclib-rootfs/usr/bin/strace
deleted file mode 100755
index 3aec0598..00000000
--- a/initramfs/uclib-rootfs/usr/bin/strace
+++ /dev/null
Binary files differ
diff --git a/initramfs/uclib-rootfs/usr/lib/libc.so b/initramfs/uclib-rootfs/usr/lib/libc.so
deleted file mode 100755
index 32a2e3d9..00000000
--- a/initramfs/uclib-rootfs/usr/lib/libc.so
+++ /dev/null
@@ -1,5 +0,0 @@
-/* GNU ld script
- * Use the shared library, but some functions are only in
- * the static library, so try that secondarily. */
-OUTPUT_FORMAT ( elf32-i386 )
-GROUP ( /usr/lib/uclibc_nonshared.a /lib/libc.so.0 AS_NEEDED ( /lib/ld-uClibc.so.0 ) )
diff --git a/initramfs/uclib-rootfs/usr/lib/libcrypt.so b/initramfs/uclib-rootfs/usr/lib/libcrypt.so
deleted file mode 120000
index 42735716..00000000
--- a/initramfs/uclib-rootfs/usr/lib/libcrypt.so
+++ /dev/null
@@ -1 +0,0 @@
-../../lib/libcrypt.so.0 \ No newline at end of file
diff --git a/initramfs/uclib-rootfs/usr/lib/libdl.so b/initramfs/uclib-rootfs/usr/lib/libdl.so
deleted file mode 120000
index f648150a..00000000
--- a/initramfs/uclib-rootfs/usr/lib/libdl.so
+++ /dev/null
@@ -1 +0,0 @@
-../../lib/libdl.so.0 \ No newline at end of file
diff --git a/initramfs/uclib-rootfs/usr/lib/libm.so b/initramfs/uclib-rootfs/usr/lib/libm.so
deleted file mode 120000
index 8d5c614e..00000000
--- a/initramfs/uclib-rootfs/usr/lib/libm.so
+++ /dev/null
@@ -1 +0,0 @@
-../../lib/libm.so.0 \ No newline at end of file
diff --git a/initramfs/uclib-rootfs/usr/lib/libnsl.so b/initramfs/uclib-rootfs/usr/lib/libnsl.so
deleted file mode 120000
index b4a08661..00000000
--- a/initramfs/uclib-rootfs/usr/lib/libnsl.so
+++ /dev/null
@@ -1 +0,0 @@
-../../lib/libnsl.so.0 \ No newline at end of file
diff --git a/initramfs/uclib-rootfs/usr/lib/libpthread.so b/initramfs/uclib-rootfs/usr/lib/libpthread.so
deleted file mode 120000
index 57f4003c..00000000
--- a/initramfs/uclib-rootfs/usr/lib/libpthread.so
+++ /dev/null
@@ -1 +0,0 @@
-../../lib/libpthread.so.0 \ No newline at end of file
diff --git a/initramfs/uclib-rootfs/usr/lib/libresolv.so b/initramfs/uclib-rootfs/usr/lib/libresolv.so
deleted file mode 120000
index f5b11fcd..00000000
--- a/initramfs/uclib-rootfs/usr/lib/libresolv.so
+++ /dev/null
@@ -1 +0,0 @@
-../../lib/libresolv.so.0 \ No newline at end of file
diff --git a/initramfs/uclib-rootfs/usr/lib/librt.so b/initramfs/uclib-rootfs/usr/lib/librt.so
deleted file mode 120000
index b7dd09d3..00000000
--- a/initramfs/uclib-rootfs/usr/lib/librt.so
+++ /dev/null
@@ -1 +0,0 @@
-../../lib/librt.so.0 \ No newline at end of file
diff --git a/initramfs/uclib-rootfs/usr/lib/libthread_db.so b/initramfs/uclib-rootfs/usr/lib/libthread_db.so
deleted file mode 120000
index e05f68f2..00000000
--- a/initramfs/uclib-rootfs/usr/lib/libthread_db.so
+++ /dev/null
@@ -1 +0,0 @@
-../../lib/libthread_db.so.1 \ No newline at end of file
diff --git a/initramfs/uclib-rootfs/usr/lib/libutil.so b/initramfs/uclib-rootfs/usr/lib/libutil.so
deleted file mode 120000
index 5b103561..00000000
--- a/initramfs/uclib-rootfs/usr/lib/libutil.so
+++ /dev/null
@@ -1 +0,0 @@
-../../lib/libutil.so.0 \ No newline at end of file
diff --git a/initramfs/uclib-rootfs/usr/lib/libz.so b/initramfs/uclib-rootfs/usr/lib/libz.so
deleted file mode 100755
index 97779630..00000000
--- a/initramfs/uclib-rootfs/usr/lib/libz.so
+++ /dev/null
@@ -1,11 +0,0 @@
-/* GNU ld script
- Since Gentoo has critical dynamic libraries in /lib, and the static versions
- in /usr/lib, we need to have a "fake" dynamic lib in /usr/lib, otherwise we
- run into linking problems. This "fake" dynamic lib is a linker script that
- redirects the linker to the real lib. And yes, this works in the cross-
- compiling scenario as the sysroot-ed linker will prepend the real path.
-
- See bug http://bugs.gentoo.org/4411 for more info.
- */
-OUTPUT_FORMAT ( elf32-i386 )
-GROUP ( /lib/libz.so )
diff --git a/initramfs/uclib-rootfs/usr/sbin/udhcpd b/initramfs/uclib-rootfs/usr/sbin/udhcpd
deleted file mode 120000
index f948f1a7..00000000
--- a/initramfs/uclib-rootfs/usr/sbin/udhcpd
+++ /dev/null
@@ -1 +0,0 @@
-../../bin/busybox \ No newline at end of file