diff options
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | setup-xfce-desktop | 6 | ||||
-rw-r--r-- | setup-xfce-desktop.in | 6 | ||||
-rw-r--r-- | tmproot/etc/hostname | 1 | ||||
-rw-r--r-- | tmproot/etc/network/interfaces | 7 | ||||
-rw-r--r-- | tmproot/etc/profile.d/proxy.sh | 5 |
6 files changed, 26 insertions, 1 deletions
@@ -1,4 +1,4 @@ -VERSION := 3.0.1 +VERSION := 3.0.2 sysconfdir ?= /etc/lbu diff --git a/setup-xfce-desktop b/setup-xfce-desktop new file mode 100644 index 0000000..2a2ce2d --- /dev/null +++ b/setup-xfce-desktop @@ -0,0 +1,6 @@ +#!/bin/sh + +videodrivers=$(apk search --quiet --exact xf86-video* | grep -v -- '-doc$') + +setup-xorg-base $videodrivers xfce4 firefox slim + diff --git a/setup-xfce-desktop.in b/setup-xfce-desktop.in new file mode 100644 index 0000000..2a2ce2d --- /dev/null +++ b/setup-xfce-desktop.in @@ -0,0 +1,6 @@ +#!/bin/sh + +videodrivers=$(apk search --quiet --exact xf86-video* | grep -v -- '-doc$') + +setup-xorg-base $videodrivers xfce4 firefox slim + diff --git a/tmproot/etc/hostname b/tmproot/etc/hostname new file mode 100644 index 0000000..d63e5d0 --- /dev/null +++ b/tmproot/etc/hostname @@ -0,0 +1 @@ +ncopa-desktop diff --git a/tmproot/etc/network/interfaces b/tmproot/etc/network/interfaces new file mode 100644 index 0000000..ed1cb34 --- /dev/null +++ b/tmproot/etc/network/interfaces @@ -0,0 +1,7 @@ +auto lo +iface lo inet loopback + +auto br64 +iface br64 inet dhcp + hostname ncopa-desktop + diff --git a/tmproot/etc/profile.d/proxy.sh b/tmproot/etc/profile.d/proxy.sh new file mode 100644 index 0000000..5b349bb --- /dev/null +++ b/tmproot/etc/profile.d/proxy.sh @@ -0,0 +1,5 @@ +# this file was generated with and might get overwritten by setup-proxy + +export http_proxy=http://proxy.nor.wtbts.net:8080 +export https_proxy=http://proxy.nor.wtbts.net:8080 +export ftp_proxy=http://proxy.nor.wtbts.net:8080 |