diff options
author | 2017-03-16 22:22:52 +0100 | |
---|---|---|
committer | 2017-03-19 17:56:48 +0100 | |
commit | b30093edfd4f92b32ba356ef5e62d9bd80a99584 (patch) | |
tree | 2975f1be8be51931f6fe4f83102e1b524e600818 /INSTALL/setup.d/60_x11_tools | |
parent | a41c6fae3bf4a08edca7bde0b3dd3ef2ce32b669 (diff) |
setup: split setup script in multiple parts
Instead of having a monolithic script suitable for many features,
this commit splits the main setup file in elementary scripts associated
to different features:
- Yocto build (bitbake deps)
- Bitbake Toaster
- Network boot
- SDK
- X11 Tools
- Documentation tools support
Change-Id: I3d08e32d6b887468e533bee311220ddb91da1dc1
Signed-off-by: Stephane Desneux <stephane.desneux@iot.bzh>
Diffstat (limited to 'INSTALL/setup.d/60_x11_tools')
-rw-r--r-- | INSTALL/setup.d/60_x11_tools | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/INSTALL/setup.d/60_x11_tools b/INSTALL/setup.d/60_x11_tools new file mode 100644 index 0000000..5c2cd75 --- /dev/null +++ b/INSTALL/setup.d/60_x11_tools @@ -0,0 +1,13 @@ +#!/bin/bash + +apt-get install -y gitg vim-gtk xterm fonts-liberation + +# update xterm resources to have truetype fonts and utf-8 +cat <<EOF >>/etc/X11/app-defaults/XTerm + +!iotbzh: enable truetype fonts and UTF-8 encoding +*VT100*faceName: mono +*VT100*faceSize: 13 +*VT100*locale: true +EOF + |