From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) (using TLSv1 with cipher CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by ml01.01.org (Postfix) with ESMTPS id B7D431A1E66 for ; Tue, 13 Sep 2016 23:24:12 -0700 (PDT) Received: from fmsmga005.fm.intel.com ([10.253.24.32]) by orsmga101.jf.intel.com with ESMTP; 13 Sep 2016 23:24:10 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.30,332,1470726000"; d="scan'208";a="8121426" Received: from shwdeopenpsi168.ccr.corp.intel.com ([10.239.158.144]) by fmsmga005.fm.intel.com with ESMTP; 13 Sep 2016 23:24:09 -0700 From: Yonghong Zhu To: edk2-devel@lists.01.org Cc: Liming Gao Date: Wed, 14 Sep 2016 14:23:53 +0800 Message-Id: <1473834234-242960-3-git-send-email-yonghong.zhu@intel.com> X-Mailer: git-send-email 2.6.1.windows.1 In-Reply-To: <1473834234-242960-1-git-send-email-yonghong.zhu@intel.com> References: <1473834234-242960-1-git-send-email-yonghong.zhu@intel.com> Subject: [Patch 1/2] edksetup.sh: update the URL in edksetup.sh X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 06:24:12 -0000 Update the URL since http://edk2.tianocore.org is not valid Cc: Liming Gao Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Yonghong Zhu --- edksetup.sh | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/edksetup.sh b/edksetup.sh index 57368b5..27c0994 100755 --- a/edksetup.sh +++ b/edksetup.sh @@ -1,30 +1,27 @@ # -# Copyright (c) 2006 - 2015, Intel Corporation. All rights reserved.
+# Copyright (c) 2006 - 2016, Intel Corporation. All rights reserved.
# This program and the accompanying materials # are licensed and made available under the terms and conditions of the BSD License # which accompanies this distribution. The full text of the license may be found at # http://opensource.org/licenses/bsd-license.php # # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. # # In *inux environment, the build tools's source is required and need to be compiled -# firstly, please reference https://edk2.tianocore.org/unix-getting-started.html to +# firstly, please reference https://github.com/tianocore/tianocore.github.io/wiki/SourceForge-to-Github-Quick-Start # to get how to setup build tool. # -# After build tool is downloaded and compiled, a soft symbol linker need to be created -# at /Conf. For example: ln -s /work/BaseTools /work/edk2/Conf/BaseToolsSource. -# # Setup the environment for unix-like systems running a bash-like shell. # This file must be "sourced" not merely executed. For example: ". edksetup.sh" # # CYGWIN users: Your path and filename related environment variables should be # set up in the unix style. This script will make the necessary conversions to # windows style. # -# Please reference edk2 user manual for more detail descriptions at https://edk2.tianocore.org/files/documents/64/494/EDKII_UserManual.pdf +# Please reference edk2 user manual for more detail descriptions at https://github.com/tianocore-docs/Docs/raw/master/User_Docs/EDK_II_UserManual_0_7.pdf # function HelpMsg() { echo Please note: This script must be \'sourced\' so the environment can be changed. -- 2.6.1.windows.1