blob: d2e39760c804fe9a96c2a284f34f7261e882e5e7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# This image is intended to be the base for further neuros images
inherit image
export IMAGE_BASENAME = "Neuros-OSD2-base-image"
PR = "r1"
# Select which Secure Shell Daemon gets included into the rootfs
DISTRO_SSH_DAEMON ?= "dropbear"
DISTRO_DEV_MANAGER = "mdev"
PREFERRED_PROVIDER_hotplug = "mdev"
# Include a timestamp that initscripts can use to set the time to a
# more sane value after a reboot
IMAGE_PREPROCESS_COMMAND = "create_etc_timestamp"
IMAGE_INSTALL = "task-boot \
util-linux-mount util-linux-umount \
e2fsprogs dosfstools \
wireless-tools zd1211-firmware \
${DISTRO_SSH_DAEMON} \
qt-embedded dbus \
"
IMAGE_LINGUAS = ""
|