Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions app/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ cmake_minimum_required(VERSION 3.20.0)
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
project(OpenAstroFirmware)

zephyr_syscall_include_directories(include)
zephyr_include_directories(include)
add_subdirectory_ifdef(CONFIG_MOUNT src/mount)

add_subdirectory(src)
target_sources(app PRIVATE src/main.cpp)
4 changes: 0 additions & 4 deletions app/src/CMakeLists.txt

This file was deleted.

1 change: 1 addition & 0 deletions app/src/mount/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
zephyr_library_sources(Mount.cpp)
8 changes: 6 additions & 2 deletions app/src/mount/Kconfig
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
menu "Mount"
menuconfig MOUNT
bool "Mount"
default y

if MOUNT

config MOUNT_THREAD_STACK_SIZE
hex "Mount stack size"
Expand All @@ -11,4 +15,4 @@ module = MOUNT
module-str = mount
source "subsys/logging/Kconfig.template.log_config"

endmenu
endif
File renamed without changes.
Loading