29 lines
852 B
Diff
29 lines
852 B
Diff
From cf6be03a1f5b7595a2ecada71fa8aa30de744703 Mon Sep 17 00:00:00 2001
|
|
From: lifeng 71117973 <lif121@chinatelecom.cn>
|
|
Date: Wed, 2 Nov 2022 17:20:50 +0800
|
|
Subject: [PATCH 2/2] fixed the error that no bios file soft link was created
|
|
in the build directory when compiling the sw64 architecture
|
|
|
|
---
|
|
configure | 4 +++-
|
|
1 file changed, 3 insertions(+), 1 deletion(-)
|
|
|
|
diff --git a/configure b/configure
|
|
index 9569d7a3d0..0ae7bcf065 100755
|
|
--- a/configure
|
|
+++ b/configure
|
|
@@ -3861,7 +3861,9 @@ for bios_file in \
|
|
$source_path/pc-bios/u-boot.* \
|
|
$source_path/pc-bios/edk2-*.fd.bz2 \
|
|
$source_path/pc-bios/palcode-* \
|
|
- $source_path/pc-bios/qemu_vga.ndrv
|
|
+ $source_path/pc-bios/qemu_vga.ndrv \
|
|
+ $source_path/pc-bios/core* \
|
|
+ $source_path/pc-bios/uefi-bios-sw
|
|
|
|
do
|
|
LINKS="$LINKS pc-bios/$(basename $bios_file)"
|
|
--
|
|
2.27.0
|
|
|