switched from fitpc/atom to prime/linux

Also removed a few old things that had nothing reasonable to be changed
to.
diff --git a/vision/BinaryServer.cpp b/vision/BinaryServer.cpp
index 18cf85b..c21a8b3 100644
--- a/vision/BinaryServer.cpp
+++ b/vision/BinaryServer.cpp
@@ -12,7 +12,7 @@
 #include <arpa/inet.h>
 
 #include "aos/externals/libjpeg/include/jpeglib.h"
-#include "aos/atom_code/camera/Buffers.h"
+#include "aos/linux_code/camera/Buffers.h"
 #include "aos/common/time.h"
 
 namespace frc971 {
diff --git a/vision/GoalMaster.cpp b/vision/GoalMaster.cpp
index 5c8fad8..8bf1aba 100644
--- a/vision/GoalMaster.cpp
+++ b/vision/GoalMaster.cpp
@@ -1,7 +1,7 @@
 #include "math.h"
 
 #include "aos/common/time.h"
-#include "aos/atom_code/init.h"
+#include "aos/linux_code/init.h"
 #include "aos/common/logging/logging.h"
 
 #include "frc971/queues/GyroAngle.q.h"
diff --git a/vision/OpenCVWorkTask.cpp b/vision/OpenCVWorkTask.cpp
index 8fc11eb..982d670 100644
--- a/vision/OpenCVWorkTask.cpp
+++ b/vision/OpenCVWorkTask.cpp
@@ -14,8 +14,8 @@
 #include "libjpeg/include/jpeglib.h"
 
 #include "aos/common/time.h"
-#include "aos/atom_code/camera/Buffers.h"
-#include "aos/atom_code/init.h"
+#include "aos/linux_code/camera/Buffers.h"
+#include "aos/linux_code/init.h"
 #include "aos/common/logging/logging.h"
 
 #include "vision/OpenCVWorkTask.h"
diff --git a/vision/vision.gyp b/vision/vision.gyp
index df27045..81e5562 100644
--- a/vision/vision.gyp
+++ b/vision/vision.gyp
@@ -11,12 +11,12 @@
         'JPEGRoutines.cpp',
       ],
       'dependencies': [
-        '<(AOS)/atom_code/atom_code.gyp:init',
+        '<(AOS)/linux_code/linux_code.gyp:init',
         '<(AOS)/common/common.gyp:time',
         '<(EXTERNALS):libevent',
         '<(EXTERNALS):libjpeg',
         '<(EXTERNALS):opencv',
-        '<(AOS)/atom_code/camera/camera.gyp:buffers',
+        '<(AOS)/linux_code/camera/camera.gyp:buffers',
         '<(DEPTH)/frc971/queues/queues.gyp:queues',
       ],
     },
@@ -28,7 +28,7 @@
         'SensorProcessor.cpp',
       ],
       'dependencies': [
-        '<(AOS)/atom_code/atom_code.gyp:init',
+        '<(AOS)/linux_code/linux_code.gyp:init',
         '<(AOS)/common/common.gyp:time',
         '<(DEPTH)/frc971/queues/queues.gyp:queues',
         '<(AOS)/build/aos.gyp:logging',