btrfs_shell: Move from src/tools to src/tests/...

src/tools is for tools used in the build or other miscellaneous utilites
that go along with Haiku itself. btrfs is, at least for now, just another
filesystem addon, so its shell should live here with all the others.
No functional change intended.
This commit is contained in:
Augustin Cavalier 2018-08-12 23:21:14 -04:00
parent 52de96da04
commit e3db3bf84e
7 changed files with 5 additions and 3 deletions

View File

@ -1,6 +1,7 @@
SubDir HAIKU_TOP src tests add-ons kernel file_systems ; SubDir HAIKU_TOP src tests add-ons kernel file_systems ;
HaikuSubInclude bfs ; HaikuSubInclude bfs ;
HaikuSubInclude btrfs ;
HaikuSubInclude cdda ; HaikuSubInclude cdda ;
HaikuSubInclude consistency_check ; HaikuSubInclude consistency_check ;
HaikuSubInclude fs_shell ; HaikuSubInclude fs_shell ;

View File

@ -0,0 +1,3 @@
SubDir HAIKU_TOP src tests add-ons kernel file_systems btrfs ;
SubInclude HAIKU_TOP src tests add-ons kernel file_systems btrfs btrfs_shell ;

View File

@ -1,4 +1,4 @@
SubDir HAIKU_TOP src tools btrfs_shell ; SubDir HAIKU_TOP src tests add-ons kernel file_systems btrfs btrfs_shell ;
SEARCH_SOURCE += [ FDirName $(HAIKU_TOP) src add-ons kernel file_systems btrfs ] ; SEARCH_SOURCE += [ FDirName $(HAIKU_TOP) src add-ons kernel file_systems btrfs ] ;
@ -8,7 +8,6 @@ DEFINES += HAIKU_BUILD_COMPATIBILITY_H ;
# set some additional defines # set some additional defines
{ {
local defines = local defines =
#BTRFS_BIG_ENDIAN_ONLY
FS_SHELL FS_SHELL
TRACE_BTRFS # ENABLE DEBUGGING TRACE_BTRFS # ENABLE DEBUGGING
; ;

View File

@ -88,7 +88,6 @@ SEARCH on [ FGristFiles
SubInclude HAIKU_TOP src tools addattr ; SubInclude HAIKU_TOP src tools addattr ;
SubInclude HAIKU_TOP src tools anyboot ; SubInclude HAIKU_TOP src tools anyboot ;
SubInclude HAIKU_TOP src tools bfs_shell ; SubInclude HAIKU_TOP src tools bfs_shell ;
SubInclude HAIKU_TOP src tools btrfs_shell ;
SubInclude HAIKU_TOP src tools cppunit ; SubInclude HAIKU_TOP src tools cppunit ;
SubInclude HAIKU_TOP src tools create_repository_config ; SubInclude HAIKU_TOP src tools create_repository_config ;
SubInclude HAIKU_TOP src tools elfsymbolpatcher ; SubInclude HAIKU_TOP src tools elfsymbolpatcher ;