initramfs-module-bootldr-buster: initramfs module to fight Compaq bootldr stupidity.
authorPaul Sokolovsky <pmiscml@gmail.com>
Sat, 8 Mar 2008 20:58:12 +0000 (20:58 +0000)
committerPaul Sokolovsky <pmiscml@gmail.com>
Sat, 8 Mar 2008 20:58:12 +0000 (20:58 +0000)
packages/initrdscripts/files/01-bootldr-buster.sh [new file with mode: 0644]
packages/initrdscripts/initramfs-module-bootldr-buster_1.0.bb [new file with mode: 0644]

diff --git a/packages/initrdscripts/files/01-bootldr-buster.sh b/packages/initrdscripts/files/01-bootldr-buster.sh
new file mode 100644 (file)
index 0000000..7bf312a
--- /dev/null
@@ -0,0 +1,11 @@
+#!/bin/sh
+
+cmdl=`cat /proc/cmdline`
+if expr "$cmdl" : '.*mtdparts=ipaq' > /dev/null; then
+    echo "!!!!!!!!"
+    echo "Detected Compaq bootldr or derivative"
+    echo "Kernel command line is assumed to be bogus and ignored"
+    echo "!!!!!!!!"
+    CMDLINE=" "
+    sleep 3
+fi
diff --git a/packages/initrdscripts/initramfs-module-bootldr-buster_1.0.bb b/packages/initrdscripts/initramfs-module-bootldr-buster_1.0.bb
new file mode 100644 (file)
index 0000000..bd10f16
--- /dev/null
@@ -0,0 +1,12 @@
+SRC_URI = "file://01-bootldr-buster.sh"
+PR = "r0"
+DESCRIPTION = "An initramfs module for ignoring bogus kernel commandline from Compaq bootldr"
+RDEPENDS = "initramfs-uniboot"
+
+do_install() {
+       install -d ${D}/initrd.d
+        install -m 0755 ${WORKDIR}/01-bootldr-buster.sh ${D}/initrd.d/
+}
+
+PACKAGE_ARCH = "all"
+FILES_${PN} += " /initrd.d/* "