diff --git a/docs/aicore/ax-m1/download.md b/docs/aicore/ax-m1/download.md index fa611b17d..77d0207aa 100644 --- a/docs/aicore/ax-m1/download.md +++ b/docs/aicore/ax-m1/download.md @@ -6,7 +6,8 @@ sidebar_position: 15 ## AXCL 驱动包 -- Firmware:[axclhost-firmware_3.6.5-1_all.deb](https://dl.radxa.com/aicore/ax_m1/axclhost-firmware_3.6.5-1_all.deb) +- Firmware(4GB):[axclhost-firmware_3.6.5-1_all_4gb.deb](https://dl.radxa.com/aicore/ax_m1/axclhost-firmware_3.6.5-1_all_4gb.deb) +- Firmware(8GB):[axclhost-firmware_3.6.5-1_all_8gb.deb](https://dl.radxa.com/aicore/ax_m1/axclhost-firmware_3.6.5-1_all_8gb.deb) - Task:[task-axclhost_3.6.5-1_all.deb](https://dl.radxa.com/aicore/ax_m1/task-axclhost_3.6.5-1_all.deb) - ARM64(AArch64):[axcl_host_aarch64_V3.6.5_20250908154509_NO4973.deb](https://dl.radxa.com/aicore/ax_m1/axcl_host_aarch64_V3.6.5_20250908154509_NO4973.deb) - X86 (AMD64):[axcl_host_x86_64_V3.6.5_20250908154509_NO4973.deb](https://dl.radxa.com/aicore/ax_m1/axcl_host_x86_64_V3.6.5_20250908154509_NO4973.deb) @@ -14,7 +15,8 @@ sidebar_position: 15 ## SPI Flash 固件 -- [spl_AX650_card_signed.bin](https://dl.radxa.com/aicore/ax_m1/spl_AX650_card_signed.bin) +- 4GB:[spl_AX650_card_signed_4gb.bin](https://dl.radxa.com/aicore/ax_m1/spl_AX650_card_signed_4gb.bin) +- 8GB:[spl_AX650_card_signed_8gb.bin](https://dl.radxa.com/aicore/ax_m1/spl_AX650_card_signed_8gb.bin) ## 参考文档 diff --git a/docs/aicore/ax-m1/getting-started/env_install.md b/docs/aicore/ax-m1/getting-started/env_install.md index bf37803ee..574d2c7ef 100644 --- a/docs/aicore/ax-m1/getting-started/env_install.md +++ b/docs/aicore/ax-m1/getting-started/env_install.md @@ -36,19 +36,33 @@ sudo apt install gcc linux-headers-$(uname -r) make - 安装 AXCL 驱动 -:::tip -驱动安装包在左侧资源汇总下载 -::: +访问 [资源汇总下载](https://docs.radxa.com/aicore/ax-m1/download) 页面下载所需的软件安装包,并将安装包放在同一目录下。请根据智核 AX-M1 的内存容量选择 4GB 或 8GB 版本。 + + + ```bash -sudo dpkg -i axclhost-firmware_3.6.5-1_all.deb +sudo dpkg -i axclhost-firmware_3.6.5-1_all_4gb.deb sudo dpkg -i task-axclhost_3.6.5-1_all.deb sudo dpkg -i axclhost-dkms_3.6.5-1_all.deb sudo systemctl restart systemd-modules-load ``` + + + +```bash +sudo dpkg -i axclhost-firmware_3.6.5-1_all_8gb.deb +sudo dpkg -i task-axclhost_3.6.5-1_all.deb +sudo dpkg -i axclhost-dkms_3.6.5-1_all.deb +sudo systemctl restart systemd-modules-load +``` + + + + - 验证安装 diff --git a/docs/aicore/ax-m1/getting-started/spi-flash.md b/docs/aicore/ax-m1/getting-started/spi-flash.md index 63ac3d047..8f0e41de5 100644 --- a/docs/aicore/ax-m1/getting-started/spi-flash.md +++ b/docs/aicore/ax-m1/getting-started/spi-flash.md @@ -13,12 +13,29 @@ sidebar_position: 5 ## 安装软件 -访问 [资源汇总下载](../download.md) 页面下载所需的软件安装包,并将安装包放在同一目录下。 +访问 [资源汇总下载](../download.md) 页面下载所需的软件安装包,并将安装包放在同一目录下。请根据智核 AX-M1 的实际内存容量选择对应版本。 + + + + + + +```bash +sudo dpkg -i axclhost-firmware_3.6.5-1_all_4gb.deb +sudo dpkg -i task-axclhost_3.6.5-1_all.deb +sudo dpkg -i axclhost-dkms_3.6.5-1_all.deb +sudo systemctl restart systemd-modules-load +``` + + + + + ```bash -sudo dpkg -i axclhost-firmware_3.6.5-1_all.deb +sudo dpkg -i axclhost-firmware_3.6.5-1_all_8gb.deb sudo dpkg -i task-axclhost_3.6.5-1_all.deb sudo dpkg -i axclhost-dkms_3.6.5-1_all.deb sudo systemctl restart systemd-modules-load @@ -26,6 +43,9 @@ sudo systemctl restart systemd-modules-load + + + ## 识别设备 验证主板是否识别到智核 AX-M1 的 SPI Flash 设备节点。 @@ -42,16 +62,33 @@ axcl-smi sh "ls /dev/mtd0" ## 升级固件 -访问 [资源汇总下载](../download.md) 页面下载对应的 SPI Flash 固件文件,并确认固件文件名与命令参数一致。 +访问 [资源汇总下载](../download.md) 页面下载对应的 SPI Flash 固件文件,并确认固件文件名与命令参数一致。请选择与智核 AX-M1 内存容量匹配的固件。 + + + ```bash -axcl_spl_update -i spl_AX650_card_signed.bin -d 0 +axcl_spl_update -i spl_AX650_card_signed_4gb.bin -d 0 ``` + + + + + +```bash +axcl_spl_update -i spl_AX650_card_signed_8gb.bin -d 0 +``` + + + + + + 其中 `-d 0` 表示选择编号为 0 的设备。 ## 升级后验证 diff --git a/i18n/en/docusaurus-plugin-content-docs/current/aicore/ax-m1/download.md b/i18n/en/docusaurus-plugin-content-docs/current/aicore/ax-m1/download.md index bd9f27364..2b6c1e1f7 100644 --- a/i18n/en/docusaurus-plugin-content-docs/current/aicore/ax-m1/download.md +++ b/i18n/en/docusaurus-plugin-content-docs/current/aicore/ax-m1/download.md @@ -6,7 +6,8 @@ sidebar_position: 15 ## AXCL driver packages -- Firmware: [axclhost-firmware_3.6.5-1_all.deb](https://dl.radxa.com/aicore/ax_m1/axclhost-firmware_3.6.5-1_all.deb) +- Firmware (4GB): [axclhost-firmware_3.6.5-1_all_4gb.deb](https://dl.radxa.com/aicore/ax_m1/axclhost-firmware_3.6.5-1_all_4gb.deb) +- Firmware (8GB): [axclhost-firmware_3.6.5-1_all_8gb.deb](https://dl.radxa.com/aicore/ax_m1/axclhost-firmware_3.6.5-1_all_8gb.deb) - Task: [task-axclhost_3.6.5-1_all.deb](https://dl.radxa.com/aicore/ax_m1/task-axclhost_3.6.5-1_all.deb) - ARM64 (AArch64): [axcl_host_aarch64_V3.6.5_20250908154509_NO4973.deb](https://dl.radxa.com/aicore/ax_m1/axcl_host_aarch64_V3.6.5_20250908154509_NO4973.deb) - x86 (AMD64): [axcl_host_x86_64_V3.6.5_20250908154509_NO4973.deb](https://dl.radxa.com/aicore/ax_m1/axcl_host_x86_64_V3.6.5_20250908154509_NO4973.deb) @@ -14,7 +15,8 @@ sidebar_position: 15 ## SPI Flash firmware -- [spl_AX650_card_signed.bin](https://dl.radxa.com/aicore/ax_m1/spl_AX650_card_signed.bin) +- 4GB: [spl_AX650_card_signed_4gb.bin](https://dl.radxa.com/aicore/ax_m1/spl_AX650_card_signed_4gb.bin) +- 8GB: [spl_AX650_card_signed_8gb.bin](https://dl.radxa.com/aicore/ax_m1/spl_AX650_card_signed_8gb.bin) ## Reference documents diff --git a/i18n/en/docusaurus-plugin-content-docs/current/aicore/ax-m1/getting-started/env_install.md b/i18n/en/docusaurus-plugin-content-docs/current/aicore/ax-m1/getting-started/env_install.md index 35398934a..155b12a93 100644 --- a/i18n/en/docusaurus-plugin-content-docs/current/aicore/ax-m1/getting-started/env_install.md +++ b/i18n/en/docusaurus-plugin-content-docs/current/aicore/ax-m1/getting-started/env_install.md @@ -36,19 +36,33 @@ sudo apt install gcc linux-headers-$(uname -r) make - Install the AXCL driver -:::tip -Download the driver package from the resources section on the left panel. -::: +Go to the [Downloads](https://docs.radxa.com/aicore/ax-m1/download) page to download the required software packages, and place them in the same directory. Choose the 4GB or 8GB version according to the memory capacity of your Radxa AICore AX-M1. + + + ```bash -sudo dpkg -i axclhost-firmware_3.6.5-1_all.deb +sudo dpkg -i axclhost-firmware_3.6.5-1_all_4gb.deb sudo dpkg -i task-axclhost_3.6.5-1_all.deb sudo dpkg -i axclhost-dkms_3.6.5-1_all.deb sudo systemctl restart systemd-modules-load ``` + + + +```bash +sudo dpkg -i axclhost-firmware_3.6.5-1_all_8gb.deb +sudo dpkg -i task-axclhost_3.6.5-1_all.deb +sudo dpkg -i axclhost-dkms_3.6.5-1_all.deb +sudo systemctl restart systemd-modules-load +``` + + + + - Verify the installation diff --git a/i18n/en/docusaurus-plugin-content-docs/current/aicore/ax-m1/getting-started/spi-flash.md b/i18n/en/docusaurus-plugin-content-docs/current/aicore/ax-m1/getting-started/spi-flash.md index 1aefce824..98a3b911b 100644 --- a/i18n/en/docusaurus-plugin-content-docs/current/aicore/ax-m1/getting-started/spi-flash.md +++ b/i18n/en/docusaurus-plugin-content-docs/current/aicore/ax-m1/getting-started/spi-flash.md @@ -13,12 +13,29 @@ Update the SPI Flash firmware of Radxa AICore AX-M1 from the host board. ## Install software -Go to the [Downloads](../download.md) page to download the required software packages, and place them in the same directory. +Go to the [Downloads](../download.md) page to download the required software packages, and place them in the same directory. Choose the version that matches the memory capacity of your Radxa AICore AX-M1. + + + + + + +```bash +sudo dpkg -i axclhost-firmware_3.6.5-1_all_4gb.deb +sudo dpkg -i task-axclhost_3.6.5-1_all.deb +sudo dpkg -i axclhost-dkms_3.6.5-1_all.deb +sudo systemctl restart systemd-modules-load +``` + + + + + ```bash -sudo dpkg -i axclhost-firmware_3.6.5-1_all.deb +sudo dpkg -i axclhost-firmware_3.6.5-1_all_8gb.deb sudo dpkg -i task-axclhost_3.6.5-1_all.deb sudo dpkg -i axclhost-dkms_3.6.5-1_all.deb sudo systemctl restart systemd-modules-load @@ -26,6 +43,9 @@ sudo systemctl restart systemd-modules-load + + + ## Detect the device Verify that the host recognizes the SPI Flash device node of Radxa AICore AX-M1. @@ -42,16 +62,33 @@ If the output shows that `/dev/mtd0` exists, the device node is present. ## Update firmware -Go to the [Downloads](../download.md) page to download the SPI Flash firmware file, and make sure the firmware filename matches the command arguments. +Go to the [Downloads](../download.md) page to download the SPI Flash firmware file, and make sure the firmware filename matches the command arguments. Choose the firmware that matches the memory capacity of your Radxa AICore AX-M1. + + + ```bash -axcl_spl_update -i spl_AX650_card_signed.bin -d 0 +axcl_spl_update -i spl_AX650_card_signed_4gb.bin -d 0 ``` + + + + + +```bash +axcl_spl_update -i spl_AX650_card_signed_8gb.bin -d 0 +``` + + + + + + `-d 0` selects the device with index 0. ## Post-update verification