From e88f30567168865460108b1558f030b51080cbf3 Mon Sep 17 00:00:00 2001 From: klu2 Date: Mon, 22 Jun 2009 03:01:53 +0000 Subject: This patch includes: 1) Use the binaries of boot sector directly instead of building it. Because the code of boot sector will be modified rarely and it is native code. 2) Correct the shell binary file path which is changed by recently. git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@8620 6f19259b-4bc3-4df7-8a09-765794883524 --- DuetPkg/BootSector/bin/Gpt.com | Bin 0 -> 512 bytes DuetPkg/BootSector/bin/Mbr.com | Bin 0 -> 512 bytes DuetPkg/BootSector/bin/Readme.txt | 8 ++++++++ DuetPkg/BootSector/bin/St16_64.com | Bin 0 -> 4096 bytes DuetPkg/BootSector/bin/St32_64.com | Bin 0 -> 4096 bytes DuetPkg/BootSector/bin/Start.com | Bin 0 -> 4096 bytes DuetPkg/BootSector/bin/Start16.com | Bin 0 -> 4096 bytes DuetPkg/BootSector/bin/Start32.com | Bin 0 -> 4096 bytes DuetPkg/BootSector/bin/Start64.com | Bin 0 -> 4096 bytes DuetPkg/BootSector/bin/bootsect.com | Bin 0 -> 512 bytes DuetPkg/BootSector/bin/bs16.com | Bin 0 -> 512 bytes DuetPkg/BootSector/bin/bs32.com | Bin 0 -> 512 bytes DuetPkg/BootSector/bin/efi32.com | Bin 0 -> 139264 bytes DuetPkg/BootSector/bin/efi32.com2 | Bin 0 -> 4096 bytes DuetPkg/BootSector/bin/efi64.com | Bin 0 -> 139264 bytes DuetPkg/BootSector/bin/efi64.com2 | Bin 0 -> 4096 bytes 16 files changed, 8 insertions(+) create mode 100644 DuetPkg/BootSector/bin/Gpt.com create mode 100644 DuetPkg/BootSector/bin/Mbr.com create mode 100644 DuetPkg/BootSector/bin/Readme.txt create mode 100644 DuetPkg/BootSector/bin/St16_64.com create mode 100644 DuetPkg/BootSector/bin/St32_64.com create mode 100644 DuetPkg/BootSector/bin/Start.com create mode 100644 DuetPkg/BootSector/bin/Start16.com create mode 100644 DuetPkg/BootSector/bin/Start32.com create mode 100644 DuetPkg/BootSector/bin/Start64.com create mode 100644 DuetPkg/BootSector/bin/bootsect.com create mode 100644 DuetPkg/BootSector/bin/bs16.com create mode 100644 DuetPkg/BootSector/bin/bs32.com create mode 100644 DuetPkg/BootSector/bin/efi32.com create mode 100644 DuetPkg/BootSector/bin/efi32.com2 create mode 100644 DuetPkg/BootSector/bin/efi64.com create mode 100644 DuetPkg/BootSector/bin/efi64.com2 (limited to 'DuetPkg/BootSector') diff --git a/DuetPkg/BootSector/bin/Gpt.com b/DuetPkg/BootSector/bin/Gpt.com new file mode 100644 index 0000000000..f055fd7428 Binary files /dev/null and b/DuetPkg/BootSector/bin/Gpt.com differ diff --git a/DuetPkg/BootSector/bin/Mbr.com b/DuetPkg/BootSector/bin/Mbr.com new file mode 100644 index 0000000000..ca292a0116 Binary files /dev/null and b/DuetPkg/BootSector/bin/Mbr.com differ diff --git a/DuetPkg/BootSector/bin/Readme.txt b/DuetPkg/BootSector/bin/Readme.txt new file mode 100644 index 0000000000..55dd8cd666 --- /dev/null +++ b/DuetPkg/BootSector/bin/Readme.txt @@ -0,0 +1,8 @@ +These binaries are used to make the bootable floppy or usb disk. +The binaries of boot sector are built from DuetPkg\Bootsector\BootSector.inf at r8617 with following steps: +1) enter edk2 workspace directory from command line windows. +2) run "edksetup.bat" +3) run "build -p DuetPkg/DuetPkg.dsc -a IA32 -m DuetPkg/BootSector/BootSector.inf" + + + diff --git a/DuetPkg/BootSector/bin/St16_64.com b/DuetPkg/BootSector/bin/St16_64.com new file mode 100644 index 0000000000..dbb4a9af7e Binary files /dev/null and b/DuetPkg/BootSector/bin/St16_64.com differ diff --git a/DuetPkg/BootSector/bin/St32_64.com b/DuetPkg/BootSector/bin/St32_64.com new file mode 100644 index 0000000000..68b6c76ea2 Binary files /dev/null and b/DuetPkg/BootSector/bin/St32_64.com differ diff --git a/DuetPkg/BootSector/bin/Start.com b/DuetPkg/BootSector/bin/Start.com new file mode 100644 index 0000000000..adc5a3d0cf Binary files /dev/null and b/DuetPkg/BootSector/bin/Start.com differ diff --git a/DuetPkg/BootSector/bin/Start16.com b/DuetPkg/BootSector/bin/Start16.com new file mode 100644 index 0000000000..34e5dca6db Binary files /dev/null and b/DuetPkg/BootSector/bin/Start16.com differ diff --git a/DuetPkg/BootSector/bin/Start32.com b/DuetPkg/BootSector/bin/Start32.com new file mode 100644 index 0000000000..47f2f5d435 Binary files /dev/null and b/DuetPkg/BootSector/bin/Start32.com differ diff --git a/DuetPkg/BootSector/bin/Start64.com b/DuetPkg/BootSector/bin/Start64.com new file mode 100644 index 0000000000..326e3fec3c Binary files /dev/null and b/DuetPkg/BootSector/bin/Start64.com differ diff --git a/DuetPkg/BootSector/bin/bootsect.com b/DuetPkg/BootSector/bin/bootsect.com new file mode 100644 index 0000000000..079978e79e Binary files /dev/null and b/DuetPkg/BootSector/bin/bootsect.com differ diff --git a/DuetPkg/BootSector/bin/bs16.com b/DuetPkg/BootSector/bin/bs16.com new file mode 100644 index 0000000000..be40ba817b Binary files /dev/null and b/DuetPkg/BootSector/bin/bs16.com differ diff --git a/DuetPkg/BootSector/bin/bs32.com b/DuetPkg/BootSector/bin/bs32.com new file mode 100644 index 0000000000..0255c82e89 Binary files /dev/null and b/DuetPkg/BootSector/bin/bs32.com differ diff --git a/DuetPkg/BootSector/bin/efi32.com b/DuetPkg/BootSector/bin/efi32.com new file mode 100644 index 0000000000..7c982e0ba7 Binary files /dev/null and b/DuetPkg/BootSector/bin/efi32.com differ diff --git a/DuetPkg/BootSector/bin/efi32.com2 b/DuetPkg/BootSector/bin/efi32.com2 new file mode 100644 index 0000000000..d4bae935cb Binary files /dev/null and b/DuetPkg/BootSector/bin/efi32.com2 differ diff --git a/DuetPkg/BootSector/bin/efi64.com b/DuetPkg/BootSector/bin/efi64.com new file mode 100644 index 0000000000..e534132384 Binary files /dev/null and b/DuetPkg/BootSector/bin/efi64.com differ diff --git a/DuetPkg/BootSector/bin/efi64.com2 b/DuetPkg/BootSector/bin/efi64.com2 new file mode 100644 index 0000000000..689f4ab4a3 Binary files /dev/null and b/DuetPkg/BootSector/bin/efi64.com2 differ -- cgit v1.2.3