summaryrefslogtreecommitdiffstats
path: root/meta-fsl-ppc
diff options
context:
space:
mode:
authorTing Liu <ting.liu@freescale.com>2015-01-05 18:32:26 +0800
committerZhenhua Luo <zhenhua.luo@freescale.com>2015-01-07 10:15:36 +0800
commitc4a6a76d38f44283e7b5914883d7247ef7cf462c (patch)
tree3c70cc392004084b544ec8424697156eb9a96850 /meta-fsl-ppc
parent6a4ffe1702b0d0fbcf8abb9cf271c9d017967d7a (diff)
downloadmeta-freescale-c4a6a76d38f44283e7b5914883d7247ef7cf462c.tar.gz
hv-cfg: t1042rdb use the same setting with t1040
As previous t1042rdb was renamed to t1042rdb-pi and the new t1042rdb keep the same with t1040rdb except rcw/u-boot/dtb, update hv-cfg to follow this. Signed-off-by: Ting Liu <ting.liu@freescale.com>
Diffstat (limited to 'meta-fsl-ppc')
-rw-r--r--meta-fsl-ppc/recipes-virtualization/hv-cfg/hv-cfg_git.bb6
1 files changed, 6 insertions, 0 deletions
diff --git a/meta-fsl-ppc/recipes-virtualization/hv-cfg/hv-cfg_git.bb b/meta-fsl-ppc/recipes-virtualization/hv-cfg/hv-cfg_git.bb
index 0fc83e09e..599bce28f 100644
--- a/meta-fsl-ppc/recipes-virtualization/hv-cfg/hv-cfg_git.bb
+++ b/meta-fsl-ppc/recipes-virtualization/hv-cfg/hv-cfg_git.bb
@@ -27,12 +27,18 @@ do_install () {
27 make install 27 make install
28 28
29 M=`echo ${MACHINE} | sed s/-64b//g` 29 M=`echo ${MACHINE} | sed s/-64b//g`
30 if [ "t1042rdb" = "${M}" ];then
31 M=t1040rdb
32 fi
30 install -d ${D}/boot/hv-cfg 33 install -d ${D}/boot/hv-cfg
31 cp -r ${S}/${M}/${M}/* ${D}/boot/hv-cfg 34 cp -r ${S}/${M}/${M}/* ${D}/boot/hv-cfg
32} 35}
33 36
34do_deploy () { 37do_deploy () {
35 M=`echo ${MACHINE} | sed s/-64b//g` 38 M=`echo ${MACHINE} | sed s/-64b//g`
39 if [ "t1042rdb" = "${M}" ];then
40 M=t1040rdb
41 fi
36 install -d ${DEPLOYDIR}/hv-cfg 42 install -d ${DEPLOYDIR}/hv-cfg
37 cp -r ${S}/${M}/${M}/* ${DEPLOYDIR}/hv-cfg 43 cp -r ${S}/${M}/${M}/* ${DEPLOYDIR}/hv-cfg
38} 44}