mirror of
https://github.com/m5stack/StackFlow.git
synced 2026-05-20 11:32:11 -07:00
[update] ax-samples && [update] version
This commit is contained in:
+2
-1
@@ -1,3 +1,4 @@
|
||||
.vscode/settings.json
|
||||
projects/core135_llm_product_test_ui
|
||||
projects/imx678_test
|
||||
projects/imx678_test
|
||||
projects/test_*
|
||||
@@ -29,14 +29,13 @@ if "CONFIG_AX_SAMPLES_ENABLED" in os.environ:
|
||||
LINK_SEARCH_PATH = []
|
||||
|
||||
INCLUDE += [
|
||||
os.path.join(env["GIT_REPO_LISTS"]["ax-samples"]["path"], "examples/base"),
|
||||
os.path.join(env["GIT_REPO_LISTS"]["ax-samples"]["path"], "examples/utilities"),
|
||||
os.path.join(env["GIT_REPO_LISTS"]["ax-samples"]["path"], "examples"),
|
||||
]
|
||||
if "CONFIG_AX_620E_MSP_ENABLED" in os.environ:
|
||||
INCLUDE += [
|
||||
os.path.join(
|
||||
env["GIT_REPO_LISTS"]["ax-samples"]["path"],
|
||||
"examples/ax620e/middleware",
|
||||
"examples/ax620e",
|
||||
)
|
||||
]
|
||||
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
* written consent of Axera Semiconductor (Ningbo) Co., Ltd.
|
||||
*
|
||||
**************************************************************************************************/
|
||||
#include "detection.hpp"
|
||||
#include "base/detection.hpp"
|
||||
#define UNUSE_STRUCT_OBJECT
|
||||
#include "EngineWrapper.hpp"
|
||||
#include "utils/io.hpp"
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
*/
|
||||
#include "StackFlow.h"
|
||||
#include "EngineWrapper.hpp"
|
||||
#include "common.hpp"
|
||||
#include "base/common.hpp"
|
||||
#include <ax_sys_api.h>
|
||||
#include <sys/stat.h>
|
||||
#include <fstream>
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
* written consent of Axera Semiconductor (Ningbo) Co., Ltd.
|
||||
*
|
||||
**************************************************************************************************/
|
||||
#include "detection.hpp"
|
||||
#include "base/detection.hpp"
|
||||
#define UNUSE_STRUCT_OBJECT
|
||||
#include "EngineWrapper.hpp"
|
||||
#include "utils/io.hpp"
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
*/
|
||||
#include "StackFlow.h"
|
||||
#include "EngineWrapper.hpp"
|
||||
#include "common.hpp"
|
||||
#include "base/common.hpp"
|
||||
#include <ax_sys_api.h>
|
||||
#include <sys/stat.h>
|
||||
#include <fstream>
|
||||
|
||||
@@ -225,10 +225,7 @@ def create_bin_deb(package_name, version, src_folder, revision = 'm5stack1'):
|
||||
with open(os.path.join(deb_folder, f'lib/systemd/system/{package_name}.service'),'w') as f:
|
||||
f.write(f'[Unit]\n')
|
||||
f.write(f'Description={package_name} Service\n')
|
||||
if package_name == 'llm-sys':
|
||||
f.write(f'After=ubus.service\n')
|
||||
f.write(f'Requires=ubus.service\n')
|
||||
else:
|
||||
if package_name != 'llm-sys':
|
||||
f.write(f'After=llm-sys.service\n')
|
||||
f.write(f'Requires=llm-sys.service\n')
|
||||
f.write(f'\n')
|
||||
@@ -259,7 +256,7 @@ if __name__ == "__main__":
|
||||
os.system('rm ./*.deb m5stack_* -rf')
|
||||
exit(0)
|
||||
|
||||
version = '1.3'
|
||||
version = '1.4'
|
||||
data_version = '0.2'
|
||||
src_folder = '../dist'
|
||||
revision = 'm5stack1'
|
||||
|
||||
Reference in New Issue
Block a user