setup.c (4182d0cdf853fb044b969318289ae9f451f69c86) | setup.c (736d2169338a50c8814efc186b5423aee43b0c68) |
---|---|
1/* 2 * Initial setup-routines for HP 9000 based hardware. 3 * 4 * Copyright (C) 1991, 1992, 1995 Linus Torvalds 5 * Modifications for PA-RISC (C) 1999 Helge Deller <deller@gmx.de> 6 * Modifications copyright 1999 SuSE GmbH (Philipp Rumpf) 7 * Modifications copyright 2000 Martin K. Petersen <mkp@mkp.net> 8 * Modifications copyright 2000 Philipp Rumpf <prumpf@tux.org> --- 116 unchanged lines hidden (view full) --- 125 init_per_cpu(smp_processor_id()); /* Set Modes & Enable FP */ 126 127#ifdef CONFIG_64BIT 128 printk(KERN_INFO "The 64-bit Kernel has started...\n"); 129#else 130 printk(KERN_INFO "The 32-bit Kernel has started...\n"); 131#endif 132 | 1/* 2 * Initial setup-routines for HP 9000 based hardware. 3 * 4 * Copyright (C) 1991, 1992, 1995 Linus Torvalds 5 * Modifications for PA-RISC (C) 1999 Helge Deller <deller@gmx.de> 6 * Modifications copyright 1999 SuSE GmbH (Philipp Rumpf) 7 * Modifications copyright 2000 Martin K. Petersen <mkp@mkp.net> 8 * Modifications copyright 2000 Philipp Rumpf <prumpf@tux.org> --- 116 unchanged lines hidden (view full) --- 125 init_per_cpu(smp_processor_id()); /* Set Modes & Enable FP */ 126 127#ifdef CONFIG_64BIT 128 printk(KERN_INFO "The 64-bit Kernel has started...\n"); 129#else 130 printk(KERN_INFO "The 32-bit Kernel has started...\n"); 131#endif 132 |
133 printk(KERN_INFO "Default page size is %dKB.\n", (int)(PAGE_SIZE / 1024)); | 133 printk(KERN_INFO "Kernel default page size is %d KB. Huge pages ", 134 (int)(PAGE_SIZE / 1024)); 135#ifdef CONFIG_HUGETLB_PAGE 136 printk(KERN_CONT "enabled with %d MB physical and %d MB virtual size", 137 1 << (REAL_HPAGE_SHIFT - 20), 1 << (HPAGE_SHIFT - 20)); 138#else 139 printk(KERN_CONT "disabled"); 140#endif 141 printk(KERN_CONT ".\n"); |
134 | 142 |
143 |
|
135 pdc_console_init(); 136 137#ifdef CONFIG_64BIT 138 if(parisc_narrow_firmware) { 139 printk(KERN_INFO "Kernel is using PDC in 32-bit mode.\n"); 140 } 141#endif 142 setup_pdc(); --- 263 unchanged lines hidden --- | 144 pdc_console_init(); 145 146#ifdef CONFIG_64BIT 147 if(parisc_narrow_firmware) { 148 printk(KERN_INFO "Kernel is using PDC in 32-bit mode.\n"); 149 } 150#endif 151 setup_pdc(); --- 263 unchanged lines hidden --- |