blob: 41b84c547addfba503c7bc9bbdf88decf4d2f3e8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
DESCRIPTION = "Files to make opkg and ipkg coexist"
RDEPENDS = "opkg ipkg ipkg-collateral"
FILE_PR = "r0"
PACKAGE_ARCH = "all"
do_compile() {
:
}
do_install () {
install -d ${D}${sysconfdir}
install -d ${D}/var/lib/ipkg
ln -sf ${sysconfdir}/ipkg.conf ${D}${sysconfdir}/opkg.conf
ln -sf ${sysconfdir}/ipkg/ ${D}${sysconfdir}/opkg
ln -sf /var/lib/ipkg ${D}/var/lib/ipkg
}
|