summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormichael pereira2011-03-15 11:29:23 +0100
committermichael pereira2011-03-15 11:29:23 +0100
commit0c655cba602291f06f0110ad65ce87781633ffd3 (patch)
tree2882ce6af8cad6440c14f803525295da8641503b
parentfiltertypen hinzugefügt, Zeit, Datum und Wochentage können in Filtern defin... (diff)
downloadpbs2-0c655cba602291f06f0110ad65ce87781633ffd3.tar.gz
pbs2-0c655cba602291f06f0110ad65ce87781633ffd3.tar.xz
pbs2-0c655cba602291f06f0110ad65ce87781633ffd3.zip
Ressource Controller
-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