Tiberiu Chibici
852cf1bb17
==================================================== Mainly changed: FS.Initrd + (kind of) refractored VFS, bugfixed + Rewrote 'initrd' file system, fixed many problems + Working 'cat' and 'dir' console commands + Wrote 'initrd' image write application (for windows), however it may be bugged
17 lines
287 B
Plaintext
17 lines
287 B
Plaintext
# This is a sample script
|
|
CREATE "myram.sys"
|
|
|
|
ADD "info.h"
|
|
ADD "types.h"
|
|
|
|
# We go inside the sources folder
|
|
MKDIR "sources"
|
|
CD "sources"
|
|
ADD "commands.cpp"
|
|
ADD "info.cpp"
|
|
SETFLAGS B68 # Change flags mask; B68 is the default mask.
|
|
ADD "main.cpp"
|
|
CD ".."
|
|
|
|
CLOSE
|