Skip to content

Commit f51da60

Browse files
author
Anantha K R
committed
fix base image build error due to unable to locate sshd-regen-keys
Base image build failed with error: > | DEBUG: Executing shell function rootfs_install_pkgs_download > | Reading package lists... > | Building dependency tree... > | Reading state information... > | E: Unable to locate package sshd-regen-keys > | WARNING: exit code 100 from a shell command. > | DEBUG: Executing shell function rootfs_do_umounts > | DEBUG: Shell function rootfs_do_umounts finished > | DEBUG: Python function do_rootfs_install finished use IMAGE_INSTALL instead of IMAGE_PREINSTALL to fix the issue as sshd-regen-keys is provided by isar. Signed-off-by: Anantha K R <anantha.kr@siemens.com>
1 parent 4aa7595 commit f51da60

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

meta/recipes-core/images/iot2050-image-base.bb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ inherit image
1313

1414
DESCRIPTION = "IOT2050 Debian Base Image"
1515

16-
IMAGE_PREINSTALL += "sshd-regen-keys"
16+
IMAGE_INSTALL += "sshd-regen-keys"
1717

1818
IMAGE_INSTALL += "${IOT2050_META_PACKAGES}"
1919

0 commit comments

Comments
 (0)