Added static-get overlay bundle

This commit is contained in:
bauen1 2017-03-10 15:18:07 +01:00
parent 51a3916ae7
commit 46a230cd31
No known key found for this signature in database
GPG Key ID: FF0AAF5E0812BA9C
2 changed files with 13 additions and 0 deletions

View File

@ -63,6 +63,9 @@ Currently available overlay bundles:
* Lua - The Lua Scripting Language 5.3. Requires ~ 800kb additional * Lua - The Lua Scripting Language 5.3. Requires ~ 800kb additional
space. Use the "lua" command to run an interactive lua interpreter space. Use the "lua" command to run an interactive lua interpreter
* static-get - download statically linked versions of over 1000 programs like
git or curl
### ### ### ### ### ###
I only provide the build scripts. It's entirely up to you to configure and I only provide the build scripts. It's entirely up to you to configure and

View File

@ -0,0 +1,10 @@
#!/bin/sh
SRC_DIR=$(PWD)
mkdir -p ../../../work/src/minimal_overlay/rootfs/
cd ../../../work/src/minimal_overlay/rootfs/
# download static-get
wget -O usr/bin/static-get http://raw.githubusercontent.com/minos-org/minos-static/master/static-get
chmod +rx usr/bin/static-get