From 97ce27981fcff57b7d37b898b42ba5f4a526f87f Mon Sep 17 00:00:00 2001 From: basebuilder_pel7ppc64lebuilder1 Date: Fri, 3 Aug 2018 18:16:08 +0200 Subject: [PATCH] anaconda add powerel patches Signed-off-by: basebuilder_pel7ppc64lebuilder1 --- SOURCES/anaconda-powerel-bootloader.patch | 20 + SOURCES/anaconda-powerel-eula-location.patch | 12 + SOURCES/anaconda-powerel-installpath.py | 111 ++ ...powerel-remove-visible-rh-references.patch | 1346 +++++++++++++++++ ...-powerel-skip-retry-if-not-connected.patch | 14 + SOURCES/anaconda-powerel-updatenvram.patch | 29 + 6 files changed, 1532 insertions(+) create mode 100644 SOURCES/anaconda-powerel-bootloader.patch create mode 100644 SOURCES/anaconda-powerel-eula-location.patch create mode 100644 SOURCES/anaconda-powerel-installpath.py create mode 100644 SOURCES/anaconda-powerel-remove-visible-rh-references.patch create mode 100644 SOURCES/anaconda-powerel-skip-retry-if-not-connected.patch create mode 100644 SOURCES/anaconda-powerel-updatenvram.patch diff --git a/SOURCES/anaconda-powerel-bootloader.patch b/SOURCES/anaconda-powerel-bootloader.patch new file mode 100644 index 00000000..ea5e7ca5 --- /dev/null +++ b/SOURCES/anaconda-powerel-bootloader.patch @@ -0,0 +1,20 @@ +--- anaconda-21.48.22.56/pyanaconda/bootloader.py 2016-01-04 18:57:47.074249397 +0100 ++++ anaconda-21.48.22.56/pyanaconda/bootloader.py 2016-01-04 18:58:51.104255800 +0100 +@@ -1411,7 +1411,7 @@ + + @property + def stage2_format_types(self): +- if productName.startswith("Red Hat "): ++ if productName.startswith("PowerEL"): + return ["xfs", "ext4", "ext3", "ext2", "btrfs"] + else: + return ["ext4", "ext3", "ext2", "btrfs", "xfs"] +@@ -2105,7 +2105,7 @@ + + @property + def stage2_format_types(self): +- if productName.startswith("Red Hat "): ++ if productName.startswith("PowerEL"): + return ["xfs", "ext4", "ext3", "ext2"] + else: + return ["ext4", "ext3", "ext2", "xfs"] diff --git a/SOURCES/anaconda-powerel-eula-location.patch b/SOURCES/anaconda-powerel-eula-location.patch new file mode 100644 index 00000000..27215c81 --- /dev/null +++ b/SOURCES/anaconda-powerel-eula-location.patch @@ -0,0 +1,12 @@ +--- anaconda-21.48.22.56/pyanaconda/constants.py 2016-01-04 19:05:49.784297668 +0100 ++++ anaconda-21.48.22.56/pyanaconda/constants.py 2016-01-04 19:05:38.074296497 +0100 +@@ -37,7 +37,7 @@ + productArch = product.productArch + bugzillaUrl = product.bugUrl + isFinal = product.isFinal +-eulaLocation = "/usr/share/redhat-release/EULA" ++eulaLocation = "/usr/share/powerel-release/EULA" + + # for use in device names, eg: "fedora", "rhel" + shortProductName = productName.lower() + diff --git a/SOURCES/anaconda-powerel-installpath.py b/SOURCES/anaconda-powerel-installpath.py new file mode 100644 index 00000000..b45d4ae9 --- /dev/null +++ b/SOURCES/anaconda-powerel-installpath.py @@ -0,0 +1,111 @@ +# +# powerel.py +# +# (c) copyright 2016, VanTosh, All rights reserved. +# Author: Toshaan Bharvani +# License: GNU General Public License v2 +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . +# + + +from pyanaconda.installclass import BaseInstallClass +from pyanaconda.constants import * +from pyanaconda.product import * +from pyanaconda.kickstart import getAvailableDiskSpace +from pyanaconda import network +from pyanaconda import nm +from blivet.partspec import PartSpec +from blivet.platform import platform +from blivet.devicelibs import swap +from blivet.size import Size +import types + + +class InstallClass(BaseInstallClass): + + id = "powerel" + name = "PowerEL" + sortPriority = 20000 + + if not productName.startswith("PowerEL"): + hidden = True + + defaultFS = "xfs" + + bootloaderTimeoutDefault = 5 + # where did this come from ? + #bootloaderExtraArgs = [] + + ignoredPackages = [ ] + + installUpdates = False + + _l10n_domain = "comps" + + efi_dir = "powerel" + + help_placeholder = "PowerELPlaceholder.html" + help_placeholder_with_links = "PowerELPlaceholderWithLinks.html" + + def configure(self, anaconda): + BaseInstallClass.configure(self, anaconda) + BaseInstallClass.setDefaultPartitioning(self, anaconda.storage) + + def setNetworkOnbootDefault(self, ksdata): + if ksdata.method.method not in ("url", "nfs"): + return + if network.has_some_wired_autoconnect_device(): + return + # choose the device used during installation + # (ie for majority of cases the one having the default route) + dev = network.default_route_device() or network.default_route_device(family="inet6") + if not dev: + return + # ignore wireless (its ifcfgs would need to be handled differently) + if nm.nm_device_type_is_wifi(dev): + return + network.update_onboot_value(dev, "yes", ksdata) + + def __init__(self): + BaseInstallClass.__init__(self) + + +class AtomicInstallClass(BaseInstallClass): + + id = "powerelatomic" + name = "PowerEL Atomic Host" + sortPriority=21001 + hidden = not productName.startswith(("PowerEL Atomic Host", "PowerEL Atomic")) + + def setDefaultPartitioning(self, storage): + autorequests = [PartSpec(mountpoint="/", fstype=storage.defaultFSType, size=Size("1GiB"), maxSize=Size("3GiB"), grow=True, lv=True)] + + bootreqs = platform.setDefaultPartitioning() + if bootreqs: + autorequests.extend(bootreqs) + + disk_space = getAvailableDiskSpace(storage) + swp = swap.swapSuggestion(disk_space=disk_space) + autorequests.append(PartSpec(fstype="swap", size=swp, grow=False, lv=True, encrypted=True)) + + for autoreq in autorequests: + if autoreq.fstype is None: + if autoreq.mountpoint == "/boot": + autoreq.fstype = storage.defaultBootFSType + autoreq.size = Size("300MiB") + else: + autoreq.fstype = storage.defaultFSType + + storage.autoPartitionRequests = autorequests diff --git a/SOURCES/anaconda-powerel-remove-visible-rh-references.patch b/SOURCES/anaconda-powerel-remove-visible-rh-references.patch new file mode 100644 index 00000000..6b4c599a --- /dev/null +++ b/SOURCES/anaconda-powerel-remove-visible-rh-references.patch @@ -0,0 +1,1346 @@ +diff -Nur anaconda-21.48.22.56.orig/po/af.po anaconda-21.48.22.56/po/af.po +--- anaconda-21.48.22.56.orig/po/af.po 2015-10-29 08:08:29.000000000 -0700 ++++ anaconda-21.48.22.56/po/af.po 2015-11-20 00:30:56.282885630 -0800 +@@ -2080,9 +2080,9 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:44 + #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 + msgid "" +-"This hardware (or a combination thereof) is not supported by Red Hat. For " +-"more information on supported hardware, please refer to http://www.redhat." +-"com/hardware." ++"This hardware (or a combination thereof) is not supported by PowerEL. For " ++"more information on supported hardware, please refer to http://linux.oracle." ++"com/." + msgstr "" + + #: pyanaconda/ui/tui/spokes/progress.py:37 +diff -Nur anaconda-21.48.22.56.orig/po/am.po anaconda-21.48.22.56/po/am.po +--- anaconda-21.48.22.56.orig/po/am.po 2015-10-29 08:08:29.000000000 -0700 ++++ anaconda-21.48.22.56/po/am.po 2015-11-20 00:30:56.284885440 -0800 +@@ -2078,9 +2078,9 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:44 + #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 + msgid "" +-"This hardware (or a combination thereof) is not supported by Red Hat. For " +-"more information on supported hardware, please refer to http://www.redhat." +-"com/hardware." ++"This hardware (or a combination thereof) is not supported by PowerEL. For " ++"more information on supported hardware, please refer to http://linux.oracle." ++"com/." + msgstr "" + + #: pyanaconda/ui/tui/spokes/progress.py:37 +diff -Nur anaconda-21.48.22.56.orig/po/anaconda.pot anaconda-21.48.22.56/po/anaconda.pot +--- anaconda-21.48.22.56.orig/po/anaconda.pot 2015-10-29 08:08:45.000000000 -0700 ++++ anaconda-21.48.22.56/po/anaconda.pot 2015-11-20 00:30:56.286885267 -0800 +@@ -2078,9 +2078,9 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:44 + #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 + msgid "" +-"This hardware (or a combination thereof) is not supported by Red Hat. For " +-"more information on supported hardware, please refer to http://www.redhat." +-"com/hardware." ++"This hardware (or a combination thereof) is not supported by PowerEL. For " ++"more information on supported hardware, please refer to http://linux.oracle." ++"com/." + msgstr "" + + #: pyanaconda/ui/tui/spokes/progress.py:37 +diff -Nur anaconda-21.48.22.56.orig/po/ar.po anaconda-21.48.22.56/po/ar.po +--- anaconda-21.48.22.56.orig/po/ar.po 2015-10-29 08:08:29.000000000 -0700 ++++ anaconda-21.48.22.56/po/ar.po 2015-11-20 00:30:56.287885271 -0800 +@@ -2205,12 +2205,12 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:44 + #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 + msgid "" +-"This hardware (or a combination thereof) is not supported by Red Hat. For " +-"more information on supported hardware, please refer to http://www.redhat." +-"com/hardware." ++"This hardware (or a combination thereof) is not supported by PowerEL. For " ++"more information on supported hardware, please refer to http://linux.oracle." ++"com/." + msgstr "" + "هذا العتاد ( أو مجموعة منه ) غير مدعوم بواسطة ريدهات. لمزيد من المعلومات عن " +-"العتاد المدعوم ، ادخل إلى http://www.redhat.com/hardware." ++"العتاد المدعوم ، ادخل إلى http://www.powerel.org/." + + #: pyanaconda/ui/tui/spokes/progress.py:37 + msgid "Progress" +diff -Nur anaconda-21.48.22.56.orig/po/as.po anaconda-21.48.22.56/po/as.po +--- anaconda-21.48.22.56.orig/po/as.po 2015-10-29 08:08:29.000000000 -0700 ++++ anaconda-21.48.22.56/po/as.po 2015-11-20 00:30:56.289885487 -0800 +@@ -2293,12 +2293,12 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:44 + #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 + msgid "" +-"This hardware (or a combination thereof) is not supported by Red Hat. For " +-"more information on supported hardware, please refer to http://www.redhat." +-"com/hardware." ++"This hardware (or a combination thereof) is not supported by PowerEL. For " ++"more information on supported hardware, please refer to http://linux.oracle." ++"com/." + msgstr "" +-"এই হাৰ্ডৱেৰ (অথবা সংযুক্তি) Red Hat দ্বাৰা সমৰ্থিত নহয়। সমৰ্থিত হাৰ্ডৱেৰৰ বিষয়ে " +-"অধিক তথ্যৰ বাবে, অনুগ্ৰহ কৰি http://www.redhat.com/hardware চাওক।" ++"এই হাৰ্ডৱেৰ (অথবা সংযুক্তি) PowerEL দ্বাৰা সমৰ্থিত নহয়। সমৰ্থিত হাৰ্ডৱেৰৰ বিষয়ে " ++"অধিক তথ্যৰ বাবে, অনুগ্ৰহ কৰি http://www.powerel.org/ চাওক।" + + #: pyanaconda/ui/tui/spokes/progress.py:37 + msgid "Progress" +diff -Nur anaconda-21.48.22.56.orig/po/ast.po anaconda-21.48.22.56/po/ast.po +--- anaconda-21.48.22.56.orig/po/ast.po 2015-10-29 08:08:30.000000000 -0700 ++++ anaconda-21.48.22.56/po/ast.po 2015-11-20 00:30:56.291885352 -0800 +@@ -2109,9 +2109,9 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:44 + #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 + msgid "" +-"This hardware (or a combination thereof) is not supported by Red Hat. For " +-"more information on supported hardware, please refer to http://www.redhat." +-"com/hardware." ++"This hardware (or a combination thereof) is not supported by PowerEL. For " ++"more information on supported hardware, please refer to http://linux.oracle." ++"com/." + msgstr "" + + #: pyanaconda/ui/tui/spokes/progress.py:37 +diff -Nur anaconda-21.48.22.56.orig/po/be.po anaconda-21.48.22.56/po/be.po +--- anaconda-21.48.22.56.orig/po/be.po 2015-10-29 08:08:30.000000000 -0700 ++++ anaconda-21.48.22.56/po/be.po 2015-11-20 00:30:56.293885304 -0800 +@@ -2082,9 +2082,9 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:44 + #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 + msgid "" +-"This hardware (or a combination thereof) is not supported by Red Hat. For " +-"more information on supported hardware, please refer to http://www.redhat." +-"com/hardware." ++"This hardware (or a combination thereof) is not supported by PowerEL. For " ++"more information on supported hardware, please refer to http://linux.oracle." ++"com/." + msgstr "" + + #: pyanaconda/ui/tui/spokes/progress.py:37 +diff -Nur anaconda-21.48.22.56.orig/po/bg.po anaconda-21.48.22.56/po/bg.po +--- anaconda-21.48.22.56.orig/po/bg.po 2015-10-29 08:08:30.000000000 -0700 ++++ anaconda-21.48.22.56/po/bg.po 2015-11-20 00:30:56.294885298 -0800 +@@ -2342,13 +2342,13 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:44 + #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 + msgid "" +-"This hardware (or a combination thereof) is not supported by Red Hat. For " +-"more information on supported hardware, please refer to http://www.redhat." +-"com/hardware." +-msgstr "" +-"Този (или тази комбинация от) хардуер не се поддържа от Red Hat. За повече " +-"информация за поддържания хардуер, моля, проверете на http://www.redhat.com/" +-"hardware." ++"This hardware (or a combination thereof) is not supported by PowerEL. For " ++"more information on supported hardware, please refer to http://linux.oracle." ++"com/." ++msgstr "" ++"Този (или тази комбинация от) хардуер не се поддържа от PowerEL. За повече " ++"информация за поддържания хардуер, моля, проверете на http://www.powerel.org/" ++"." + + #: pyanaconda/ui/tui/spokes/progress.py:37 + msgid "Progress" +diff -Nur anaconda-21.48.22.56.orig/po/bn_IN.po anaconda-21.48.22.56/po/bn_IN.po +--- anaconda-21.48.22.56.orig/po/bn_IN.po 2015-10-29 08:08:30.000000000 -0700 ++++ anaconda-21.48.22.56/po/bn_IN.po 2015-11-20 00:30:56.296884787 -0800 +@@ -2313,13 +2313,13 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:44 + #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 + msgid "" +-"This hardware (or a combination thereof) is not supported by Red Hat. For " +-"more information on supported hardware, please refer to http://www.redhat." +-"com/hardware." ++"This hardware (or a combination thereof) is not supported by PowerEL. For " ++"more information on supported hardware, please refer to http://linux.oracle." ++"com/." + msgstr "" +-"এই হার্ডওয়্যারের (অথবা অন্যান্য একাধিক হার্ডওয়্যারের সাথে এটির) ব্যবহার Red Hat " ++"এই হার্ডওয়্যারের (অথবা অন্যান্য একাধিক হার্ডওয়্যারের সাথে এটির) ব্যবহার PowerEL " + "দ্বারা সমর্থিত নয়। সমর্থিত হার্ডওয়্যার সম্পর্কে অধিক তথ্য জানার জন্য অনুগ্রহ করে http://" +-"www.redhat.com/hardware পড়ুন।" ++"www.powerel.org পড়ুন।" + + #: pyanaconda/ui/tui/spokes/progress.py:37 + msgid "Progress" +diff -Nur anaconda-21.48.22.56.orig/po/bn.po anaconda-21.48.22.56/po/bn.po +--- anaconda-21.48.22.56.orig/po/bn.po 2015-10-29 08:08:30.000000000 -0700 ++++ anaconda-21.48.22.56/po/bn.po 2015-11-20 00:30:56.297884670 -0800 +@@ -2149,9 +2149,9 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:44 + #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 + msgid "" +-"This hardware (or a combination thereof) is not supported by Red Hat. For " +-"more information on supported hardware, please refer to http://www.redhat." +-"com/hardware." ++"This hardware (or a combination thereof) is not supported by PowerEL. For " ++"more information on supported hardware, please refer to http://linux.oracle." ++"com/." + msgstr "" + + #: pyanaconda/ui/tui/spokes/progress.py:37 +diff -Nur anaconda-21.48.22.56.orig/po/bs.po anaconda-21.48.22.56/po/bs.po +--- anaconda-21.48.22.56.orig/po/bs.po 2015-10-29 08:08:30.000000000 -0700 ++++ anaconda-21.48.22.56/po/bs.po 2015-11-20 00:30:56.298884785 -0800 +@@ -2101,9 +2101,9 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:44 + #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 + msgid "" +-"This hardware (or a combination thereof) is not supported by Red Hat. For " +-"more information on supported hardware, please refer to http://www.redhat." +-"com/hardware." ++"This hardware (or a combination thereof) is not supported by PowerEL. For " ++"more information on supported hardware, please refer to http://linux.oracle." ++"com/." + msgstr "" + + #: pyanaconda/ui/tui/spokes/progress.py:37 +diff -Nur anaconda-21.48.22.56.orig/po/ca.po anaconda-21.48.22.56/po/ca.po +--- anaconda-21.48.22.56.orig/po/ca.po 2015-10-29 08:08:30.000000000 -0700 ++++ anaconda-21.48.22.56/po/ca.po 2015-11-20 00:30:56.299884770 -0800 +@@ -2700,13 +2700,13 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:44 + #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 + msgid "" +-"This hardware (or a combination thereof) is not supported by Red Hat. For " +-"more information on supported hardware, please refer to http://www.redhat." +-"com/hardware." +-msgstr "" +-"Aquest maquinari (o una combinació) no està suportat per Red Hat. Per " +-"obtenir més informació sobre el maquinari suportat, consulteu http://www." +-"redhat.com/hardware." ++"This hardware (or a combination thereof) is not supported by PowerEL. For " ++"more information on supported hardware, please refer to http://linux.oracle." ++"com/." ++msgstr "" ++"Aquest maquinari (o una combinació) no està suportat per PowerEL. Per " ++"obtenir més informació sobre el maquinari suportat, consulteu http://linux." ++"oracle.com/." + + # translation auto-copied from project Anaconda, version master, document + # anaconda +diff -Nur anaconda-21.48.22.56.orig/po/cs.po anaconda-21.48.22.56/po/cs.po +--- anaconda-21.48.22.56.orig/po/cs.po 2015-10-29 08:08:30.000000000 -0700 ++++ anaconda-21.48.22.56/po/cs.po 2015-11-20 00:30:56.300884707 -0800 +@@ -2336,8 +2336,8 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:44 + #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 + msgid "" +-"This hardware (or a combination thereof) is not supported by Red Hat. For " +-"more information on supported hardware, please refer to http://www.redhat." ++"This hardware (or a combination thereof) is not supported by PowerEL. For " ++"more information on supported hardware, please refer to http://linux.oracle." + "com/hardware." + msgstr "" + "Tento hardware není firmou Red Hat podoporován. Pro více informací o " +diff -Nur anaconda-21.48.22.56.orig/po/cy.po anaconda-21.48.22.56/po/cy.po +--- anaconda-21.48.22.56.orig/po/cy.po 2015-10-29 08:08:30.000000000 -0700 ++++ anaconda-21.48.22.56/po/cy.po 2015-11-20 00:30:56.301884707 -0800 +@@ -2080,8 +2080,8 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:44 + #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 + msgid "" +-"This hardware (or a combination thereof) is not supported by Red Hat. For " +-"more information on supported hardware, please refer to http://www.redhat." ++"This hardware (or a combination thereof) is not supported by PowerEL. For " ++"more information on supported hardware, please refer to http://linux.oracle." + "com/hardware." + msgstr "" + +diff -Nur anaconda-21.48.22.56.orig/po/da.po anaconda-21.48.22.56/po/da.po +--- anaconda-21.48.22.56.orig/po/da.po 2015-10-29 08:08:30.000000000 -0700 ++++ anaconda-21.48.22.56/po/da.po 2015-11-20 00:30:56.302884760 -0800 +@@ -2453,13 +2453,12 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:44 + #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 + msgid "" +-"This hardware (or a combination thereof) is not supported by Red Hat. For " +-"more information on supported hardware, please refer to http://www.redhat." +-"com/hardware." +-msgstr "" +-"Denne hardware (eller kombinationen heraf) er ikke understøttet af Red Hat. " +-"For mere information om understøttet hardware, se http://www.redhat.com/" +-"hardware." ++"This hardware (or a combination thereof) is not supported by PowerEL. For " ++"more information on supported hardware, please refer to http://linux.oracle." ++"com/." ++msgstr "" ++"Denne hardware (eller kombinationen heraf) er ikke understøttet af PowerEL. " ++"For mere information om understøttet hardware, se http://www.powerel.org/" + + #: pyanaconda/ui/tui/spokes/progress.py:37 + msgid "Progress" +diff -Nur anaconda-21.48.22.56.orig/po/de_CH.po anaconda-21.48.22.56/po/de_CH.po +--- anaconda-21.48.22.56.orig/po/de_CH.po 2015-10-29 08:08:30.000000000 -0700 ++++ anaconda-21.48.22.56/po/de_CH.po 2015-11-20 00:30:56.303884759 -0800 +@@ -2112,8 +2112,8 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:44 + #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 + msgid "" +-"This hardware (or a combination thereof) is not supported by Red Hat. For " +-"more information on supported hardware, please refer to http://www.redhat." ++"This hardware (or a combination thereof) is not supported by PowerEL. For " ++"more information on supported hardware, please refer to http://linux.oracle." + "com/hardware." + msgstr "" + +diff -Nur anaconda-21.48.22.56.orig/po/de.po anaconda-21.48.22.56/po/de.po +--- anaconda-21.48.22.56.orig/po/de.po 2015-10-29 08:08:30.000000000 -0700 ++++ anaconda-21.48.22.56/po/de.po 2015-11-20 00:30:56.304884744 -0800 +@@ -2576,13 +2576,13 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:44 + #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 + msgid "" +-"This hardware (or a combination thereof) is not supported by Red Hat. For " +-"more information on supported hardware, please refer to http://www.redhat." ++"This hardware (or a combination thereof) is not supported by PowerEL. For " ++"more information on supported hardware, please refer to http://linux.oracle." + "com/hardware." + msgstr "" + "Diese Hardware (oder in einer bestimmten Kombination) wird von Red Hat nicht " + "unterstützt. Weitere Informationen über unterstützte Hardware finden Sie auf " +-"http://www.redhat.com/hardware." ++"http://www.powerel.org." + + #: pyanaconda/ui/tui/spokes/progress.py:37 + msgid "Progress" +diff -Nur anaconda-21.48.22.56.orig/po/el.po anaconda-21.48.22.56/po/el.po +--- anaconda-21.48.22.56.orig/po/el.po 2015-10-29 08:08:30.000000000 -0700 ++++ anaconda-21.48.22.56/po/el.po 2015-11-20 00:30:56.305884734 -0800 +@@ -2167,8 +2167,8 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:44 + #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 + msgid "" +-"This hardware (or a combination thereof) is not supported by Red Hat. For " +-"more information on supported hardware, please refer to http://www.redhat." ++"This hardware (or a combination thereof) is not supported by PowerEL. For " ++"more information on supported hardware, please refer to http://linux.oracle." + "com/hardware." + msgstr "" + +diff -Nur anaconda-21.48.22.56.orig/po/en_GB.po anaconda-21.48.22.56/po/en_GB.po +--- anaconda-21.48.22.56.orig/po/en_GB.po 2015-10-29 08:08:31.000000000 -0700 ++++ anaconda-21.48.22.56/po/en_GB.po 2015-11-20 00:30:56.306885326 -0800 +@@ -2313,8 +2313,8 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:44 + #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 + msgid "" +-"This hardware (or a combination thereof) is not supported by Red Hat. For " +-"more information on supported hardware, please refer to http://www.redhat." ++"This hardware (or a combination thereof) is not supported by PowerEL. For " ++"more information on supported hardware, please refer to http://linux.oracle." + "com/hardware." + msgstr "" + "This hardware (or a combination thereof) is not supported by Red Hat. For " +diff -Nur anaconda-21.48.22.56.orig/po/es.po anaconda-21.48.22.56/po/es.po +--- anaconda-21.48.22.56.orig/po/es.po 2015-10-29 08:08:31.000000000 -0700 ++++ anaconda-21.48.22.56/po/es.po 2015-11-20 00:30:56.307884692 -0800 +@@ -2417,13 +2417,13 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:44 + #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 + msgid "" +-"This hardware (or a combination thereof) is not supported by Red Hat. For " +-"more information on supported hardware, please refer to http://www.redhat." ++"This hardware (or a combination thereof) is not supported by PowerEL. For " ++"more information on supported hardware, please refer to http://linux.oracle." + "com/hardware." + msgstr "" + "Este hardware (o a combinación del mismo) no está soportado por Red Hat. " + "Para mayor información sobre hardware con soporte, por favor consulte http://" +-"www.redhat.com/hardware." ++"www.powerel.org." + + #: pyanaconda/ui/tui/spokes/progress.py:37 + msgid "Progress" +diff -Nur anaconda-21.48.22.56.orig/po/et.po anaconda-21.48.22.56/po/et.po +--- anaconda-21.48.22.56.orig/po/et.po 2015-10-29 08:08:31.000000000 -0700 ++++ anaconda-21.48.22.56/po/et.po 2015-11-20 00:30:56.308885001 -0800 +@@ -2119,8 +2119,8 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:44 + #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 + msgid "" +-"This hardware (or a combination thereof) is not supported by Red Hat. For " +-"more information on supported hardware, please refer to http://www.redhat." ++"This hardware (or a combination thereof) is not supported by PowerEL. For " ++"more information on supported hardware, please refer to http://linux.oracle." + "com/hardware." + msgstr "" + +diff -Nur anaconda-21.48.22.56.orig/po/eu.po anaconda-21.48.22.56/po/eu.po +--- anaconda-21.48.22.56.orig/po/eu.po 2015-10-29 08:08:31.000000000 -0700 ++++ anaconda-21.48.22.56/po/eu.po 2015-11-20 00:30:56.309884628 -0800 +@@ -2119,8 +2119,8 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:44 + #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 + msgid "" +-"This hardware (or a combination thereof) is not supported by Red Hat. For " +-"more information on supported hardware, please refer to http://www.redhat." ++"This hardware (or a combination thereof) is not supported by PowerEL. For " ++"more information on supported hardware, please refer to http://linux.oracle." + "com/hardware." + msgstr "" + +diff -Nur anaconda-21.48.22.56.orig/po/fa.po anaconda-21.48.22.56/po/fa.po +--- anaconda-21.48.22.56.orig/po/fa.po 2015-10-29 08:08:31.000000000 -0700 ++++ anaconda-21.48.22.56/po/fa.po 2015-11-20 00:30:56.310884744 -0800 +@@ -2116,8 +2116,8 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:44 + #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 + msgid "" +-"This hardware (or a combination thereof) is not supported by Red Hat. For " +-"more information on supported hardware, please refer to http://www.redhat." ++"This hardware (or a combination thereof) is not supported by PowerEL. For " ++"more information on supported hardware, please refer to http://linux.oracle." + "com/hardware." + msgstr "" + +diff -Nur anaconda-21.48.22.56.orig/po/fi.po anaconda-21.48.22.56/po/fi.po +--- anaconda-21.48.22.56.orig/po/fi.po 2015-10-29 08:08:31.000000000 -0700 ++++ anaconda-21.48.22.56/po/fi.po 2015-11-20 00:30:56.311884726 -0800 +@@ -2224,8 +2224,8 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:44 + #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 + msgid "" +-"This hardware (or a combination thereof) is not supported by Red Hat. For " +-"more information on supported hardware, please refer to http://www.redhat." ++"This hardware (or a combination thereof) is not supported by PowerEL. For " ++"more information on supported hardware, please refer to http://linux.oracle." + "com/hardware." + msgstr "" + "Red Hat ei tue tätä laitetta tai laitteistoa. Lisätietoa tuetuista " +diff -Nur anaconda-21.48.22.56.orig/po/fr.po anaconda-21.48.22.56/po/fr.po +--- anaconda-21.48.22.56.orig/po/fr.po 2015-10-29 08:08:31.000000000 -0700 ++++ anaconda-21.48.22.56/po/fr.po 2015-11-20 00:30:56.312884894 -0800 +@@ -2443,13 +2443,13 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:44 + #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 + msgid "" +-"This hardware (or a combination thereof) is not supported by Red Hat. For " +-"more information on supported hardware, please refer to http://www.redhat." ++"This hardware (or a combination thereof) is not supported by PowerEL. For " ++"more information on supported hardware, please refer to http://linux.oracle." + "com/hardware." + msgstr "" + "Ce matériel (ou une combinaison de matériels) n'est pas pris en charge par " + "Red Hat. Pour plus d'informations sur le matériel pris en charge , veuillez " +-"consulter http://www.redhat.com/hardware." ++"consulter http://www.powerel.org." + + #: pyanaconda/ui/tui/spokes/progress.py:37 + msgid "Progress" +diff -Nur anaconda-21.48.22.56.orig/po/gl.po anaconda-21.48.22.56/po/gl.po +--- anaconda-21.48.22.56.orig/po/gl.po 2015-10-29 08:08:31.000000000 -0700 ++++ anaconda-21.48.22.56/po/gl.po 2015-11-20 00:30:56.313884758 -0800 +@@ -2128,8 +2128,8 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:44 + #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 + msgid "" +-"This hardware (or a combination thereof) is not supported by Red Hat. For " +-"more information on supported hardware, please refer to http://www.redhat." ++"This hardware (or a combination thereof) is not supported by PowerEL. For " ++"more information on supported hardware, please refer to http://linux.oracle." + "com/hardware." + msgstr "" + +diff -Nur anaconda-21.48.22.56.orig/po/gu.po anaconda-21.48.22.56/po/gu.po +--- anaconda-21.48.22.56.orig/po/gu.po 2015-10-29 08:08:31.000000000 -0700 ++++ anaconda-21.48.22.56/po/gu.po 2015-11-20 00:30:56.314884761 -0800 +@@ -2248,12 +2248,12 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:44 + #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 + msgid "" +-"This hardware (or a combination thereof) is not supported by Red Hat. For " +-"more information on supported hardware, please refer to http://www.redhat." ++"This hardware (or a combination thereof) is not supported by PowerEL. For " ++"more information on supported hardware, please refer to http://linux.oracle." + "com/hardware." + msgstr "" + "આ હાર્ડવેર (અથવા તેનું સંયોજન) Red Hat દ્દારા આધારભૂત નથી. આધારભૂત હાર્ડવેર પર વધારે " +-"જાણકારી માટે, http://www.redhat.com/hardware નો સંદર્ભ લો." ++"જાણકારી માટે, http://www.powerel.org નો સંદર્ભ લો." + + #: pyanaconda/ui/tui/spokes/progress.py:37 + msgid "Progress" +diff -Nur anaconda-21.48.22.56.orig/po/hi.po anaconda-21.48.22.56/po/hi.po +--- anaconda-21.48.22.56.orig/po/hi.po 2015-10-29 08:08:31.000000000 -0700 ++++ anaconda-21.48.22.56/po/hi.po 2015-11-20 00:30:56.315884801 -0800 +@@ -2179,12 +2179,12 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:44 + #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 + msgid "" +-"This hardware (or a combination thereof) is not supported by Red Hat. For " +-"more information on supported hardware, please refer to http://www.redhat." ++"This hardware (or a combination thereof) is not supported by PowerEL. For " ++"more information on supported hardware, please refer to http://linux.oracle." + "com/hardware." + msgstr "" + "हार्डवेयर (अथवा इसका एक संयोग) Red Hat द्वारा समर्थित नहीं है. समर्थित हार्डवेयर पर " +-"अधिक जानकारी के लिए, http://www.redhat.com/hardware का संदर्भ लें." ++"अधिक जानकारी के लिए, http://www.powerel.org का संदर्भ लें." + + #: pyanaconda/ui/tui/spokes/progress.py:37 + msgid "Progress" +diff -Nur anaconda-21.48.22.56.orig/po/hr.po anaconda-21.48.22.56/po/hr.po +--- anaconda-21.48.22.56.orig/po/hr.po 2015-10-29 08:08:31.000000000 -0700 ++++ anaconda-21.48.22.56/po/hr.po 2015-11-20 00:30:56.316884729 -0800 +@@ -2223,12 +2223,12 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:44 + #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 + msgid "" +-"This hardware (or a combination thereof) is not supported by Red Hat. For " +-"more information on supported hardware, please refer to http://www.redhat." ++"This hardware (or a combination thereof) is not supported by PowerEL. For " ++"more information on supported hardware, please refer to http://linux.oracle." + "com/hardware." + msgstr "" + "Ovaj hardver (ili kombinacija istog) nisu podržani od strane Red Hat-a. Za " +-"više informacija o podržanom hardveru, molimo otiđite na http://www.redhat." ++"više informacija o podržanom hardveru, molimo otiđite na http://linux.oracle." + "com/hardware." + + #: pyanaconda/ui/tui/spokes/progress.py:37 +diff -Nur anaconda-21.48.22.56.orig/po/hu.po anaconda-21.48.22.56/po/hu.po +--- anaconda-21.48.22.56.orig/po/hu.po 2015-10-29 08:08:31.000000000 -0700 ++++ anaconda-21.48.22.56/po/hu.po 2015-11-20 00:30:56.317884759 -0800 +@@ -2422,13 +2422,13 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:44 + #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 + msgid "" +-"This hardware (or a combination thereof) is not supported by Red Hat. For " +-"more information on supported hardware, please refer to http://www.redhat." +-"com/hardware." +-msgstr "" +-"Ezt a hardvert (vagy azok kombinációját) nem támogatja a Red Hat. További " +-"információkat a támogatott hardverekről, kérjük, olvassa el a http://www." +-"redhat.com/hardware alatt találhatóakat. " ++"This hardware (or a combination thereof) is not supported by PowerEL. For " ++"more information on supported hardware, please refer to http://linux.oracle." ++"com/." ++msgstr "" ++"Ezt a hardvert (vagy azok kombinációját) nem támogatja a PowerEL. További " ++"információkat a támogatott hardverekről, kérjük, olvassa el a http://linux." ++"oracle.com/ alatt találhatóakat. " + + #: pyanaconda/ui/tui/spokes/progress.py:37 + msgid "Progress" +diff -Nur anaconda-21.48.22.56.orig/po/ia.po anaconda-21.48.22.56/po/ia.po +--- anaconda-21.48.22.56.orig/po/ia.po 2015-10-29 08:08:31.000000000 -0700 ++++ anaconda-21.48.22.56/po/ia.po 2015-11-20 00:30:56.319751962 -0800 +@@ -2285,12 +2285,12 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:44 + #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 + msgid "" +-"This hardware (or a combination thereof) is not supported by Red Hat. For " +-"more information on supported hardware, please refer to http://www.redhat." ++"This hardware (or a combination thereof) is not supported by PowerEL. For " ++"more information on supported hardware, please refer to http://linux.oracle." + "com/hardware." + msgstr "" + "Ce hardware (o su combination) non es supportate per Red Hat. Pro plus de " +-"information super le hardware supportate, refere se a http://www.redhat.com/" ++"information super le hardware supportate, refere se a http://www.powerel.org/" + "hardware." + + #: pyanaconda/ui/tui/spokes/progress.py:37 +diff -Nur anaconda-21.48.22.56.orig/po/id.po anaconda-21.48.22.56/po/id.po +--- anaconda-21.48.22.56.orig/po/id.po 2015-10-29 08:08:32.000000000 -0700 ++++ anaconda-21.48.22.56/po/id.po 2015-11-20 00:30:56.319751962 -0800 +@@ -2279,8 +2279,8 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:44 + #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 + msgid "" +-"This hardware (or a combination thereof) is not supported by Red Hat. For " +-"more information on supported hardware, please refer to http://www.redhat." ++"This hardware (or a combination thereof) is not supported by PowerEL. For " ++"more information on supported hardware, please refer to http://linux.oracle." + "com/hardware." + msgstr "" + "Perangkat keras ini (atau kombinasinya) tidak didukung oleh Red Hat. Untuk " +diff -Nur anaconda-21.48.22.56.orig/po/ilo.po anaconda-21.48.22.56/po/ilo.po +--- anaconda-21.48.22.56.orig/po/ilo.po 2015-10-29 08:08:32.000000000 -0700 ++++ anaconda-21.48.22.56/po/ilo.po 2015-11-20 00:30:56.320884706 -0800 +@@ -2081,8 +2081,8 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:44 + #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 + msgid "" +-"This hardware (or a combination thereof) is not supported by Red Hat. For " +-"more information on supported hardware, please refer to http://www.redhat." ++"This hardware (or a combination thereof) is not supported by PowerEL. For " ++"more information on supported hardware, please refer to http://linux.oracle." + "com/hardware." + msgstr "" + +diff -Nur anaconda-21.48.22.56.orig/po/is.po anaconda-21.48.22.56/po/is.po +--- anaconda-21.48.22.56.orig/po/is.po 2015-10-29 08:08:32.000000000 -0700 ++++ anaconda-21.48.22.56/po/is.po 2015-11-20 00:30:56.321884756 -0800 +@@ -2110,8 +2110,8 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:44 + #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 + msgid "" +-"This hardware (or a combination thereof) is not supported by Red Hat. For " +-"more information on supported hardware, please refer to http://www.redhat." ++"This hardware (or a combination thereof) is not supported by PowerEL. For " ++"more information on supported hardware, please refer to http://linux.oracle." + "com/hardware." + msgstr "" + +diff -Nur anaconda-21.48.22.56.orig/po/it.po anaconda-21.48.22.56/po/it.po +--- anaconda-21.48.22.56.orig/po/it.po 2015-10-29 08:08:32.000000000 -0700 ++++ anaconda-21.48.22.56/po/it.po 2015-11-20 00:30:56.322884838 -0800 +@@ -2505,13 +2505,13 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:44 + #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 + msgid "" +-"This hardware (or a combination thereof) is not supported by Red Hat. For " +-"more information on supported hardware, please refer to http://www.redhat." ++"This hardware (or a combination thereof) is not supported by PowerEL. For " ++"more information on supported hardware, please refer to http://linux.oracle." + "com/hardware." + msgstr "" + "Questo hardware (o la loro combinazione) non è supportato da Red Hat. Per " + "maggiori informazioni sull'hardware supportato, fare riferimento a http://" +-"www.redhat.com/hardware." ++"www.powerel.org." + + #: pyanaconda/ui/tui/spokes/progress.py:37 + msgid "Progress" +diff -Nur anaconda-21.48.22.56.orig/po/ja.po anaconda-21.48.22.56/po/ja.po +--- anaconda-21.48.22.56.orig/po/ja.po 2015-10-29 08:08:32.000000000 -0700 ++++ anaconda-21.48.22.56/po/ja.po 2015-11-20 00:30:56.323884559 -0800 +@@ -2387,12 +2387,12 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:44 + #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 + msgid "" +-"This hardware (or a combination thereof) is not supported by Red Hat. For " +-"more information on supported hardware, please refer to http://www.redhat." ++"This hardware (or a combination thereof) is not supported by PowerEL. For " ++"more information on supported hardware, please refer to http://linux.oracle." + "com/hardware." + msgstr "" + "このハードウェア(またはその組み合わせ)は、Red Hat によってサポートされていま" +-"せん。サポートされているハードウェアの詳細は、http://www.redhat.com/hardware " ++"せん。サポートされているハードウェアの詳細は、http://www.powerel.org " + "を参照してください。" + + #: pyanaconda/ui/tui/spokes/progress.py:37 +diff -Nur anaconda-21.48.22.56.orig/po/ka.po anaconda-21.48.22.56/po/ka.po +--- anaconda-21.48.22.56.orig/po/ka.po 2015-10-29 08:08:32.000000000 -0700 ++++ anaconda-21.48.22.56/po/ka.po 2015-11-20 00:30:56.325884765 -0800 +@@ -2220,8 +2220,8 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:44 + #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 + msgid "" +-"This hardware (or a combination thereof) is not supported by Red Hat. For " +-"more information on supported hardware, please refer to http://www.redhat." ++"This hardware (or a combination thereof) is not supported by PowerEL. For " ++"more information on supported hardware, please refer to http://linux.oracle." + "com/hardware." + msgstr "" + +diff -Nur anaconda-21.48.22.56.orig/po/kk.po anaconda-21.48.22.56/po/kk.po +--- anaconda-21.48.22.56.orig/po/kk.po 2015-10-29 08:08:32.000000000 -0700 ++++ anaconda-21.48.22.56/po/kk.po 2015-11-20 00:30:56.326884782 -0800 +@@ -2183,12 +2183,12 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:44 + #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 + msgid "" +-"This hardware (or a combination thereof) is not supported by Red Hat. For " +-"more information on supported hardware, please refer to http://www.redhat." ++"This hardware (or a combination thereof) is not supported by PowerEL. For " ++"more information on supported hardware, please refer to http://linux.oracle." + "com/hardware." + msgstr "" + "Бұл құрылғыны (немесе құрылғылар жиынтығын) Red Hat қолдамайды. Қолдауы бар " +-"құрылғылар жөнінде көбірек білу үшін, http://www.redhat.com/hardware шолыңыз." ++"құрылғылар жөнінде көбірек білу үшін, http://www.powerel.org шолыңыз." + + #: pyanaconda/ui/tui/spokes/progress.py:37 + msgid "Progress" +diff -Nur anaconda-21.48.22.56.orig/po/kn.po anaconda-21.48.22.56/po/kn.po +--- anaconda-21.48.22.56.orig/po/kn.po 2015-10-29 08:08:32.000000000 -0700 ++++ anaconda-21.48.22.56/po/kn.po 2015-11-20 00:30:56.327884787 -0800 +@@ -2359,12 +2359,12 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:44 + #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 + msgid "" +-"This hardware (or a combination thereof) is not supported by Red Hat. For " +-"more information on supported hardware, please refer to http://www.redhat." ++"This hardware (or a combination thereof) is not supported by PowerEL. For " ++"more information on supported hardware, please refer to http://linux.oracle." + "com/hardware." + msgstr "" + "ಈ ಯಂತ್ರಾಂಶವನ್ನು (ಅಥವ ಇವುಗಳ ಒಂದು ಸಂಯೋಜನೆ) Red Hat ನಿಂದ ಬೆಂಬಲಿಸಲಾಗುವುದಿಲ್ಲ. " +-"ಬೆಂಬಲಿಸಲಾಗುವ ಯಂತ್ರಾಂಶಗಳ ಬಗೆಗಿನ ಹೆಚ್ಚಿನ ಮಾಹಿತಿಗಾಗಿ, http://www.redhat.com/" ++"ಬೆಂಬಲಿಸಲಾಗುವ ಯಂತ್ರಾಂಶಗಳ ಬಗೆಗಿನ ಹೆಚ್ಚಿನ ಮಾಹಿತಿಗಾಗಿ, http://www.powerel.org/" + "hardware ಅನ್ನು ನೋಡಿ." + + #: pyanaconda/ui/tui/spokes/progress.py:37 +diff -Nur anaconda-21.48.22.56.orig/po/ko.po anaconda-21.48.22.56/po/ko.po +--- anaconda-21.48.22.56.orig/po/ko.po 2015-10-29 08:08:32.000000000 -0700 ++++ anaconda-21.48.22.56/po/ko.po 2015-11-20 00:30:56.328884665 -0800 +@@ -2370,12 +2370,12 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:44 + #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 + msgid "" +-"This hardware (or a combination thereof) is not supported by Red Hat. For " +-"more information on supported hardware, please refer to http://www.redhat." ++"This hardware (or a combination thereof) is not supported by PowerEL. For " ++"more information on supported hardware, please refer to http://linux.oracle." + "com/hardware." + msgstr "" + "이 하드웨어 (또는 조합)은 Red Hat에서 지원하지 않습니다. 지원되는 하드웨어에 " +-"대한 보다 자세한 내용은 http://www.redhat.com/hardware에서 참조하십시오." ++"대한 보다 자세한 내용은 http://www.powerel.org에서 참조하십시오." + + #: pyanaconda/ui/tui/spokes/progress.py:37 + msgid "Progress" +diff -Nur anaconda-21.48.22.56.orig/po/lt.po anaconda-21.48.22.56/po/lt.po +--- anaconda-21.48.22.56.orig/po/lt.po 2015-10-29 08:08:32.000000000 -0700 ++++ anaconda-21.48.22.56/po/lt.po 2015-11-20 00:30:56.329884661 -0800 +@@ -2399,13 +2399,13 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:44 + #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 + msgid "" +-"This hardware (or a combination thereof) is not supported by Red Hat. For " +-"more information on supported hardware, please refer to http://www.redhat." +-"com/hardware." +-msgstr "" +-"Šios aparatinės įrangos (ar jos kombinacijos) Red Hat nepalaiko. Daugiau " +-"informacijos apie palaikomą aparatinę įrangą rasite adresu http://www.redhat." +-"com/hardware." ++"This hardware (or a combination thereof) is not supported by PowerEL. For " ++"more information on supported hardware, please refer to http://linux.oracle." ++"com/." ++msgstr "" ++"Šios aparatinės įrangos (ar jos kombinacijos) PowerEL nepalaiko. Daugiau " ++"informacijos apie palaikomą aparatinę įrangą rasite adresu http://linux.oracle." ++"com/." + + #: pyanaconda/ui/tui/spokes/progress.py:37 + msgid "Progress" +diff -Nur anaconda-21.48.22.56.orig/po/lv.po anaconda-21.48.22.56/po/lv.po +--- anaconda-21.48.22.56.orig/po/lv.po 2015-10-29 08:08:33.000000000 -0700 ++++ anaconda-21.48.22.56/po/lv.po 2015-11-20 00:30:56.330884728 -0800 +@@ -2134,8 +2134,8 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:44 + #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 + msgid "" +-"This hardware (or a combination thereof) is not supported by Red Hat. For " +-"more information on supported hardware, please refer to http://www.redhat." ++"This hardware (or a combination thereof) is not supported by PowerEL. For " ++"more information on supported hardware, please refer to http://linux.oracle." + "com/hardware." + msgstr "" + +diff -Nur anaconda-21.48.22.56.orig/po/mai.po anaconda-21.48.22.56/po/mai.po +--- anaconda-21.48.22.56.orig/po/mai.po 2015-10-29 08:08:33.000000000 -0700 ++++ anaconda-21.48.22.56/po/mai.po 2015-11-20 00:30:56.331884733 -0800 +@@ -2101,8 +2101,8 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:44 + #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 + msgid "" +-"This hardware (or a combination thereof) is not supported by Red Hat. For " +-"more information on supported hardware, please refer to http://www.redhat." ++"This hardware (or a combination thereof) is not supported by PowerEL. For " ++"more information on supported hardware, please refer to http://linux.oracle." + "com/hardware." + msgstr "" + +diff -Nur anaconda-21.48.22.56.orig/po/mk.po anaconda-21.48.22.56/po/mk.po +--- anaconda-21.48.22.56.orig/po/mk.po 2015-10-29 08:08:33.000000000 -0700 ++++ anaconda-21.48.22.56/po/mk.po 2015-11-20 00:30:56.332884688 -0800 +@@ -2085,8 +2085,8 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:44 + #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 + msgid "" +-"This hardware (or a combination thereof) is not supported by Red Hat. For " +-"more information on supported hardware, please refer to http://www.redhat." ++"This hardware (or a combination thereof) is not supported by PowerEL. For " ++"more information on supported hardware, please refer to http://linux.oracle." + "com/hardware." + msgstr "" + +diff -Nur anaconda-21.48.22.56.orig/po/ml.po anaconda-21.48.22.56/po/ml.po +--- anaconda-21.48.22.56.orig/po/ml.po 2015-10-29 08:08:33.000000000 -0700 ++++ anaconda-21.48.22.56/po/ml.po 2015-11-20 00:30:56.333884738 -0800 +@@ -2172,12 +2172,12 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:44 + #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 + msgid "" +-"This hardware (or a combination thereof) is not supported by Red Hat. For " +-"more information on supported hardware, please refer to http://www.redhat." ++"This hardware (or a combination thereof) is not supported by PowerEL. For " ++"more information on supported hardware, please refer to http://linux.oracle." + "com/hardware." + msgstr "" + "ഈ ഹാര്‍ഡ്‌വെയര്‍ Red Hat പിന്തുണയ്ക്കുന്നില്ല. പിന്തുണയ്ക്കുന്ന ഹാര്‍ഡ്‌വെയര്‍ സംബന്ധിച്ചുള്ള കൂടുതല്‍ " +-"വിവരങ്ങള്‍ക്കായി http://www.redhat.com/hardware കാണുക." ++"വിവരങ്ങള്‍ക്കായി http://www.powerel.org കാണുക." + + #: pyanaconda/ui/tui/spokes/progress.py:37 + msgid "Progress" +diff -Nur anaconda-21.48.22.56.orig/po/mr.po anaconda-21.48.22.56/po/mr.po +--- anaconda-21.48.22.56.orig/po/mr.po 2015-10-29 08:08:33.000000000 -0700 ++++ anaconda-21.48.22.56/po/mr.po 2015-11-20 00:30:56.334884655 -0800 +@@ -2140,12 +2140,12 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:44 + #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 + msgid "" +-"This hardware (or a combination thereof) is not supported by Red Hat. For " +-"more information on supported hardware, please refer to http://www.redhat." ++"This hardware (or a combination thereof) is not supported by PowerEL. For " ++"more information on supported hardware, please refer to http://linux.oracle." + "com/hardware." + msgstr "" + "हे हार्डवेअर (किंवा जोडणी) Red Hat तर्फे समर्थीत नाही. समर्थीत हार्डवेअरकरिता अधिक " +-"माहितीविषयी, कृपया http://www.redhat.com/hardware पहा." ++"माहितीविषयी, कृपया http://www.powerel.org पहा." + + #: pyanaconda/ui/tui/spokes/progress.py:37 + msgid "Progress" +diff -Nur anaconda-21.48.22.56.orig/po/ms.po anaconda-21.48.22.56/po/ms.po +--- anaconda-21.48.22.56.orig/po/ms.po 2015-10-29 08:08:33.000000000 -0700 ++++ anaconda-21.48.22.56/po/ms.po 2015-11-20 00:30:56.335884696 -0800 +@@ -2080,8 +2080,8 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:44 + #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 + msgid "" +-"This hardware (or a combination thereof) is not supported by Red Hat. For " +-"more information on supported hardware, please refer to http://www.redhat." ++"This hardware (or a combination thereof) is not supported by PowerEL. For " ++"more information on supported hardware, please refer to http://linux.oracle." + "com/hardware." + msgstr "" + +diff -Nur anaconda-21.48.22.56.orig/po/nb.po anaconda-21.48.22.56/po/nb.po +--- anaconda-21.48.22.56.orig/po/nb.po 2015-10-29 08:08:33.000000000 -0700 ++++ anaconda-21.48.22.56/po/nb.po 2015-11-20 00:30:56.336884768 -0800 +@@ -2132,8 +2132,8 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:44 + #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 + msgid "" +-"This hardware (or a combination thereof) is not supported by Red Hat. For " +-"more information on supported hardware, please refer to http://www.redhat." ++"This hardware (or a combination thereof) is not supported by PowerEL. For " ++"more information on supported hardware, please refer to http://linux.oracle." + "com/hardware." + msgstr "" + +diff -Nur anaconda-21.48.22.56.orig/po/ne.po anaconda-21.48.22.56/po/ne.po +--- anaconda-21.48.22.56.orig/po/ne.po 2015-10-29 08:08:33.000000000 -0700 ++++ anaconda-21.48.22.56/po/ne.po 2015-11-20 00:30:56.337884667 -0800 +@@ -2082,8 +2082,8 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:44 + #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 + msgid "" +-"This hardware (or a combination thereof) is not supported by Red Hat. For " +-"more information on supported hardware, please refer to http://www.redhat." ++"This hardware (or a combination thereof) is not supported by PowerEL. For " ++"more information on supported hardware, please refer to http://linux.oracle." + "com/hardware." + msgstr "" + +diff -Nur anaconda-21.48.22.56.orig/po/nl.po anaconda-21.48.22.56/po/nl.po +--- anaconda-21.48.22.56.orig/po/nl.po 2015-10-29 08:08:33.000000000 -0700 ++++ anaconda-21.48.22.56/po/nl.po 2015-11-20 00:30:56.338884670 -0800 +@@ -2426,13 +2426,13 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:44 + #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 + msgid "" +-"This hardware (or a combination thereof) is not supported by Red Hat. For " +-"more information on supported hardware, please refer to http://www.redhat." ++"This hardware (or a combination thereof) is not supported by PowerEL. For " ++"more information on supported hardware, please refer to http://linux.oracle." + "com/hardware." + msgstr "" + "Deze hardware (of een combinatie hiervan) wordt niet ondersteund door Red " + "Hat. Voor meer informatie over ondersteunde hardware, refereer je naar " +-"http://www.redhat.com/hardware." ++"http://www.powerel.org." + + #: pyanaconda/ui/tui/spokes/progress.py:37 + msgid "Progress" +diff -Nur anaconda-21.48.22.56.orig/po/nso.po anaconda-21.48.22.56/po/nso.po +--- anaconda-21.48.22.56.orig/po/nso.po 2015-10-29 08:08:33.000000000 -0700 ++++ anaconda-21.48.22.56/po/nso.po 2015-11-20 00:30:56.339884700 -0800 +@@ -2081,8 +2081,8 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:44 + #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 + msgid "" +-"This hardware (or a combination thereof) is not supported by Red Hat. For " +-"more information on supported hardware, please refer to http://www.redhat." ++"This hardware (or a combination thereof) is not supported by PowerEL. For " ++"more information on supported hardware, please refer to http://linux.oracle." + "com/hardware." + msgstr "" + +diff -Nur anaconda-21.48.22.56.orig/po/or.po anaconda-21.48.22.56/po/or.po +--- anaconda-21.48.22.56.orig/po/or.po 2015-10-29 08:08:33.000000000 -0700 ++++ anaconda-21.48.22.56/po/or.po 2015-11-20 00:30:56.340884745 -0800 +@@ -2167,12 +2167,12 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:44 + #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 + msgid "" +-"This hardware (or a combination thereof) is not supported by Red Hat. For " +-"more information on supported hardware, please refer to http://www.redhat." ++"This hardware (or a combination thereof) is not supported by PowerEL. For " ++"more information on supported hardware, please refer to http://linux.oracle." + "com/hardware." + msgstr "" + "ଏହି ହାର୍ଡୱେର (କିମ୍ବା ସେଗୁଡ଼ିକର ଗୋଟିଏ ସମଷ୍ଟି) Red Hat ଦ୍ୱାରା ସମର୍ଥିତ ନୁହଁ। ସମର୍ଥିତ ହାର୍ଡୱେର " +-"ବିଷୟରେ ଅଧିକ ସୂଚନା ପାଇଁ, ଦୟାକରି http://www.redhat.com/hardware କୁ ଦେଖନ୍ତୁ।" ++"ବିଷୟରେ ଅଧିକ ସୂଚନା ପାଇଁ, ଦୟାକରି http://www.powerel.org କୁ ଦେଖନ୍ତୁ।" + + #: pyanaconda/ui/tui/spokes/progress.py:37 + msgid "Progress" +diff -Nur anaconda-21.48.22.56.orig/po/pa.po anaconda-21.48.22.56/po/pa.po +--- anaconda-21.48.22.56.orig/po/pa.po 2015-10-29 08:08:33.000000000 -0700 ++++ anaconda-21.48.22.56/po/pa.po 2015-11-20 00:30:56.341884714 -0800 +@@ -2214,12 +2214,12 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:44 + #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 + msgid "" +-"This hardware (or a combination thereof) is not supported by Red Hat. For " +-"more information on supported hardware, please refer to http://www.redhat." ++"This hardware (or a combination thereof) is not supported by PowerEL. For " ++"more information on supported hardware, please refer to http://linux.oracle." + "com/hardware." + msgstr "" + "ਇਹ ਹਾਰਡਵੇਅਰ (ਜਾਂ ਇਹਨਾਂ ਦਾ ਇੱਕ ਮਿਸ਼ਰਣ) Red Hat ਦੁਆਰਾ ਸਮਰਥਿਤ ਨਹੀਂ ਹੈ। ਸਮਰਥਿਤ ਹਾਰਡਵੇਅਰ " +-"ਬਾਰੇ ਵਧੇਰੇ ਜਾਣਕਾਰੀ ਲਈ, ਕਿਰਪਾ ਕਰਕੇ http://www.redhat.com/hardware ਵੇਖੋ।" ++"ਬਾਰੇ ਵਧੇਰੇ ਜਾਣਕਾਰੀ ਲਈ, ਕਿਰਪਾ ਕਰਕੇ http://www.powerel.org ਵੇਖੋ।" + + #: pyanaconda/ui/tui/spokes/progress.py:37 + msgid "Progress" +diff -Nur anaconda-21.48.22.56.orig/po/pl.po anaconda-21.48.22.56/po/pl.po +--- anaconda-21.48.22.56.orig/po/pl.po 2015-10-29 08:08:33.000000000 -0700 ++++ anaconda-21.48.22.56/po/pl.po 2015-11-20 00:30:56.342884670 -0800 +@@ -2419,13 +2419,13 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:44 + #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 + msgid "" +-"This hardware (or a combination thereof) is not supported by Red Hat. For " +-"more information on supported hardware, please refer to http://www.redhat." ++"This hardware (or a combination thereof) is not supported by PowerEL. For " ++"more information on supported hardware, please refer to http://linux.oracle." + "com/hardware." + msgstr "" + "Ten sprzęt (lub jego kombinacja) nie jest obsługiwany przez firmę Red Hat. " + "Aby dowiedzieć się więcej o obsługiwanym sprzęcie, należy zobaczyć stronę " +-"http://www.redhat.com/hardware." ++"http://www.powerel.org." + + #: pyanaconda/ui/tui/spokes/progress.py:37 + msgid "Progress" +diff -Nur anaconda-21.48.22.56.orig/po/pt_BR.po anaconda-21.48.22.56/po/pt_BR.po +--- anaconda-21.48.22.56.orig/po/pt_BR.po 2015-10-29 08:08:34.000000000 -0700 ++++ anaconda-21.48.22.56/po/pt_BR.po 2015-11-20 00:30:56.343884792 -0800 +@@ -2498,13 +2498,13 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:44 + #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 + msgid "" +-"This hardware (or a combination thereof) is not supported by Red Hat. For " +-"more information on supported hardware, please refer to http://www.redhat." ++"This hardware (or a combination thereof) is not supported by PowerEL. For " ++"more information on supported hardware, please refer to http://linux.oracle." + "com/hardware." + msgstr "" + "Este hardware (ou uma combinação) não é suportado pela Red Hat. Para obter " + "mais informações sobre hardware suportados, por favor consulte o http://www." +-"redhat.com/hardware." ++"redhat.com." + + #: pyanaconda/ui/tui/spokes/progress.py:37 + msgid "Progress" +diff -Nur anaconda-21.48.22.56.orig/po/pt.po anaconda-21.48.22.56/po/pt.po +--- anaconda-21.48.22.56.orig/po/pt.po 2015-10-29 08:08:34.000000000 -0700 ++++ anaconda-21.48.22.56/po/pt.po 2015-11-20 00:30:56.344884693 -0800 +@@ -2238,8 +2238,8 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:44 + #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 + msgid "" +-"This hardware (or a combination thereof) is not supported by Red Hat. For " +-"more information on supported hardware, please refer to http://www.redhat." ++"This hardware (or a combination thereof) is not supported by PowerEL. For " ++"more information on supported hardware, please refer to http://linux.oracle." + "com/hardware." + msgstr "" + +diff -Nur anaconda-21.48.22.56.orig/po/ro.po anaconda-21.48.22.56/po/ro.po +--- anaconda-21.48.22.56.orig/po/ro.po 2015-10-29 08:08:34.000000000 -0700 ++++ anaconda-21.48.22.56/po/ro.po 2015-11-20 00:30:56.345884750 -0800 +@@ -2081,8 +2081,8 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:44 + #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 + msgid "" +-"This hardware (or a combination thereof) is not supported by Red Hat. For " +-"more information on supported hardware, please refer to http://www.redhat." ++"This hardware (or a combination thereof) is not supported by PowerEL. For " ++"more information on supported hardware, please refer to http://linux.oracle." + "com/hardware." + msgstr "" + +diff -Nur anaconda-21.48.22.56.orig/po/ru.po anaconda-21.48.22.56/po/ru.po +--- anaconda-21.48.22.56.orig/po/ru.po 2015-10-29 08:08:34.000000000 -0700 ++++ anaconda-21.48.22.56/po/ru.po 2015-11-20 00:32:18.254864251 -0800 +@@ -2534,13 +2534,13 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:44 + #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 + msgid "" +-"This hardware (or a combination thereof) is not supported by Red Hat. For " +-"more information on supported hardware, please refer to http://www.redhat." ++"This hardware (or a combination thereof) is not supported by PowerEL. For " ++"more information on supported hardware, please refer to http://linux.oracle." + "com/hardware." + msgstr "" + "Это оборудование (и его комбинации) не поддерживается Red Hat. За " +-"дополнительной информацией о поддержке оборудования обратитесь к http://www." +-"redhat.com/hardware." ++"дополнительной информацией о поддержке оборудования обратитесь к http://linux." ++"oracle.com/hardware." + + #: pyanaconda/ui/tui/spokes/progress.py:37 + msgid "Progress" +diff -Nur anaconda-21.48.22.56.orig/po/si.po anaconda-21.48.22.56/po/si.po +--- anaconda-21.48.22.56.orig/po/si.po 2015-10-29 08:08:34.000000000 -0700 ++++ anaconda-21.48.22.56/po/si.po 2015-11-20 00:30:56.348884870 -0800 +@@ -2104,8 +2104,8 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:44 + #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 + msgid "" +-"This hardware (or a combination thereof) is not supported by Red Hat. For " +-"more information on supported hardware, please refer to http://www.redhat." ++"This hardware (or a combination thereof) is not supported by PowerEL. For " ++"more information on supported hardware, please refer to http://linux.oracle." + "com/hardware." + msgstr "" + +diff -Nur anaconda-21.48.22.56.orig/po/sk.po anaconda-21.48.22.56/po/sk.po +--- anaconda-21.48.22.56.orig/po/sk.po 2015-10-29 08:08:34.000000000 -0700 ++++ anaconda-21.48.22.56/po/sk.po 2015-11-20 00:30:56.349884671 -0800 +@@ -2318,13 +2318,12 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:44 + #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 + msgid "" +-"This hardware (or a combination thereof) is not supported by Red Hat. For " +-"more information on supported hardware, please refer to http://www.redhat." +-"com/hardware." +-msgstr "" +-"Tento hardvér (alebo jeho kombináciu) Red Hat nepodporuje. Pre viac " +-"informácií o podporovanom hardvéri, prosím navštívte http://www.redhat.com/" +-"hardware." ++"This hardware (or a combination thereof) is not supported by PowerEL. For " ++"more information on supported hardware, please refer to http://linux.oracle." ++"com/." ++msgstr "" ++"Tento hardvér (alebo jeho kombináciu) PowerEL nepodporuje. Pre viac " ++"informácií o podporovanom hardvéri, prosím navštívte http://www.powerel.org/" + + #: pyanaconda/ui/tui/spokes/progress.py:37 + msgid "Progress" +diff -Nur anaconda-21.48.22.56.orig/po/sl.po anaconda-21.48.22.56/po/sl.po +--- anaconda-21.48.22.56.orig/po/sl.po 2015-10-29 08:08:34.000000000 -0700 ++++ anaconda-21.48.22.56/po/sl.po 2015-11-20 00:30:56.350884908 -0800 +@@ -2086,8 +2086,8 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:44 + #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 + msgid "" +-"This hardware (or a combination thereof) is not supported by Red Hat. For " +-"more information on supported hardware, please refer to http://www.redhat." ++"This hardware (or a combination thereof) is not supported by PowerEL. For " ++"more information on supported hardware, please refer to http://linux.oracle." + "com/hardware." + msgstr "" + +diff -Nur anaconda-21.48.22.56.orig/po/sq.po anaconda-21.48.22.56/po/sq.po +--- anaconda-21.48.22.56.orig/po/sq.po 2015-10-29 08:08:34.000000000 -0700 ++++ anaconda-21.48.22.56/po/sq.po 2015-11-20 00:30:56.351884764 -0800 +@@ -2120,8 +2120,8 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:44 + #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 + msgid "" +-"This hardware (or a combination thereof) is not supported by Red Hat. For " +-"more information on supported hardware, please refer to http://www.redhat." ++"This hardware (or a combination thereof) is not supported by PowerEL. For " ++"more information on supported hardware, please refer to http://linux.oracle." + "com/hardware." + msgstr "" + +diff -Nur anaconda-21.48.22.56.orig/po/sr@latin.po anaconda-21.48.22.56/po/sr@latin.po +--- anaconda-21.48.22.56.orig/po/sr@latin.po 2015-10-29 08:08:34.000000000 -0700 ++++ anaconda-21.48.22.56/po/sr@latin.po 2015-11-20 00:30:56.352884726 -0800 +@@ -2102,8 +2102,8 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:44 + #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 + msgid "" +-"This hardware (or a combination thereof) is not supported by Red Hat. For " +-"more information on supported hardware, please refer to http://www.redhat." ++"This hardware (or a combination thereof) is not supported by PowerEL. For " ++"more information on supported hardware, please refer to http://linux.oracle." + "com/hardware." + msgstr "" + +diff -Nur anaconda-21.48.22.56.orig/po/sr.po anaconda-21.48.22.56/po/sr.po +--- anaconda-21.48.22.56.orig/po/sr.po 2015-10-29 08:08:34.000000000 -0700 ++++ anaconda-21.48.22.56/po/sr.po 2015-11-20 00:30:56.353884781 -0800 +@@ -2382,8 +2382,8 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:44 + #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 + msgid "" +-"This hardware (or a combination thereof) is not supported by Red Hat. For " +-"more information on supported hardware, please refer to http://www.redhat." ++"This hardware (or a combination thereof) is not supported by PowerEL. For " ++"more information on supported hardware, please refer to http://linux.oracle." + "com/hardware." + msgstr "" + "Овај хардвер (или комбинација истог) није подржана од Red Hat-а. За више " +diff -Nur anaconda-21.48.22.56.orig/po/sv.po anaconda-21.48.22.56/po/sv.po +--- anaconda-21.48.22.56.orig/po/sv.po 2015-10-29 08:08:34.000000000 -0700 ++++ anaconda-21.48.22.56/po/sv.po 2015-11-20 00:30:56.354884776 -0800 +@@ -2239,12 +2239,12 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:44 + #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 + msgid "" +-"This hardware (or a combination thereof) is not supported by Red Hat. For " +-"more information on supported hardware, please refer to http://www.redhat." ++"This hardware (or a combination thereof) is not supported by PowerEL. For " ++"more information on supported hardware, please refer to http://linux.oracle." + "com/hardware." + msgstr "" + "Denna hårdvara (eller en kombination av den) stödjs inte av Red Hat. För " +-"mer information om hårdvara som stödjs, se http://www.redhat.com/hardware." ++"mer information om hårdvara som stödjs, se http://www.powerel.org." + + #: pyanaconda/ui/tui/spokes/progress.py:37 + msgid "Progress" +diff -Nur anaconda-21.48.22.56.orig/po/ta.po anaconda-21.48.22.56/po/ta.po +--- anaconda-21.48.22.56.orig/po/ta.po 2015-10-29 08:08:34.000000000 -0700 ++++ anaconda-21.48.22.56/po/ta.po 2015-11-20 00:30:56.356699377 -0800 +@@ -2315,12 +2315,12 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:44 + #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 + msgid "" +-"This hardware (or a combination thereof) is not supported by Red Hat. For " +-"more information on supported hardware, please refer to http://www.redhat." ++"This hardware (or a combination thereof) is not supported by PowerEL. For " ++"more information on supported hardware, please refer to http://linux.oracle." + "com/hardware." + msgstr "" + "இந்த வன்பொருளை (அல்லது இதன் சேர்க்கையை) Red Hat ஆதரிக்காது. ஆதரிக்கப்படும் வன்பொருள் " +-"பற்றிய கூடுதல் தகவலுக்கு, http://www.redhat.com/hardware ஐப் பார்க்கவும்." ++"பற்றிய கூடுதல் தகவலுக்கு, http://www.powerel.org ஐப் பார்க்கவும்." + + #: pyanaconda/ui/tui/spokes/progress.py:37 + msgid "Progress" +diff -Nur anaconda-21.48.22.56.orig/po/te.po anaconda-21.48.22.56/po/te.po +--- anaconda-21.48.22.56.orig/po/te.po 2015-10-29 08:08:35.000000000 -0700 ++++ anaconda-21.48.22.56/po/te.po 2015-11-20 00:30:56.357884728 -0800 +@@ -2165,12 +2165,12 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:44 + #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 + msgid "" +-"This hardware (or a combination thereof) is not supported by Red Hat. For " +-"more information on supported hardware, please refer to http://www.redhat." ++"This hardware (or a combination thereof) is not supported by PowerEL. For " ++"more information on supported hardware, please refer to http://linux.oracle." + "com/hardware." + msgstr "" + "ఈ హార్డువేర్ (లేదా సమ్మేళనం) Red Hat చేత తోడ్పాటునీయబడదు. తోడ్పాటునిచ్చు హార్డువేరుపై మరింత సమాచారం " +-"కొరకు, దయచేసి http://www.redhat.com/hardware చూడండి." ++"కొరకు, దయచేసి http://www.powerel.org చూడండి." + + #: pyanaconda/ui/tui/spokes/progress.py:37 + msgid "Progress" +diff -Nur anaconda-21.48.22.56.orig/po/tg.po anaconda-21.48.22.56/po/tg.po +--- anaconda-21.48.22.56.orig/po/tg.po 2015-10-29 08:08:35.000000000 -0700 ++++ anaconda-21.48.22.56/po/tg.po 2015-11-20 00:30:56.358884736 -0800 +@@ -2078,8 +2078,8 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:44 + #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 + msgid "" +-"This hardware (or a combination thereof) is not supported by Red Hat. For " +-"more information on supported hardware, please refer to http://www.redhat." ++"This hardware (or a combination thereof) is not supported by PowerEL. For " ++"more information on supported hardware, please refer to http://linux.oracle." + "com/hardware." + msgstr "" + +diff -Nur anaconda-21.48.22.56.orig/po/th.po anaconda-21.48.22.56/po/th.po +--- anaconda-21.48.22.56.orig/po/th.po 2015-10-29 08:08:35.000000000 -0700 ++++ anaconda-21.48.22.56/po/th.po 2015-11-20 00:30:56.359884683 -0800 +@@ -2168,8 +2168,8 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:44 + #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 + msgid "" +-"This hardware (or a combination thereof) is not supported by Red Hat. For " +-"more information on supported hardware, please refer to http://www.redhat." ++"This hardware (or a combination thereof) is not supported by PowerEL. For " ++"more information on supported hardware, please refer to http://linux.oracle." + "com/hardware." + msgstr "" + +diff -Nur anaconda-21.48.22.56.orig/po/tr.po anaconda-21.48.22.56/po/tr.po +--- anaconda-21.48.22.56.orig/po/tr.po 2015-10-29 08:08:35.000000000 -0700 ++++ anaconda-21.48.22.56/po/tr.po 2015-11-20 00:30:56.359884683 -0800 +@@ -2212,8 +2212,8 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:44 + #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 + msgid "" +-"This hardware (or a combination thereof) is not supported by Red Hat. For " +-"more information on supported hardware, please refer to http://www.redhat." ++"This hardware (or a combination thereof) is not supported by PowerEL. For " ++"more information on supported hardware, please refer to http://linux.oracle." + "com/hardware." + msgstr "" + +diff -Nur anaconda-21.48.22.56.orig/po/uk.po anaconda-21.48.22.56/po/uk.po +--- anaconda-21.48.22.56.orig/po/uk.po 2015-10-29 08:08:35.000000000 -0700 ++++ anaconda-21.48.22.56/po/uk.po 2015-11-20 00:30:56.361885630 -0800 +@@ -2406,13 +2406,13 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:44 + #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 + msgid "" +-"This hardware (or a combination thereof) is not supported by Red Hat. For " +-"more information on supported hardware, please refer to http://www.redhat." ++"This hardware (or a combination thereof) is not supported by PowerEL. For " ++"more information on supported hardware, please refer to http://linux.oracle." + "com/hardware." + msgstr "" + "Це обладнання (або його комбінація) не підтримується Red Hat. Докладніші " + "відомості щодо підтримуваного обладнання можна знайти на сторінці http://www." +-"redhat.com/hardware." ++"redhat.com." + + #: pyanaconda/ui/tui/spokes/progress.py:37 + msgid "Progress" +diff -Nur anaconda-21.48.22.56.orig/po/ur.po anaconda-21.48.22.56/po/ur.po +--- anaconda-21.48.22.56.orig/po/ur.po 2015-10-29 08:08:35.000000000 -0700 ++++ anaconda-21.48.22.56/po/ur.po 2015-11-20 00:30:56.362884639 -0800 +@@ -2079,8 +2079,8 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:44 + #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 + msgid "" +-"This hardware (or a combination thereof) is not supported by Red Hat. For " +-"more information on supported hardware, please refer to http://www.redhat." ++"This hardware (or a combination thereof) is not supported by PowerEL. For " ++"more information on supported hardware, please refer to http://linux.oracle." + "com/hardware." + msgstr "" + +diff -Nur anaconda-21.48.22.56.orig/po/vi.po anaconda-21.48.22.56/po/vi.po +--- anaconda-21.48.22.56.orig/po/vi.po 2015-10-29 08:08:35.000000000 -0700 ++++ anaconda-21.48.22.56/po/vi.po 2015-11-20 00:30:56.363884662 -0800 +@@ -2078,8 +2078,8 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:44 + #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 + msgid "" +-"This hardware (or a combination thereof) is not supported by Red Hat. For " +-"more information on supported hardware, please refer to http://www.redhat." ++"This hardware (or a combination thereof) is not supported by PowerEL. For " ++"more information on supported hardware, please refer to http://linux.oracle." + "com/hardware." + msgstr "" + +diff -Nur anaconda-21.48.22.56.orig/po/zh_CN.po anaconda-21.48.22.56/po/zh_CN.po +--- anaconda-21.48.22.56.orig/po/zh_CN.po 2015-10-29 08:08:35.000000000 -0700 ++++ anaconda-21.48.22.56/po/zh_CN.po 2015-11-20 00:33:36.216865065 -0800 +@@ -2417,11 +2417,11 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:44 + #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 + msgid "" +-"This hardware (or a combination thereof) is not supported by Red Hat. For " +-"more information on supported hardware, please refer to http://www.redhat." ++"This hardware (or a combination thereof) is not supported by PowerEL. For " ++"more information on supported hardware, please refer to http://linux.oracle." + "com/hardware." + msgstr "" +-"红帽不支持这个硬件 (或其组合)。有关支持的硬件信息请参考 http://www.redhat." ++"甲骨文不支持这个硬件 (或其组合)。有关支持的硬件信息请参考 http://linux.oracle." + "com/hardware 。" + + #: pyanaconda/ui/tui/spokes/progress.py:37 +diff -Nur anaconda-21.48.22.56.orig/po/zh_TW.po anaconda-21.48.22.56/po/zh_TW.po +--- anaconda-21.48.22.56.orig/po/zh_TW.po 2015-10-29 08:08:35.000000000 -0700 ++++ anaconda-21.48.22.56/po/zh_TW.po 2015-11-20 00:30:56.366884712 -0800 +@@ -2290,12 +2290,12 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:44 + #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 + msgid "" +-"This hardware (or a combination thereof) is not supported by Red Hat. For " +-"more information on supported hardware, please refer to http://www.redhat." ++"This hardware (or a combination thereof) is not supported by PowerEL. For " ++"more information on supported hardware, please refer to http://linux.oracle." + "com/hardware." + msgstr "" +-"Red Hat 不支援此硬體 (或其硬體組合)。若要瞭解更多有關硬體支援的資訊,請參考 " +-"http://www.redhat.com/hardware。" ++"PowerEL 不支援此硬體 (或其硬體組合)。若要瞭解更多有關硬體支援的資訊,請參考 " ++"http://www.powerel.org。" + + #: pyanaconda/ui/tui/spokes/progress.py:37 + msgid "Progress" +diff -Nur anaconda-21.48.22.56.orig/po/zu.po anaconda-21.48.22.56/po/zu.po +--- anaconda-21.48.22.56.orig/po/zu.po 2015-10-29 08:08:35.000000000 -0700 ++++ anaconda-21.48.22.56/po/zu.po 2015-11-20 00:30:56.367884778 -0800 +@@ -2080,8 +2080,8 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:44 + #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 + msgid "" +-"This hardware (or a combination thereof) is not supported by Red Hat. For " +-"more information on supported hardware, please refer to http://www.redhat." ++"This hardware (or a combination thereof) is not supported by PowerEL. For " ++"more information on supported hardware, please refer to http://linux.oracle." + "com/hardware." + msgstr "" + +diff -Nur anaconda-21.48.22.56.orig/pyanaconda/nm.py anaconda-21.48.22.56/pyanaconda/nm.py +--- anaconda-21.48.22.56.orig/pyanaconda/nm.py 2015-10-29 08:06:38.000000000 -0700 ++++ anaconda-21.48.22.56/pyanaconda/nm.py 2015-11-20 00:30:56.367884778 -0800 +@@ -1151,7 +1151,7 @@ + except ValueError as e: + print(" %s" % e) + +- ssid = "Red Hat Guest" ++ ssid = "PowerEL Linux Guest" + print("Settings for AP %s: %s" % (ssid, _settings_for_ap(ssid))) + ssid = "nonexisting" + print("Settings for AP %s: %s" % (ssid, _settings_for_ap(ssid))) +diff -Nur anaconda-21.48.22.56.orig/pyanaconda/ui/gui/spokes/welcome.glade anaconda-21.48.22.56/pyanaconda/ui/gui/spokes/welcome.glade +--- anaconda-21.48.22.56.orig/pyanaconda/ui/gui/spokes/welcome.glade 2015-10-29 07:23:19.000000000 -0700 ++++ anaconda-21.48.22.56/pyanaconda/ui/gui/spokes/welcome.glade 2015-11-20 00:30:56.367884778 -0800 +@@ -519,7 +519,7 @@ + True + False + start +- This hardware (or a combination thereof) is not supported by Red Hat. For more information on supported hardware, please refer to http://www.redhat.com/hardware. ++ This hardware (or a combination thereof) is not supported by PowerEL. For more information on supported hardware, please refer to http://www.powerel.org/. + True + + +diff -Nur anaconda-21.48.22.56.orig/pyanaconda/ui/gui/spokes/welcome.glade.h anaconda-21.48.22.56/pyanaconda/ui/gui/spokes/welcome.glade.h +--- anaconda-21.48.22.56.orig/pyanaconda/ui/gui/spokes/welcome.glade.h 2015-10-29 08:08:15.000000000 -0700 ++++ anaconda-21.48.22.56/pyanaconda/ui/gui/spokes/welcome.glade.h 2015-11-20 00:30:56.368884718 -0800 +@@ -18,5 +18,5 @@ + char *s = C_("GUI|Welcome|Unsupported Hardware Dialog", "_Quit"); + char *s = C_("GUI|Welcome|Unsupported Hardware Dialog", "_Continue"); + char *s = N_("Unsupported Hardware Detected"); +-char *s = N_("This hardware (or a combination thereof) is not supported by Red Hat. For more information on supported hardware, please refer to http://www.redhat.com/hardware."); ++char *s = N_("This hardware (or a combination thereof) is not supported by PowerEL. For more information on supported hardware, please refer to http://www.powerel.org/."); + char *s = N_("Unsupported Hardware"); +diff -Nur anaconda-21.48.22.56.orig/pyanaconda/ui/tui/spokes/warnings.py anaconda-21.48.22.56/pyanaconda/ui/tui/spokes/warnings.py +--- anaconda-21.48.22.56.orig/pyanaconda/ui/tui/spokes/warnings.py 2015-10-29 07:23:19.000000000 -0700 ++++ anaconda-21.48.22.56/pyanaconda/ui/tui/spokes/warnings.py 2015-11-20 00:30:56.368884718 -0800 +@@ -42,9 +42,9 @@ + StandaloneTUISpoke.__init__(self, *args, **kwargs) + + self._message = _("This hardware (or a combination thereof) is not " +- "supported by Red Hat. For more information on " ++ "supported by PowerEL. For more information on " + "supported hardware, please refer to " +- "http://www.redhat.com/hardware." ) ++ "http://www.powerel.org/." ) + # Does anything need to be displayed? + self._unsupported = productName.startswith("Red Hat ") and \ + is_unsupported_hw() and \ diff --git a/SOURCES/anaconda-powerel-skip-retry-if-not-connected.patch b/SOURCES/anaconda-powerel-skip-retry-if-not-connected.patch new file mode 100644 index 00000000..2e0fdda9 --- /dev/null +++ b/SOURCES/anaconda-powerel-skip-retry-if-not-connected.patch @@ -0,0 +1,14 @@ +diff -uNr anaconda-21.48.22.56__orig/pyanaconda/packaging/yumpayload.py anaconda-21.48.22.56/pyanaconda/packaging/yumpayload.py +--- anaconda-21.48.22.56__orig/pyanaconda/packaging/yumpayload.py 2015-12-08 14:36:52.533000000 +0000 ++++ anaconda-21.48.22.56/pyanaconda/packaging/yumpayload.py 2015-12-08 14:38:51.464000000 +0000 +@@ -648,6 +648,10 @@ + # so that unattended installations on unreliable networks have + # a higher chance of finishing successfully + xdelay = xprogressive_delay() ++ if not nm_is_connected(): ++ MAX_METADATA_DOWNLOAD_RETRIES = 1 ++ else: ++ MAX_METADATA_DOWNLOAD_RETRIES = 10 + for retry_count in xrange(0, MAX_METADATA_DOWNLOAD_RETRIES + 1): + if retry_count > 0: + # introduce a retry delay diff --git a/SOURCES/anaconda-powerel-updatenvram.patch b/SOURCES/anaconda-powerel-updatenvram.patch new file mode 100644 index 00000000..c509a052 --- /dev/null +++ b/SOURCES/anaconda-powerel-updatenvram.patch @@ -0,0 +1,29 @@ +--- anaconda-21.48.22.56/pyanaconda/bootloader.py 2016-02-10 18:08:58.296322802 +0100 ++++ anaconda-21.48.22.56/pyanaconda/bootloader.py 2016-02-10 18:11:07.476335720 +0100 +@@ -1569,7 +1569,7 @@ + rc = iutil.execInSysroot("grub2-mkconfig", + ["-o", self.config_file]) + if rc: +- raise BootLoaderError("failed to write boot loader configuration") ++ raise BootLoaderError("failed to write boot loader configuration [%s] (%s)" % (self.config_file,rc)) + + # + # installation +@@ -2017,7 +2017,7 @@ + else: + self.updateNVRAMBootList() + +- super(IPSeriesGRUB2, self).install(args=["--no-nvram"]) ++ super(IPSeriesGRUB2, self).install(args=["--no-nvram","--force"]) + + # This will update the PowerPC's (ppc) bios boot devive order list + def updateNVRAMBootList(self): +@@ -2054,7 +2054,7 @@ + + rc = iutil.execWithRedirect("nvram", ["--update-config", update_value]) + if rc: +- log.error("Failed to update new boot device order") ++ log.error("Failed to update new boot device order [%s] (%s)" % (update_value,rc)) + + # + # In addition to the normal grub configuration variable, add one more to set the size of the