From: wdenk Date: Wed, 12 Sep 2001 13:59:19 +0000 (+0000) Subject: Fix "clocks_in_mhz" typo X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=1fa00fc79cce9be61f75afca740ac50ed92fb010;p=users%2Frw%2Fppcboot.git Fix "clocks_in_mhz" typo --- diff --git a/CHANGELOG b/CHANGELOG index 4aba557..f52e2f6 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -52,6 +52,12 @@ To do: * "last user address" is set even if bootp is used without parameters (and it uses default address). +====================================================================== +Modifications for 1.0.6: +====================================================================== + +* Fixed "clocks_in_mhz" typo + ====================================================================== Modifications for 1.0.5: ====================================================================== diff --git a/common/cmd_nvedit.c b/common/cmd_nvedit.c index 5c02ed1..1e0b73e 100644 --- a/common/cmd_nvedit.c +++ b/common/cmd_nvedit.c @@ -187,7 +187,7 @@ static uchar default_environment[] = { "loadaddr=" MK_STR(CONFIG_LOADADDR) "\0" #endif #ifdef CONFIG_CLOCKS_IN_MHZ - "clock_in_mhz=1\0" + "clocks_in_mhz=1\0" #endif "\0" }; diff --git a/common/environment.S b/common/environment.S index 2cf30f5..f3fee26 100644 --- a/common/environment.S +++ b/common/environment.S @@ -152,7 +152,7 @@ env_data: .ascii "\0" #endif #ifdef CONFIG_CLOCKS_IN_MHZ - .ascii "clock_in_mhz=1\0" + .ascii "clocks_in_mhz=1\0" #endif /* terminate list of environment strings */ .ascii "\0" diff --git a/include/version.h b/include/version.h index 05a81dc..40220e7 100644 --- a/include/version.h +++ b/include/version.h @@ -24,6 +24,6 @@ #ifndef __VERSION_H__ #define __VERSION_H__ -#define PPCBOOT_VERSION "PPCBoot 1.0.5" +#define PPCBOOT_VERSION "PPCBoot 1.0.6" #endif /* __VERSION_H__ */