From: Matt Reimer Date: Fri, 10 Feb 2006 18:56:16 +0000 (+0000) Subject: h2200_bootloader: make it a bit quieter, and save the bootloader to the more X-Git-Tag: Release-2010-05/1~9453^2~2371^2~36 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=00800050e185b29e3f2091d5caa550250bc5a2cf;p=openembedded.git h2200_bootloader: make it a bit quieter, and save the bootloader to the more appropriate filename h2200_bootloader.bin. --- diff --git a/packages/h2200-bootloader/h2200-bootloader.bb b/packages/h2200-bootloader/h2200-bootloader.bb index e0fbcac75a..03defa2aba 100644 --- a/packages/h2200-bootloader/h2200-bootloader.bb +++ b/packages/h2200-bootloader/h2200-bootloader.bb @@ -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 " -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 }