随笔分类 -  UEFI

study UEFI
摘要:目前UEFI仅支持FAT格式,上篇“UEFI Shell在vbox上使用”介绍中,使用UEFI shell指令中的map打印出来Maping Table只有BLK0、BLK1......这些不是EFI能识别的,如果格式是FAT,当EFI启动后显示的是fs0、fs1,能够识别几个就已累加的方式显示fsn。这些fs开头的设备实质是能够识别的BLK设备的别名。 现在介绍制作一个fat格式的软盘。命令如下:1 dd if=/dev/zero of=f1.img bs=1440 count=10002 3 mkfs.vfat f1.img第一行创建一个1.44M的镜像,但是没有文件系统,需要第三行实.. 阅读全文
posted @ 2013-04-24 10:27 除e尘 阅读(2744) 评论(0) 推荐(1)
摘要:首先介绍什么是UEFI,下面是官方的介绍: UEFI is a community effort by many companies in the personal-computer industry to modernize the booting process. UEFI capable systems are already shipping, and many more are in preparation. During the transition to UEFI, most platformfirmware will continue to support legac... 阅读全文
posted @ 2013-03-25 00:59 除e尘 阅读(2180) 评论(0) 推荐(0)