···12971297swapper_pg_dir:12981298 .space 40961299129913001300-/*13011301- * This space gets a copy of optional info passed to us by the bootstrap13021302- * Used to pass parameters into the kernel like root=/dev/sda1, etc.13031303- */13041304- .globl cmd_line13051305-cmd_line:13061306- .space 51213071307-13081300 .globl intercept_table13091301intercept_table:13101302 .long 0, 0, i0x200, i0x300, i0x400, 0, i0x600, i0x700
-7
arch/powerpc/kernel/head_40x.S
···10061006 .globl exception_stack_top10071007exception_stack_top:1008100810091009-/* This space gets a copy of optional info passed to us by the bootstrap10101010- * which is used to pass parameters into the kernel like root=/dev/sda1, etc.10111011- */10121012- .globl cmd_line10131013-cmd_line:10141014- .space 51210151015-10161009/* Room for two PTE pointers, usually the kernel and current user pointers10171010 * to their respective root page table.10181011 */
-8
arch/powerpc/kernel/head_44x.S
···744744exception_stack_top:745745746746/*747747- * This space gets a copy of optional info passed to us by the bootstrap748748- * which is used to pass parameters into the kernel like root=/dev/sda1, etc.749749- */750750- .globl cmd_line751751-cmd_line:752752- .space 512753753-754754-/*755747 * Room for two PTE pointers, usually the kernel and current user pointers756748 * to their respective root page table.757749 */
-8
arch/powerpc/kernel/head_64.S
···15401540 .globl swapper_pg_dir15411541swapper_pg_dir:15421542 .space PAGE_SIZE15431543-15441544-/*15451545- * This space gets a copy of optional info passed to us by the bootstrap15461546- * Used to pass parameters into the kernel like root=/dev/sda1, etc.15471547- */15481548- .globl cmd_line15491549-cmd_line:15501550- .space COMMAND_LINE_SIZE
-8
arch/powerpc/kernel/head_8xx.S
···832832swapper_pg_dir:833833 .space 4096834834835835-/*836836- * This space gets a copy of optional info passed to us by the bootstrap837837- * Used to pass parameters into the kernel like root=/dev/sda1, etc.838838- */839839- .globl cmd_line840840-cmd_line:841841- .space 512842842-843835/* Room for two PTE table poiners, usually the kernel and current user844836 * pointer to their respective root page table (pgdir).845837 */
-8
arch/powerpc/kernel/head_fsl_booke.S
···10501050exception_stack_top:1051105110521052/*10531053- * This space gets a copy of optional info passed to us by the bootstrap10541054- * which is used to pass parameters into the kernel like root=/dev/sda1, etc.10551055- */10561056- .globl cmd_line10571057-cmd_line:10581058- .space 51210591059-10601060-/*10611053 * Room for two PTE pointers, usually the kernel and current user pointers10621054 * to their respective root page table.10631055 */
+2
arch/powerpc/kernel/setup-common.c
···76767777unsigned long klimit = (unsigned long) _end;78787979+char cmd_line[COMMAND_LINE_SIZE];8080+7981/*8082 * This still seems to be needed... -- paulus8183 */