From c94ea264d0b6ac68422882a670d179d038b6d09b Mon Sep 17 00:00:00 2001 From: Zhenhua Luo Date: Mon, 20 May 2013 13:12:05 +0000 Subject: [PATCH] eth-config: use pattern match for xml files installation Use pattern match to install xml files and no need to update recipe if xml files are added, renamed or deleted. Signed-off-by: Zhenhua Luo --- meta-fsl-ppc/recipes-tools/eth-config/eth-config_git.bb | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/meta-fsl-ppc/recipes-tools/eth-config/eth-config_git.bb b/meta-fsl-ppc/recipes-tools/eth-config/eth-config_git.bb index f1e957cf..3ed50a5c 100644 --- a/meta-fsl-ppc/recipes-tools/eth-config/eth-config_git.bb +++ b/meta-fsl-ppc/recipes-tools/eth-config/eth-config_git.bb @@ -3,7 +3,7 @@ SECTION = "eth-config" LICENSE = "Freescale EULA" LIC_FILES_CHKSUM = "file://COPYING;md5=cf02dc8eb5ac4a76f3812826520dea87" -PR = "r1" +PR = "r2" SRC_URI = "git://git.freescale.com/ppc/sdk/eth-config.git" SRCREV = "c1400695e56aa80f2f4c88c4e0582028248ae06f" @@ -12,11 +12,8 @@ S = "${WORKDIR}/git" do_install() { install -d ${D}/etc/fmc/config - install -m 644 ${S}/8c-128fq-p.xml ${D}/etc/fmc/config - install -m 644 ${S}/cfg-8c.xml ${D}/etc/fmc/config + install -m 644 ${S}/*.xml ${D}/etc/fmc/config install -d ${D}/etc/fmc/config/shared_mac - install -m 644 ${S}/shared_mac/hv2p_config_p4_shared_mac.xml ${D}/etc/fmc/config/shared_mac - install -m 644 ${S}/shared_mac/hv2p_policy_shared_mac.xml ${D}/etc/fmc/config/shared_mac - install -m 644 ${S}/shared_mac/hv2p_swparser_shared_mac.xml ${D}/etc/fmc/config/shared_mac + install -m 644 ${S}/shared_mac/*.xml ${D}/etc/fmc/config/shared_mac install -m 644 ${S}/shared_mac/README ${D}/etc/fmc/config/shared_mac } -- 2.40.1