summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Grub-menu.cfg4
-rw-r--r--Makefile1
-rw-r--r--README16
3 files changed, 21 insertions, 0 deletions
diff --git a/Grub-menu.cfg b/Grub-menu.cfg
new file mode 100644
index 0000000..48bcede
--- /dev/null
+++ b/Grub-menu.cfg
@@ -0,0 +1,4 @@
+title The Melon Operating System
+root (fd0)
+kernel /Melon.ke
+module /Init.rfs initrd / 128K
diff --git a/Makefile b/Makefile
index d9daeda..eeaec74 100644
--- a/Makefile
+++ b/Makefile
@@ -55,6 +55,7 @@ $(RamFS):
floppy: $(Files)
sudo mount $(Floppy) Mount -o loop
+ sudo cp Grub-menu.cfg Mount/boot/menu.cfg
for f in $(Files); do \
sudo cp $$f Mount; \
done
diff --git a/README b/README
index e69de29..d887985 100644
--- a/README
+++ b/README
@@ -0,0 +1,16 @@
+Welcome ! It seems you are intrested in my Melon OS...
+
+** HOW TO BUILD MELON : **
+
+If you haven't yet downloaded the source code, then commit the GIT repository :
+$ git clone git://github.com/Alexis211/Melon.git
+
+Then, rebuild everything :
+$ make mrproper
+$ make
+
+Create the floppy image :
+$ make floppy
+
+And run it with Qemu :
+$ make qemu