diff --git a/src/README b/src/README index f0f32fbf8..97278e37e 100644 --- a/src/README +++ b/src/README @@ -63,6 +63,9 @@ Currently available overlay bundles: * Lua - The Lua Scripting Language 5.3. Requires ~ 800kb additional 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 diff --git a/src/minimal_overlay/bundles/static-get/bundle.sh b/src/minimal_overlay/bundles/static-get/bundle.sh new file mode 100755 index 000000000..a928ef866 --- /dev/null +++ b/src/minimal_overlay/bundles/static-get/bundle.sh @@ -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