diff options
author | Tick Chen <ticktock35@gmail.com> | 2008-12-29 19:41:47 +0800 |
---|---|---|
committer | Tick Chen <ticktock35@gmail.com> | 2008-12-29 19:41:47 +0800 |
commit | cc9825d97962287df75e164aec456901292e1b7f (patch) | |
tree | 94cf0156cadd85c6194c8e1acfa6772bbe160e01 /packages/opkg/opkg-collateral.bb | |
parent | d6fbdc2b09df88b66008ea72c92cbe20f1de703e (diff) |
opkg: Bump up opkg to latest versions 0.1.6 R194
opkg-collateral: Update new options sample and move the opkg.conf to correct place
New stuff:
Moving opkg to http://code.google.com/p/opkg/
apply patch of opkg_wget.patch and adding new configuration
disable the noise message of nogpg
enhance the data structure of void_list
remove all the malloc to calloc
enhance the algorithm of checking out of date files.
adding option check_signature (default is disable)
Diffstat (limited to 'packages/opkg/opkg-collateral.bb')
-rw-r--r-- | packages/opkg/opkg-collateral.bb | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/packages/opkg/opkg-collateral.bb b/packages/opkg/opkg-collateral.bb index 79c741d7be..d3fc2b87ff 100644 --- a/packages/opkg/opkg-collateral.bb +++ b/packages/opkg/opkg-collateral.bb @@ -1,6 +1,7 @@ DESCRIPTION = "opkg configuration files" SECTION = "base" LICENSE = "MIT" +PR = 1 SRC_URI = "file://opkg.conf.comments \ file://lists \ @@ -15,8 +16,8 @@ do_compile () { } do_install () { - install -d ${D}${sysconfdir}/ - install -m 0644 ${WORKDIR}/opkg.conf ${D}${sysconfdir}/opkg.conf + install -d ${D}${sysconfdir}/opkg + install -m 0644 ${WORKDIR}/opkg.conf ${D}${sysconfdir}/opkg/opkg.conf } -CONFFILES_${PN} = "${sysconfdir}/opkg.conf" +CONFFILES_${PN} = "${sysconfdir}/opkg/opkg.conf" |