Skip to content

Commit

Permalink
board/rtl8730e: Add mount resource before audio and touch init.
Browse files Browse the repository at this point in the history
The init of audio or touch have read resource fs.
Therefore, Add mount resource before audio and touch init.

Signed-off-by: eunwoo.nam <[email protected]>
  • Loading branch information
ewoodev committed Dec 23, 2024
1 parent 9480d82 commit 10958bf
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions os/board/rtl8730e/src/rtl8730e_boot.c
Original file line number Diff line number Diff line change
Expand Up @@ -365,6 +365,12 @@ void amebasmart_mount_partitions(void)
automount_fs_partition(&partinfo);
#endif
#endif /* end of CONFIG_SECOND_FLASH_PARTITION */

#ifdef CONFIG_RESOURCE_FS
if (binary_manager_mount_resource() != OK) {
lldbg("ERROR: Failed to mount resource\n");
}
#endif
}

#ifdef CONFIG_FTL_ENABLED
Expand Down

0 comments on commit 10958bf

Please sign in to comment.