diff options
author | Ishizaki Kou <kou.ishizaki@toshiba.co.jp> | 2007-05-09 17:38:03 +1000 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2007-05-10 21:28:12 +1000 |
commit | b4f8b1087f0413f6f2a2423da66eed5c1fb70b06 (patch) | |
tree | 4cfe27738ca355cf871c32b52849bb52d080aa85 /arch | |
parent | 0f6e74a3e0c5e805d5f67f7631259c886158a47b (diff) | |
download | linux-3.10-b4f8b1087f0413f6f2a2423da66eed5c1fb70b06.tar.gz linux-3.10-b4f8b1087f0413f6f2a2423da66eed5c1fb70b06.tar.bz2 linux-3.10-b4f8b1087f0413f6f2a2423da66eed5c1fb70b06.zip |
[POWERPC] celleb: Fix parsing of machine type hack command line option
This is a bugfix to install Fedora Core 6 by using kernel
command line 'celleb_machine_type_hack=CHRP'.
Yes, this is a one-character fix to add forgotten '='.
Signed-off-by: Kou Ishizaki <kou.ishizaki@toshiba.co.jp>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/powerpc/platforms/celleb/setup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/platforms/celleb/setup.c b/arch/powerpc/platforms/celleb/setup.c index 596ab2a788d..5e9f7f16357 100644 --- a/arch/powerpc/platforms/celleb/setup.c +++ b/arch/powerpc/platforms/celleb/setup.c @@ -80,7 +80,7 @@ static int celleb_machine_type_hack(char *ptr) return 0; } -__setup("celleb_machine_type_hack", celleb_machine_type_hack); +__setup("celleb_machine_type_hack=", celleb_machine_type_hack); static void celleb_progress(char *s, unsigned short hex) { |