summaryrefslogtreecommitdiffstats
path: root/src/config-db
diff options
context:
space:
mode:
Diffstat (limited to 'src/config-db')
-rwxr-xr-xsrc/config-db/slxconfig-demuxer16
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
);
}