h2200_bootloader: make it a bit quieter, and save the bootloader to the more
authorMatt Reimer <mattjreimer@gmail.com>
Fri, 10 Feb 2006 18:56:16 +0000 (18:56 +0000)
committerOpenEmbedded Project <openembedded-devel@lists.openembedded.org>
Fri, 10 Feb 2006 18:56:16 +0000 (18:56 +0000)
appropriate filename h2200_bootloader.bin.

packages/h2200-bootloader/h2200-bootloader.bb

index e0fbcac..03defa2 100644 (file)
@@ -1,13 +1,10 @@
 DESCRIPTION = "Bootloader firmware extractor for the h2200 iPAQ"
-RRECOMMENDS = "kernel-module-mtdblock kernel-module-hamcop-nand"
 ALLOW_EMPTY = "1"
 MAINTAINER = "Koen Kooi <koen@handhelds.org>"
-PR="r1"
+PR="r2"
 
 pkg_postinst() {
 #!/bin/sh
-modprobe mtdblock
-modprobe hamcop_nand
 mkdir -p /lib/firmware
-dd if=/dev/mtdblock0 of=/lib/firmware/hamcop_bootloader.bin
+dd if=/dev/mtdblock0 of=/lib/firmware/h2200_bootloader.bin 2>/dev/null
 }