switched from fitpc/atom to prime/linux
Also removed a few old things that had nothing reasonable to be changed
to.
diff --git a/aos/linux_code/starter/starter.gyp b/aos/linux_code/starter/starter.gyp
new file mode 100644
index 0000000..2419b33
--- /dev/null
+++ b/aos/linux_code/starter/starter.gyp
@@ -0,0 +1,39 @@
+{
+ 'targets': [
+ {
+ 'target_name': 'netconsole',
+ 'type': 'executable',
+ 'sources': [
+ 'netconsole.cc',
+ ],
+ 'dependencies': [
+ '<(AOS)/build/aos.gyp:logging',
+ '<(AOS)/linux_code/linux_code.gyp:configuration',
+ '<(AOS)/common/common.gyp:util',
+ ],
+ },
+ {
+ 'target_name': 'starter_exe',
+ 'type': 'executable',
+ 'sources': [
+ 'starter.cc',
+ ],
+ 'dependencies': [
+ '<(AOS)/linux_code/linux_code.gyp:init',
+ '<(EXTERNALS):libevent',
+ '<(AOS)/build/aos.gyp:logging',
+ '<(AOS)/common/common.gyp:once',
+ '<(AOS)/common/common.gyp:time',
+ ],
+ 'copies': [
+ {
+ 'destination': '<(rsync_dir)',
+ 'files': [
+ 'starter.sh',
+ 'starter_loop.sh',
+ ],
+ },
+ ],
+ },
+ ],
+}