From be8822db382efe6af98b1ea3877876cda250c4a8 Mon Sep 17 00:00:00 2001 From: guozhanxin Date: Sun, 9 Jan 2022 10:02:07 +0800 Subject: [PATCH 1/2] update buildbot.py --- tools/buildbot.py | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/tools/buildbot.py b/tools/buildbot.py index 04779071cf..e40abe4a5d 100644 --- a/tools/buildbot.py +++ b/tools/buildbot.py @@ -39,15 +39,17 @@ def update_all_project_files(root_path): if os.path.isdir(root_path): projects = os.listdir(root_path) # is a project path? - if "SConscript" in projects: + if "SConstruct" in projects: try: - if "win32" in sys.platform: - retval = os.getcwd() - os.chdir(root_path) - os.system("menuconfig --silent") - os.chdir(retval) - else: - os.system('scons --pyconfig-silent -C {0}'.format(root_path)) # update rtconfig.h and .config + # update rtconfig.h and .config + if "Kconfig" in projects: + if "win32" in sys.platform: + retval = os.getcwd() + os.chdir(root_path) + os.system("menuconfig --silent") + os.chdir(retval) + else: + os.system('scons --pyconfig-silent -C {0}'.format(root_path)) update_project_file(root_path) except Exception as e: print("error message: {}".format(e)) From f9b01095f20488fe5f16d0dd1b85cb507b3b5f2b Mon Sep 17 00:00:00 2001 From: guozhanxin Date: Sun, 9 Jan 2022 10:15:36 +0800 Subject: [PATCH 2/2] remove unused file 1.txt --- tools/1.txt | 2 -- 1 file changed, 2 deletions(-) delete mode 100644 tools/1.txt diff --git a/tools/1.txt b/tools/1.txt deleted file mode 100644 index fec83eefd2..0000000000 --- a/tools/1.txt +++ /dev/null @@ -1,2 +0,0 @@ -Cannot found RT-Thread root directory, please check RTT_ROOT -C:\Users\92036\Desktop\rtt\bsp