-
Notifications
You must be signed in to change notification settings - Fork 21
Major Revision #7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
digital-dev
wants to merge
14
commits into
mdrjr:master
Choose a base branch
from
digital-dev:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 1 commit
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
01482d7
Initial Change Commit
digital-dev 39e682f
Update Documentation
digital-dev c346d05
Update
digital-dev dda1d2a
Fix Network Interface Detection
digital-dev 79f7bf5
Removed Deprecated
digital-dev 7dfcafa
Update Documentation
digital-dev 35134be
Revert "Update Documentation"
digital-dev d432bbb
Update README.md
digital-dev 44f28da
update
digital-dev 0105af5
Merge branch 'master' of https://github.com/digital-dev/cloudshell_lcd
digital-dev 505fe64
update
digital-dev 13f7404
Create Contribution Guidelines and added Licensing
digital-dev af7be3d
Created Code of Conduct
digital-dev d41716f
Update cloudshell
digital-dev File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,2 @@ | ||
|
|
||
| cloudshell_lcd.7z |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,8 +1,32 @@ | ||
| #!/bin/bash | ||
| # Remove old files | ||
| if [ -f *.deb ]; then | ||
| rm ./*.deb | ||
| fi | ||
| if [ -f *.tgz ]; then | ||
| rm ./*.tgz | ||
| fi | ||
| # Check for, and install missing dependencies | ||
| required=(checkinstall build-essential software-properties-common samba samba-common rpm curl gawk bc sysstat) | ||
| findmissing() { | ||
| for i in "$@"; do | ||
| checkinstalled=$(apt-cache policy "$i" | grep Installed | awk '{print $2}' | tr -d "()") > /dev/null | ||
| if [ "${checkinstalled}" = "none" ]; then | ||
| echo "$i " >> ./missing.deps | ||
| fi | ||
| done | ||
| } | ||
| getmissing() { | ||
| missing=$(cat missing.deps) | ||
| apt install ${missing[@]} | ||
| } | ||
| echo -e "Finding and installing missing dependencies.\n" | ||
| findmissing "${required[@]}" && getmissing | ||
| rm ./missing.deps | ||
|
|
||
| MAINTAINER="mauro.ribeiro@hardkernel.com" | ||
|
|
||
| PKGVER=`date +%Y%m%d` | ||
| GITREV=`git rev-parse --short HEAD` | ||
| PKGVER=$(date +%Y%m%d) | ||
| GITREV=$(git rev-parse --short HEAD) | ||
|
|
||
| checkinstall --pkgname="cloudshell_lcd" --pkgversion="$PKGVER" -A armhf --maintainer=\"$MAINTAINER\" --pkggroup="other" --pkglicense="GPLv2" --requires="curl,sysstat" --nodoc -y -d2 --pkgrelease="3" -D | ||
|
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,11 @@ | ||
| # cloudshell_lcd | ||
| ODROID-XU4 Cloudshell LCD Informations for Server | ||
|
|
||
| Installation: | ||
|
|
||
| wget https://raw.githubusercontent.com/mdrjr/cloudshell_lcd/master/cloudshell-lcd_20150731-2_armhf.deb | ||
|
|
||
| sudo dpkg -i cloudshell-lcd_20150731-1_armhf.deb | ||
|
|
||
| sudo apt-get -f install | ||
|
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.