Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
E
elphel-init
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Elphel
elphel-init
Commits
360cb1a1
Commit
360cb1a1
authored
Oct 25, 2018
by
Oleg Dzhimiev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added interfaces generation to makefile
parent
a268273f
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
6 deletions
+16
-6
Makefile
src/Makefile
+15
-5
generate_default_network_interfaces.py
src/generate_default_network_interfaces.py
+1
-1
No files found.
src/Makefile
View file @
360cb1a1
...
...
@@ -8,10 +8,14 @@ STATEDIR = $(DESTDIR)/var/volatile/state
STATELINK
=
$(DESTDIR)
/var/state
LINK
=
ln
NETWORKDIR
=
$(DESTDIR)
/etc/network
PYTHON
=
python
OWN
=
-o
root
-g
root
INSTALL
=
install
INSTMODE
=
0755
INSTDOCS
=
0644
SCRIPT1
=
init_elphel393.py
SCRIPT2
=
init_elphel393
...
...
@@ -23,6 +27,8 @@ SCRIPT2=init_elphel393
all
:
@
echo
"make all in src"
# expect a file: generated/interfaces
$(PYTHON)
generate_default_network_interfaces.py
$(REMOTE_IP)
$(REMOTE_NETMASK)
$(REMOTE_GATEWAY)
install
:
@
echo
"make install in src"
...
...
@@ -62,5 +68,9 @@ install:
$(INSTALL)
$(OWN)
-d
$(STATEDIR)
$(LINK)
-s
-r
$(STATEDIR)
$(STATELINK)
# install src/interfaces to /etc/network/interfaces
$(INSTALL)
$(OWN)
-d
$(NETWORKDIR)
$(INSTALL)
$(OWN)
-m
$(INSTDOCS)
generated/interfaces
$(NETWORKDIR)/interfaces
clean
:
@
echo
"make clean in src"
src/generate_default_network_interfaces.py
View file @
360cb1a1
...
...
@@ -31,7 +31,7 @@ from __future__ import print_function
'''
__copyright__
=
"Copyright (C) 2018 Elphel, Inc."
__license__
=
"GPL-3.0
+
"
__license__
=
"GPL-3.0
-or-later
"
__maintainer__
=
"Oleg Dzhimiev"
__email__
=
"oleg@elphel.com"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment