Skip to content

Commit 18d732d

Browse files
John SmithJohn Smith
John Smith
authored and
John Smith
committedMay 26, 2013
Added FDC driver and made easy usb booting on real machine
Rolled out version 0.0.2 Alpha testing Implemented floppy disk controller (FDC) driver that can read and write to a floppy has primitive read/write utilities has primitive persistent storage implementations on a second floppy image uses DMA to read/write data from/to the floppy Fixed shell commands improved "find" command made find function recursive to be able to find files not in the current directory added functionality where find prints the directory path along with the file name it found, used to distinguish where the file has been found in the directory fixed "ls" command fixed a bug with listing the contents in a specified directory Added a more user-friendly way to boot from a physical machine made a shell script "usb_make.sh" that along with specific arguments passed creates a bootable usb Organized README files created separate directory for licenses, readme, and usage files
1 parent 2fee063 commit 18d732d

File tree

297 files changed

+5709
-721
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

297 files changed

+5709
-721
lines changed
 

‎.gitignore

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
1-
#nothing as of now
1+
#any temporary files that libre office has
22
.~lock.*
3+
#custom scripts for my IDE
4+
my_*

‎LICENSE

+13-4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
Copyright (c) 2012-2013 JS-OS. All rights reserved.
2+
3+
14
This program is free software; you can redistribute it and/or modify
25
it under the terms of the GNU General Public License as published by
36
the Free Software Foundation; either version 2 of the License, or
@@ -13,10 +16,16 @@ along with this program; if not, write to the Free Software
1316
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
1417
MA 02110-1301, USA.
1518

16-
Any use of this code must comply to the GPL license and the JS-OS must be credited.
19+
Any use of this code or any file that came with this distribution, must comply to the GPL license and JS-OS must be credited.
20+
21+
Redistributions of source code or any other file that came with this distribution, must retain the above copyright notice and abide by the following disclaimer.
22+
23+
Redistributions in binary form must reproduce the above copyright notice, abide by the following disclaimer and/or other notice provided with the distribution.
1724

18-
Redistributions of source code must retain the above copyright notice and the following disclaimer.
25+
Disclaimer:
26+
Neither the name of the JS-OS nor the names of its contributors may be used to endorse
27+
or promote unauthorized products derived from this software without specific prior written permission. Any file/disclaimer in any version release of JS-OS will confide to the LICENCE found in the newest released version of JS-OS, unless otherwise specifically specified.
1928

20-
Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
29+
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM “AS IS” WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
2130

22-
Neither the name of the JS-OS nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
31+
JS-OS nor any of its contributors/developers own the rights to any of the files in JS-OS/docs/ unless otherwise specified.

0 commit comments

Comments
 (0)