diff options
author | msivak <msivak> | 2007-08-23 06:59:21 +0000 |
---|---|---|
committer | msivak <msivak> | 2007-08-23 06:59:21 +0000 |
commit | 4bb57cf4b10e3fe48533efb87ec1c01b43d78566 (patch) | |
tree | 0e518046512e09cbf85d0e43814447645ad4733d /constants.py | |
parent | 229ec26ea18efb0b03970bdd1fda02c57b28d143 (diff) | |
download | anaconda-4bb57cf4b10e3fe48533efb87ec1c01b43d78566.tar.gz anaconda-4bb57cf4b10e3fe48533efb87ec1c01b43d78566.tar.xz anaconda-4bb57cf4b10e3fe48533efb87ec1c01b43d78566.zip |
#244531 - Show the architecture during install
* loader2/loader.h: Add getProductArch method.
* loader2/loader.c: Populate productArch and define getProductArch.
Show the architecture in stage1.
* constants.py: add productArch
* product.py: populate productArch
* text.py: Show the architecture during text mode stage2.
Diffstat (limited to 'constants.py')
-rw-r--r-- | constants.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/constants.py b/constants.py index 5924e505e..4e1a2c917 100644 --- a/constants.py +++ b/constants.py @@ -59,6 +59,7 @@ NUMBER_OF_CDS = 5 import product productName = product.productName productVersion = product.productVersion +productArch = product.productArch productPath = product.productPath bugzillaUrl = product.bugUrl |