xref: /OK3568_Linux_fs/yocto/poky/meta/recipes-extended/packagegroups/packagegroup-core-full-cmdline.bb (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1#
2# Copyright (C) 2010 Intel Corporation
3#
4
5SUMMARY = "Standard full-featured Linux system"
6DESCRIPTION = "Package group bringing in packages needed for a more traditional full-featured Linux system"
7PR = "r6"
8
9inherit packagegroup
10
11PACKAGES = "\
12    packagegroup-core-full-cmdline \
13    packagegroup-core-full-cmdline-utils \
14    packagegroup-core-full-cmdline-extended \
15    packagegroup-core-full-cmdline-dev-utils \
16    packagegroup-core-full-cmdline-multiuser \
17    packagegroup-core-full-cmdline-initscripts \
18    packagegroup-core-full-cmdline-sys-services \
19    "
20
21RDEPENDS:packagegroup-core-full-cmdline = "\
22    packagegroup-core-full-cmdline-utils \
23    packagegroup-core-full-cmdline-extended \
24    packagegroup-core-full-cmdline-dev-utils \
25    packagegroup-core-full-cmdline-multiuser \
26    packagegroup-core-full-cmdline-initscripts \
27    packagegroup-core-full-cmdline-sys-services \
28    "
29
30RDEPENDS:packagegroup-core-full-cmdline-utils = "\
31    bash \
32    acl \
33    attr \
34    bc \
35    coreutils \
36    cpio \
37    e2fsprogs \
38    ed \
39    file \
40    findutils \
41    gawk \
42    grep \
43    less \
44    makedevs \
45    mc \
46    mc-fish \
47    mc-helpers \
48    mc-helpers-perl \
49    ncurses \
50    net-tools \
51    procps \
52    psmisc \
53    sed \
54    tar \
55    time \
56    util-linux \
57    "
58
59RDEPENDS:packagegroup-core-full-cmdline-extended = "\
60    iproute2 \
61    iputils \
62    iptables \
63    module-init-tools \
64    openssl \
65    "
66
67RDEPENDS:packagegroup-core-full-cmdline-dev-utils = "\
68    diffutils \
69    m4 \
70    make \
71    patch \
72    "
73
74VIRTUAL-RUNTIME_syslog ?= "sysklogd"
75RDEPENDS:packagegroup-core-full-cmdline-initscripts = "\
76    ${VIRTUAL-RUNTIME_initscripts} \
77    ${VIRTUAL-RUNTIME_init_manager} \
78    ethtool \
79    ${VIRTUAL-RUNTIME_login_manager} \
80    ${VIRTUAL-RUNTIME_syslog} \
81    "
82
83RDEPENDS:packagegroup-core-full-cmdline-multiuser = "\
84    bzip2 \
85    cracklib \
86    gzip \
87    shadow \
88    sudo \
89    "
90
91RDEPENDS:packagegroup-core-full-cmdline-sys-services = "\
92    at \
93    cronie \
94    logrotate \
95    ${@bb.utils.contains('DISTRO_FEATURES', 'nfs', 'nfs-utils rpcbind', '', d)} \
96    "
97