src/version.h.in

Wed, 13 Mar 2013 00:43:25 +0000

author
Philip Pemberton <philpem@philpem.me.uk>
date
Wed, 13 Mar 2013 00:43:25 +0000
changeset 134
b826697f411a
parent 14
7a98c853715e
permissions
-rw-r--r--

[wd2010,main] WD2010 disc geometry fixes

I believe I have fixed the geometry problem with FreeBee. The geometry was set
to 17 sectors per track instead of 16, which obviously throws off addressing.
I changed it to use 16 sectors per track. However, s4diag tries to format
sector 17, so I changed the WD2010 emulation to accept any address when
formatting (since the format command doesn't actually do anything, it doesn't
matter). It is now possible to format the hard disk, initialize the file
system, and mount it. However, cpio still fails to copy the system to the hard
disk.

Author: Andrew Warkentin <andreww591 gmail com>

philpem@13 1 #define VER_COMPILE_DATETIME "@@datetime@@"
philpem@14 2 #define VER_COMPILE_DATE "@@date@@"
philpem@14 3 #define VER_COMPILE_TIME "@@time@@"
philpem@14 4 #define VER_COMPILE_BY "@@whoami@@"
philpem@14 5 #define VER_COMPILE_HOST "@@hostname@@"
philpem@14 6 #define VER_COMPILER "@@compiler@@"
philpem@14 7 #define VER_BUILD_TYPE "@@buildtype@@"
philpem@14 8 #define VER_CFLAGS "@@cflags@@"
philpem@0 9
philpem@14 10 #define VER_MAJOR @@majorver@@
philpem@14 11 #define VER_MINOR @@minorver@@
philpem@14 12 #define VER_BUILDNUM @@buildnum@@
philpem@14 13 #define VER_EXTRA "@@extraver@@"
philpem@14 14 #define VER_VCSREV "@@vcsstr@@"
philpem@0 15
philpem@13 16 #define VER_FULLSTR "@@fullverstr@@"
philpem@0 17