Skip to content
Navigation Menu
Sign in
Appearance settings
Platform
AI CODE CREATION
GitHub Copilot
Write better code with AI
GitHub Copilot app
Direct agents from issue to merge
MCP Registry
Integrate external tools
DEVELOPER WORKFLOWS
Actions
Automate any workflow
Codespaces
Instant dev environments
Issues
Plan and track work
Code Review
Manage code changes
Code Quality
Enforce quality at merge
APPLICATION SECURITY
GitHub Advanced Security
Find and fix vulnerabilities
Code security
Secure your code as you build
Secret protection
Stop leaks before they start
EXPLORE
Why GitHub
Documentation
Blog
Changelog
Marketplace
View all features
Solutions
BY COMPANY SIZE
Enterprises
Small and medium teams
Startups
Nonprofits
BY USE CASE
App Modernization
DevSecOps
DevOps
CI/CD
View all use cases
BY INDUSTRY
Healthcare
Financial services
Manufacturing
Government
View all industries
View all solutions
Resources
EXPLORE BY TOPIC
AI
Software Development
DevOps
Security
View all topics
EXPLORE BY TYPE
Customer stories
Events & webinars
Ebooks & reports
Business insights
GitHub Skills
SUPPORT & SERVICES
Documentation
Customer support
Community forum
Trust center
Partners
View all resources
Open Source
COMMUNITY
GitHub Sponsors
Fund open source developers
PROGRAMS
Security Lab
Maintainer Community
GitHub Stars
Archive Program
REPOSITORIES
Topics
Trending
Collections
Enterprise
ENTERPRISE SOLUTIONS
Enterprise platform
AI-powered developer platform
AVAILABLE ADD-ONS
GitHub Advanced Security
Enterprise-grade security features
Copilot for Business
Enterprise-grade AI features
Premium Support
Enterprise-grade 24/7 support
Pricing
Search
/
Sign in
Sign up
Appearance settings
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
Uh oh!
There was an error while loading.
Please reload this page
.
servalproject
/
lbard
Public
Notifications
You must be signed in to change notification settings
Fork
10
Star
1
Code
Issues
16
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Files
Expand file tree
master
Breadcrumbs
lbard
/
me.compile
Copy path
Blame
More file actions
Blame
More file actions
Latest commit
History
History
History
executable file
·
42 lines (32 loc) · 1.58 KB
master
Breadcrumbs
lbard
/
me.compile
Copy path
Top
File metadata and controls
Code
Blame
executable file
·
42 lines (32 loc) · 1.58 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#!
/bin/bash
owbox=serval@192.168.56.104
#
1. Push to github
git push origin MeshExtender2.0
#
2. Get commit ID, and update openwrt-packages Makefile
commit=
`
git log
|
head -1
|
cut -f2 -d
"
"
`
pushd
../openwrt-packages/net/serval-lbard
PKG_VERSION=START.
`
date +%Y%m%d.%H%M.%S
`
PKG_SOURCE_VERSION=
`
grep PKG_SOURCE_VERSION:= Makefile
|
cut -f2 -d=
`
if
[
"
$PKG_SOURCE_VERSION
"
==
"
$commit
"
]
;
then
echo
"
OpenWRT package is up to date
"
PKG_VERSION=
`
grep PKG_VERSION:= Makefile
|
cut -f2 -d=
`
else
PKG_RELEASE=
`
grep PKG_RELEASE:= Makefile
|
cut -f2 -d=
`
((
PKG_RELEASE
+=
1
))
cat Makefile
|
sed -e
"
s/^PKG_VERSION:=.*$/PKG_VERSION:=
${PKG_VERSION}
/
"
-e
"
s/^PKG_RELEASE:=.*$/PKG_RELEASE:=
${PKG_RELEASE}
/g
"
-e
"
s/^PKG_SOURCE_VERSION:=.*$/PKG_SOURCE_VERSION:=
${commit}
/
"
>
Makefile.tmp
cat Makefile.tmp
mv Makefile.tmp Makefile
git commit -m
"
Update serval-lbard
"
Makefile
fi
#
3. Push openwrt-packages to github
git push origin MeshExtender2.0
popd
#
4. ssh to openwrt build box, run up script, build
ssh
${owbox}
"
( cd o ; scripts/feeds update serval ; scripts/feeds install -a serval ; scripts/feeds install -p serval ; make V=99 package/serval-lbard/compile package/serval-lbard/install ; ls -l build_dir/target-mips_34kc_uClibc-0.9.33.2/serval-lbard-
${PKG_VERSION}
/ipkg-ar71xx/serval-lbard/usr/bin/lbard )
"
#
6. scp compiles binary from openwrt build box
if
[
-e
lbard.openwrt ]
;
then
rm lbard.openwrt
fi
scp
${owbox}
:o/build_dir/target-mips_34kc_uClibc-0.9.33.2/serval-lbard-
${PKG_VERSION}
/ipkg-ar71xx/serval-lbard/usr/bin/lbard lbard.openwrt
ls -l lbard.openwrt
strings lbard.openwrt
|
grep 2017
You can’t perform that action at this time.