Update Booting/linux-bootstrap-2md.md

This commit is contained in:
hailin cai
2016-02-23 15:42:05 -05:00
parent b8c8eff7e7
commit 0c597baa01

View File

@@ -376,7 +376,7 @@ if (cpu_level < req_level) {
}
```
`check_cpu`方法做了大量的检测和设置工作下面就简单介绍一些1检查cpu标志如果cpu是64位cpu那么就设置[long mode](http://en.wikipedia.org/wiki/Long_mode), 2) 检查CPU的制造商checks the processor's vendor and makes preparation for certain vendors like turning off SSE+SSE2 for AMD if they are missing, etc.
`check_cpu`方法做了大量的检测和设置工作下面就简单介绍一些1检查cpu标志如果cpu是64位cpu那么就设置[long mode](http://en.wikipedia.org/wiki/Long_mode), 2) 检查CPU的制造商根据制造商的不同设置不同的CPU选项。比如对于AMD出厂的cpu如果不支持SSE+SSE2那么就禁止这些选项。
Memory detection
--------------------------------------------------------------------------------