Message ID | 1369055525-24011-1-git-send-email-zhenhua.luo@freescale.com |
---|---|
State | Accepted, archived |
Headers | show |
diff --git a/recipes-tools/eth-config/eth-config_git.bb b/recipes-tools/eth-config/eth-config_git.bb index f1e957c..3ed50a5 100644 --- a/recipes-tools/eth-config/eth-config_git.bb +++ b/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 }
Applied. Best Regards, Zhenhua > -----Original Message----- > From: Luo Zhenhua-B19537 > Sent: Monday, May 20, 2013 9:12 PM > To: meta-freescale@yoctoproject.org > Cc: Liu Ting-B28495; Guo Chunrong-B40290; Yu Zongchun-B40527; Luo > Zhenhua-B19537 > Subject: [meta-fsl-ppc master][PATCH v2] 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 <zhenhua.luo@freescale.com> > --- > recipes-tools/eth-config/eth-config_git.bb | 9 +++------ > 1 file changed, 3 insertions(+), 6 deletions(-) > > diff --git a/recipes-tools/eth-config/eth-config_git.bb b/recipes- > tools/eth-config/eth-config_git.bb > index f1e957c..3ed50a5 100644 > --- a/recipes-tools/eth-config/eth-config_git.bb > +++ b/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 } > -- > 1.7.9.5
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 <zhenhua.luo@freescale.com> --- recipes-tools/eth-config/eth-config_git.bb | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-)