문제

is there any bios interrupt that send and receive packet over the net?

if I want to make a boot loader which communicate with other computer, what am I supposed to learn?

any keywords? documents?

thanks

도움이 되었습니까?

해결책

The standard PC BIOS has no runtime APIs for network communication.

Pretty much the only networking code you find in a BIOS is the PXE boot loader, which provides a pre-boot environment for downloading a kernel from a network server and executing it. This does not provide any post-boot runtime services though.

If you want to do network communication while you are running from disk, you need to implement your own networking stack.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top