9e7007b310
* boot/i386/pc/pxeboot.S (_start): Use drive number 0x7F for pxe. * conf/i386-pc.rmk (kernel_img_HEADERS): Add machine/pxe.h. (pkglib_MODULES): Add pxe.mod and pxecmd.mod. (pxe_mod_SOURCES): New macro. (pxe_mod_CFLAGS): Likewise. (pxe_mod_LDFLAGS): Likewise. (pxecmd_mod_SOURCES): Likewise. (pxecmd_mod_CFLAGS): Likewise. (pxecmd_mod_LDFLAGS): Likewise. * kern/i386/pc/startup.S (grub_pxe_scan): New function. (grub_pxe_call): Likewise. * include/grub/disk.h (grub_disk_dev_id): Add GRUB_DISK_DEVICE_PXE_ID. * commands/i386/pc/pxecmd.c: New file. * disk/i386/pc/pxe.c: Likewise. * include/grub/i386/pc/pxe.h: Likewise.
39 lines
1.3 KiB
ArmAsm
39 lines
1.3 KiB
ArmAsm
/*
|
|
* GRUB -- GRand Unified Bootloader
|
|
* Copyright (C) 2000,2005,2007,2008 Free Software Foundation, Inc.
|
|
*
|
|
* GRUB is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* GRUB is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with GRUB. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
.file "pxeboot.S"
|
|
.text
|
|
|
|
/* Start with the prehistoric environment... */
|
|
.code16
|
|
|
|
/* Let's go */
|
|
.globl _start; _start:
|
|
|
|
/* Root drive will default to boot drive */
|
|
movb $0xFF, %dh
|
|
movb $0x7F, %dl
|
|
|
|
/* Jump to the real world */
|
|
ljmp $0, $0x8200
|
|
|
|
/* This region is a junk. Do you say that this is wasteful?
|
|
But I like that the memory layout of the body is consistent
|
|
among different kernels rather than scamping just for 1.5KB. */
|
|
. = _start + 0x8200 - 0x7C00 - 0x200 - 1
|
|
.byte 0
|