diff options
author | Dirk von Suchodoletz | 2011-05-10 12:29:32 +0200 |
---|---|---|
committer | Dirk von Suchodoletz | 2011-05-10 12:29:32 +0200 |
commit | f10ddf9cb91d9f27d8ca88eeaac082c5ce48035f (patch) | |
tree | 23aac13bddb608e26123414fb6402808e2410fba /src/boot-env | |
parent | Repairing ... (diff) | |
download | core-f10ddf9cb91d9f27d8ca88eeaac082c5ce48035f.tar.gz core-f10ddf9cb91d9f27d8ca88eeaac082c5ce48035f.tar.xz core-f10ddf9cb91d9f27d8ca88eeaac082c5ce48035f.zip |
Formal steps to incorporate new distro versions ... (see wiki)
Diffstat (limited to 'src/boot-env')
-rw-r--r-- | src/boot-env/OpenSLX/MakeInitRamFS/Distro/Suse.pm | 3 | ||||
-rw-r--r-- | src/boot-env/OpenSLX/MakeInitRamFS/Distro/Ubuntu.pm | 5 |
2 files changed, 5 insertions, 3 deletions
diff --git a/src/boot-env/OpenSLX/MakeInitRamFS/Distro/Suse.pm b/src/boot-env/OpenSLX/MakeInitRamFS/Distro/Suse.pm index cb106924..ce23f78e 100644 --- a/src/boot-env/OpenSLX/MakeInitRamFS/Distro/Suse.pm +++ b/src/boot-env/OpenSLX/MakeInitRamFS/Distro/Suse.pm @@ -1,4 +1,4 @@ -# Copyright (c) 2006..2010 - OpenSLX GmbH +# Copyright (c) 2006..2011 - OpenSLX GmbH # # This program is free software distributed under the GPL version 2. # See http://openslx.org/COPYING @@ -54,6 +54,7 @@ sub determineMatchingHwinfoVersion '11.1' => '15.21', '11.2' => '16.0', '11.3' => '16.0' + '11.4' => '16.0' ); return $versionMap{$distroVersion} || $self->SUPER::determineMatchingHwinfoVersion($distroVersion); diff --git a/src/boot-env/OpenSLX/MakeInitRamFS/Distro/Ubuntu.pm b/src/boot-env/OpenSLX/MakeInitRamFS/Distro/Ubuntu.pm index ac669bf4..7c5c561f 100644 --- a/src/boot-env/OpenSLX/MakeInitRamFS/Distro/Ubuntu.pm +++ b/src/boot-env/OpenSLX/MakeInitRamFS/Distro/Ubuntu.pm @@ -1,4 +1,4 @@ - # Copyright (c) 2006..2010 - OpenSLX GmbH +# Copyright (c) 2006..2011 - OpenSLX GmbH # # This program is free software distributed under the GPL version 2. # See http://openslx.org/COPYING @@ -65,7 +65,8 @@ sub determineMatchingHwinfoVersion '9.04' => '15.21', '9.10' => '16.0', '10.04' => '16.0', - '10.04' => '16.0', + '10.10' => '16.0', + '11.04' => '16.0', ); return $versionMap{$distroVersion} || $self->SUPER::determineMatchingHwinfoVersion($distroVersion); |