-
Notifications
You must be signed in to change notification settings - Fork 5
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
warning shown as error in mkfs.vfat command, should be ignored. #8
Comments
Thanks for raising this @dirksavage88, can you paste in here the actual full error you're getting? |
|
Mmmm that doesn't tell me much, sorry. This is working fine in my development environment so I'll need to find a way to reproduce it so that I can debug it and fix it. Is there anything special about your dev. environment? Could you maybe try and add more information on the topic? |
I am running ubuntu 20.04 on a VM (virtualbox). There is nothing modified about the system, it's pretty standard. |
Thanks @dirksavage88, I don’t seem to be able to reproduce this in my Ubuntu 20.04 dev. machine. Do you think you could provide a Dockerfile that shows the issue in here so that I can debug it and fix it? @jasvinderkhurana have you or anyone in the team experienced this? |
Hi, I am having the same problem as @dirksavage88 , I am running,
Inside the docker installing
And then installing KRS as pointed out in https://xilinx.github.io/KRS/sphinx/build/html/docs/install.html I am trying the ROS 2 publisher example, and I get:
Is this
And I am not able to create the sd card. How did you fix this? |
Installing the next packages it starts to create the image
but I have the next error related to losetup,
|
After installing
I am able to create the image
I am not seeing the |
Hello there!
By just modifing boot with his upper letter version sudo mkfs.vfat -F 32 -n BOOT /dev/mapper/diskimage1 |
This warning message flags as an error on my system: "mkfs.fat: warning - lowercase labels might not work properly with DOS or Windows" when trying to build an sd card image using command colcon acceleration linux vanilla --install-dir install-kv260
https://github.com/ros-acceleration/colcon-acceleration/blob/adfc44d0ea37a3df43743e635195548a6b5123b6/colcon_acceleration/subverb/linux.py#L427-L446
Build fails and the SD card img is generated, but does not get past u-boot menu. Temporary fix below and I am able to generate the image and run the vadd publisher example on the kv260.
I have fixed the issue on my end with an if/else:
warning_msg = "warning"
if warning_msg in errs:
pass
else:
sys.exit(1)
But I wonder if the bash script can ignore the warning instead of reporting as an error, this would be a better solution.
The text was updated successfully, but these errors were encountered: