diff options
author | Sebastian Schmelzer | 2010-10-04 17:42:02 +0200 |
---|---|---|
committer | Sebastian Schmelzer | 2010-10-04 17:42:02 +0200 |
commit | 6ad6d7707e893016e82eeb75f4f08131d12700e7 (patch) | |
tree | ecad95c5df113890975507d1c02e77634226efc9 /src/config-db | |
parent | fix name resoulution in stage3 (diff) | |
download | core-6ad6d7707e893016e82eeb75f4f08131d12700e7.tar.gz core-6ad6d7707e893016e82eeb75f4f08131d12700e7.tar.xz core-6ad6d7707e893016e82eeb75f4f08131d12700e7.zip |
remove uClibc stuff - part I
Diffstat (limited to 'src/config-db')
-rwxr-xr-x | src/config-db/slxconfig-demuxer | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/config-db/slxconfig-demuxer b/src/config-db/slxconfig-demuxer index b88efeb6..dadd814b 100755 --- a/src/config-db/slxconfig-demuxer +++ b/src/config-db/slxconfig-demuxer @@ -657,17 +657,17 @@ sub writeSystemConfiguration ) ); - # check if uclibc-rootfs in corresponding vendor-OS matches the current + # check if rootfs in corresponding vendor-OS matches the current # version and add a warning if it does not: - my $uclibcVersionPath - = "$openslxConfig{'private-path'}/stage1/$info->{'vendor-os'}->{name}/opt/openslx/uclib-rootfs.version"; - chomp(my $uclibcVersion - = slurpFile($uclibcVersionPath, { failIfMissing => 0 } )); + my $rootfsVersionPath + = "$openslxConfig{'private-path'}/stage1/$info->{'vendor-os'}->{name}/opt/openslx/rootfs.version"; + chomp(my $rootfsVersion + = slurpFile($rootfsVersionPath, { failIfMissing => 0 } )); chomp(my $currVersion = qx{slxversion}); - if ($currVersion !~ m{M$} && $uclibcVersion ne $currVersion) { + if ($currVersion !~ m{M$} && $rootfsVersion ne $currVersion) { warn _tr( - "uclibc-rootfs for system '%s' may not be up-to-date - consider updating the vendor-OS!", - $info->{name}, $uclibcVersion, $currVersion + "eglibc rootfs for system '%s' may not be up-to-date - consider updating the vendor-OS!", + $info->{name}, $rootfsVersion, $currVersion ); } |