diff --git a/.gitmodules b/.gitmodules
index 5f134ec3281e7e001942b02d0d1feb675d3cad28..e1c54eca5c81989879c56dccf3f3d97bb0d772f5 100644
--- a/.gitmodules
+++ b/.gitmodules
@@ -18,3 +18,11 @@
 	path = secworks-sha256
 	url = git@git.soton.ac.uk:soclabs/secworks-sha256.git
 	branch = main
+[submodule "$DESIGN_ROOT/accelerator-wrapper"]
+	branch = main
+[submodule "$DESIGN_ROOT/CHIPKIT"]
+	branch = main
+[submodule "$DESIGN_ROOT/nanosoc"]
+	branch = main
+[submodule "$DESIGN_ROOT/socsim"]
+	branch = main
diff --git a/set_env.sh b/set_env.sh
index 9d7f40209afbe30c4723ea4a9820ad5720f9427e..dc61db882173f6d9e6f0ffd3f142b97a7992ec68 100755
--- a/set_env.sh
+++ b/set_env.sh
@@ -10,7 +10,6 @@
 #-----------------------------------------------------------------------------
 #!/bin/bash
 
-echo "set_env root"
 # Get Root Location of Design Structure
 if [ -z $DESIGN_ROOT ]; then
     # If $DESIGN_ROOT hasn't been set yet
@@ -38,7 +37,6 @@ else
     # Source environment variables for all submodules
     for d in $SOC_TOP_DIR/* ; do
         if [ -e "$d/.git" ]; then
-            echo $d
             if [ -f "$d/set_env.sh" ]; then
             # If .git file exists - submodule
                 source $d/set_env.sh