blob: ddf524574a9199060141105eecc69dfe283b7ff6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# This image is intended to be the base for further neuros images
# Select which Secure Shell Daemon gets included into the rootfs
DISTRO_SSH_DAEMON ?= "dropbear"
# 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 \
${DISTRO_SSH_DAEMON} \
"
IMAGE_LINGUAS = ""
inherit image
|