|
本帖最后由 chenall 于 2015-1-12 11:17 编辑
把ipxe的源码下载到grub4dos-src/ipxe这个目录下.
会自动编译,不过看截图你用的是应该是我的那个编译环境 ,这个不支持编译ipxe
其实也没有必要自己编译ipxegrldr的,直接使用ipxe.kpxe(之类undionly.kpxe),或ipxe.krn等加上内置菜单自动加载grldr就行了.
以下是ipxegrldr内置的ipxe菜单,如果网络正常的话总是使用最新版本的grldr.否则使用内置的,如果没有内置的就是用本地的(tftp服务器上)
- #!ipxe
- set use-cached 0
- dhcp
- imgload -a -n grldr0 -t 3000 http://b.chenall.net/grldr || goto embed
- imgfree grldr
- boot grldr0 || goto failed
- :embed
- imgload grldr
- boot grldr || goto failed
- :failed
- echo Booting failed, dropping to shell
- :shell
- shell
- goto shell
复制代码 |
|