Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
os
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
11
Issues
11
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Packages
Packages
Container Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
projectx
os
Compare Revisions
94a68f4ec6d629af19d493c40a6850d0a436aee8...517cc2f2e2cb5b837b2d6f5cc15d02372e503118
Source
517cc2f2e2cb5b837b2d6f5cc15d02372e503118
Select Git revision
...
Target
94a68f4ec6d629af19d493c40a6850d0a436aee8
Select Git revision
Compare
Commits (2)
Filter configuration out of the rpi3 zip.
· dd486e8c
Nolan
authored
May 10, 2019
dd486e8c
Add emacs/projectile compile support.
· 517cc2f2
Nolan
authored
May 10, 2019
517cc2f2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
1 deletion
+3
-1
.dir-locals.el
.dir-locals.el
+2
-0
Makefile
Makefile
+1
-1
No files found.
.dir-locals.el
0 → 100644
View file @
517cc2f2
((
nil
.
((
projectile-project-compilation-cmd
.
"make -j4 rpi3_zip"
)
)))
Makefile
View file @
517cc2f2
...
...
@@ -487,7 +487,7 @@ $(RPI3_ZIP): $(IMG_DEPS)
@
mkdir
-p
$(IMAGESDIR)
rm
-f
$(RPI3_ZIP)
cp
-r
$(
filter-out
$(IMGFSDIR)
/%,
$(IMG_DEPS)
)
$(IMGFSDIR)
(
cd
$(IMGFSDIR)
&&
zip
-r
$(RPI3_ZIP)
*
)
(
cd
$(IMGFSDIR)
&&
zip
-r
$(RPI3_ZIP)
*
-x
pairingkey wifi.txt
)
PHONY
+=
rpi3_zip_clean
rpi3_zip_clean
:
...
...