Revision: 16444
          http://sourceforge.net/p/edk2/code/16444
Author:   niruiyu
Date:     2014-11-25 08:53:33 +0000 (Tue, 25 Nov 2014)
Log Message:
-----------
Change NT32 and DUET to use UEFI Shell by default. Use "-D USE_OLD_SHELL" for 
NT32 to use EDK Shell.

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Ruiyu Ni <[email protected]>
Reviewed-by: Eric Dong <[email protected]>

Modified Paths:
--------------
    trunk/edk2/DuetPkg/CreateBootDisk.bat
    trunk/edk2/DuetPkg/CreateBootDisk.sh
    trunk/edk2/Nt32Pkg/Nt32Pkg.dsc
    trunk/edk2/Nt32Pkg/Nt32Pkg.fdf

Modified: trunk/edk2/DuetPkg/CreateBootDisk.bat
===================================================================
--- trunk/edk2/DuetPkg/CreateBootDisk.bat       2014-11-25 08:27:23 UTC (rev 
16443)
+++ trunk/edk2/DuetPkg/CreateBootDisk.bat       2014-11-25 08:53:33 UTC (rev 
16444)
@@ -1,6 +1,6 @@
 @REM ## @file
 @REM #
-@REM #  Copyright (c) 2010 - 2011, Intel Corporation. All rights reserved.<BR>
+@REM #  Copyright (c) 2010 - 2014, Intel Corporation. All rights reserved.<BR>
 @REM #
 @REM #  This program and the accompanying materials
 @REM #  are licensed and made available under the terms and conditions of the 
BSD License
@@ -52,28 +52,25 @@
 @format /v:%DISK_LABEL% /q %EFI_BOOT_DISK% < FormatCommandInput.txt > NUL
 @del FormatCommandInput.txt
 @echo Create boot sector ...
-%BASETOOLS_DIR%\Genbootsector.exe -i %EFI_BOOT_DISK% -o FDBs.com
+@%BASETOOLS_DIR%\Genbootsector.exe -i %EFI_BOOT_DISK% -o FDBs.com
 @copy %BOOTSECTOR_BIN_DIR%\Bootsect.com FDBs-1.com
-%BASETOOLS_DIR%\Bootsectimage.exe -g FDBs.com FDBs-1.com -f
+@%BASETOOLS_DIR%\Bootsectimage.exe -g FDBs.com FDBs-1.com -f
 @REM @del FDBS.com
-%BASETOOLS_DIR%\Genbootsector.exe -o %EFI_BOOT_DISK% -i FDBs-1.com 
+@%BASETOOLS_DIR%\Genbootsector.exe -o %EFI_BOOT_DISK% -i FDBs-1.com 
 @del FDBs-1.com
 @echo Done.
-copy %BUILD_DIR%\FV\EfiLdr %EFI_BOOT_DISK%
-mkdir %EFI_BOOT_DISK%\efi\boot
-@if "%PROCESSOR%"=="IA32" goto CreateBootFileForIA32
-@if "%PROCESSOR%"=="X64" goto CreateBootFileForX64
-@goto end
+@copy %BUILD_DIR%\FV\EfiLdr %EFI_BOOT_DISK%
+@goto CreateBootFile
 
 :CreateFile
 @if NOT "%3"=="FAT12" goto WrongFATType
 @echo Start to create file boot disk ...
 @echo Create boot sector ...
 %BASETOOLS_DIR%\Genbootsector.exe -i %EFI_BOOT_DISK% -o FDBs.com
-copy %BOOTSECTOR_BIN_DIR%\Bootsect.com FDBs-1.com
-%BASETOOLS_DIR%\Bootsectimage.exe -g FDBs.com FDBs-1.com -f
+@copy %BOOTSECTOR_BIN_DIR%\Bootsect.com FDBs-1.com
+@%BASETOOLS_DIR%\Bootsectimage.exe -g FDBs.com FDBs-1.com -f
 @REM @del FDBS.com
-%BASETOOLS_DIR%\Genbootsector.exe -o %EFI_BOOT_DISK% -i FDBs-1.com 
+@%BASETOOLS_DIR%\Genbootsector.exe -o %EFI_BOOT_DISK% -i FDBs-1.com 
 @del FDBs-1.com
 @echo Done.
 @goto end
@@ -103,10 +100,7 @@
 
 :CreateUsb_FAT16_step2
 @copy %BUILD_DIR%\FV\EfiLdr16 %EFI_BOOT_DISK%
-@mkdir %EFI_BOOT_DISK%\efi\boot
-@if "%PROCESSOR%"=="IA32" goto CreateBootFileForIA32
-@if "%PROCESSOR%"=="X64" goto CreateBootFileForX64
-@goto end
+@goto CreateBootFile
 
 :CreateUsb_FAT32
 @if "%STEP%"=="2" goto CreateUsb_FAT32_step2
@@ -128,22 +122,16 @@
 
 :CreateUsb_FAT32_step2
 @copy %BUILD_DIR%\FV\EfiLdr20 %EFI_BOOT_DISK%
