summaryrefslogtreecommitdiff
path: root/packages/initrdscripts
diff options
context:
space:
mode:
authorThomas Kunze <thommycheck@gmx.de>2008-08-03 16:31:31 +0000
committerThomas Kunze <thommycheck@gmx.de>2008-08-03 16:31:31 +0000
commit894fcd09757550defb344445597e113bbae02c52 (patch)
tree9f97aff94c19f83d74c33b55923f9946e0b94c59 /packages/initrdscripts
parentc8190d6efdf5aaef58c5bd865ca82360b1f43d62 (diff)
files: add some stuff to device_table_add-mmc.txt and rename it to
devices-table-collie.txt. conf/collie: use device-table-collie.txt packages/kexecboot:*create a new directory for everything kexecboot related *move initramfs-kexec-image and initramfs-kexec to this dir and rename them to *kexecboot *move linux-kexecboot to this dir *add forgotten patches for linux-kexecboot
Diffstat (limited to 'packages/initrdscripts')
-rw-r--r--packages/initrdscripts/initramfs-kexec_1.0.bb27
1 files changed, 0 insertions, 27 deletions
diff --git a/packages/initrdscripts/initramfs-kexec_1.0.bb b/packages/initrdscripts/initramfs-kexec_1.0.bb
deleted file mode 100644
index 1b2ae27cf7..0000000000
--- a/packages/initrdscripts/initramfs-kexec_1.0.bb
+++ /dev/null
@@ -1,27 +0,0 @@
-DESCRIPTON = "A init script that mounts a device and kexecs a new kernel from it."
-PR = "r6"
-
-do_compile() {
- cat > init.sh << EOF
-#!/bin/sh
-/bin/mount -t proc proc /proc
-/bin/mount -t ${ROOTFS} ${ROOTDEV} /mnt
-/usr/sbin/kexec -l /mnt/boot/zImage
-/usr/sbin/kexec -e
-EOF
-}
-
-do_install() {
- install -m 0755 ${S}/init.sh ${D}/init
- install -d ${D}/proc
- install -d ${D}/mnt
-}
-
-PACKAGE_ARCH = "all"
-
-FILES_${PN} = "/init /proc /mnt"
-
-ROOTDEV = "/dev/mmcblk0p1"
-ROOTFS = "ext2"
-#ROOTDEV = "mtd2"
-#ROOTFS = "jffs2"