Skip to content

Commit

Permalink
rename loader to src
Browse files Browse the repository at this point in the history
diff --git a/.gitattributes b/.gitattributes
new file mode 100644
index 0000000..f65c05d
--- /dev/null
+++ b/.gitattributes
@@ -0,0 +1,2 @@
+# use crlf line endings on all platforms
+* text=auto eol=crlf
\ No newline at end of file
diff --git a/CMakeLists.txt b/CMakeLists.txt
index eeccf0b..df45dc3 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -14,4 +14,4 @@ endif()
 set(CPM_SOURCE_CACHE "${CMAKE_SOURCE_DIR}/.cache/cpm")
 include(cmake/CPM.cmake)

-add_subdirectory(loader)
\ No newline at end of file
+add_subdirectory(src)
\ No newline at end of file
diff --git a/loader/CMakeLists.txt b/src/CMakeLists.txt
similarity index 100%
rename from loader/CMakeLists.txt
rename to src/CMakeLists.txt
diff --git a/loader/driver/CMakeLists.txt b/src/driver/CMakeLists.txt
similarity index 100%
rename from loader/driver/CMakeLists.txt
rename to src/driver/CMakeLists.txt
diff --git a/loader/driver/driver.c b/src/driver/driver.c
similarity index 100%
rename from loader/driver/driver.c
rename to src/driver/driver.c
diff --git a/loader/driver/driver.h b/src/driver/driver.h
similarity index 100%
rename from loader/driver/driver.h
rename to src/driver/driver.h
diff --git a/loader/driver/imports.h b/src/driver/imports.h
similarity index 100%
rename from loader/driver/imports.h
rename to src/driver/imports.h
diff --git a/loader/driver/memory.c b/src/driver/memory.c
similarity index 100%
rename from loader/driver/memory.c
rename to src/driver/memory.c
diff --git a/loader/driver/memory.h b/src/driver/memory.h
similarity index 100%
rename from loader/driver/memory.h
rename to src/driver/memory.h
diff --git a/loader/driver/thread.c b/src/driver/thread.c
similarity index 100%
rename from loader/driver/thread.c
rename to src/driver/thread.c
diff --git a/loader/driver/thread.h b/src/driver/thread.h
similarity index 100%
rename from loader/driver/thread.h
rename to src/driver/thread.h
diff --git a/loader/driver_interface/CMakeLists.txt b/src/driver_interface/CMakeLists.txt
similarity index 100%
rename from loader/driver_interface/CMakeLists.txt
rename to src/driver_interface/CMakeLists.txt
diff --git a/loader/driver_interface/driver_interface.cpp b/src/driver_interface/driver_interface.cpp
similarity index 100%
rename from loader/driver_interface/driver_interface.cpp
rename to src/driver_interface/driver_interface.cpp
diff --git a/loader/driver_interface/driver_interface.h b/src/driver_interface/driver_interface.h
similarity index 100%
rename from loader/driver_interface/driver_interface.h
rename to src/driver_interface/driver_interface.h
diff --git a/loader/encoder/CMakeLists.txt b/src/encoder/CMakeLists.txt
similarity index 100%
rename from loader/encoder/CMakeLists.txt
rename to src/encoder/CMakeLists.txt
diff --git a/loader/encoder/fumo_encoder.cpp b/src/encoder/fumo_encoder.cpp
similarity index 100%
rename from loader/encoder/fumo_encoder.cpp
rename to src/encoder/fumo_encoder.cpp
diff --git a/loader/include/bootstrap.h b/src/include/bootstrap.h
similarity index 100%
rename from loader/include/bootstrap.h
rename to src/include/bootstrap.h
diff --git a/loader/include/fomo_common.h b/src/include/fomo_common.h
similarity index 100%
rename from loader/include/fomo_common.h
rename to src/include/fomo_common.h
diff --git a/loader/include/util.h b/src/include/util.h
similarity index 100%
rename from loader/include/util.h
rename to src/include/util.h
diff --git a/loader/initial_loader/CMakeLists.txt b/src/initial_loader/CMakeLists.txt
similarity index 100%
rename from loader/initial_loader/CMakeLists.txt
rename to src/initial_loader/CMakeLists.txt
diff --git a/loader/initial_loader/extract_lib.bat b/src/initial_loader/extract_lib.bat
similarity index 100%
rename from loader/initial_loader/extract_lib.bat
rename to src/initial_loader/extract_lib.bat
diff --git a/loader/initial_loader/initial_loader.cpp b/src/initial_loader/initial_loader.cpp
similarity index 100%
rename from loader/initial_loader/initial_loader.cpp
rename to src/initial_loader/initial_loader.cpp
diff --git a/loader/pe_generator/CMakeLists.txt b/src/pe_generator/CMakeLists.txt
similarity index 100%
rename from loader/pe_generator/CMakeLists.txt
rename to src/pe_generator/CMakeLists.txt
diff --git a/loader/pe_generator/pe_generator.cpp b/src/pe_generator/pe_generator.cpp
similarity index 100%
rename from loader/pe_generator/pe_generator.cpp
rename to src/pe_generator/pe_generator.cpp
diff --git a/loader/rsource_generator/CMakeLists.txt b/src/rsource_generator/CMakeLists.txt
similarity index 100%
rename from loader/rsource_generator/CMakeLists.txt
rename to src/rsource_generator/CMakeLists.txt
diff --git a/loader/rsource_generator/rsource_generator.cpp b/src/rsource_generator/rsource_generator.cpp
similarity index 100%
rename from loader/rsource_generator/rsource_generator.cpp
rename to src/rsource_generator/rsource_generator.cpp
diff --git a/loader/shellcode_extractor/CMakeLists.txt b/src/shellcode_extractor/CMakeLists.txt
similarity index 100%
rename from loader/shellcode_extractor/CMakeLists.txt
rename to src/shellcode_extractor/CMakeLists.txt
diff --git a/loader/shellcode_extractor/shellcode_extractor.cpp b/src/shellcode_extractor/shellcode_extractor.cpp
similarity index 100%
rename from loader/shellcode_extractor/shellcode_extractor.cpp
rename to src/shellcode_extractor/shellcode_extractor.cpp
diff --git a/loader/stage1/CMakeLists.txt b/src/stage1/CMakeLists.txt
similarity index 100%
rename from loader/stage1/CMakeLists.txt
rename to src/stage1/CMakeLists.txt
diff --git a/loader/stage1/fumo_preloader.cpp b/src/stage1/fumo_preloader.cpp
similarity index 100%
rename from loader/stage1/fumo_preloader.cpp
rename to src/stage1/fumo_preloader.cpp
diff --git a/loader/stage1/fumo_preloader.h b/src/stage1/fumo_preloader.h
similarity index 100%
rename from loader/stage1/fumo_preloader.h
rename to src/stage1/fumo_preloader.h
diff --git a/loader/stage1/stage1.cpp b/src/stage1/stage1.cpp
similarity index 100%
rename from loader/stage1/stage1.cpp
rename to src/stage1/stage1.cpp
diff --git a/loader/stage2/CMakeLists.txt b/src/stage2/CMakeLists.txt
similarity index 100%
rename from loader/stage2/CMakeLists.txt
rename to src/stage2/CMakeLists.txt
diff --git a/loader/stage2/fumo_loader.cpp b/src/stage2/fumo_loader.cpp
similarity index 100%
rename from loader/stage2/fumo_loader.cpp
rename to src/stage2/fumo_loader.cpp
diff --git a/loader/stage2/fumo_loader.h b/src/stage2/fumo_loader.h
similarity index 100%
rename from loader/stage2/fumo_loader.h
rename to src/stage2/fumo_loader.h
diff --git a/loader/stage2/stage2.cpp b/src/stage2/stage2.cpp
similarity index 100%
rename from loader/stage2/stage2.cpp
rename to src/stage2/stage2.cpp
diff --git a/loader/stage2/stage2.h b/src/stage2/stage2.h
similarity index 100%
rename from loader/stage2/stage2.h
rename to src/stage2/stage2.h
diff --git a/loader/stage2/tray_icon.cpp b/src/stage2/tray_icon.cpp
similarity index 100%
rename from loader/stage2/tray_icon.cpp
rename to src/stage2/tray_icon.cpp
diff --git a/loader/stage2/tray_icon.h b/src/stage2/tray_icon.h
similarity index 100%
rename from loader/stage2/tray_icon.h
rename to src/stage2/tray_icon.h
  • Loading branch information
dumbasPL committed Sep 29, 2023
1 parent ae00bb2 commit 146feb1
Show file tree
Hide file tree
Showing 39 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# use crlf line endings on all platforms
* text=auto eol=crlf
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ endif()
set(CPM_SOURCE_CACHE "${CMAKE_SOURCE_DIR}/.cache/cpm")
include(cmake/CPM.cmake)

add_subdirectory(loader)
add_subdirectory(src)
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 146feb1

Please sign in to comment.