mirror of
git://git.yoctoproject.org/poky.git
synced 2025-07-19 12:59:02 +02:00

Several recipes have S pointing at a directory that does not exist. Set S in these cases to somethig valid making the metadata and recipe behaviour more consistent. Tweak one of the QA test diff offsets to match the changed recipe. (From OE-Core rev: 22f1f5849a9a3bf287dbe8933546e52e39ddc86e) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
25 lines
662 B
BlitzBasic
25 lines
662 B
BlitzBasic
SUMMARY = "Pre generated host keys mainly for speeding up our qemu tests"
|
|
|
|
SRC_URI = "file://dropbear_rsa_host_key \
|
|
file://openssh"
|
|
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302"
|
|
|
|
S = "${WORKDIR}/sources"
|
|
UNPACKDIR = "${S}"
|
|
|
|
INHIBIT_DEFAULT_DEPS = "1"
|
|
|
|
COMPATIBLE_MACHINE = "^qemu.*$"
|
|
|
|
do_install () {
|
|
install -d ${D}${sysconfdir}/dropbear
|
|
install ${UNPACKDIR}/dropbear_rsa_host_key -m 0600 ${D}${sysconfdir}/dropbear/
|
|
|
|
install -d ${D}${sysconfdir}/ssh
|
|
install ${UNPACKDIR}/openssh/* ${D}${sysconfdir}/ssh/
|
|
chmod 0600 ${D}${sysconfdir}/ssh/*
|
|
chmod 0644 ${D}${sysconfdir}/ssh/*.pub
|
|
}
|