From 8c699bcaf214242f0e5c550c77d2c1252ba189d3 Mon Sep 17 00:00:00 2001 From: liujingx Date: Thu, 27 Feb 2025 16:03:18 +0800 Subject: [PATCH] fix: build fs shell --- .github/workflows/build.yml | 2 +- apps/fs/shell/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6a9c40a02..7c4db7a8d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -66,7 +66,7 @@ jobs: - name: Build display/draw_map run: make ARCH=${{ matrix.arch }} A=apps/display/draw_map - name: Build fs/shell - run: make ARCH=${{ matrix.arch }} A=apps/fs/shell + run: make ARCH=${{ matrix.arch }} A=apps/fs/shell FEATURES=fatfs - name: Build c/helloworld run: make ARCH=${{ matrix.arch }} A=apps/c/helloworld diff --git a/apps/fs/shell/Cargo.toml b/apps/fs/shell/Cargo.toml index 069c77a3b..aa7cc26a5 100644 --- a/apps/fs/shell/Cargo.toml +++ b/apps/fs/shell/Cargo.toml @@ -14,4 +14,4 @@ default = [] axfs_vfs = { path = "../../../crates/axfs_vfs", optional = true } axfs_ramfs = { path = "../../../crates/axfs_ramfs", optional = true } crate_interface = { version = "0.1.1", optional = true } -axstd = { path = "../../../ulib/axstd", features = ["alloc", "fs","blkfs"], optional = true } +axstd = { path = "../../../ulib/axstd", features = ["alloc", "fs", "blkfs"], optional = true }