-@mkdir %EFI_BOOT_DISK%\efi\boot
-@if "%PROCESSOR%"=="IA32" goto CreateBootFileForIA32
-@if "%PROCESSOR%"=="X64" goto CreateBootFileForX64
-@goto end
+@goto CreateBootFile
 
 :CreateIde
 @goto end
 
-:CreateBootFileForIA32
-copy %WORKSPACE%\EdkShellBinPkg\MinimumShell\IA32\Shell.efi 
%EFI_BOOT_DISK%\efi\boot\bootia32.efi /y
+:CreateBootFile
+@mkdir %EFI_BOOT_DISK%\efi\boot
+copy %WORKSPACE%\ShellBinPkg\UefiShell\%PROCESSOR%\Shell.efi 
%EFI_BOOT_DISK%\efi\boot\boot%PROCESSOR%.efi /y
 @goto end
 
-:CreateBootFileForX64
-copy %WORKSPACE%\EdkShellBinPkg\MinimumShell\X64\Shell.efi 
%EFI_BOOT_DISK%\efi\boot\bootx64.efi /y
-@goto end
-
 :WrongFATType
 @echo Wrong FAT type %3 for %1
 @goto end
@@ -155,4 +143,4 @@
 :Help
 @echo "Usage: CreateBootDisk [usb|floppy|ide] DiskNumber [FAT12|FAT16|FAT32] 
[IA32|X64]"
 :end
-@echo on
\ No newline at end of file
+@echo on

Modified: trunk/edk2/DuetPkg/CreateBootDisk.sh
===================================================================
--- trunk/edk2/DuetPkg/CreateBootDisk.sh        2014-11-25 08:27:23 UTC (rev 
16443)
+++ trunk/edk2/DuetPkg/CreateBootDisk.sh        2014-11-25 08:53:33 UTC (rev 
16444)
@@ -2,7 +2,7 @@
 
 ## @file
 #
-#  Copyright (c) 2010, Intel Corporation. All rights reserved.<BR>
+#  Copyright (c) 2010 - 2014, Intel Corporation. All rights reserved.<BR>
 #
 #  This program and the accompanying materials
 #  are licensed and made available under the terms and conditions of the BSD 
License
@@ -89,11 +89,11 @@
                                mkdir -p $EFI_BOOT_MEDIA/efi/boot
                                if [ "$5" = IA32 ]
                                then
-                                       cp 
$WORKSPACE/EdkShellBinPkg/MinimumShell/Ia32/Shell.efi 
$EFI_BOOT_MEDIA/efi/boot/bootia32.efi 
+                                       cp 
$WORKSPACE/ShellBinPkg/UefiShell/Ia32/Shell.efi 
$EFI_BOOT_MEDIA/efi/boot/boot$5.efi
                                else
                                        if [ "$5" = X64 ]
                                        then
-                                               cp 
$WORKSPACE/EdkShellBinPkg/MinimumShell/X64/Shell.efi 
$EFI_BOOT_MEDIA/efi/boot/bootx64.efi 
+                                               cp 
$WORKSPACE/ShellBinPkg/UefiShell/X64/Shell.efi 
$EFI_BOOT_MEDIA/efi/boot/boot$5.efi
                                        else
                                                echo Wrong Arch!
                                        fi
@@ -115,10 +115,10 @@
                                mmd -i $EFI_BOOT_MEDIA ::/efi ::/efi/boot
                                if [ "$5" = IA32 ]
                                then
-                                       mcopy -i $EFI_BOOT_MEDIA 
$WORKSPACE/EdkShellBinPkg/MinimumShell/Ia32/Shell.efi ::/efi/boot/bootia32.efi
+                                       mcopy -i $EFI_BOOT_MEDIA 
$WORKSPACE/ShellBinPkg/UefiShell/Ia32/Shell.efi ::/efi/boot/boot$5.efi
                                elif [ "$5" = X64 ]
                                then
-                                       mcopy -i $EFI_BOOT_MEDIA 
$WORKSPACE/EdkShellBinPkg/MinimumShell/X64/Shell.efi ::/efi/boot/bootx64.efi
+                                       mcopy -i $EFI_BOOT_MEDIA 
$WORKSPACE/ShellBinPkg/UefiShell/X64/Shell.efi ::/efi/boot/boot$5.efi
                                else
                                        echo Wrong Arch!
                                fi
@@ -146,11 +146,11 @@
                                        mkdir $EFI_BOOT_MEDIA/efi/boot
                                        if [ "$5" = IA32 ]
                                        then
-                                               cp 
$WORKSPACE/EdkShellBinPkg/MinimumShell/Ia32/Shell.efi 
$EFI_BOOT_MEDIA/efi/boot/bootia32.efi 
+                                               cp 
$WORKSPACE/ShellBinPkg/UefiShell/Ia32/Shell.efi 
$EFI_BOOT_MEDIA/efi/boot/boot$5.efi
                                        else
                                                if [ "$5" = X64 ]
                                                then
