diff options
Diffstat (limited to 'meta-oe/recipes-core/tasks/task-basic.bb')
-rw-r--r-- | meta-oe/recipes-core/tasks/task-basic.bb | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/meta-oe/recipes-core/tasks/task-basic.bb b/meta-oe/recipes-core/tasks/task-basic.bb index 9e8ae979f6..4da66efd09 100644 --- a/meta-oe/recipes-core/tasks/task-basic.bb +++ b/meta-oe/recipes-core/tasks/task-basic.bb | |||
@@ -5,6 +5,8 @@ DESCRIPTION = "Basic task to get a device online" | |||
5 | LICENSE = "MIT" | 5 | LICENSE = "MIT" |
6 | LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58" | 6 | LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58" |
7 | 7 | ||
8 | PR = "r1" | ||
9 | |||
8 | inherit task | 10 | inherit task |
9 | 11 | ||
10 | # packages which content depend on MACHINE_FEATURES need to be MACHINE_ARCH | 12 | # packages which content depend on MACHINE_FEATURES need to be MACHINE_ARCH |
@@ -23,11 +25,14 @@ TASK_BASIC_SSHDAEMON ?= "dropbear-systemd openssh-sftp" | |||
23 | # It also avoids the choice between connman/networkmanager/ifupdown since that is an image feature, not a | 25 | # It also avoids the choice between connman/networkmanager/ifupdown since that is an image feature, not a |
24 | # distro feature. | 26 | # distro feature. |
25 | # | 27 | # |
28 | # Util-linux (u)mount is included because the busybox one can't handle /etc/mtab being symlinked to /proc/mounts | ||
29 | # | ||
26 | RDEPENDS_${PN} = "\ | 30 | RDEPENDS_${PN} = "\ |
27 | ${TASK_BASIC_SSHDAEMON} \ | 31 | ${TASK_BASIC_SSHDAEMON} \ |
28 | avahi-daemon avahi-utils avahi-systemd \ | 32 | avahi-daemon avahi-utils avahi-systemd \ |
29 | systemd-compat-units \ | 33 | systemd-compat-units \ |
30 | " | 34 | util-linux-mount util-linux-umount \ |
35 | " | ||
31 | 36 | ||
32 | # | 37 | # |
33 | # The following section is split in 3: | 38 | # The following section is split in 3: |