fs_cfg.h 1.3 KB

12345678910111213141516171819202122232425262728
  1. /**
  2. ***********************************************************************************************************************
  3. * Copyright (c) 2019-2029, ZeusOS Team
  4. *
  5. * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with
  6. * the License. You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on
  11. * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
  12. * specific language governing permissions and limitations under the License.
  13. *
  14. * @file fs_cfg.c
  15. *
  16. * @brief filesystem auto mount definition
  17. *
  18. * @revision
  19. * Date Author Notes
  20. * 2024-03-01 ZeusOS Team Add ZeusOS adaptation layer
  21. ***********************************************************************************************************************
  22. */
  23. #include "vfs.h"
  24. const struct vfs_mountinfo fs_mount_info[] = {
  25. /* point, part, fs_type, auto_format */
  26. { "/", "filesystem", "littlefs", 1},
  27. // { "/ef", "easyflash", "littlefs", 1},
  28. };