From 1d25b4cec09d18d1d3dffe15c9b43a6ce1e6e054 Mon Sep 17 00:00:00 2001 From: OPPEN321 Date: Wed, 22 Oct 2025 18:04:07 +0800 Subject: [PATCH] Update build.sh --- build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sh b/build.sh index 2ecc4d0..e80044c 100644 --- a/build.sh +++ b/build.sh @@ -340,7 +340,7 @@ load_configuration() { print_info "加载配置文件..." if [[ "$arch" == "rockchip" ]]; then echo -e "${BLUE_COLOR}├─ 选择 Rockchip 架构配置${RESET}" - if cp -rf ../OpenBox/Config/Rockchip.config ./.config; then + if cp -rf ../OpenBox/config/config-rockchip ./.config; then echo -e "${GREEN_COLOR}└─ ✓ Rockchip 配置文件加载完成${RESET}" print_success "Rockchip 架构配置文件已加载" else @@ -348,7 +348,7 @@ load_configuration() { fi elif [[ "$arch" == "x86_64" ]]; then echo -e "${BLUE_COLOR}├─ 选择 x86_64 架构配置${RESET}" - if cp -rf ../OpenBox/Config/X86_64.config ./.config; then + if cp -rf ../OpenBox/config/config-x86_64 ./.config; then echo -e "${GREEN_COLOR}└─ ✓ x86_64 配置文件加载完成${RESET}" print_success "x86_64 架构配置文件已加载" else