]> code.ossystems Code Review - meta-freescale.git/commitdiff
fm-ucode: use soc_family to match deployed binaries
authorTing Liu <ting.liu@freescale.com>
Wed, 7 Jan 2015 04:33:23 +0000 (12:33 +0800)
committerZhenhua Luo <zhenhua.luo@freescale.com>
Thu, 8 Jan 2015 10:07:42 +0000 (18:07 +0800)
listing machine names in recipe is painful when adding support
for boards with same soc. use soc_family instead.

Signed-off-by: Ting Liu <ting.liu@freescale.com>
meta-fsl-ppc/recipes-dpaa/fm-ucode/fm-ucode_git.bb

index ef9cae0370e64cc4e4590f3fe6bbb5f7e79c6f72..9f8ac4682b1f49023804604a853820319a7ee18a 100644 (file)
@@ -12,33 +12,19 @@ SRCREV = "517267e5f9ca9ab13cb2e94e0a20f555f73885ee"
 
 S = "${WORKDIR}/git"
 
-ALLOW_EMPTY_${PN} = "1"
+REGLEX ?= "${MACHINE}"
+REGLEX_t1042 = "t1040"
+REGLEX_b4420 = "b4860"
+REGLEX_t4160 = "t4240"
+
 do_install () {
-    case ${MACHINE} in
-        t1040qds|t1040qds-64b|t1040rdb|t1040rdb-64b|t1042rdb|t1042rdb-64b) UCODE=t1040;;
-        t2080qds|t2080qds-64b|t2080rdb|t2080rdb-64b) UCODE=t2080;;
-        b4420qds|b4420qds-64b|b4860qds|b4860qds-64b) UCODE=b4860;;
-        t4240qds|t4240qds-64b|t4240rdb|t4240rdb-64b|t4160qds|t4160qds-64b) UCODE=t4240;;
-        p5020ds|p5020ds-64b) UCODE=p5020;;
-        p5040ds|p5040ds-64b) UCODE=p5040;;
-        *) UCODE=${MACHINE};;
-    esac
-    UCODE=`echo $UCODE | sed -e 's,[a-zA-Z]*$,,'`
+    UCODE=`echo ${REGLEX} | sed -e 's,-.*$,,' -e 's,[a-zA-Z]*$,,'`
     install -d ${D}/boot
     install -m 644 fsl_fman_ucode_${UCODE}*.bin ${D}/boot/
 }
 
 do_deploy () {
-    case ${MACHINE} in
-        t1040qds|t1040qds-64b|t1040rdb|t1040rdb-64b|t1042rdb|t1042rdb-64b) UCODE=t1040;;
-        t2080qds|t2080qds-64b|t2080rdb|t2080rdb-64b) UCODE=t2080;;
-        b4420qds|b4420qds-64b|b4860qds|b4860qds-64b) UCODE=b4860;;
-        t4240qds|t4240qds-64b|t4240rdb|t4240rdb-64b|t4160qds|t4160qds-64b) UCODE=t4240;;
-        p5020ds|p5020ds-64b) UCODE=p5020;;
-        p5040ds|p5040ds-64b) UCODE=p5040;;
-        *) UCODE=${MACHINE};;
-    esac
-    UCODE=`echo $UCODE | sed -e 's,[a-zA-Z]*$,,'`
+    UCODE=`echo ${REGLEX} | sed -e 's,-.*$,,' -e 's,[a-zA-Z]*$,,'`
     install -d ${DEPLOYDIR}/
     install -m 644 fsl_fman_ucode_${UCODE}*.bin ${DEPLOYDIR}/
 }
@@ -46,5 +32,6 @@ addtask deploy before do_build after do_install
 
 PACKAGES += "${PN}-image"
 FILES_${PN}-image += "/boot"
+ALLOW_EMPTY_${PN} = "1"
 COMPATIBLE_MACHINE = "(p1023rdb|e500mc|e5500|e5500-64b|e6500|e6500-64b)"