From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.129.124]) by mx.groups.io with SMTP id smtpd.web10.3935.1658820549870988608 for ; Tue, 26 Jul 2022 00:29:10 -0700 Authentication-Results: mx.groups.io; dkim=pass header.i=@redhat.com header.s=mimecast20190719 header.b=NASW9kcU; spf=pass (domain: redhat.com, ip: 170.10.129.124, mailfrom: osteffen@redhat.com) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1658820548; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=nIzy5gswFishICikbMskGI9IFqxIDTK83BopgDZ5bmA=; b=NASW9kcUUZvsvNBMeWpo+E8XkF/gjQeIvkroQxboedgK77WHZY4ENXzHj+Ef7llKd6fQ3q VoZtXg/pjBL7YQ0JPtB7GidKwR5C1CFmIWbb9WsTTh8JBptqWVw2y1fauqCjMxUMpFVBSF BiMkIL2+AcZWQUSq+6hdvRVZf3NZGHo= Received: from mimecast-mx02.redhat.com (mimecast-mx02.redhat.com [66.187.233.88]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-339-cD5sNMCTNlSJQV1t_mbGUQ-1; Tue, 26 Jul 2022 03:29:03 -0400 X-MC-Unique: cD5sNMCTNlSJQV1t_mbGUQ-1 Received: from smtp.corp.redhat.com (int-mx10.intmail.prod.int.rdu2.redhat.com [10.11.54.10]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id 37E8D85A586; Tue, 26 Jul 2022 07:29:03 +0000 (UTC) Received: from osteffen-laptop.redhat.com (unknown [10.40.194.3]) by smtp.corp.redhat.com (Postfix) with ESMTP id 68D3B492C3B; Tue, 26 Jul 2022 07:29:01 +0000 (UTC) From: "Oliver Steffen" To: devel@edk2.groups.io Cc: Ard Biesheuvel , Chasel Chiu , Gerd Hoffmann , Leif Lindholm , Nate DeSimone , Sami Mujawar , Star Zeng , Andrew Fish , Laszlo Ersek , Oliver Steffen Subject: [PATCH 3/3] ArmVirtPkg: set early hello message Date: Tue, 26 Jul 2022 09:28:48 +0200 Message-Id: <20220726072848.640026-4-osteffen@redhat.com> In-Reply-To: <20220726072848.640026-1-osteffen@redhat.com> References: <20220726072848.640026-1-osteffen@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.85 on 10.11.54.10 Authentication-Results: relay.mimecast.com; auth=pass smtp.auth=CUSA124A263 smtp.mailfrom=osteffen@redhat.com X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII"; x-default=true From: Laszlo Ersek Set the text for the early hello message in ArmVirtPkg. This prints a friendly banner on QEMU, regardless of debug mask settings. Signed-off-by: Laszlo Ersek Signed-off-by: Oliver Steffen --- ArmVirtPkg/ArmVirtQemu.dsc | 1 + 1 file changed, 1 insertion(+) diff --git a/ArmVirtPkg/ArmVirtQemu.dsc b/ArmVirtPkg/ArmVirtQemu.dsc index 9369a88858fd..eaa784c1573a 100644 --- a/ArmVirtPkg/ArmVirtQemu.dsc +++ b/ArmVirtPkg/ArmVirtQemu.dsc @@ -135,6 +135,7 @@ [PcdsFeatureFlag.common] gArmVirtTokenSpaceGuid.PcdTpm2SupportEnabled|$(TPM2_ENABLE) [PcdsFixedAtBuild.common] + gArmPlatformTokenSpaceGuid.PcdEarlyHelloMessage|"UEFI firmware starting.\r\n" !if $(ARCH) == AARCH64 gArmTokenSpaceGuid.PcdVFPEnabled|1 !endif -- 2.37.1