* [U-Boot-Users] [PATCH] Recognize 'powerpc' As an Alias for IH_ARCH_POWERPC
@ 2008-05-04 22:53 Grant Erickson
2008-05-04 23:04 ` Wolfgang Denk
2008-05-04 23:45 ` [U-Boot-Users] [PATCH v2] Recognize 'powerpc' As an Alias for IH_ARCH_PPC Grant Erickson
0 siblings, 2 replies; 5+ messages in thread
From: Grant Erickson @ 2008-05-04 22:53 UTC (permalink / raw)
To: u-boot
Add support for the recognition of 'powerpc' as an alias for the PowerPC
architecture type since Linux is already trending in that direction,
preferring 'powerpc' to 'ppc'.
Signed-off-by: Grant Erickson <gerickson@nuovations.com>
---
common/image.c | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/common/image.c b/common/image.c
index 4a024d4..ecbf9d8 100644
--- a/common/image.c
+++ b/common/image.c
@@ -93,6 +93,7 @@ static table_entry_t uimage_arch[] = {
{ IH_ARCH_MIPS64, "mips64", "MIPS 64 Bit", },
{ IH_ARCH_NIOS, "nios", "NIOS", },
{ IH_ARCH_NIOS2, "nios2", "NIOS II", },
+ { IH_ARCH_POWERPC, "powerpc", "PowerPC", },
{ IH_ARCH_PPC, "ppc", "PowerPC", },
{ IH_ARCH_S390, "s390", "IBM S390", },
{ IH_ARCH_SH, "sh", "SuperH", },
--
1.5.4.3
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [U-Boot-Users] [PATCH] Recognize 'powerpc' As an Alias for IH_ARCH_POWERPC
2008-05-04 22:53 [U-Boot-Users] [PATCH] Recognize 'powerpc' As an Alias for IH_ARCH_POWERPC Grant Erickson
@ 2008-05-04 23:04 ` Wolfgang Denk
2008-05-04 23:39 ` Grant Erickson
2008-05-04 23:45 ` [U-Boot-Users] [PATCH v2] Recognize 'powerpc' As an Alias for IH_ARCH_PPC Grant Erickson
1 sibling, 1 reply; 5+ messages in thread
From: Wolfgang Denk @ 2008-05-04 23:04 UTC (permalink / raw)
To: u-boot
In message <1209941611-7480-1-git-send-email-gerickson@nuovations.com> you wrote:
> Add support for the recognition of 'powerpc' as an alias for the PowerPC
> architecture type since Linux is already trending in that direction,
> preferring 'powerpc' to 'ppc'.
>
> Signed-off-by: Grant Erickson <gerickson@nuovations.com>
> ---
> common/image.c | 1 +
> 1 files changed, 1 insertions(+), 0 deletions(-)
>
> diff --git a/common/image.c b/common/image.c
> index 4a024d4..ecbf9d8 100644
> --- a/common/image.c
> +++ b/common/image.c
> @@ -93,6 +93,7 @@ static table_entry_t uimage_arch[] = {
> { IH_ARCH_MIPS64, "mips64", "MIPS 64 Bit", },
> { IH_ARCH_NIOS, "nios", "NIOS", },
> { IH_ARCH_NIOS2, "nios2", "NIOS II", },
> + { IH_ARCH_POWERPC, "powerpc", "PowerPC", },
> { IH_ARCH_PPC, "ppc", "PowerPC", },
> { IH_ARCH_S390, "s390", "IBM S390", },
> { IH_ARCH_SH, "sh", "SuperH", },
Do we really want to do that? At least you have to provide some user
documentation, when to chose one of the other, and what the diffe-
rence between both is...
Best regards,
Wolfgang Denk
--
DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de
All a hacker needs is a tight PUSHJ, a loose pair of UUOs, and a warm
place to shift.
^ permalink raw reply [flat|nested] 5+ messages in thread
* [U-Boot-Users] [PATCH] Recognize 'powerpc' As an Alias for IH_ARCH_POWERPC
2008-05-04 23:04 ` Wolfgang Denk
@ 2008-05-04 23:39 ` Grant Erickson
0 siblings, 0 replies; 5+ messages in thread
From: Grant Erickson @ 2008-05-04 23:39 UTC (permalink / raw)
To: u-boot
On 5/4/08 4:04 PM, Wolfgang Denk wrote:
> In message <1209941611-7480-1-git-send-email-gerickson@nuovations.com> you
> wrote:
>> Add support for the recognition of 'powerpc' as an alias for the PowerPC
>> architecture type since Linux is already trending in that direction,
>> preferring 'powerpc' to 'ppc'.
>>
>> Signed-off-by: Grant Erickson <gerickson@nuovations.com>
>> ---
>> common/image.c | 1 +
>> 1 files changed, 1 insertions(+), 0 deletions(-)
>>
>> diff --git a/common/image.c b/common/image.c
>> index 4a024d4..ecbf9d8 100644
>> --- a/common/image.c
>> +++ b/common/image.c
>> @@ -93,6 +93,7 @@ static table_entry_t uimage_arch[] = {
>> { IH_ARCH_MIPS64, "mips64", "MIPS 64 Bit", },
>> { IH_ARCH_NIOS, "nios", "NIOS", },
>> { IH_ARCH_NIOS2, "nios2", "NIOS II", },
>> + { IH_ARCH_POWERPC, "powerpc", "PowerPC", },
>> { IH_ARCH_PPC, "ppc", "PowerPC", },
>> { IH_ARCH_S390, "s390", "IBM S390", },
>> { IH_ARCH_SH, "sh", "SuperH", },
>
> Do we really want to do that? At least you have to provide some user
> documentation, when to chose one of the other, and what the diffe-
> rence between both is...
Meine Fehler. You are correct, we most certainly do NOT want to do that
(i.e. define IH_ARCH_POWERPC). That should* have been "IH_ARCH_PPC" such
that "powerpc" is truly an alias.
A corrected patch is forthcoming.
Regards,
Grant
^ permalink raw reply [flat|nested] 5+ messages in thread
* [U-Boot-Users] [PATCH v2] Recognize 'powerpc' As an Alias for IH_ARCH_PPC
2008-05-04 22:53 [U-Boot-Users] [PATCH] Recognize 'powerpc' As an Alias for IH_ARCH_POWERPC Grant Erickson
2008-05-04 23:04 ` Wolfgang Denk
@ 2008-05-04 23:45 ` Grant Erickson
2008-05-09 18:48 ` Wolfgang Denk
1 sibling, 1 reply; 5+ messages in thread
From: Grant Erickson @ 2008-05-04 23:45 UTC (permalink / raw)
To: u-boot
Add support for the recognition of 'powerpc' as an alias for the PowerPC
architecture type since Linux is already trending in that direction,
preferring 'powerpc' to 'ppc'.
Signed-off-by: Grant Erickson <gerickson@nuovations.com>
---
diff --git a/common/image.c b/common/image.c
index 4a024d4..051d298 100644
--- a/common/image.c
+++ b/common/image.c
@@ -93,6 +93,7 @@ static table_entry_t uimage_arch[] = {
{ IH_ARCH_MIPS64, "mips64", "MIPS 64 Bit", },
{ IH_ARCH_NIOS, "nios", "NIOS", },
{ IH_ARCH_NIOS2, "nios2", "NIOS II", },
+ { IH_ARCH_PPC, "powerpc", "PowerPC", },
{ IH_ARCH_PPC, "ppc", "PowerPC", },
{ IH_ARCH_S390, "s390", "IBM S390", },
{ IH_ARCH_SH, "sh", "SuperH", },
--
1.5.4.3
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [U-Boot-Users] [PATCH v2] Recognize 'powerpc' As an Alias for IH_ARCH_PPC
2008-05-04 23:45 ` [U-Boot-Users] [PATCH v2] Recognize 'powerpc' As an Alias for IH_ARCH_PPC Grant Erickson
@ 2008-05-09 18:48 ` Wolfgang Denk
0 siblings, 0 replies; 5+ messages in thread
From: Wolfgang Denk @ 2008-05-09 18:48 UTC (permalink / raw)
To: u-boot
In message <1209944701-8707-1-git-send-email-gerickson@nuovations.com> you wrote:
> Add support for the recognition of 'powerpc' as an alias for the PowerPC
> architecture type since Linux is already trending in that direction,
> preferring 'powerpc' to 'ppc'.
>
> Signed-off-by: Grant Erickson <gerickson@nuovations.com>
> ---
Applied, thanks.
Best regards,
Wolfgang Denk
--
DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de
"Out of register space (ugh)"
- vi
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2008-05-09 18:48 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-05-04 22:53 [U-Boot-Users] [PATCH] Recognize 'powerpc' As an Alias for IH_ARCH_POWERPC Grant Erickson
2008-05-04 23:04 ` Wolfgang Denk
2008-05-04 23:39 ` Grant Erickson
2008-05-04 23:45 ` [U-Boot-Users] [PATCH v2] Recognize 'powerpc' As an Alias for IH_ARCH_PPC Grant Erickson
2008-05-09 18:48 ` Wolfgang Denk
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox