From: Ishizaki Kou Date: Wed, 9 May 2007 07:38:03 +0000 (+1000) Subject: [POWERPC] celleb: Fix parsing of machine type hack command line option X-Git-Tag: v2.6.22-rc1~108^2~10 X-Git-Url: http://git.rot13.org/?p=powerpc.git;a=commitdiff_plain;h=b4f8b1087f0413f6f2a2423da66eed5c1fb70b06 [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 Signed-off-by: Paul Mackerras --- diff --git a/arch/powerpc/platforms/celleb/setup.c b/arch/powerpc/platforms/celleb/setup.c index 596ab2a788..5e9f7f1635 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) {