1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

boards/same54-xpro: use default mount point

This commit is contained in:
Benjamin Valentin 2022-03-28 18:02:14 +02:00
parent 7ba58d4461
commit 2d352306ea

View File

@ -63,8 +63,8 @@ static mtd_at24cxxx_t at24mac_dev = {
mtd_dev_t *mtd1 = (mtd_dev_t *)&at24mac_dev;
#ifdef MODULE_VFS_DEFAULT
#include "fs/littlefs2_fs.h"
VFS_AUTO_MOUNT(littlefs2, VFS_MTD(same54_nor_dev), "/nvm", 0);
#include "vfs_default.h"
VFS_AUTO_MOUNT(littlefs2, VFS_MTD(same54_nor_dev), VFS_DEFAULT_NVM(0), 0);
#endif
#endif /* MODULE_MTD */