From nobody Fri May 3 12:35:03 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zohomail.com: domain of groups.io designates 66.175.222.12 as permitted sender) client-ip=66.175.222.12; envelope-from=bounce+27952+57566+1787277+3901457@groups.io; helo=web01.groups.io; Authentication-Results: mx.zohomail.com; dkim=pass; spf=pass (zohomail.com: domain of groups.io designates 66.175.222.12 as permitted sender) smtp.mailfrom=bounce+27952+57566+1787277+3901457@groups.io ARC-Seal: i=1; a=rsa-sha256; t=1587301463; cv=none; d=zohomail.com; s=zohoarc; b=gJrbIEG4Ykb0R0CUWefAKaa5YlczjjAxLxQw3yVonvUmuPRm8Empzn/dwMWqEXFTdE5JurX+vn21Ju6d2pdp8TmGnTADQhwswqyIw9ROma0lSep/O3NnP0Kv7WiB0Hl/8VHuh0S7MxR/nXMZzspMzGejwqBVs2D9VUisi9/XUcE= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zohomail.com; s=zohoarc; t=1587301463; h=Cc:Date:From:In-Reply-To:List-Id:List-Unsubscribe:Message-ID:Reply-To:References:Sender:Subject:To; bh=EqrtDPRAYD862SSW7Zm7gFgp/ezMyXf0CogbAJEOmSg=; b=f31h/we20pDyMr29SRiCJeZ7vinpBwrkSD3t+OnWFr2dT4ZUKYxsi6CR4Ns+6uoBSxFOHgvOIhLEuiXiPDMHjRwVVzpV+igkj1vU/fZvKeeMyXiDrjmOULBTynepjPuJ6NrnuEua57MfxpXPd/ymLAI5R5OJMx+Dutzb7oI5W+Q= ARC-Authentication-Results: i=1; mx.zohomail.com; dkim=pass; spf=pass (zohomail.com: domain of groups.io designates 66.175.222.12 as permitted sender) smtp.mailfrom=bounce+27952+57566+1787277+3901457@groups.io Received: from web01.groups.io (web01.groups.io [66.175.222.12]) by mx.zohomail.com with SMTPS id 1587301463302226.17365779942986; Sun, 19 Apr 2020 06:04:23 -0700 (PDT) Return-Path: X-Received: by 127.0.0.2 with SMTP id JkqXYY1788612xZS7xbsEzyh; Sun, 19 Apr 2020 06:04:22 -0700 X-Received: from mail-qv1-f65.google.com (mail-qv1-f65.google.com [209.85.219.65]) by mx.groups.io with SMTP id smtpd.web12.16096.1587301461957836646 for ; Sun, 19 Apr 2020 06:04:22 -0700 X-Received: by mail-qv1-f65.google.com with SMTP id p19so3331384qve.0 for ; Sun, 19 Apr 2020 06:04:21 -0700 (PDT) X-Gm-Message-State: 15FHTdNTObxWChmFeX8Nemu0x1787277AA= X-Google-Smtp-Source: APiQypKwYxC9XcLv2ffJYGclwnchqLx0nfUVlMH7y33JfPpf3pk7YMYW3IH0wbJYBN2lXhgzySj2wA== X-Received: by 2002:a0c:9aea:: with SMTP id k42mr10762598qvf.91.1587301460860; Sun, 19 Apr 2020 06:04:20 -0700 (PDT) X-Received: from localhost.localdomain (99-132-126-10.lightspeed.chrlnc.sbcglobal.net. [99.132.126.10]) by smtp.gmail.com with ESMTPSA id z65sm10992917qka.60.2020.04.19.06.04.19 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Sun, 19 Apr 2020 06:04:20 -0700 (PDT) From: "Samer El-Haj-Mahmoud" To: devel@edk2.groups.io Cc: Leif Lindholm , Ard Biesheuvel , Pete Batard , Andrei Warkentin Subject: [edk2-devel] [edk2-platform][PATCH v1 1/4] Platform/RaspberryPi/RPi3: Fix TFTP dynamic command initialization Date: Sun, 19 Apr 2020 09:04:14 -0400 Message-Id: <20200419130417.3298-2-samer@elhajmahmoud.com> In-Reply-To: <20200419130417.3298-1-samer@elhajmahmoud.com> References: <20200419130417.3298-1-samer@elhajmahmoud.com> Precedence: Bulk List-Unsubscribe: Sender: devel@edk2.groups.io List-Id: Mailing-List: list devel@edk2.groups.io; contact devel+owner@edk2.groups.io Reply-To: devel@edk2.groups.io,samer@elhajmahmoud.com DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=groups.io; q=dns/txt; s=20140610; t=1587301462; bh=3YP8S+nNm8LZaVSzhQTrxK1pMNqE2q3AtPelEbRHlpQ=; h=Cc:Date:From:Reply-To:Subject:To; b=NgyplvG4nxzvdh13u0BZ9ktEKAIeM8xTEy5ORt7R3uLqR7jcQjZKLUnLqkcXYw7yzkF vKhPK/QZOVKOxlpfthvAj+bFPOxA50Udm8FPa2hwBVJV66dFW0nRGLkYCeziPXeiDFZfm 5L8YssvHUK9rSHMP034j8UCRU4NV1Q5vyoc= X-ZohoMail-DKIM: pass (identity @groups.io) Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Set the PcdShellLibAutoInitialize for the TFTP dynamic Shell command. This fixes an ASSERT observed in https://github.com/pftf/RPi3/issues/11 Cc: Leif Lindholm Cc: Ard Biesheuvel Cc: Pete Batard Cc: Andrei Warkentin Signed-off-by: Samer El-Haj-Mahmoud Reviewed-by: Ard Biesheuvel --- Platform/RaspberryPi/RPi3/RPi3.dsc | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Platform/RaspberryPi/RPi3/RPi3.dsc b/Platform/RaspberryPi/RPi3= /RPi3.dsc index a451e2a82b59..54ebfdfbb05a 100644 --- a/Platform/RaspberryPi/RPi3/RPi3.dsc +++ b/Platform/RaspberryPi/RPi3/RPi3.dsc @@ -662,5 +662,8 @@ [Components.common] gEfiShellPkgTokenSpaceGuid.PcdShellFileOperationSize|0x200000 } !if $(INCLUDE_TFTP_COMMAND) =3D=3D TRUE - ShellPkg/DynamicCommand/TftpDynamicCommand/TftpDynamicCommand.inf + ShellPkg/DynamicCommand/TftpDynamicCommand/TftpDynamicCommand.inf { + + gEfiShellPkgTokenSpaceGuid.PcdShellLibAutoInitialize|FALSE + } !endif --=20 2.17.1 -=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#57566): https://edk2.groups.io/g/devel/message/57566 Mute This Topic: https://groups.io/mt/73127192/1787277 Group Owner: devel+owner@edk2.groups.io Unsubscribe: https://edk2.groups.io/g/devel/unsub [importer@patchew.org] -=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D- From nobody Fri May 3 12:35:03 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zohomail.com: domain of groups.io designates 66.175.222.12 as permitted sender) client-ip=66.175.222.12; envelope-from=bounce+27952+57567+1787277+3901457@groups.io; helo=web01.groups.io; Authentication-Results: mx.zohomail.com; dkim=pass; spf=pass (zohomail.com: domain of groups.io designates 66.175.222.12 as permitted sender) smtp.mailfrom=bounce+27952+57567+1787277+3901457@groups.io ARC-Seal: i=1; a=rsa-sha256; t=1587301463; cv=none; d=zohomail.com; s=zohoarc; b=FeC8jMx9QqDNlriJ0M+p71RahD6AfbT/NE0TvozuELZA0+L3CUDWcdq5nVQpqx5gpUVn73jwvNZoRfHMP2SNHo9tlTZ5HH3ZuDWO2D1wkDNWySHdxNEx1NRBeDPX6VEXr6CKOWwk/VBfL22M5Ii4LYdoYllm62eq4maeRpGf6aY= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zohomail.com; s=zohoarc; t=1587301463; h=Cc:Date:From:In-Reply-To:List-Id:List-Unsubscribe:Message-ID:Reply-To:References:Sender:Subject:To; bh=9m1lRxphFtnIUvRXa5VHJM1A10ORU4M1nC5GWeeIr0o=; b=Gj1Nqh/am+c4iTam3+FZ5PgWSVBw/et9KvSNhXZp3tiFEQvWPQlmvKmjvFuQ0XBpW5AGqYI/YmhLtc6M1V/q2+0lcMO1k2aHcx0WxfBVg0n2AX2RlaJJ6iQ/k56sCUfmYo9/EWJ5Bp8hux1XXdyZnNjLYsyNOFPFo6XuKPAhEnk= ARC-Authentication-Results: i=1; mx.zohomail.com; dkim=pass; spf=pass (zohomail.com: domain of groups.io designates 66.175.222.12 as permitted sender) smtp.mailfrom=bounce+27952+57567+1787277+3901457@groups.io Received: from web01.groups.io (web01.groups.io [66.175.222.12]) by mx.zohomail.com with SMTPS id 158730146399386.36664443513621; Sun, 19 Apr 2020 06:04:23 -0700 (PDT) Return-Path: X-Received: by 127.0.0.2 with SMTP id KhcQYY1788612x8q9VWqCQij; Sun, 19 Apr 2020 06:04:23 -0700 X-Received: from mail-qk1-f195.google.com (mail-qk1-f195.google.com [209.85.222.195]) by mx.groups.io with SMTP id smtpd.web10.16246.1587301462939066753 for ; Sun, 19 Apr 2020 06:04:23 -0700 X-Received: by mail-qk1-f195.google.com with SMTP id b62so7632385qkf.6 for ; Sun, 19 Apr 2020 06:04:22 -0700 (PDT) X-Gm-Message-State: MKttxEChpHbQUBq9dJPubzGXx1787277AA= X-Google-Smtp-Source: APiQypLjzYKsCDPc5lXhE1slVvHZphT2k7JFuJtrmiTJieNMQzEdmx2AsEcz0QIMfhdHNN/9jFescQ== X-Received: by 2002:a05:620a:41a:: with SMTP id 26mr11253781qkp.421.1587301461870; Sun, 19 Apr 2020 06:04:21 -0700 (PDT) X-Received: from localhost.localdomain (99-132-126-10.lightspeed.chrlnc.sbcglobal.net. [99.132.126.10]) by smtp.gmail.com with ESMTPSA id z65sm10992917qka.60.2020.04.19.06.04.20 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Sun, 19 Apr 2020 06:04:21 -0700 (PDT) From: "Samer El-Haj-Mahmoud" To: devel@edk2.groups.io Cc: Leif Lindholm , Ard Biesheuvel , Pete Batard , Andrei Warkentin Subject: [edk2-devel] [edk2-platform][PATCH v1 2/4] Platform/RaspberryPi/RPi4: Fix TFTP dynamic command initialization Date: Sun, 19 Apr 2020 09:04:15 -0400 Message-Id: <20200419130417.3298-3-samer@elhajmahmoud.com> In-Reply-To: <20200419130417.3298-1-samer@elhajmahmoud.com> References: <20200419130417.3298-1-samer@elhajmahmoud.com> Precedence: Bulk List-Unsubscribe: Sender: devel@edk2.groups.io List-Id: Mailing-List: list devel@edk2.groups.io; contact devel+owner@edk2.groups.io Reply-To: devel@edk2.groups.io,samer@elhajmahmoud.com DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=groups.io; q=dns/txt; s=20140610; t=1587301463; bh=XTZBH/c/UDLK7bDUsMu64lt8vi/jlFo7py93hXdGJ84=; h=Cc:Date:From:Reply-To:Subject:To; b=vcj3UxvZ4GpAQaEdtn8JSwPyMi/QWzB/A6ieRQaweLM36IEp0hCgQS4bueW3M3aKKAl 6bBomXRxuaKh0tNNDOI7qc36unGQRw3ahWfiqUNr/0aGm1I83H3fEQHtt93ZOUirpjX/8 dLfTT/MdNMGN1oI6kV3fcXy3HZNkRlWb298= X-ZohoMail-DKIM: pass (identity @groups.io) Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Set the PcdShellLibAutoInitialize for the TFTP dynamic Shell command. This fixes an ASSERT observed in https://github.com/pftf/RPi4/issues/38 Cc: Leif Lindholm Cc: Ard Biesheuvel Cc: Pete Batard Cc: Andrei Warkentin Signed-off-by: Samer El-Haj-Mahmoud Reviewed-by: Ard Biesheuvel --- Platform/RaspberryPi/RPi4/RPi4.dsc | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Platform/RaspberryPi/RPi4/RPi4.dsc b/Platform/RaspberryPi/RPi4= /RPi4.dsc index 835b558423a5..de32aab2df3c 100644 --- a/Platform/RaspberryPi/RPi4/RPi4.dsc +++ b/Platform/RaspberryPi/RPi4/RPi4.dsc @@ -716,5 +716,8 @@ [Components.common] gEfiShellPkgTokenSpaceGuid.PcdShellFileOperationSize|0x200000 } !if $(INCLUDE_TFTP_COMMAND) =3D=3D TRUE - ShellPkg/DynamicCommand/TftpDynamicCommand/TftpDynamicCommand.inf + ShellPkg/DynamicCommand/TftpDynamicCommand/TftpDynamicCommand.inf { + + gEfiShellPkgTokenSpaceGuid.PcdShellLibAutoInitialize|FALSE + } !endif --=20 2.17.1 -=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#57567): https://edk2.groups.io/g/devel/message/57567 Mute This Topic: https://groups.io/mt/73127193/1787277 Group Owner: devel+owner@edk2.groups.io Unsubscribe: https://edk2.groups.io/g/devel/unsub [importer@patchew.org] -=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D- From nobody Fri May 3 12:35:03 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zohomail.com: domain of groups.io designates 66.175.222.12 as permitted sender) client-ip=66.175.222.12; envelope-from=bounce+27952+57568+1787277+3901457@groups.io; helo=web01.groups.io; Authentication-Results: mx.zohomail.com; dkim=pass; spf=pass (zohomail.com: domain of groups.io designates 66.175.222.12 as permitted sender) smtp.mailfrom=bounce+27952+57568+1787277+3901457@groups.io ARC-Seal: i=1; a=rsa-sha256; t=1587301464; cv=none; d=zohomail.com; s=zohoarc; b=ky8JXjLEhuUV5+XgdihXish1qF4KJZIRsXWbwLzziBnZfS3UP6sEH6p61PFhEB3ZEcXjclas4tVucxye9z6bkC3N+jftSJht2X3hqO2miicbYdTE06AqPjT++zKcyvDsdG4n0zH+vwc4v09vDXiJIacV9y0XrqDby/8zitZOXUs= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zohomail.com; s=zohoarc; t=1587301464; h=Cc:Date:From:In-Reply-To:List-Id:List-Unsubscribe:Message-ID:Reply-To:References:Sender:Subject:To; bh=IHQb55LErmTIJ2laAdKKN1cKHoTplQRb4pKaKOq0kkc=; b=bwPZEeQwuP3kwGL4qNIhQ8xVyIHL7rP08EbBCs6nH2bsDwCpUfdHy8iqRapZG8PQFnMHPNVtTUZCBh+kvfaLRc4Cuhaik3eXNyEXG143/nTnfsxOHl5ImbbFZ1bP/JDWVq6YTJRLz/BwZPoUU1HhphARWemRXP1qsuJa5rZeChk= ARC-Authentication-Results: i=1; mx.zohomail.com; dkim=pass; spf=pass (zohomail.com: domain of groups.io designates 66.175.222.12 as permitted sender) smtp.mailfrom=bounce+27952+57568+1787277+3901457@groups.io Received: from web01.groups.io (web01.groups.io [66.175.222.12]) by mx.zohomail.com with SMTPS id 1587301464789487.2960527563031; Sun, 19 Apr 2020 06:04:24 -0700 (PDT) Return-Path: X-Received: by 127.0.0.2 with SMTP id HVE7YY1788612xahLjQLxSBM; Sun, 19 Apr 2020 06:04:24 -0700 X-Received: from mail-qv1-f66.google.com (mail-qv1-f66.google.com [209.85.219.66]) by mx.groups.io with SMTP id smtpd.web11.15895.1587301463825999473 for ; Sun, 19 Apr 2020 06:04:23 -0700 X-Received: by mail-qv1-f66.google.com with SMTP id di6so3302956qvb.10 for ; Sun, 19 Apr 2020 06:04:23 -0700 (PDT) X-Gm-Message-State: NLQ3dinQvaD7Znv03yqcEB0Wx1787277AA= X-Google-Smtp-Source: APiQypJfC67FYcPGQkf9cMwUSLkS4xjxFd4Tnddg26yeUD48ec2fMPRfBCteASbaM1oExR3A6I6HUA== X-Received: by 2002:ad4:4ae3:: with SMTP id cp3mr9950727qvb.136.1587301462765; Sun, 19 Apr 2020 06:04:22 -0700 (PDT) X-Received: from localhost.localdomain (99-132-126-10.lightspeed.chrlnc.sbcglobal.net. [99.132.126.10]) by smtp.gmail.com with ESMTPSA id z65sm10992917qka.60.2020.04.19.06.04.21 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Sun, 19 Apr 2020 06:04:22 -0700 (PDT) From: "Samer El-Haj-Mahmoud" To: devel@edk2.groups.io Cc: Leif Lindholm , Ard Biesheuvel , Pete Batard , Andrei Warkentin Subject: [edk2-devel] [edk2-platform][PATCH v1 3/4] Platform/RaspberryPi/RPi3: Enable TFTP command by default Date: Sun, 19 Apr 2020 09:04:16 -0400 Message-Id: <20200419130417.3298-4-samer@elhajmahmoud.com> In-Reply-To: <20200419130417.3298-1-samer@elhajmahmoud.com> References: <20200419130417.3298-1-samer@elhajmahmoud.com> Precedence: Bulk List-Unsubscribe: Sender: devel@edk2.groups.io List-Id: Mailing-List: list devel@edk2.groups.io; contact devel+owner@edk2.groups.io Reply-To: devel@edk2.groups.io,samer@elhajmahmoud.com DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=groups.io; q=dns/txt; s=20140610; t=1587301464; bh=WKxfVwvFlk/woYpNOuhwUh/WMKUUQ4hYm5y78mr32iM=; h=Cc:Date:From:Reply-To:Subject:To; b=PWY245ngYJ1dsR/PfG4nu5R6VYtWTmRqOSRYo+P+GiYeZ99B8p4doevli6rCYY4/rRx etIdYEPFdzrxNDVKCAkD5jkDRmbf9D5vECtmlj+lGRkY+x0qQEYJ52cHxqTGatCMeOdZN qSKRuMOWc4fgT9/NiryXxaZAatWmJ6ogoco= X-ZohoMail-DKIM: pass (identity @groups.io) Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Enable the TFTP dynamic shell command by default. Cc: Leif Lindholm Cc: Ard Biesheuvel Cc: Pete Batard Cc: Andrei Warkentin Signed-off-by: Samer El-Haj-Mahmoud Reviewed-by: Ard Biesheuvel --- Platform/RaspberryPi/RPi3/RPi3.dsc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Platform/RaspberryPi/RPi3/RPi3.dsc b/Platform/RaspberryPi/RPi3= /RPi3.dsc index 54ebfdfbb05a..b4f1c1fe5d45 100644 --- a/Platform/RaspberryPi/RPi3/RPi3.dsc +++ b/Platform/RaspberryPi/RPi3/RPi3.dsc @@ -30,7 +30,7 @@ [Defines] # -D FLAG=3DVALUE # DEFINE SECURE_BOOT_ENABLE =3D FALSE - DEFINE INCLUDE_TFTP_COMMAND =3D FALSE + DEFINE INCLUDE_TFTP_COMMAND =3D TRUE DEFINE DEBUG_PRINT_ERROR_LEVEL =3D 0x8000004F =20 ##########################################################################= ###### --=20 2.17.1 -=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#57568): https://edk2.groups.io/g/devel/message/57568 Mute This Topic: https://groups.io/mt/73127194/1787277 Group Owner: devel+owner@edk2.groups.io Unsubscribe: https://edk2.groups.io/g/devel/unsub [importer@patchew.org] -=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D- From nobody Fri May 3 12:35:03 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zohomail.com: domain of groups.io designates 66.175.222.12 as permitted sender) client-ip=66.175.222.12; envelope-from=bounce+27952+57569+1787277+3901457@groups.io; helo=web01.groups.io; Authentication-Results: mx.zohomail.com; dkim=pass; spf=pass (zohomail.com: domain of groups.io designates 66.175.222.12 as permitted sender) smtp.mailfrom=bounce+27952+57569+1787277+3901457@groups.io ARC-Seal: i=1; a=rsa-sha256; t=1587301465; cv=none; d=zohomail.com; s=zohoarc; b=MOcMBLIZJ3+lwlBrgNq5qna5RZx6nqjAb+7wJK8TzczvwCClyZz8aBBVn+bqrDQLnOD1I4Ig1v1naQt9H2ZDyX/9tiw/BKvsxuVQ1r5iK6uQu1uRDgwBnpy2aWufTTPhWv0B/l+COLPmkIr3R+7U0J8+UCeSexmMxUYQzUnOMn0= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zohomail.com; s=zohoarc; t=1587301465; h=Cc:Date:From:In-Reply-To:List-Id:List-Unsubscribe:Message-ID:Reply-To:References:Sender:Subject:To; bh=SCBV+JoM4L+hrevq4TKAl0mZVogCjx/AuQ08CRznM6A=; b=PH2HsUeFMBZq1/toNwZxuGGoNKMORVPRH+niySoK3a7LZs+0hnkwhOTJDY4p6L0BlYb+27lP9iGdmStObndpk19gCmRwFJ3oI7gmTtYN01AiKQB7B/vDBiMLZgOBuyVEijY+16oX00lMrMJNexMCKmCTG0fFDeaQPKWR8aiAbIU= ARC-Authentication-Results: i=1; mx.zohomail.com; dkim=pass; spf=pass (zohomail.com: domain of groups.io designates 66.175.222.12 as permitted sender) smtp.mailfrom=bounce+27952+57569+1787277+3901457@groups.io Received: from web01.groups.io (web01.groups.io [66.175.222.12]) by mx.zohomail.com with SMTPS id 1587301465595738.4178191949572; Sun, 19 Apr 2020 06:04:25 -0700 (PDT) Return-Path: X-Received: by 127.0.0.2 with SMTP id ofQAYY1788612xwvoGK0O0ZN; Sun, 19 Apr 2020 06:04:25 -0700 X-Received: from mail-qk1-f196.google.com (mail-qk1-f196.google.com [209.85.222.196]) by mx.groups.io with SMTP id smtpd.web12.16098.1587301464677743917 for ; Sun, 19 Apr 2020 06:04:24 -0700 X-Received: by mail-qk1-f196.google.com with SMTP id n143so846536qkn.8 for ; Sun, 19 Apr 2020 06:04:24 -0700 (PDT) X-Gm-Message-State: FYtu1gHhtkRjAGBYFTd3FdAsx1787277AA= X-Google-Smtp-Source: APiQypL/xsSR7YDiVzCOGNe5Y4l2ga/Xl3jXaFEuaHt289RD1mE0SOFLwVRjIc5JqNQpv2x/T4bjwg== X-Received: by 2002:ae9:d847:: with SMTP id u68mr11418773qkf.322.1587301463659; Sun, 19 Apr 2020 06:04:23 -0700 (PDT) X-Received: from localhost.localdomain (99-132-126-10.lightspeed.chrlnc.sbcglobal.net. [99.132.126.10]) by smtp.gmail.com with ESMTPSA id z65sm10992917qka.60.2020.04.19.06.04.22 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Sun, 19 Apr 2020 06:04:23 -0700 (PDT) From: "Samer El-Haj-Mahmoud" To: devel@edk2.groups.io Cc: Leif Lindholm , Ard Biesheuvel , Pete Batard , Andrei Warkentin Subject: [edk2-devel] [edk2-platform][PATCH v1 4/4] Platform/RaspberryPi/RPi4: Enable TFTP command by default Date: Sun, 19 Apr 2020 09:04:17 -0400 Message-Id: <20200419130417.3298-5-samer@elhajmahmoud.com> In-Reply-To: <20200419130417.3298-1-samer@elhajmahmoud.com> References: <20200419130417.3298-1-samer@elhajmahmoud.com> Precedence: Bulk List-Unsubscribe: Sender: devel@edk2.groups.io List-Id: Mailing-List: list devel@edk2.groups.io; contact devel+owner@edk2.groups.io Reply-To: devel@edk2.groups.io,samer@elhajmahmoud.com DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=groups.io; q=dns/txt; s=20140610; t=1587301465; bh=fbwhEH9+Z8VV/powVpLUhBK1dTkp2maOsO4bY1nhmaI=; h=Cc:Date:From:Reply-To:Subject:To; b=ia0ENOtUCZa6G4r9mToAE05woS6dL2Z4uKKrv6aGYYeZf7hWN0EKsI2OiXovTYd/gAk T7f6pqfMZRJO/s5ymtXyjO2wREUP0JURBtJRxGYB267hBvQ5BLD1vupZBPSaxjV5rtatk Y05Tws+xKFVw1+YfnUPH/onwUsa7dWcvqU0= X-ZohoMail-DKIM: pass (identity @groups.io) Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Enable the TFTP dynamic shell command by default. Cc: Leif Lindholm Cc: Ard Biesheuvel Cc: Pete Batard Cc: Andrei Warkentin Signed-off-by: Samer El-Haj-Mahmoud Reviewed-by: Ard Biesheuvel --- Platform/RaspberryPi/RPi4/RPi4.dsc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Platform/RaspberryPi/RPi4/RPi4.dsc b/Platform/RaspberryPi/RPi4= /RPi4.dsc index de32aab2df3c..9ba32af209b6 100644 --- a/Platform/RaspberryPi/RPi4/RPi4.dsc +++ b/Platform/RaspberryPi/RPi4/RPi4.dsc @@ -30,7 +30,7 @@ [Defines] # -D FLAG=3DVALUE # DEFINE SECURE_BOOT_ENABLE =3D FALSE - DEFINE INCLUDE_TFTP_COMMAND =3D FALSE + DEFINE INCLUDE_TFTP_COMMAND =3D TRUE DEFINE DEBUG_PRINT_ERROR_LEVEL =3D 0x8000004F =20 !ifndef TFA_BUILD_ARTIFACTS --=20 2.17.1 -=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#57569): https://edk2.groups.io/g/devel/message/57569 Mute This Topic: https://groups.io/mt/73127195/1787277 Group Owner: devel+owner@edk2.groups.io Unsubscribe: https://edk2.groups.io/g/devel/unsub [importer@patchew.org] -=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-