-                                                       cp 
$WORKSPACE/EdkShellBinPkg/MinimumShell/X64/Shell.efi 
$EFI_BOOT_MEDIA/efi/boot/bootx64.efi 
+                                                       cp 
$WORKSPACE/ShellBinPkg/UefiShell/X64/Shell.efi 
$EFI_BOOT_MEDIA/efi/boot/boot$5.efi
                                                else
                                                        echo Wrong Arch!
                                                fi
@@ -178,11 +178,11 @@
                                        mkdir $EFI_BOOT_MEDIA/efi/boot
                                        if [ "$5" = IA32 ]
                                        then
-                                               cp 
$WORKSPACE/EdkShellBinPkg/MinimumShell/Ia32/Shell.efi 
$EFI_BOOT_MEDIA/efi/boot/bootia32.efi 
+                                               cp 
$WORKSPACE/ShellBinPkg/UefiShell/Ia32/Shell.efi 
$EFI_BOOT_MEDIA/efi/boot/boot$5.efi
                                        else
                                                if [ "$5" = X64 ]
                                                then
-                                                       cp 
$WORKSPACE/EdkShellBinPkg/MinimumShell/X64/Shell.efi 
$EFI_BOOT_MEDIA/efi/boot/bootx64.efi 
+                                                       cp 
$WORKSPACE/ShellBinPkg/UefiShell/X64/Shell.efi 
$EFI_BOOT_MEDIA/efi/boot/boot$5.efi
                                                else
                                                        echo Wrong Arch!
                                                fi

Modified: trunk/edk2/Nt32Pkg/Nt32Pkg.dsc
===================================================================
--- trunk/edk2/Nt32Pkg/Nt32Pkg.dsc      2014-11-25 08:27:23 UTC (rev 16443)
+++ trunk/edk2/Nt32Pkg/Nt32Pkg.dsc      2014-11-25 08:53:33 UTC (rev 16444)
@@ -4,7 +4,7 @@
 # The Emulation Platform can be used to debug individual modules, prior to 
creating
 #    a real platform. This also provides an example for how an DSC is created.
 #
-# Copyright (c) 2006 - 2013, Intel Corporation. All rights reserved.<BR>
+# Copyright (c) 2006 - 2014, Intel Corporation. All rights reserved.<BR>
 #
 #    This program and the accompanying materials
 #    are licensed and made available under the terms and conditions of the BSD 
License
@@ -233,6 +233,10 @@
   gEfiMdeModulePkgTokenSpaceGuid.PcdMaxVariableSize|0x2000
 !endif
 
+!ifndef $(USE_OLD_SHELL)
+  gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdShellFile|{ 0x83, 0xA5, 0x04, 
0x7C, 0x3E, 0x9E, 0x1C, 0x4F, 0xAD, 0x65, 0xE0, 0x52, 0x68, 0xD0, 0xB4, 0xD1 }
+!endif
+
 !if $(SECURE_BOOT_ENABLE) == TRUE
   # override the default values from SecurityPkg to ensure images from all 
sources are verified in secure boot
   gEfiSecurityPkgTokenSpaceGuid.PcdOptionRomImageVerificationPolicy|0x04

Modified: trunk/edk2/Nt32Pkg/Nt32Pkg.fdf
===================================================================
--- trunk/edk2/Nt32Pkg/Nt32Pkg.fdf      2014-11-25 08:27:23 UTC (rev 16443)
+++ trunk/edk2/Nt32Pkg/Nt32Pkg.fdf      2014-11-25 08:53:33 UTC (rev 16444)
@@ -1,7 +1,7 @@
 ## @file
 # This is NT32 FDF file with UEFI HII features enabled
 #
-# Copyright (c) 2007 - 2013, Intel Corporation. All rights reserved.<BR>
+# Copyright (c) 2007 - 2014, Intel Corporation. All rights reserved.<BR>
 #
 #    This program and the accompanying materials
 #    are licensed and made available under the terms and conditions of the BSD 
License
@@ -270,7 +270,11 @@
 # for binary shell, binary fat and logo module.
 #
 
################################################################################
-INF EdkShellBinPkg/FullShell/FullShell.inf
+!ifndef $(USE_OLD_SHELL)
+INF  ShellBinPkg/UefiShell/UefiShell.inf
+!else
+INF  EdkShellBinPkg/FullShell/FullShell.inf
+!endif
 
 INF FatBinPkg/EnhancedFatDxe/Fat.inf
 


------------------------------------------------------------------------------
Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server
from Actuate! Instantly Supercharge Your Business Reports and Dashboards
with Interactivity, Sharing, Native Excel Exports, App Integration & more
Get technology previously reserved for billion-dollar corporations, FREE
http://pubads.g.doubleclick.net/gampad/clk?id=157005751&iu=/4140/ostg.clktrk
_______________________________________________
edk2-commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/edk2-commits

Reply via email to