|
|
2#

楼主 |
发表于 2004-5-17 19:59:06
|
只看该作者
[转帖]国内首例:PC安装Mac OS X方法解析
LBHIDDEN[0]LBHIDDEN # Boot method
启动方法
# this can be
这部分可以选择
# 1. "auto", prom will boot the first bootable partition found (default)
1.“自动”,程序会启动第一个被找到的并且可以启动的分区(默认)
# 2. "select", prom will show you a list of bootable partitions
2.“选择”,程序会显示出一个包含有启动分区的列表以供选择
# 3. "force", prom will load and boot the local file prom_loadfile
3.“强制”,程序会强制装载并启动本地磁盘上的文件 如:prom_loadfile
#
prom_bootmethod = "auto"
程序……启动方法 =“自动”
# Example of how to use "force":
举例怎样使用“强制”:
#prom_bootmethod = "force"
程序……启动方法 =“强制”
#prom_loadfile = "test/yaboot"
程序……装载文件 =“test/yaboot”
#prom_env_bootpath = "disk"
程序启动路径 =“disk”
#
# bootargs: don't change unless you know what you are doing
bootargs设置:在你不知情的状况下不要更改
# machargs: set to "-v" to get a verbose startup
machargs设置:设置参数“-v”时显示交互式启动
#
#prom_env_bootargs = "" 程序bootargs = ""
prom_env_machargs = "-v" 程序machargs = “-v”
#
# This is needed if you want to boot Mac OS X
假如你想要启动Mac OS X的话这部分是必要的
#
prom_driver_graphic = "video.x"
程序……驱动……图形图像 =“video.x”
# This will adjust the position of the initial page table (don't change)
这个必须放置在最初的分区表中(不要更改)
#page_table_pa = 104857600
分区表 = 104857600 |
|