mirror of
https://git.yoctoproject.org/poky
synced 2026-04-02 17:02:21 +02:00
For machines with no hardware clock it makes no sense to have this init stript. Moreover, we avoid a boot error in this way. (From OE-Core rev: 199259b8d87ee86038de355dd6caeb489d6473f0) Signed-off-by: Andrei Gherzan <andrei@gherzan.ro> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
50 lines
1.5 KiB
BlitzBasic
50 lines
1.5 KiB
BlitzBasic
#
|
|
# 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 = "\
|
|
task-core-boot \
|
|
task-core-boot-dbg \
|
|
task-core-boot-dev \
|
|
"
|
|
|
|
RDEPENDS_task-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_task-core-boot = "\
|
|
${MACHINE_ESSENTIAL_EXTRA_RRECOMMENDS}"
|