-
Notifications
You must be signed in to change notification settings - Fork 56
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
在k210上启动时提示“not FAT32 volume”,请问如何解决该问题? #14
Comments
On Mon, 03 May 2021 08:22:57 -0700 R1pTheJacker ***@***.***> wrote:
![image](https://user-images.githubusercontent.com/61656773/116895797-23ab4280-ac66-11eb-936e-dc61748a50f3.png)
上一步已按照README中make sdcard在sd卡中写入了文件镜像
从图片上来看可能是SD卡上的FAT32文件系统不正确。这或许是由于SD卡上存在多个文件分区(Partition)导致的。
可以尝试如下命令将整张SD卡格式化为FAT32文件系统(Linux系统下)
mkfs.fat -F32 /dev/sdX
其中,`/dev/sdX`为SD卡所对应设备。此举在于确保SD卡下只存在唯一的FAT32文件分区。
进一步的,可以尝试在`kernel/fat32.c`中的`fat32_init()`函数中通过`printf()`打印一些调试信息以便进定位问题。
|
这样的话应该还是分区的问题,能出现 |
感谢,删除分区表后运行成功。 |
请问,可以告知是如何删除分区表的么?是借助哪个软件或是哪个命令。谢谢 |
我看到了另外一个方法,因为我使用的是wsl,没有界面只能用命令行 |
上一步已按照README中make sdcard在sd卡中写入了文件镜像
The text was updated successfully, but these errors were encountered: