summaryrefslogtreecommitdiffstats
path: root/config-db
diff options
context:
space:
mode:
authorOliver Tappe2006-10-23 10:51:39 +0200
committerOliver Tappe2006-10-23 10:51:39 +0200
commita7decfd31fbc242ba307cea06f8f603f2c9a737c (patch)
tree52ff4771abf91781eba6ab348c0558b00a8ff1e8 /config-db
parent* added architecture-independent reimplementation of ldd (diff)
downloadcore-a7decfd31fbc242ba307cea06f8f603f2c9a737c.tar.gz
core-a7decfd31fbc242ba307cea06f8f603f2c9a737c.tar.xz
core-a7decfd31fbc242ba307cea06f8f603f2c9a737c.zip
* removed support for ignoring ld-linux.so as it doesn't make sense
(the loader needs to be copied into the initramfs, too, of course). git-svn-id: http://svn.openslx.org/svn/openslx/trunk@467 95ad53e4-c205-0410-b2fa-d234c58c8868
Diffstat (limited to 'config-db')
-rwxr-xr-xconfig-db/slxldd.pl7
1 files changed, 0 insertions, 7 deletions
diff --git a/config-db/slxldd.pl b/config-db/slxldd.pl
index c39e56fa..ee887e01 100755
--- a/config-db/slxldd.pl
+++ b/config-db/slxldd.pl
@@ -34,11 +34,6 @@ my (
%libInfo,
);
-# array of regexes that match on libraries which shall be ignored:
-my @ignoreLibs = (
- '^ld-linux.*\.so',
-);
-
GetOptions(
'help|?' => \$helpReq,
'root-path=s' => \$rootPath,
@@ -124,8 +119,6 @@ sub addLib
{
my $lib = shift;
- return if grep { $lib =~ m[$_] } @ignoreLibs;
-
if (!exists $libInfo{$lib}) {
push @libs, $lib;
my $libPath;