Skip to content

Commit c85f2ae

Browse files
author
zhengchenxiao
committed
Rename ".config" to "defconfig"
1 parent 5303e73 commit c85f2ae

File tree

6 files changed

+37
-46
lines changed

6 files changed

+37
-46
lines changed

models/.config.old

Lines changed: 0 additions & 32 deletions
This file was deleted.

models/Kconfig

Lines changed: 35 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -143,17 +143,7 @@ if VENDOR_ROCKCHIP
143143
Select RK3500 chip.
144144

145145
endchoice
146-
147-
choice
148-
prompt "Select Development Board for RK3500"
149-
default BOARD_RK3500
150-
151-
config BOARD_RK3500
152-
bool "RK3500 Development Board"
153-
help
154-
Select RK3500 development board.
155-
156-
endchoice
146+
157147
endif
158148

159149
#
@@ -177,7 +167,6 @@ if VENDOR_QEMU
177167
endchoice
178168
endif
179169

180-
181170
#
182171
# 可选内核来源,如果本地有rt-thread仓库,可以指定本地目录,xmake编译过程中将不会再次拉取rt-thread仓库
183172
#
@@ -211,6 +200,40 @@ config KERNEL_LOCAL_DIR
211200

212201
endmenu
213202

203+
204+
#
205+
# 可选交叉编译工具链来源,如果本地有toolchain,可以指定本地目录,xmake编译过程中将不会再次拉取交叉编译工具链
206+
#
207+
#menu "toolchain Configuration"
208+
#
209+
#choice TOOLCHAIN_SOURCE
210+
# prompt "Select toolchain Source"
211+
# help
212+
# Choose how to provide the toolchain source.
213+
# default TOOLCHAIN_SOURCE_GIT
214+
#
215+
#config TOOLCHAIN_SOURCE_GIT
216+
# bool "Fetch from Git repository"
217+
# help
218+
# Fetch the TOOLCHAIN source from a Git repository.
219+
#
220+
#config TOOLCHAIN_SOURCE_LOCAL
221+
# bool "Use a local directory"
222+
# help
223+
# Use an existing toolchain source directory on the local file system.
224+
#
225+
#endchoice
226+
#
227+
#config TOOLCHAIN_LOCAL_DIR
228+
# string "Local toolchain Directory"
229+
# default "/home/rtthread/tool/a/aarch64-smart-musleabi/"
230+
# depends on TOOLCHAIN_SOURCE_LOCAL
231+
# help
232+
# Specify the path to the local toolchain source directory. This option
233+
# is only available if "Use a local directory" is selected above.
234+
#
235+
#endmenu
236+
214237
#
215238
# 选择开发板后,配置您想使用的 app
216239
#
File renamed without changes.

repo/packages/r/rt-thread/bsp/qemu_virt64_aarch64.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ function build(toolchainsdir)
3333
local rt_dir = os.getenv("RT_THREAD_DIR")
3434
local build = path.join(rt_dir,"/bsp/qemu-virt64-aarch64")
3535
local build_dir = os.curdir()
36-
local config_dir = path.join(os.scriptdir(),"qemu_aarch64.config")
36+
local config_dir = path.join(os.scriptdir(),"qemu_aarch64_defconfig")
3737
os.cp(config_dir,path.join(build,".config"))
3838
os.cd(build)
3939
os.exec("scons --pyconfig-silent")

repo/packages/r/rt-thread/bsp/rockchip_rk3500_rk3500.lua renamed to repo/packages/r/rt-thread/bsp/rockchip_rk3500.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ function build(toolchainsdir)
3333
local rt_dir = os.getenv("RT_THREAD_DIR")
3434
local build = path.join(rt_dir,"/bsp/rockchip/rk3500")
3535
local build_dir = os.curdir()
36-
local config_dir = path.join(os.scriptdir(),"rockchip_rk3500.config")
36+
local config_dir = path.join(os.scriptdir(),"rockchip_rk3500_defconfig")
3737
os.cp(config_dir,path.join(build,".config"))
3838
os.cd(build)
3939
os.exec("scons --pyconfig-silent")

repo/packages/r/rt-thread/bsp/rockchip_rk3500.config renamed to repo/packages/r/rt-thread/bsp/rockchip_rk3500_defconfig

File renamed without changes.

0 commit comments

Comments
 (0)