summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.gitignore1
-rw-r--r--application/controllers/ResourceController.php4
-rw-r--r--resources/bootos/2/initramfs/ubuntu-kernelbin0 -> 4167200 bytes
-rw-r--r--resources/bootos/2/kernel/ubuntu-initbin0 -> 6020724 bytes
4 files changed, 3 insertions, 2 deletions
diff --git a/.gitignore b/.gitignore
index 3184cc6..3dd8945 100644
--- a/.gitignore
+++ b/.gitignore
@@ -5,3 +5,4 @@ library/
.buildpath
.settings/
application/configs/application.ini
+resources/
diff --git a/application/controllers/ResourceController.php b/application/controllers/ResourceController.php
index 92be437..5bbea9f 100644
--- a/application/controllers/ResourceController.php
+++ b/application/controllers/ResourceController.php
@@ -36,7 +36,7 @@ class ResourceController extends Zend_Controller_Action
// create the gzipped tarfile.
chdir("../resources/bootos/$bootosID/initramfs/");
- passthru( "tar cz ./");
+ passthru( "cat initramfs ./");
}
}
@@ -83,7 +83,7 @@ class ResourceController extends Zend_Controller_Action
// create the gzipped tarfile.
chdir("../resources/bootos/$bootosID/kernel/");
- passthru( "tar cz ./");
+ passthru( "cat kernel ./");
}
}
diff --git a/resources/bootos/2/initramfs/ubuntu-kernel b/resources/bootos/2/initramfs/ubuntu-kernel
new file mode 100644
index 0000000..960d26a
--- /dev/null
+++ b/resources/bootos/2/initramfs/ubuntu-kernel
Binary files differ
diff --git a/resources/bootos/2/kernel/ubuntu-init b/resources/bootos/2/kernel/ubuntu-init
new file mode 100644
index 0000000..e7bfa9e
--- /dev/null
+++ b/resources/bootos/2/kernel/ubuntu-init
Binary files differ