aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/vim
AgeCommit message (Expand)Author
2011-04-22vim: Switch to patchdir rather than applying in do_configureTom Rini
2010-12-26vim:: elimiated applypatch taskFrans Meulenbroeks
2010-11-12vim: fix do_install for those using FILESPATH* overridesTim Harvey
2010-10-19vim: Add new package vim-vimrc that installs a vimrc that makes me happy.Philip Balister
2010-10-06vim-7.2: remove quotes from CC in configure.inThilo Fromm
2010-09-30vim-7.2: provide correct VIMGUI option (unbreaks build)Thilo Fromm
2010-08-23ncurses_5.7.bb,recipes: Make DEFAULT_PREFERENCEtesting_2010-08-23Khem Raj
2010-08-15vim: removed old patchFrans Meulenbroeks
2010-08-15vim: remved FILESDIR from inc; renamed patches dirFrans Meulenbroeks
2010-06-25gvim: use libxt directlyMartin Jansa
2010-06-10recipes: conform to OE packaging guidelines with RSUGGESTS/RPROVIDES/RCONFLIC...Martin Jansa
2010-05-26vim_7.2.bb: Add apply=no to 001-411.diffKhem Raj
2010-04-06vim: updated to upstream patch 411Marcin Juszkiewicz
2010-04-01vim: updated to 7.2.394, dropped older versions, cleaned recipesMarcin Juszkiewicz
2010-03-22vim: add diffutils to RSUGGESTS, as vimdiff doesn't like busybox version of diffMartin Jansa
2009-06-05vim: fix u-a pathKoen Kooi
2009-05-30vim: be an alternative to /bin/vi; switch to INC_PRMichael Smith
2009-05-30Replace obsolete base_set_filespath() with FILESPATHPKG in some recipes.Michael Smith
2009-03-17rename packages/ to recipes/ per earlier agreementDenys Dmytriyenko
grade-to-20170116'>dengke/ltp-upgrade-to-20170116 OpenEmbedded Core user contribution treesGrokmirror user
aboutsummaryrefslogtreecommitdiffstats
path: root/meta/classes/rootfs_ipk.bbclass
blob: d5c38fef743ebb4b1440e7496761323f0b36904d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#
# Creates a root filesystem out of IPKs
#
# This rootfs can be mounted via root-nfs or it can be put into an cramfs/jffs etc.
# See image.bbclass for a usage of this.
#

EXTRAOPKGCONFIG ?= ""
ROOTFS_PKGMANAGE = "opkg ${EXTRAOPKGCONFIG}"
ROOTFS_PKGMANAGE_BOOTSTRAP  = "run-postinsts"

do_rootfs[depends] += "opkg-native:do_populate_sysroot opkg-utils-native:do_populate_sysroot"
do_populate_sdk[depends] += "opkg-native:do_populate_sysroot opkg-utils-native:do_populate_sysroot"
do_rootfs[recrdeptask] += "do_package_write_ipk"
do_rootfs[vardeps] += "PACKAGE_FEED_URIS"

do_rootfs[lockfiles] += "${WORKDIR}/ipk.lock"
do_populate_sdk[lockfiles] += "${WORKDIR}/ipk.lock"

OPKG_PREPROCESS_COMMANDS = ""

OPKG_POSTPROCESS_COMMANDS = ""

OPKGLIBDIR = "${localstatedir}/lib"

MULTILIBRE_ALLOW_REP = "${OPKGLIBDIR}/opkg|/usr/lib/opkg"

python () {

    if d.getVar('BUILD_IMAGES_FROM_FEEDS', True):
        flags = d.getVarFlag('do_rootfs', 'recrdeptask', True)
        flags = flags.replace("do_package_write_ipk", "")
        flags = flags.replace("do_deploy", "")
        flags = flags.replace("do_populate_sysroot", "")
        d.setVarFlag('do_rootfs', 'recrdeptask', flags)
        d.setVar('OPKG_PREPROCESS_COMMANDS', "")
        d.setVar('OPKG_POSTPROCESS_COMMANDS', '')
}