Update Booting/linux-bootstrap-2md.md

This commit is contained in:
hailin cai
2016-02-23 15:41:17 -05:00
parent 6c712df893
commit b8c8eff7e7

View File

@@ -376,7 +376,7 @@ if (cpu_level < req_level) {
}
```
`check_cpu`方法做了大量的检测和设置工作,下面就简单介绍 checks the cpu's flags, presence of [long mode](http://en.wikipedia.org/wiki/Long_mode) in case of x86_64(64-bit) 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的制造商checks the processor's vendor and makes preparation for certain vendors like turning off SSE+SSE2 for AMD if they are missing, etc.
Memory detection
--------------------------------------------------------------------------------