You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fixed the floppy disk read and write functions
Added preliminary ext2 file system which can:
Create the headers for the file system (superblock, group descriptor, etc.)
Read and edit them
Added instructions on how to make the initrd
Added a list of TODO parts that have been started but not completed
To create the initrd of JS-OS on a unix-like operating system, use the script 'make_initrd.sh' in the directory <file_path>/JS-OS/initrd/. The usage is as follows:
2
+
3
+
If there is a file, for example 'test.txt' to create an initrd of it, type:
4
+
./make_initrd.sh test.txt <what you want the file to be called in the initrd>
5
+
6
+
For example: './make_initrd.sh test.txt text_file', the initrd will be edited with 'test.txt' in it and will have the name 'text_file' in the initrd itself.
7
+
8
+
./make_initrd supports multiple files by stringing the arguments.
9
+
For example two files to initrd: './make_initrd file1 name1 file2 name2' ...ect.
0 commit comments