1
0
mirror of https://git.yoctoproject.org/poky synced 2026-05-08 17:19:20 +00:00

opkg-collateral: moved from ipkg-collateral

Signed-off-by: Marcin Juszkiewicz <hrw@openedhand.com>


git-svn-id: https://svn.o-hand.com/repos/poky/trunk@4027 311d38ba-8fff-0310-9ca6-ca027cbcb966
This commit is contained in:
Marcin Juszkiewicz
2008-03-17 13:18:42 +00:00
parent 346dec3686
commit beb83fd62b
6 changed files with 22 additions and 25 deletions
-25
View File
@@ -1,25 +0,0 @@
DESCRIPTION = "ipkg configuration files"
SECTION = "base"
LICENSE = "MIT"
PR = "r7"
SRC_URI = " \
file://ipkg.conf.comments \
file://lists \
file://dest \
file://src \
"
do_compile () {
cat ${WORKDIR}/ipkg.conf.comments >${WORKDIR}/ipkg.conf
cat ${WORKDIR}/src >>${WORKDIR}/ipkg.conf
cat ${WORKDIR}/dest >>${WORKDIR}/ipkg.conf
cat ${WORKDIR}/lists >>${WORKDIR}/ipkg.conf
}
do_install () {
install -d ${D}${sysconfdir}/
install -m 0644 ${WORKDIR}/ipkg.conf ${D}${sysconfdir}/ipkg.conf
}
CONFFILES_${PN} = "${sysconfdir}/ipkg.conf"
+22
View File
@@ -0,0 +1,22 @@
DESCRIPTION = "opkg configuration files"
SECTION = "base"
LICENSE = "MIT"
SRC_URI = "file://opkg.conf.comments \
file://lists \
file://dest \
file://src "
do_compile () {
cat ${WORKDIR}/opkg.conf.comments >${WORKDIR}/opkg.conf
cat ${WORKDIR}/src >>${WORKDIR}/opkg.conf
cat ${WORKDIR}/dest >>${WORKDIR}/opkg.conf
cat ${WORKDIR}/lists >>${WORKDIR}/opkg.conf
}
do_install () {
install -d ${D}${sysconfdir}/
install -m 0644 ${WORKDIR}/opkg.conf ${D}${sysconfdir}/opkg.conf
}
CONFFILES_${PN} = "${sysconfdir}/opkg.conf"