hwguyturnsw / STM32MP157A-DK1

Buildroot for STM32MP157A-DK1 development kit.
GNU General Public License v2.0
0 stars 0 forks source link

USB devices not defined #2

Closed hwguyturnsw closed 2 years ago

hwguyturnsw commented 3 years ago

USB devices will not auto mount to system.

hwguyturnsw commented 2 years ago

From changelog: -Make udev rules in overlay etc folder for automounting usb disks to /media/drive (Issue #2.) - This did not work.

hwguyturnsw commented 2 years ago

Added usbmount package to buildroot. USB devices are recognized and should be mounted but aren't. I'm having a hard time with this issue. Still working on it.

hwguyturnsw commented 2 years ago

Followed the instructions on this page: https://bootlin.com/blog/building-a-linux-system-for-the-stm32mp1-remote-firmware-updates/

Section: Add USB storage support

This should give Linux the capability to handle USB drives with FAT, EXT4, NTFS, and exFAT support.

hwguyturnsw commented 2 years ago

Enable the CONFIG_SCSI option. This is a requirement for USB mass storage support Enable the CONFIG_BLK_DEV_SD option, needed for SCSI disk support, which is another requirement for USB mass storage. Enable the CONFIG_USB_STORAGE option. The CONFIG_VFAT_FS option, to support the FAT filesystem, is already enabled. Enable the CONFIG_NLS_CODEPAGE_437 and CONFIG_NLS_ISO8859_1 options, to have the necessary support to decode filenames in the FAT filesystem.

hwguyturnsw commented 2 years ago

USB is finally working.