1
1
Fork 0
mirror of https://github.com/pbatard/rufus.git synced 2024-08-14 23:57:05 +00:00

[misc] moved binary resources to /res subdirectory

This commit is contained in:
Pete Batard 2012-01-11 00:25:15 +00:00
parent dc010cc418
commit e49549d26a
30 changed files with 61 additions and 61 deletions

BIN
res/freedos/COMMAND.COM Normal file

Binary file not shown.

BIN
res/freedos/DISPLAY.EXE Normal file

Binary file not shown.

BIN
res/freedos/KERNEL.SYS Normal file

Binary file not shown.

BIN
res/freedos/KEYB.EXE Normal file

Binary file not shown.

BIN
res/freedos/KEYBOARD.SYS Normal file

Binary file not shown.

BIN
res/freedos/KEYBRD2.SYS Normal file

Binary file not shown.

BIN
res/freedos/KEYBRD3.SYS Normal file

Binary file not shown.

BIN
res/freedos/KEYBRD4.SYS Normal file

Binary file not shown.

BIN
res/freedos/ega.cpx Normal file

Binary file not shown.

BIN
res/freedos/ega10.cpx Normal file

Binary file not shown.

BIN
res/freedos/ega11.cpx Normal file

Binary file not shown.

BIN
res/freedos/ega12.cpx Normal file

Binary file not shown.

BIN
res/freedos/ega13.cpx Normal file

Binary file not shown.

BIN
res/freedos/ega14.cpx Normal file

Binary file not shown.

BIN
res/freedos/ega15.cpx Normal file

Binary file not shown.

BIN
res/freedos/ega16.cpx Normal file

Binary file not shown.

BIN
res/freedos/ega17.cpx Normal file

Binary file not shown.

BIN
res/freedos/ega18.cpx Normal file

Binary file not shown.

BIN
res/freedos/ega2.cpx Normal file

Binary file not shown.

BIN
res/freedos/ega3.cpx Normal file

Binary file not shown.

BIN
res/freedos/ega4.cpx Normal file

Binary file not shown.

BIN
res/freedos/ega5.cpx Normal file

Binary file not shown.

BIN
res/freedos/ega6.cpx Normal file

Binary file not shown.

BIN
res/freedos/ega7.cpx Normal file

Binary file not shown.

BIN
res/freedos/ega8.cpx Normal file

Binary file not shown.

BIN
res/freedos/ega9.cpx Normal file

Binary file not shown.

BIN
res/freedos/mode.com Normal file

Binary file not shown.

46
res/freedos/readme.txt Normal file
View file

@ -0,0 +1,46 @@
o COMMAND.COM file was extracted from the fd11tst3.img image available at:
http://www.ibiblio.org/pub/micro/pc-stuff/freedos/files/distributions/1.1-test3/
o The EGA files were extracted from the cpidos30.zip available at:
http://www.ibiblio.org/pub/micro/pc-stuff/freedos/files/dos/cpi/
o DISPLAY.EXE was extracted from /disp013x.zip available at:
http://www.ibiblio.org/pub/micro/pc-stuff/freedos/files/dos/display
o KEYB.EXE was extracted from KEYB201.ZIP available at:
http://www.ibiblio.org/pub/micro/pc-stuff/freedos/files/dos/keyb/2.01/
o The keyboard layouts (KEYB___.SYS) were extracted from kpdos30x.zip:
http://www.ibiblio.org/pub/micro/pc-stuff/freedos/files/dos/keyb/kblayout/
o MODE.COM was extracted from mode-2005may12.zip available at:
http://www.ibiblio.org/pub/micro/pc-stuff/freedos/files/dos/mode/2005/
o Because of issue #19 (see https://github.com/pbatard/rufus/issues/19)
KERNEL.SYS is a recompiled version, from the 2011.12.16 svn source, with
FORCELBA enabled and with the following patch having been applied:
Index: kernel/initdisk.c
===================================================================
--- kernel/initdisk.c (revision 1696)
+++ kernel/initdisk.c (working copy)
@@ -810,10 +810,13 @@
void print_warning_suspect(char *partitionName, UBYTE fs, struct CHS *chs,
struct CHS *pEntry_chs)
{
- printf("WARNING: using suspect partition %s FS %02x:", partitionName, fs);
- printCHS(" with calculated values ", chs);
- printCHS(" instead of ", pEntry_chs);
- printf("\n");
+ if (!InitKernelConfig.ForceLBA)
+ {
+ printf("WARNING: using suspect partition %s FS %02x:", partitionName, fs);
+ printCHS(" with calculated values ", chs);
+ printCHS(" instead of ", pEntry_chs);
+ printf("\n");
+ }
memcpy(pEntry_chs, chs, sizeof(struct CHS));
}
Recompilation was done using Open Watcom, as described at:
http://pete.akeo.ie/2011/12/compiling-freedos-on-windows-using.html