Skip to content

Commit 64b07be

Browse files
committed
feat: Enhance shell module based on review feedback
1 parent 0c39a32 commit 64b07be

File tree

13 files changed

+498
-112
lines changed

13 files changed

+498
-112
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
cargo version
4242
export DISK_IMG="${{ github.workspace }}/disk-aarch64.img"
4343
export VM_CONFIGS="$(pwd)/configs/vms/nimbos-aarch64-qemu-smp1.toml"
44-
./scripts/auto_interrupt.sh ./axvisor.sh run --plat ${{ matrix.plat }} --vmconfigs $VM_CONFIGS --features fs,ept-level-4 --arceos-args DISK_IMG=$DISK_IMG,BUS=mmio,BLK=y,MEM=8g
44+
./scripts/auto_interrupt.sh ./axvisor.sh run --plat ${{ matrix.plat }} --vmconfigs $VM_CONFIGS --features fs,ept-level-4 --arceos-args DISK_IMG=$DISK_IMG,BUS=mmio,BLK=y,MEM=8g,LOG=info
4545
4646
aarch64-generic-phytiumpi:
4747
runs-on: [self-hosted, linux, phytiumpi]
@@ -135,4 +135,4 @@ jobs:
135135
cargo version
136136
export DISK_IMG="${{ github.workspace }}/disk-x86_64.img"
137137
export VM_CONFIGS="$(pwd)/configs/vms/nimbos-x86_64-qemu-smp1.toml"
138-
./scripts/auto_interrupt.sh ./axvisor.sh run --plat ${{ matrix.plat }} --vmconfigs $VM_CONFIGS --features fs --arceos-args DISK_IMG=$DISK_IMG,BLK=y
138+
./scripts/auto_interrupt.sh ./axvisor.sh run --plat ${{ matrix.plat }} --vmconfigs $VM_CONFIGS --features fs --arceos-args DISK_IMG=$DISK_IMG,BLK=y,LOG=info

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,12 @@ Currently, AxVisor has been verified in scenarios with the following systems as
5151
- [NimbOS](https://github.com/equation314/nimbos)
5252
- Linux
5353

54+
## Shell Management
55+
56+
AxVisor provides an interactive shell interface for managing virtual machines and file operations.
57+
58+
For detailed information about shell features, commands, and usage, see: [Shell模块介绍.md](doc/Shell模块介绍.md)
59+
5460
# Build and Run
5561

5662
After AxVisor starts, it loads and starts the guest based on the information in the guest configuration file. Currently, AxVisor supports loading guest images from a FAT32 file system and also supports binding guest images to the hypervisor image through static compilation (using include_bytes).

0 commit comments

Comments
 (0)