mirror of
https://git.yoctoproject.org/poky
synced 2026-09-13 09:49:32 +02:00
Rename task to packagegroup
"Package group" is a much more appropriate name for these than task, since we use the word task to describe units of work executed by BitBake. (From OE-Core rev: 424dcf7046e4ad09dcc664eb1992201195247fcf) Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
f1df3f828b
commit
272cb74d70
@@ -0,0 +1,35 @@
|
||||
#
|
||||
# Copyright (C) 2007 OpenedHand Ltd
|
||||
#
|
||||
|
||||
DESCRIPTION = "Host packages for the standalone SDK or external toolchain"
|
||||
PR = "r11"
|
||||
LICENSE = "MIT"
|
||||
ALLOW_EMPTY = "1"
|
||||
|
||||
LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58 \
|
||||
file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
|
||||
|
||||
inherit nativesdk
|
||||
|
||||
PACKAGES = "${PN}"
|
||||
|
||||
RDEPENDS_${PN} = "\
|
||||
nativesdk-pkgconfig \
|
||||
nativesdk-qemu \
|
||||
nativesdk-qemu-helper \
|
||||
nativesdk-pseudo \
|
||||
nativesdk-unfs-server \
|
||||
nativesdk-opkg \
|
||||
nativesdk-libtool \
|
||||
nativesdk-autoconf \
|
||||
nativesdk-automake \
|
||||
"
|
||||
|
||||
RDEPENDS_${PN}_darwin8 = "\
|
||||
odcctools-cross-canadian \
|
||||
llvm-cross-canadian \
|
||||
nativesdk-pkgconfig \
|
||||
nativesdk-opkg \
|
||||
nativesdk-libtool \
|
||||
"
|
||||
359
meta/recipes-core/packagegroups/packagegroup-base.bb
Normal file
359
meta/recipes-core/packagegroups/packagegroup-base.bb
Normal file
@@ -0,0 +1,359 @@
|
||||
DESCRIPTION = "Merge machine and distro options to create a basic machine task/package"
|
||||
LICENSE = "MIT"
|
||||
LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58 \
|
||||
file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
|
||||
PR = "r75"
|
||||
|
||||
inherit packagegroup
|
||||
|
||||
PROVIDES = "${PACKAGES}"
|
||||
PACKAGES = ' \
|
||||
packagegroup-base \
|
||||
packagegroup-base-extended \
|
||||
packagegroup-distro-base \
|
||||
packagegroup-machine-base \
|
||||
\
|
||||
${@base_contains("MACHINE_FEATURES", "acpi", "packagegroup-base-acpi", "",d)} \
|
||||
${@base_contains("MACHINE_FEATURES", "alsa", "packagegroup-base-alsa", "", d)} \
|
||||
${@base_contains("MACHINE_FEATURES", "apm", "packagegroup-base-apm", "", d)} \
|
||||
${@base_contains("MACHINE_FEATURES", "ext2", "packagegroup-base-ext2", "", d)} \
|
||||
${@base_contains("MACHINE_FEATURES", "vfat", "packagegroup-base-vfat", "", d)} \
|
||||
${@base_contains("MACHINE_FEATURES", "irda", "packagegroup-base-irda", "",d)} \
|
||||
${@base_contains("MACHINE_FEATURES", "keyboard", "packagegroup-base-keyboard", "", d)} \
|
||||
${@base_contains("MACHINE_FEATURES", "pci", "packagegroup-base-pci", "",d)} \
|
||||
${@base_contains("MACHINE_FEATURES", "pcmcia", "packagegroup-base-pcmcia", "", d)} \
|
||||
${@base_contains("MACHINE_FEATURES", "phone", "packagegroup-base-phone", "", d)} \
|
||||
${@base_contains("MACHINE_FEATURES", "screen", "packagegroup-base-screen", "", d)} \
|
||||
${@base_contains("MACHINE_FEATURES", "serial", "packagegroup-base-serial", "", d)} \
|
||||
${@base_contains("MACHINE_FEATURES", "touchscreen", "packagegroup-base-touchscreen", "", d)} \
|
||||
${@base_contains("MACHINE_FEATURES", "usbgadget", "packagegroup-base-usbgadget", "", d)} \
|
||||
${@base_contains("MACHINE_FEATURES", "usbhost", "packagegroup-base-usbhost", "", d)} \
|
||||
\
|
||||
${@base_contains("MACHINE_FEATURES", "uboot", "packagegroup-base-uboot", "",d)} \
|
||||
${@base_contains("MACHINE_FEATURES", "redboot", "packagegroup-base-redboot", "",d)} \
|
||||
${@base_contains("MACHINE_FEATURES", "apex", "packagegroup-base-apex", "",d)} \
|
||||
\
|
||||
${@base_contains("DISTRO_FEATURES", "bluetooth", "packagegroup-base-bluetooth", "", d)} \
|
||||
${@base_contains("DISTRO_FEATURES", "wifi", "packagegroup-base-wifi", "", d)} \
|
||||
${@base_contains("DISTRO_FEATURES", "3g", "packagegroup-base-3g", "", d)} \
|
||||
${@base_contains("DISTRO_FEATURES", "cramfs", "packagegroup-base-cramfs", "", d)} \
|
||||
${@base_contains("DISTRO_FEATURES", "ipsec", "packagegroup-base-ipsec", "", d)} \
|
||||
${@base_contains("DISTRO_FEATURES", "ipv6", "packagegroup-base-ipv6", "", d)} \
|
||||
${@base_contains("DISTRO_FEATURES", "nfs", "packagegroup-base-nfs", "", d)} \
|
||||
${@base_contains("DISTRO_FEATURES", "ppp", "packagegroup-base-ppp", "", d)} \
|
||||
${@base_contains("DISTRO_FEATURES", "smbfs", "packagegroup-base-smbfs", "", d)} \
|
||||
${@base_contains("DISTRO_FEATURES", "raid", "packagegroup-base-raid", "",d)} \
|
||||
${@base_contains("DISTRO_FEATURES", "zeroconf", "packagegroup-base-zeroconf", "", d)} \
|
||||
\
|
||||
'
|
||||
|
||||
ALLOW_EMPTY = "1"
|
||||
|
||||
#
|
||||
# packages which content depend on MACHINE_FEATURES need to be MACHINE_ARCH
|
||||
#
|
||||
PACKAGE_ARCH = "${MACHINE_ARCH}"
|
||||
|
||||
#
|
||||
# those ones can be set in machine config to supply packages needed to get machine booting
|
||||
#
|
||||
MACHINE_ESSENTIAL_EXTRA_RDEPENDS ?= ""
|
||||
MACHINE_ESSENTIAL_EXTRA_RRECOMMENDS ?= ""
|
||||
|
||||
#
|
||||
# packagegroup-base contain stuff needed for base system (machine related)
|
||||
#
|
||||
RDEPENDS_packagegroup-base = "\
|
||||
packagegroup-distro-base \
|
||||
packagegroup-machine-base \
|
||||
\
|
||||
sysfsutils \
|
||||
module-init-tools \
|
||||
${@base_contains('MACHINE_FEATURES', 'apm', 'packagegroup-base-apm', '',d)} \
|
||||
${@base_contains('MACHINE_FEATURES', 'acpi', 'packagegroup-base-acpi', '',d)} \
|
||||
${@base_contains('MACHINE_FEATURES', 'keyboard', 'packagegroup-base-keyboard', '',d)} \
|
||||
${@base_contains('MACHINE_FEATURES', 'phone', 'packagegroup-base-phone', '',d)} \
|
||||
\
|
||||
${@base_contains('COMBINED_FEATURES', 'alsa', 'packagegroup-base-alsa', '',d)} \
|
||||
${@base_contains('COMBINED_FEATURES', 'ext2', 'packagegroup-base-ext2', '',d)} \
|
||||
${@base_contains('COMBINED_FEATURES', 'vfat', 'packagegroup-base-vfat', '',d)} \
|
||||
${@base_contains('COMBINED_FEATURES', 'irda', 'packagegroup-base-irda', '',d)} \
|
||||
${@base_contains('COMBINED_FEATURES', 'pci', 'packagegroup-base-pci', '',d)} \
|
||||
${@base_contains('COMBINED_FEATURES', 'pcmcia', 'packagegroup-base-pcmcia', '',d)} \
|
||||
${@base_contains('COMBINED_FEATURES', 'usbgadget', 'packagegroup-base-usbgadget', '',d)} \
|
||||
${@base_contains('COMBINED_FEATURES', 'usbhost', 'packagegroup-base-usbhost', '',d)} \
|
||||
${@base_contains('COMBINED_FEATURES', 'bluetooth', 'packagegroup-base-bluetooth', '',d)} \
|
||||
${@base_contains('COMBINED_FEATURES', 'wifi', 'packagegroup-base-wifi', '',d)} \
|
||||
${@base_contains('COMBINED_FEATURES', '3g', 'packagegroup-base-3g', '',d)} \
|
||||
${@base_contains('COMBINED_FEATURES', 'uboot', 'packagegroup-base-uboot', '',d)} \
|
||||
${@base_contains('COMBINED_FEATURES', 'redboot', 'packagegroup-base-redboot', '',d)} \
|
||||
${@base_contains('COMBINED_FEATURES', 'apex', 'packagegroup-base-apex', '',d)} \
|
||||
\
|
||||
${@base_contains('DISTRO_FEATURES', 'nfs', 'packagegroup-base-nfs', '',d)} \
|
||||
${@base_contains('DISTRO_FEATURES', 'cramfs', 'packagegroup-base-cramfs', '',d)} \
|
||||
${@base_contains('DISTRO_FEATURES', 'smbfs', 'packagegroup-base-smbfs', '',d)} \
|
||||
${@base_contains('DISTRO_FEATURES', 'ipv6', 'packagegroup-base-ipv6', '',d)} \
|
||||
${@base_contains('DISTRO_FEATURES', 'ipsec', 'packagegroup-base-ipsec', '',d)} \
|
||||
${@base_contains('DISTRO_FEATURES', 'ppp', 'packagegroup-base-ppp', '',d)} \
|
||||
${@base_contains('DISTRO_FEATURES', 'raid', 'packagegroup-base-raid', '',d)} \
|
||||
${@base_contains('DISTRO_FEATURES', 'zeroconf', 'packagegroup-base-zeroconf', '',d)} \
|
||||
"
|
||||
|
||||
|
||||
RRECOMMENDS_packagegroup-base = "\
|
||||
kernel-module-nls-utf8 \
|
||||
kernel-module-input \
|
||||
kernel-module-uinput \
|
||||
kernel-module-rtc-dev \
|
||||
kernel-module-rtc-proc \
|
||||
kernel-module-rtc-sysfs \
|
||||
kernel-module-unix"
|
||||
|
||||
RDEPENDS_packagegroup-base-extended = "\
|
||||
packagegroup-base \
|
||||
${ADD_WIFI} \
|
||||
${ADD_BT} \
|
||||
${ADD_3G} \
|
||||
"
|
||||
|
||||
ADD_WIFI = ""
|
||||
ADD_BT = ""
|
||||
ADD_3G = ""
|
||||
|
||||
python __anonymous () {
|
||||
# If Distro want wifi and machine feature wifi/pci/pcmcia/usbhost (one of them)
|
||||
# then include packagegroup-base-wifi in packagegroup-base
|
||||
|
||||
distro_features = set(d.getVar("DISTRO_FEATURES", True).split())
|
||||
machine_features= set(d.getVar("MACHINE_FEATURES", True).split())
|
||||
|
||||
if "bluetooth" in distro_features and not "bluetooth" in machine_features and ("pcmcia" in machine_features or "pci" in machine_features or "usbhost" in machine_features):
|
||||
d.setVar("ADD_BT", "packagegroup-base-bluetooth")
|
||||
|
||||
if "wifi" in distro_features and not "wifi" in machine_features and ("pcmcia" in machine_features or "pci" in machine_features or "usbhost" in machine_features):
|
||||
d.setVar("ADD_WIFI", "packagegroup-base-wifi")
|
||||
|
||||
if "3g" in distro_features and not "3g" in machine_features and ("pcmcia" in machine_features or "pci" in machine_features or "usbhost" in machine_features):
|
||||
d.setVar("ADD_3G", "packagegroup-base-3g")
|
||||
}
|
||||
|
||||
#
|
||||
# packages added by distribution
|
||||
#
|
||||
DEPENDS_packagegroup-distro-base = "${DISTRO_EXTRA_DEPENDS}"
|
||||
RDEPENDS_packagegroup-distro-base = "${DISTRO_EXTRA_RDEPENDS}"
|
||||
RRECOMMENDS_packagegroup-distro-base = "${DISTRO_EXTRA_RRECOMMENDS}"
|
||||
|
||||
#
|
||||
# packages added by machine config
|
||||
#
|
||||
RDEPENDS_packagegroup-machine-base = "${MACHINE_EXTRA_RDEPENDS}"
|
||||
RRECOMMENDS_packagegroup-machine-base = "${MACHINE_EXTRA_RRECOMMENDS}"
|
||||
|
||||
RDEPENDS_packagegroup-base-keyboard = "\
|
||||
keymaps"
|
||||
|
||||
RDEPENDS_packagegroup-base-pci = "\
|
||||
pciutils"
|
||||
|
||||
RDEPENDS_packagegroup-base-acpi = "\
|
||||
acpid \
|
||||
libacpi "
|
||||
|
||||
RDEPENDS_packagegroup-base-apm = "\
|
||||
${VIRTUAL-RUNTIME_apm} \
|
||||
apmd"
|
||||
|
||||
RDEPENDS_packagegroup-base-ext2 = "\
|
||||
hdparm \
|
||||
e2fsprogs \
|
||||
e2fsprogs-e2fsck \
|
||||
e2fsprogs-mke2fs"
|
||||
|
||||
RRECOMMENDS_packagegroup-base-vfat = "\
|
||||
kernel-module-msdos \
|
||||
kernel-module-vfat \
|
||||
kernel-module-nls-iso8859-1 \
|
||||
kernel-module-nls-cp437"
|
||||
|
||||
RDEPENDS_packagegroup-base-alsa = "\
|
||||
alsa-utils-alsactl \
|
||||
alsa-utils-alsamixer \
|
||||
${VIRTUAL-RUNTIME_alsa-state}"
|
||||
|
||||
RRECOMMENDS_packagegroup-base-alsa = "\
|
||||
kernel-module-snd-mixer-oss \
|
||||
kernel-module-snd-pcm-oss"
|
||||
|
||||
RDEPENDS_packagegroup-base-pcmcia = "\
|
||||
pcmciautils \
|
||||
"
|
||||
#${@base_contains('DISTRO_FEATURES', 'wifi', 'prism-firmware', '',d)}
|
||||
#${@base_contains('DISTRO_FEATURES', 'wifi', 'spectrum-fw', '',d)}
|
||||
|
||||
|
||||
RRECOMMENDS_packagegroup-base-pcmcia = "\
|
||||
kernel-module-pcmcia \
|
||||
kernel-module-airo-cs \
|
||||
kernel-module-pcnet-cs \
|
||||
kernel-module-serial-cs \
|
||||
kernel-module-ide-cs \
|
||||
kernel-module-ide-disk \
|
||||
${@base_contains('DISTRO_FEATURES', 'wifi', 'kernel-module-hostap-cs', '',d)} \
|
||||
${@base_contains('DISTRO_FEATURES', 'wifi', 'kernel-module-orinoco-cs', '',d)} \
|
||||
${@base_contains('DISTRO_FEATURES', 'wifi', 'kernel-module-spectrum-cs', '',d)}"
|
||||
|
||||
# Provide bluez-utils-compat utils for the time being, the binaries in that package will vanish soon from upstream releases, so beware!
|
||||
|
||||
RDEPENDS_packagegroup-base-bluetooth = "\
|
||||
bluez4 \
|
||||
${@base_contains('COMBINED_FEATURES', 'alsa', 'libasound-module-bluez', '',d)} \
|
||||
"
|
||||
|
||||
RRECOMMENDS_packagegroup-base-bluetooth = "\
|
||||
kernel-module-bluetooth \
|
||||
kernel-module-l2cap \
|
||||
kernel-module-rfcomm \
|
||||
kernel-module-hci-vhci \
|
||||
kernel-module-bnep \
|
||||
kernel-module-hidp \
|
||||
kernel-module-hci-uart \
|
||||
kernel-module-sco \
|
||||
${@base_contains('COMBINED_FEATURES', 'usbhost', 'kernel-module-hci-usb', '',d)} \
|
||||
${@base_contains('COMBINED_FEATURES', 'pcmcia', 'kernel-module-bluetooth3c-cs', '',d)} \
|
||||
${@base_contains('COMBINED_FEATURES', 'pcmcia', 'kernel-module-bluecard-cs', '',d)} \
|
||||
${@base_contains('COMBINED_FEATURES', 'pcmcia', 'kernel-module-bluetoothuart-cs', '',d)} \
|
||||
${@base_contains('COMBINED_FEATURES', 'pcmcia', 'kernel-module-dtl1-cs', '',d)} \
|
||||
"
|
||||
|
||||
RDEPENDS_packagegroup-base-irda = "\
|
||||
irda-utils"
|
||||
|
||||
RRECOMMENDS_packagegroup-base-irda = "\
|
||||
kernel-module-pxaficp-ir \
|
||||
kernel-module-irda \
|
||||
kernel-module-ircomm \
|
||||
kernel-module-ircomm-tty \
|
||||
kernel-module-irlan \
|
||||
${@base_contains('DISTRO_FEATURES', 'ppp', 'kernel-module-irnet', '',d)} \
|
||||
kernel-module-irport \
|
||||
kernel-module-irtty \
|
||||
kernel-module-irtty-sir \
|
||||
kernel-module-sir-dev \
|
||||
${@base_contains('COMBINED_FEATURES', 'usbhost', 'kernel-module-ir-usb', '',d)} "
|
||||
|
||||
RRECOMMENDS_packagegroup-base-usbgadget = "\
|
||||
kernel-module-pxa27x_udc \
|
||||
kernel-module-gadgetfs \
|
||||
kernel-module-g-file-storage \
|
||||
kernel-module-g-serial \
|
||||
kernel-module-g-ether"
|
||||
|
||||
RDEPENDS_packagegroup-base-usbhost = "\
|
||||
usbutils "
|
||||
|
||||
RRECOMMENDS_packagegroup-base-usbhost = "\
|
||||
kernel-module-uhci-hcd \
|
||||
kernel-module-ohci-hcd \
|
||||
kernel-module-ehci-hcd \
|
||||
kernel-module-usbcore \
|
||||
kernel-module-usbhid \
|
||||
kernel-module-usbnet \
|
||||
kernel-module-sd-mod \
|
||||
kernel-module-scsi-mod \
|
||||
kernel-module-usbmouse \
|
||||
kernel-module-mousedev \
|
||||
kernel-module-usbserial \
|
||||
kernel-module-usb-storage "
|
||||
|
||||
RDEPENDS_packagegroup-base-ppp = "\
|
||||
ppp \
|
||||
ppp-dialin"
|
||||
|
||||
RRECOMMENDS_packagegroup-base-ppp = "\
|
||||
kernel-module-ppp-async \
|
||||
kernel-module-ppp-deflate \
|
||||
kernel-module-ppp-generic \
|
||||
kernel-module-ppp-mppe \
|
||||
kernel-module-slhc"
|
||||
|
||||
RDEPENDS_packagegroup-base-ipsec = "\
|
||||
openswan"
|
||||
|
||||
RRECOMMENDS_packagegroup-base-ipsec = "\
|
||||
kernel-module-ipsec"
|
||||
|
||||
#
|
||||
# packagegroup-base-wifi contain everything needed to get WiFi working
|
||||
# WEP/WPA connection needs to be supported out-of-box
|
||||
#
|
||||
RDEPENDS_packagegroup-base-wifi = "\
|
||||
wireless-tools \
|
||||
${@base_contains('COMBINED_FEATURES', 'pcmcia', 'hostap-utils', '',d)} \
|
||||
${@base_contains('COMBINED_FEATURES', 'pci', 'hostap-utils', '',d)} \
|
||||
wpa-supplicant"
|
||||
|
||||
RRECOMMENDS_packagegroup-base-wifi = "\
|
||||
${@base_contains('COMBINED_FEATURES', 'usbhost', 'kernel-module-zd1211rw', '',d)} \
|
||||
kernel-module-ieee80211-crypt \
|
||||
kernel-module-ieee80211-crypt-ccmp \
|
||||
kernel-module-ieee80211-crypt-tkip \
|
||||
kernel-module-ieee80211-crypt-wep \
|
||||
kernel-module-ecb \
|
||||
kernel-module-arc4 \
|
||||
kernel-module-crypto_algapi \
|
||||
kernel-module-cryptomgr \
|
||||
kernel-module-michael-mic \
|
||||
kernel-module-aes-generic \
|
||||
kernel-module-aes"
|
||||
|
||||
RDEPENDS_packagegroup-base-3g = "\
|
||||
ofono"
|
||||
|
||||
RRECOMMENDS_packagegroup-base-3g = "\
|
||||
kernel-module-cdc-acm \
|
||||
kernel-module-cdc-wdm"
|
||||
|
||||
RRECOMMENDS_packagegroup-base-smbfs = "\
|
||||
kernel-module-cifs \
|
||||
kernel-module-smbfs"
|
||||
|
||||
RRECOMMENDS_packagegroup-base-cramfs = "\
|
||||
kernel-module-cramfs"
|
||||
|
||||
#
|
||||
# packagegroup-base-nfs provides ONLY client support - server is in nfs-utils package
|
||||
#
|
||||
RDEPENDS_packagegroup-base-nfs = "\
|
||||
portmap"
|
||||
|
||||
RRECOMMENDS_packagegroup-base-nfs = "\
|
||||
kernel-module-nfs "
|
||||
|
||||
RDEPENDS_packagegroup-base-zeroconf = "\
|
||||
avahi-daemon"
|
||||
|
||||
RDEPENDS_packagegroup-base-raid = "\
|
||||
"
|
||||
|
||||
RDEPENDS_packagegroup-base-screen = "\
|
||||
"
|
||||
|
||||
#
|
||||
# GPE/OPIE/OpenMoko provide own touchscreen calibration utils
|
||||
#
|
||||
RDEPENDS_packagegroup-base-touchscreen = "\
|
||||
"
|
||||
|
||||
RDEPENDS_packagegroup-base-ipv6 = "\
|
||||
"
|
||||
|
||||
RRECOMMENDS_packagegroup-base-ipv6 = "\
|
||||
kernel-module-ipv6 "
|
||||
|
||||
RDEPENDS_packagegroup-base-serial = "\
|
||||
setserial \
|
||||
lrzsz "
|
||||
|
||||
RDEPENDS_packagegroup-base-phone = "\
|
||||
ofono"
|
||||
49
meta/recipes-core/packagegroups/packagegroup-core-boot.bb
Normal file
49
meta/recipes-core/packagegroups/packagegroup-core-boot.bb
Normal file
@@ -0,0 +1,49 @@
|
||||
#
|
||||
# Copyright (C) 2007 OpenedHand Ltd.
|
||||
#
|
||||
|
||||
DESCRIPTION = "Task for OpenedHand Poky - minimal bootable image"
|
||||
LICENSE = "MIT"
|
||||
LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58 \
|
||||
file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
|
||||
PACKAGE_ARCH = "${MACHINE_ARCH}"
|
||||
DEPENDS = "virtual/kernel"
|
||||
ALLOW_EMPTY = "1"
|
||||
PR = "r9"
|
||||
|
||||
#
|
||||
# Set by the machine configuration with packages essential for device bootup
|
||||
#
|
||||
MACHINE_ESSENTIAL_EXTRA_RDEPENDS ?= ""
|
||||
MACHINE_ESSENTIAL_EXTRA_RRECOMMENDS ?= ""
|
||||
|
||||
# Distro can override the following VIRTUAL-RUNTIME providers:
|
||||
VIRTUAL-RUNTIME_dev_manager ?= "udev"
|
||||
VIRTUAL-RUNTIME_login_manager ?= "tinylogin"
|
||||
VIRTUAL-RUNTIME_init_manager ?= "sysvinit"
|
||||
VIRTUAL-RUNTIME_initscripts ?= "initscripts"
|
||||
VIRTUAL-RUNTIME_keymaps ?= "keymaps"
|
||||
|
||||
PACKAGES = "\
|
||||
packagegroup-core-boot \
|
||||
packagegroup-core-boot-dbg \
|
||||
packagegroup-core-boot-dev \
|
||||
"
|
||||
|
||||
RDEPENDS_packagegroup-core-boot = "\
|
||||
base-files \
|
||||
base-passwd \
|
||||
busybox \
|
||||
${@base_contains("MACHINE_FEATURES", "rtc", "busybox-hwclock", "", d)} \
|
||||
${VIRTUAL-RUNTIME_initscripts} \
|
||||
${@base_contains("MACHINE_FEATURES", "keyboard", "${VIRTUAL-RUNTIME_keymaps}", "", d)} \
|
||||
modutils-initscripts \
|
||||
netbase \
|
||||
${VIRTUAL-RUNTIME_login_manager} \
|
||||
${VIRTUAL-RUNTIME_init_manager} \
|
||||
${VIRTUAL-RUNTIME_dev_manager} \
|
||||
${VIRTUAL-RUNTIME_update-alternatives} \
|
||||
${MACHINE_ESSENTIAL_EXTRA_RDEPENDS}"
|
||||
|
||||
RRECOMMENDS_packagegroup-core-boot = "\
|
||||
${MACHINE_ESSENTIAL_EXTRA_RRECOMMENDS}"
|
||||
28
meta/recipes-core/packagegroups/packagegroup-core-console.bb
Normal file
28
meta/recipes-core/packagegroups/packagegroup-core-console.bb
Normal file
@@ -0,0 +1,28 @@
|
||||
#
|
||||
# Copyright (C) 2011 Intel Corporation
|
||||
#
|
||||
|
||||
DESCRIPTION = "Tasks for core console applications"
|
||||
LICENSE = "MIT"
|
||||
LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58 \
|
||||
file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
|
||||
PR = "r35"
|
||||
|
||||
PACKAGES = "\
|
||||
packagegroup-core-apps-console \
|
||||
packagegroup-core-apps-console-dbg \
|
||||
packagegroup-core-apps-console-dev \
|
||||
"
|
||||
|
||||
PACKAGE_ARCH = "${MACHINE_ARCH}"
|
||||
|
||||
ALLOW_EMPTY = "1"
|
||||
|
||||
SPLASH ?= "psplash"
|
||||
|
||||
RDEPENDS_packagegroup-core-apps-console = "\
|
||||
avahi-daemon \
|
||||
dbus \
|
||||
portmap \
|
||||
${SPLASH}"
|
||||
|
||||
28
meta/recipes-core/packagegroups/packagegroup-core-nfs.bb
Normal file
28
meta/recipes-core/packagegroups/packagegroup-core-nfs.bb
Normal file
@@ -0,0 +1,28 @@
|
||||
#
|
||||
# Copyright (C) 2008 OpenedHand Ltd.
|
||||
#
|
||||
|
||||
DESCRIPTION = "NFS tasks for Poky"
|
||||
LICENSE = "MIT"
|
||||
LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58 \
|
||||
file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
|
||||
PR = "r1"
|
||||
|
||||
PACKAGES = "\
|
||||
packagegroup-core-nfs-server \
|
||||
packagegroup-core-nfs-server-dbg \
|
||||
packagegroup-core-nfs-server-dev \
|
||||
"
|
||||
|
||||
ALLOW_EMPTY = "1"
|
||||
|
||||
RDEPENDS_packagegroup-core-nfs-server = "\
|
||||
nfs-utils \
|
||||
nfs-utils-client \
|
||||
"
|
||||
|
||||
# rpcinfo can be useful but only with glibc images
|
||||
GLIBC_DEPENDENCIES = "glibc-utils"
|
||||
|
||||
RRECOMMENDS_packagegroup-core-nfs-server_append_libc-glibc = " ${GLIBC_DEPENDENCIES}"
|
||||
|
||||
94
meta/recipes-core/packagegroups/packagegroup-core-sdk.bb
Normal file
94
meta/recipes-core/packagegroups/packagegroup-core-sdk.bb
Normal file
@@ -0,0 +1,94 @@
|
||||
#
|
||||
# Copyright (C) 2007 OpenedHand Ltd.
|
||||
#
|
||||
|
||||
DESCRIPTION = "Software Development Tasks for OpenedHand Poky"
|
||||
LICENSE = "MIT"
|
||||
LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58 \
|
||||
file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
|
||||
DEPENDS = "packagegroup-core-console"
|
||||
PR = "r8"
|
||||
|
||||
ALLOW_EMPTY = "1"
|
||||
#PACKAGEFUNCS =+ 'generate_sdk_pkgs'
|
||||
|
||||
PACKAGES = "\
|
||||
packagegroup-core-sdk \
|
||||
packagegroup-core-sdk-dbg \
|
||||
packagegroup-core-sdk-dev"
|
||||
|
||||
RDEPENDS_packagegroup-core-sdk = "\
|
||||
autoconf \
|
||||
automake \
|
||||
binutils \
|
||||
binutils-symlinks \
|
||||
coreutils \
|
||||
cpp \
|
||||
cpp-symlinks \
|
||||
ccache \
|
||||
diffutils \
|
||||
gcc \
|
||||
gcc-symlinks \
|
||||
g++ \
|
||||
g++-symlinks \
|
||||
gettext \
|
||||
make \
|
||||
intltool \
|
||||
libstdc++ \
|
||||
libstdc++-dev \
|
||||
libtool \
|
||||
perl-module-re \
|
||||
perl-module-text-wrap \
|
||||
pkgconfig \
|
||||
findutils \
|
||||
quilt \
|
||||
less \
|
||||
distcc \
|
||||
ldd \
|
||||
file \
|
||||
tcl"
|
||||
|
||||
RRECOMMENDS_packagegroup-core-sdk = "\
|
||||
libgomp \
|
||||
libgomp-dev"
|
||||
|
||||
#python generate_sdk_pkgs () {
|
||||
# poky_pkgs = read_pkgdata('packagegroup-core', d)['PACKAGES']
|
||||
# pkgs = d.getVar('PACKAGES', True).split()
|
||||
# for pkg in poky_pkgs.split():
|
||||
# newpkg = pkg.replace('packagegroup-core', 'packagegroup-core-sdk')
|
||||
#
|
||||
# # for each of the task packages, add a corresponding sdk task
|
||||
# pkgs.append(newpkg)
|
||||
#
|
||||
# # for each sdk task, take the rdepends of the non-sdk task, and turn
|
||||
# # that into rrecommends upon the -dev versions of those, not unlike
|
||||
# # the package depchain code
|
||||
# spkgdata = read_subpkgdata(pkg, d)
|
||||
#
|
||||
# rdepends = explode_deps(spkgdata.get('RDEPENDS_%s' % pkg) or '')
|
||||
# rreclist = []
|
||||
#
|
||||
# for depend in rdepends:
|
||||
# split_depend = depend.split(' (')
|
||||
# name = split_depend[0].strip()
|
||||
# if packaged('%s-dev' % name, d):
|
||||
# rreclist.append('%s-dev' % name)
|
||||
# else:
|
||||
# deppkgdata = read_subpkgdata(name, d)
|
||||
# rdepends2 = explode_deps(deppkgdata.get('RDEPENDS_%s' % name) or '')
|
||||
# for depend in rdepends2:
|
||||
# split_depend = depend.split(' (')
|
||||
# name = split_depend[0].strip()
|
||||
# if packaged('%s-dev' % name, d):
|
||||
# rreclist.append('%s-dev' % name)
|
||||
#
|
||||
# oldrrec = d.getVar('RRECOMMENDS_%s' % newpkg) or ''
|
||||
# d.setVar('RRECOMMENDS_%s' % newpkg, oldrrec + ' ' + ' '.join(rreclist))
|
||||
# # bb.note('RRECOMMENDS_%s = "%s"' % (newpkg, d.getVar('RRECOMMENDS_%s' % newpkg)))
|
||||
#
|
||||
# # bb.note('pkgs is %s' % pkgs)
|
||||
# d.setVar('PACKAGES', ' '.join(pkgs))
|
||||
#}
|
||||
#
|
||||
#PACKAGES_DYNAMIC = "packagegroup-core-sdk-*"
|
||||
@@ -0,0 +1,17 @@
|
||||
DESCRIPTION = "Dropbear SSH task for Poky"
|
||||
LICENSE = "MIT"
|
||||
LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58 \
|
||||
file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
|
||||
PR = "r0"
|
||||
|
||||
PACKAGES = "\
|
||||
packagegroup-core-ssh-dropbear \
|
||||
packagegroup-core-ssh-dropbear-dbg \
|
||||
packagegroup-core-ssh-dropbear-dev \
|
||||
"
|
||||
|
||||
ALLOW_EMPTY = "1"
|
||||
|
||||
RDEPENDS_packagegroup-core-ssh-dropbear = "dropbear"
|
||||
RDEPENDS_packagegroup-core-ssh-dropbear-dbg = "dropbear-dbg"
|
||||
RDEPENDS_packagegroup-core-ssh-dropbear-dev = "dropbear-dev"
|
||||
@@ -0,0 +1,17 @@
|
||||
DESCRIPTION = "OpenSSH SSH task for Poky"
|
||||
LICENSE = "MIT"
|
||||
LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58 \
|
||||
file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
|
||||
PR = "r0"
|
||||
|
||||
PACKAGES = "\
|
||||
packagegroup-core-ssh-openssh \
|
||||
packagegroup-core-ssh-openssh-dbg \
|
||||
packagegroup-core-ssh-openssh-dev \
|
||||
"
|
||||
|
||||
ALLOW_EMPTY = "1"
|
||||
|
||||
RDEPENDS_packagegroup-core-ssh-openssh = "openssh"
|
||||
RDEPENDS_packagegroup-core-ssh-openssh-dbg = "openssh-dbg"
|
||||
RDEPENDS_packagegroup-core-ssh-openssh-dev = "openssh-dev"
|
||||
@@ -0,0 +1,16 @@
|
||||
DESCRIPTION = "Target packages for the standalone SDK"
|
||||
PR = "r7"
|
||||
LICENSE = "MIT"
|
||||
LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58 \
|
||||
file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
|
||||
ALLOW_EMPTY = "1"
|
||||
|
||||
PACKAGES = "${PN} ${PN}-dbg"
|
||||
|
||||
RDEPENDS_${PN} = "\
|
||||
libgcc \
|
||||
libgcc-dev \
|
||||
libstdc++ \
|
||||
libstdc++-dev \
|
||||
${LIBC_DEPENDENCIES} \
|
||||
"
|
||||
@@ -0,0 +1,33 @@
|
||||
#
|
||||
# Copyright (C) 2008 OpenedHand Ltd.
|
||||
#
|
||||
|
||||
DESCRIPTION = "Debug tools tasks for OE-Core"
|
||||
LICENSE = "MIT"
|
||||
LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58 \
|
||||
file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
|
||||
|
||||
PACKAGES = "\
|
||||
${PN} \
|
||||
${PN}-dbg \
|
||||
${PN}-dev \
|
||||
"
|
||||
|
||||
PR = "r1"
|
||||
|
||||
PACKAGE_ARCH = "${MACHINE_ARCH}"
|
||||
|
||||
ALLOW_EMPTY = "1"
|
||||
|
||||
MTRACE = ""
|
||||
MTRACE_libc-glibc = "libc-mtrace"
|
||||
|
||||
RDEPENDS_${PN} = "\
|
||||
gdb \
|
||||
gdbserver \
|
||||
tcf-agent \
|
||||
openssh-sftp-server \
|
||||
rsync \
|
||||
strace \
|
||||
${MTRACE} \
|
||||
"
|
||||
@@ -0,0 +1,71 @@
|
||||
#
|
||||
# Copyright (C) 2008 OpenedHand Ltd.
|
||||
#
|
||||
|
||||
DESCRIPTION = "Profile tools tasks for OE-Core"
|
||||
LICENSE = "MIT"
|
||||
LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58 \
|
||||
file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
|
||||
|
||||
PACKAGES = "\
|
||||
${PN} \
|
||||
${PN}-dbg \
|
||||
${PN}-dev \
|
||||
"
|
||||
|
||||
PACKAGE_ARCH = "${MACHINE_ARCH}"
|
||||
|
||||
ALLOW_EMPTY = "1"
|
||||
|
||||
RRECOMMENDS_${PN} = "\
|
||||
perf \
|
||||
trace-cmd \
|
||||
kernel-module-oprofile \
|
||||
blktrace \
|
||||
sysprof \
|
||||
"
|
||||
|
||||
PROFILETOOLS = "\
|
||||
oprofile \
|
||||
oprofileui-server \
|
||||
powertop \
|
||||
latencytop \
|
||||
lttng-control \
|
||||
lttng-viewer"
|
||||
|
||||
# systemtap needs elfutils which is not fully buildable on uclibc
|
||||
# hence we exclude it from uclibc based builds
|
||||
SYSTEMTAP = "systemtap"
|
||||
SYSTEMTAP_libc-uclibc = ""
|
||||
SYSTEMTAP_mips = ""
|
||||
|
||||
# lttng-ust uses sched_getcpu() which is not there on uclibc
|
||||
# for some of the architectures it can be patched to call the
|
||||
# syscall directly but for x86_64 __NR_getcpu is a vsyscall
|
||||
# which means we can not use syscall() to call it. So we ignore
|
||||
# it for x86_64/uclibc
|
||||
|
||||
LTTNGUST = "lttng-ust"
|
||||
LTTNGUST_libc-uclibc = ""
|
||||
LTTNGUST_mips = ""
|
||||
|
||||
# valgrind does not work on mips
|
||||
|
||||
VALGRIND = "valgrind"
|
||||
VALGRIND_libc-uclibc = ""
|
||||
VALGRIND_mips = ""
|
||||
VALGRIND_arm = ""
|
||||
|
||||
# exmap-console
|
||||
# exmap-server
|
||||
|
||||
# At present we only build lttng-ust on
|
||||
# qemux86/qemux86-64/qemuppc/qemuarm/emenlow/atom-pc since upstream liburcu
|
||||
# (which is required by lttng-ust) may not build on other platforms, like
|
||||
# MIPS.
|
||||
RDEPENDS_${PN} = "\
|
||||
${PROFILETOOLS} \
|
||||
${LTTNGUST} \
|
||||
${SYSTEMTAP} \
|
||||
${VALGRIND} \
|
||||
"
|
||||
@@ -0,0 +1,47 @@
|
||||
#
|
||||
# Copyright (C) 2008 OpenedHand Ltd.
|
||||
#
|
||||
|
||||
DESCRIPTION = "Test apps task for OE-Core"
|
||||
LICENSE = "MIT"
|
||||
LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58 \
|
||||
file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
|
||||
|
||||
PACKAGES = "\
|
||||
${PN} \
|
||||
${PN}-dbg \
|
||||
${PN}-dev \
|
||||
"
|
||||
|
||||
PACKAGE_ARCH = "${MACHINE_ARCH}"
|
||||
|
||||
ALLOW_EMPTY = "1"
|
||||
|
||||
# kexec-tools doesn't work on Mips
|
||||
KEXECTOOLS ?= "kexec"
|
||||
KEXECTOOLS_mips ?= ""
|
||||
KEXECTOOLS_mipsel ?= ""
|
||||
KEXECTOOLS_powerpc ?= ""
|
||||
KEXECTOOLS_e5500-64b ?= ""
|
||||
|
||||
RDEPENDS_${PN} = "\
|
||||
blktool \
|
||||
fstests \
|
||||
tslib-calibrate \
|
||||
tslib-tests \
|
||||
lrzsz \
|
||||
${KEXECTOOLS} \
|
||||
alsa-utils-amixer \
|
||||
alsa-utils-aplay \
|
||||
owl-video \
|
||||
gst-meta-video \
|
||||
gst-meta-audio \
|
||||
mesa-demos \
|
||||
x11perf \
|
||||
xrestop \
|
||||
xwininfo \
|
||||
xprop \
|
||||
xvideo-tests \
|
||||
clutter-box2d \
|
||||
ltp \
|
||||
"
|
||||
@@ -0,0 +1,19 @@
|
||||
DESCRIPTION = "Host SDK package for cross canadian toolchain"
|
||||
PN = "packagegroup-cross-canadian-${TRANSLATED_TARGET_ARCH}"
|
||||
PR = "r0"
|
||||
LICENSE = "MIT"
|
||||
ALLOW_EMPTY = "1"
|
||||
|
||||
LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58 \
|
||||
file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
|
||||
inherit cross-canadian
|
||||
|
||||
PACKAGES = "${PN}"
|
||||
|
||||
RDEPENDS_${PN} = "\
|
||||
binutils-cross-canadian-${TRANSLATED_TARGET_ARCH} \
|
||||
gdb-cross-canadian-${TRANSLATED_TARGET_ARCH} \
|
||||
gcc-cross-canadian-${TRANSLATED_TARGET_ARCH} \
|
||||
meta-environment-${TRANSLATED_TARGET_ARCH} \
|
||||
"
|
||||
|
||||
202
meta/recipes-core/packagegroups/packagegroup-self-hosted.bb
Normal file
202
meta/recipes-core/packagegroups/packagegroup-self-hosted.bb
Normal file
@@ -0,0 +1,202 @@
|
||||
#
|
||||
# Copyright (C) 2010 Intel Corporation
|
||||
#
|
||||
|
||||
DESCRIPTION = "Create Basic Image Tasks"
|
||||
PR = "r11"
|
||||
LICENSE = "MIT"
|
||||
LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58 \
|
||||
file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
|
||||
|
||||
PACKAGES = "\
|
||||
packagegroup-self-hosted \
|
||||
packagegroup-self-hosted-debug \
|
||||
packagegroup-self-hosted-sdk \
|
||||
packagegroup-self-hosted-extended \
|
||||
packagegroup-self-hosted-graphics \
|
||||
packagegroup-self-hosted-host-tools \
|
||||
"
|
||||
|
||||
ALLOW_EMPTY = "1"
|
||||
|
||||
RDEPENDS_packagegroup-self-hosted = "\
|
||||
packagegroup-self-hosted-debug \
|
||||
packagegroup-self-hosted-sdk \
|
||||
packagegroup-self-hosted-extended \
|
||||
packagegroup-self-hosted-graphics \
|
||||
packagegroup-self-hosted-host-tools \
|
||||
"
|
||||
|
||||
RDEPENDS_packagegroup-self-hosted-host-tools = "\
|
||||
connman \
|
||||
connman-plugin-ethernet \
|
||||
dhcp-client \
|
||||
e2fsprogs \
|
||||
e2fsprogs-e2fsck \
|
||||
e2fsprogs-mke2fs \
|
||||
e2fsprogs-tune2fs \
|
||||
genext2fs \
|
||||
hdparm \
|
||||
iptables \
|
||||
kernel-module-tun \
|
||||
kernel-module-iptable-raw \
|
||||
kernel-module-iptable-nat \
|
||||
kernel-module-iptable-mangle \
|
||||
kernel-module-iptable-filter \
|
||||
lsb \
|
||||
mc \
|
||||
parted \
|
||||
pseudo \
|
||||
screen \
|
||||
vte \
|
||||
"
|
||||
|
||||
# eglibc-utils: for rpcgen
|
||||
RDEPENDS_packagegroup-self-hosted-sdk = "\
|
||||
autoconf \
|
||||
automake \
|
||||
binutils \
|
||||
binutils-symlinks \
|
||||
ccache \
|
||||
coreutils \
|
||||
cpp \
|
||||
cpp-symlinks \
|
||||
distcc \
|
||||
eglibc-utils \
|
||||
eglibc-gconv-ibm850 \
|
||||
file \
|
||||
findutils \
|
||||
g++ \
|
||||
g++-symlinks \
|
||||
gcc \
|
||||
gcc-symlinks \
|
||||
intltool \
|
||||
ldd \
|
||||
less \
|
||||
libstdc++ \
|
||||
libstdc++-dev \
|
||||
libtool \
|
||||
make \
|
||||
mktemp \
|
||||
perl-module-re \
|
||||
perl-module-text-wrap \
|
||||
pkgconfig \
|
||||
quilt \
|
||||
sed \
|
||||
"
|
||||
|
||||
RDEPENDS_packagegroup-self-hosted-debug = " \
|
||||
gdb \
|
||||
gdbserver \
|
||||
rsync \
|
||||
strace \
|
||||
tcf-agent"
|
||||
|
||||
|
||||
RDEPENDS_packagegroup-self-hosted-extended = "\
|
||||
bzip2 \
|
||||
chkconfig \
|
||||
chrpath \
|
||||
cpio \
|
||||
curl \
|
||||
diffstat \
|
||||
diffutils \
|
||||
elfutils \
|
||||
expat \
|
||||
gamin \
|
||||
gawk \
|
||||
gdbm \
|
||||
gettext \
|
||||
gettext-runtime \
|
||||
git \
|
||||
grep \
|
||||
groff \
|
||||
gzip \
|
||||
hicolor-icon-theme \
|
||||
libaio \
|
||||
libusb1 \
|
||||
libxml2 \
|
||||
lrzsz \
|
||||
lsof \
|
||||
lzo \
|
||||
man \
|
||||
man-pages \
|
||||
mdadm \
|
||||
minicom \
|
||||
mtools \
|
||||
ncurses \
|
||||
neon \
|
||||
nfs-utils \
|
||||
nfs-utils-client \
|
||||
openssl \
|
||||
opkg \
|
||||
opkg-utils \
|
||||
patch \
|
||||
perl \
|
||||
perl-dev \
|
||||
perl-modules \
|
||||
perl-pod \
|
||||
${PTH} \
|
||||
python \
|
||||
python-compile \
|
||||
python-compiler \
|
||||
python-compression \
|
||||
python-core \
|
||||
python-curses \
|
||||
python-datetime \
|
||||
python-distutils \
|
||||
python-elementtree \
|
||||
python-email \
|
||||
python-fcntl \
|
||||
python-logging \
|
||||
python-misc \
|
||||
python-multiprocessing \
|
||||
python-netclient \
|
||||
python-netserver \
|
||||
python-pickle \
|
||||
python-pkgutil \
|
||||
python-re \
|
||||
python-rpm \
|
||||
python-shell \
|
||||
python-sqlite3 \
|
||||
python-subprocess \
|
||||
python-textutils \
|
||||
python-unixadmin \
|
||||
python-xmlrpc \
|
||||
quota \
|
||||
readline \
|
||||
rpm \
|
||||
setserial \
|
||||
socat \
|
||||
subversion \
|
||||
sudo \
|
||||
sysstat \
|
||||
tar \
|
||||
tcl \
|
||||
texi2html \
|
||||
texinfo \
|
||||
unzip \
|
||||
usbutils \
|
||||
watchdog \
|
||||
wget \
|
||||
which \
|
||||
xinetd \
|
||||
zip \
|
||||
zlib \
|
||||
"
|
||||
|
||||
|
||||
RDEPENDS_packagegroup-self-hosted-graphics = "\
|
||||
builder \
|
||||
libgl \
|
||||
libgl-dev \
|
||||
libglu \
|
||||
libglu-dev \
|
||||
libsdl \
|
||||
libsdl-dev \
|
||||
libx11-dev \
|
||||
python-pygtk \
|
||||
gtk-theme-clearlooks \
|
||||
"
|
||||
PTH = "pth"
|
||||
PTH_libc-uclibc = ""
|
||||
Reference in New Issue
Block a user