del-image-graphical: Use udev instead of busybox-mdev.
This will make input device auto detect through evdev work. Strangely busybox-mdev is still installed. May need to find the dependency but nothing breaks because of it. This partially fixes DEL-227. Signed-off-by: Alex Gonzalez <alex.gonzalez@digi.com>
This commit is contained in:
parent
72bf617ff7
commit
fe2344344e
|
|
@ -7,6 +7,8 @@ IMAGE_FEATURES += "splash package-management x11-base x11-sato"
|
||||||
|
|
||||||
LICENSE = "MIT"
|
LICENSE = "MIT"
|
||||||
|
|
||||||
|
VIRTUAL-RUNTIME_dev_manager = "udev"
|
||||||
|
|
||||||
include del-image-minimal.bb
|
include del-image-minimal.bb
|
||||||
|
|
||||||
IMAGE_INSTALL += "packagegroup-core-x11-sato-games"
|
IMAGE_INSTALL += "packagegroup-core-x11-sato-games"
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,9 @@
|
||||||
#
|
#
|
||||||
DESCRIPTION = "DEL busybox based image (non graphical)."
|
DESCRIPTION = "DEL busybox based image (non graphical)."
|
||||||
|
|
||||||
IMAGE_INSTALL = "packagegroup-del-core ${ROOTFS_PKGMANAGE_BOOTSTRAP} ${CORE_IMAGE_EXTRA_INSTALL}"
|
VIRTUAL-RUNTIME_dev_manager ?= "busybox-mdev"
|
||||||
|
|
||||||
|
IMAGE_INSTALL = "packagegroup-del-core ${VIRTUAL-RUNTIME_dev_manager} ${ROOTFS_PKGMANAGE_BOOTSTRAP} ${CORE_IMAGE_EXTRA_INSTALL}"
|
||||||
|
|
||||||
IMAGE_LINGUAS = " "
|
IMAGE_LINGUAS = " "
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -18,7 +18,6 @@ MACHINE_ESSENTIAL_EXTRA_RDEPENDS ?= ""
|
||||||
MACHINE_ESSENTIAL_EXTRA_RRECOMMENDS ?= ""
|
MACHINE_ESSENTIAL_EXTRA_RRECOMMENDS ?= ""
|
||||||
|
|
||||||
# Distro can override the following VIRTUAL-RUNTIME providers:
|
# Distro can override the following VIRTUAL-RUNTIME providers:
|
||||||
VIRTUAL-RUNTIME_dev_manager ?= "busybox-mdev"
|
|
||||||
VIRTUAL-RUNTIME_login_manager ?= ""
|
VIRTUAL-RUNTIME_login_manager ?= ""
|
||||||
VIRTUAL-RUNTIME_passwd_manager ?= "shadow"
|
VIRTUAL-RUNTIME_passwd_manager ?= "shadow"
|
||||||
VIRTUAL-RUNTIME_init_manager ?= "sysvinit"
|
VIRTUAL-RUNTIME_init_manager ?= "sysvinit"
|
||||||
|
|
@ -39,7 +38,6 @@ RDEPENDS_${PN} = "\
|
||||||
netbase \
|
netbase \
|
||||||
${VIRTUAL-RUNTIME_login_manager} \
|
${VIRTUAL-RUNTIME_login_manager} \
|
||||||
${VIRTUAL-RUNTIME_init_manager} \
|
${VIRTUAL-RUNTIME_init_manager} \
|
||||||
${VIRTUAL-RUNTIME_dev_manager} \
|
|
||||||
${VIRTUAL-RUNTIME_update-alternatives} \
|
${VIRTUAL-RUNTIME_update-alternatives} \
|
||||||
update-flash \
|
update-flash \
|
||||||
usbutils \
|
usbutils \
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue