diff --git a/src/sys/boot/boot2/test.c b/src/sys/boot/boot2/test.c index 10a68d6..6809b01 100644 --- a/src/sys/boot/boot2/test.c +++ b/src/sys/boot/boot2/test.c @@ -10,7 +10,7 @@ d->magicNum = UBIXDISKMAGIC; d->magicNum2 = UBIXDISKMAGIC; d->numPartitions = 2; - d->partitions[0].p_size = 2000; + d->partitions[0].p_size = 204361; d->partitions[0].p_offset = 50; d->partitions[0].p_fstype = 0xAD; d->partitions[0].p_bsize = 0x8; diff --git a/src/sys/init/main.c b/src/sys/init/main.c index b3a3bfb..93a4ec8 100644 --- a/src/sys/init/main.c +++ b/src/sys/init/main.c @@ -23,39 +23,6 @@ TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - $Log$ - Revision 1.18 2004/05/04 23:38:24 reddawg - make clean all install - - Revision 1.17 2004/05/04 23:31:01 reddawg - Ok Mark Cleaned Up Boot This - - Revision 1.16 2004/05/02 14:34:21 reddawg - SMP Support Thanks To Some Help From Slowcoder now to make it interface - well with the rest of the kernel - - Revision 1.15 2004/04/30 17:04:23 reddawg - Ok GUI is back on - - Revision 1.14 2004/04/30 16:58:37 reddawg - Turned On PCI Detections - - Revision 1.13 2004/04/30 16:29:34 reddawg - Turned Off Gui - - Revision 1.12 2004/04/30 13:40:34 reddawg - Just doing spring cleaning for the new members - - Revision 1.7 2004/04/26 22:27:36 reddawg - Now mounts our harddrive I need to either impliment fstab or do something similar - - Revision 1.6 2004/04/25 04:35:50 reddawg - Minor bug fixes to set default partition information - - Revision 1.107 2004/04/13 16:36:33 reddawg - Changed our copyright, it is all now under a BSD-Style license - - $Id$ *****************************************************************************************/ @@ -228,6 +195,42 @@ } /*** + + $Log$ + Revision 1.19 2004/05/08 19:06:24 reddawg + Going to impliment FSTAB + + Revision 1.18 2004/05/04 23:38:24 reddawg + make clean all install + + Revision 1.17 2004/05/04 23:31:01 reddawg + Ok Mark Cleaned Up Boot This + + Revision 1.16 2004/05/02 14:34:21 reddawg + SMP Support Thanks To Some Help From Slowcoder now to make it interface + well with the rest of the kernel + + Revision 1.15 2004/04/30 17:04:23 reddawg + Ok GUI is back on + + Revision 1.14 2004/04/30 16:58:37 reddawg + Turned On PCI Detections + + Revision 1.13 2004/04/30 16:29:34 reddawg + Turned Off Gui + + Revision 1.12 2004/04/30 13:40:34 reddawg + Just doing spring cleaning for the new members + + Revision 1.7 2004/04/26 22:27:36 reddawg + Now mounts our harddrive I need to either impliment fstab or do something similar + + Revision 1.6 2004/04/25 04:35:50 reddawg + Minor bug fixes to set default partition information + + Revision 1.107 2004/04/13 16:36:33 reddawg + Changed our copyright, it is all now under a BSD-Style license + END ***/ diff --git a/src/sys/isa/8259.c b/src/sys/isa/8259.c index 0ef7be5..a56b9d9 100644 --- a/src/sys/isa/8259.c +++ b/src/sys/isa/8259.c @@ -23,12 +23,6 @@ TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - $Log$ - Revision 1.6 2004/04/13 16:36:33 reddawg - Changed our copyright, it is all now under a BSD-Style license - - - $Id$ *****************************************************************************************/ @@ -110,3 +104,10 @@ outportByte(mPic+1, irqMask & 0xFF); outportByte(sPic+1, (irqMask >> 8) & 0xFF); } + +/*** + $Log$ + + END + ***/ + diff --git a/src/sys/isa/atkbd.c b/src/sys/isa/atkbd.c index 79f6747..56054cf 100644 --- a/src/sys/isa/atkbd.c +++ b/src/sys/isa/atkbd.c @@ -23,12 +23,6 @@ TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - $Log$ - Revision 1.19 2004/04/13 16:36:33 reddawg - Changed our copyright, it is all now under a BSD-Style license - - - $Id$ *****************************************************************************************/ @@ -459,3 +453,16 @@ } return(retKey); } + +/*** + + $Log$ + Revision 1.1.1.1 2004/04/15 12:07:09 reddawg + UbixOS v1.0 + + Revision 1.19 2004/04/13 16:36:33 reddawg + Changed our copyright, it is all now under a BSD-Style license + + END + ***/ + diff --git a/src/sys/isa/fdc.c b/src/sys/isa/fdc.c index 92324b6..11c4f95 100644 --- a/src/sys/isa/fdc.c +++ b/src/sys/isa/fdc.c @@ -23,28 +23,6 @@ TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - $Log$ - Revision 1.5 2004/04/29 15:29:20 reddawg - Fixed All Running Issues - - Revision 1.4 2004/04/28 02:22:54 reddawg - This is a fiarly large commit but we are starting to use new driver model - all around - - Revision 1.3 2004/04/26 22:22:33 reddawg - DevFS now uses correct size of device - - Revision 1.2 2004/04/22 21:20:05 reddawg - FDC now adds drives to the devfs - - Revision 1.1.1.1 2004/04/15 12:07:09 reddawg - UbixOS v1.0 - - Revision 1.6 2004/04/13 16:36:33 reddawg - Changed our copyright, it is all now under a BSD-Style license - - - $Id$ *****************************************************************************************/ @@ -317,3 +295,32 @@ writeBlock(startSector,baseAddr,sectorCount); return; } + +/*** + + $Log$ + Revision 1.6 2004/04/30 14:16:04 reddawg + Fixed all the datatypes to be consistant uInt8,uInt16,uInt32,Int8,Int16,Int32 + + Revision 1.5 2004/04/29 15:29:20 reddawg + Fixed All Running Issues + + Revision 1.4 2004/04/28 02:22:54 reddawg + This is a fiarly large commit but we are starting to use new driver model + all around + + Revision 1.3 2004/04/26 22:22:33 reddawg + DevFS now uses correct size of device + + Revision 1.2 2004/04/22 21:20:05 reddawg + FDC now adds drives to the devfs + + Revision 1.1.1.1 2004/04/15 12:07:09 reddawg + UbixOS v1.0 + + Revision 1.6 2004/04/13 16:36:33 reddawg + Changed our copyright, it is all now under a BSD-Style license + + END + ***/ + diff --git a/src/sys/isa/ne2k.c b/src/sys/isa/ne2k.c index f41958c..ba2f6c1 100644 --- a/src/sys/isa/ne2k.c +++ b/src/sys/isa/ne2k.c @@ -23,41 +23,6 @@ TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - $Log$ - Revision 1.8 2004/05/04 23:46:39 reddawg - make clean all install - - Revision 1.7 2004/05/04 23:38:24 reddawg - make clean all install - - Revision 1.6 2004/05/04 23:31:01 reddawg - Ok Mark Cleaned Up Boot This - - Revision 1.5 2004/04/29 15:29:20 reddawg - Fixed All Running Issues - - Revision 1.4 2004/04/27 21:05:19 reddawg - Updating drivers to use new model - - Revision 1.3 2004/04/20 00:53:16 reddawg - Works - - Revision 1.2 2004/04/19 21:32:14 reddawg - Fixes: - - ne2k: - - we now have allocBuffer() and getBuffer() - alloc gets an avail buffer on the - memory ring for the nic and get will fetch the oldest buffer on there - - Revision 1.1.1.1 2004/04/15 12:07:09 reddawg - UbixOS v1.0 - - Revision 1.15 2004/04/13 16:36:33 reddawg - Changed our copyright, it is all now under a BSD-Style license - - - $Id$ *****************************************************************************************/ @@ -379,6 +344,9 @@ } /*** + + $Log$ + END ***/ diff --git a/src/sys/isa/pit.c b/src/sys/isa/pit.c index b5a90d8..0d4f420 100644 --- a/src/sys/isa/pit.c +++ b/src/sys/isa/pit.c @@ -23,12 +23,6 @@ TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - $Log$ - Revision 1.9 2004/04/13 16:36:33 reddawg - Changed our copyright, it is all now under a BSD-Style license - - - $Id$ *****************************************************************************************/ @@ -79,6 +73,9 @@ } /*** + + $Log$ + END ***/ diff --git a/src/sys/isa/rs232.c b/src/sys/isa/rs232.c index c4fb46c..9697f69 100644 --- a/src/sys/isa/rs232.c +++ b/src/sys/isa/rs232.c @@ -23,12 +23,6 @@ TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - $Log$ - Revision 1.3 2004/04/13 16:36:33 reddawg - Changed our copyright, it is all now under a BSD-Style license - - - $Id$ *****************************************************************************************/ @@ -38,6 +32,9 @@ } /*** + + $Log$ + END ***/