Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
3c62a2d3
cloud-kernel
项目概览
openanolis
/
cloud-kernel
大约 1 年 前同步成功
通知
158
Star
36
Fork
7
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
10
列表
看板
标记
里程碑
合并请求
2
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
cloud-kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
10
Issue
10
列表
看板
标记
里程碑
合并请求
2
合并请求
2
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
3c62a2d3
编写于
2月 17, 2008
作者:
D
David S. Miller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[SPARC64]: Always register a PROM based early console.
Signed-off-by:
N
David S. Miller
<
davem@davemloft.net
>
上级
f6095a51
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
10 addition
and
11 deletion
+10
-11
arch/sparc64/kernel/prom.c
arch/sparc64/kernel/prom.c
+0
-1
arch/sparc64/kernel/setup.c
arch/sparc64/kernel/setup.c
+7
-7
arch/sparc64/mm/init.c
arch/sparc64/mm/init.c
+3
-3
未找到文件。
arch/sparc64/kernel/prom.c
浏览文件 @
3c62a2d3
...
...
@@ -1716,7 +1716,6 @@ static void __init of_console_init(void)
of_console_device
=
dp
;
prom_printf
(
msg
,
of_console_path
);
printk
(
msg
,
of_console_path
);
}
...
...
arch/sparc64/kernel/setup.c
浏览文件 @
3c62a2d3
...
...
@@ -83,10 +83,10 @@ unsigned int boot_flags = 0;
/* Exported for mm/init.c:paging_init. */
unsigned
long
cmdline_memory_size
=
0
;
static
struct
console
prom_
debug
_console
=
{
.
name
=
"
debug
"
,
static
struct
console
prom_
early
_console
=
{
.
name
=
"
earlyprom
"
,
.
write
=
prom_console_write
,
.
flags
=
CON_PRINTBUFFER
,
.
flags
=
CON_PRINTBUFFER
|
CON_BOOT
,
.
index
=
-
1
,
};
...
...
@@ -112,8 +112,7 @@ static void __init process_switch(char c)
prom_halt
();
break
;
case
'p'
:
/* Use PROM debug console. */
register_console
(
&
prom_debug_console
);
/* Just ignore, this behavior is now the default. */
break
;
case
'P'
:
/* Force UltraSPARC-III P-Cache on. */
...
...
@@ -296,6 +295,9 @@ void __init setup_arch(char **cmdline_p)
*
cmdline_p
=
prom_getbootargs
();
strcpy
(
boot_command_line
,
*
cmdline_p
);
boot_flags_init
(
*
cmdline_p
);
register_console
(
&
prom_early_console
);
if
(
tlb_type
==
hypervisor
)
printk
(
"ARCH: SUN4V
\n
"
);
else
...
...
@@ -307,8 +309,6 @@ void __init setup_arch(char **cmdline_p)
conswitchp
=
&
prom_con
;
#endif
boot_flags_init
(
*
cmdline_p
);
idprom_init
();
if
(
!
root_flags
)
...
...
arch/sparc64/mm/init.c
浏览文件 @
3c62a2d3
...
...
@@ -618,9 +618,9 @@ static void __init inherit_prom_mappings(void)
read_obp_translations
();
/* Now fixup OBP's idea about where we really are mapped. */
pr
om_printf
(
"Remapping the kernel... "
);
pr
intk
(
"Remapping the kernel... "
);
remap_kernel
();
pr
om_printf
(
"done.
\n
"
);
pr
intk
(
"done.
\n
"
);
}
void
prom_world
(
int
enter
)
...
...
@@ -1414,7 +1414,7 @@ void __init paging_init(void)
zholes_size
);
}
pr
om_printf
(
"Booting Linux...
\n
"
);
pr
intk
(
"Booting Linux...
\n
"
);
central_probe
();
cpu_probe
();
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录