From 4d711d4df9a12daae6a2e8233421c4e9eabc74b5 Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Sun, 19 Dec 2010 12:16:59 +0100 Subject: [PATCH] projects/*/options: add configoption to build and install 'tools' package optional Signed-off-by: Stephan Raue --- projects/ATV/options | 5 +++-- projects/ION/options | 5 +++-- projects/generic/options | 5 +++-- projects/intel/options | 5 +++-- scripts/image | 3 +++ 5 files changed, 15 insertions(+), 8 deletions(-) diff --git a/projects/ATV/options b/projects/ATV/options index af64b2ffbf..3c959a9cbb 100644 --- a/projects/ATV/options +++ b/projects/ATV/options @@ -114,8 +114,9 @@ # build and install Transmission BitTorrent daemon (yes / no) TRANSMISSION="no" -# todo (need for vdr?) - SERVICES="yes" +# build and install some tools for including in release (yes / no) +# some of this tools are: htop, nano, wgetpaste + TOOLS="yes" # build and install diskmounter service (udisks) # this service provide auto mounting support for external drives diff --git a/projects/ION/options b/projects/ION/options index 8f682eb452..c9a130c222 100644 --- a/projects/ION/options +++ b/projects/ION/options @@ -113,8 +113,9 @@ # build and install Transmission BitTorrent daemon (yes / no) TRANSMISSION="yes" -# todo (need for vdr?) - SERVICES="yes" +# build and install some tools for including in release (yes / no) +# some of this tools are: htop, nano, wgetpaste + TOOLS="yes" # build and install diskmounter service (udisks) # this service provide auto mounting support for external drives diff --git a/projects/generic/options b/projects/generic/options index 097fcebc50..fec09ac6f0 100644 --- a/projects/generic/options +++ b/projects/generic/options @@ -113,8 +113,9 @@ # build and install Transmission BitTorrent daemon (yes / no) TRANSMISSION="yes" -# todo (need for vdr?) - SERVICES="yes" +# build and install some tools for including in release (yes / no) +# some of this tools are: htop, nano, wgetpaste + TOOLS="yes" # build and install diskmounter service (udisks) # this service provide auto mounting support for external drives diff --git a/projects/intel/options b/projects/intel/options index 88c3c29fb9..17f26fbe0c 100644 --- a/projects/intel/options +++ b/projects/intel/options @@ -113,8 +113,9 @@ # build and install Transmission BitTorrent daemon (yes / no) TRANSMISSION="yes" -# todo (need for vdr?) - SERVICES="yes" +# build and install some tools for including in release (yes / no) +# some of this tools are: htop, nano, wgetpaste + TOOLS="yes" # build and install diskmounter service (udisks) # this service provide auto mounting support for external drives diff --git a/scripts/image b/scripts/image index 2677dfcecd..ae40a95275 100755 --- a/scripts/image +++ b/scripts/image @@ -105,6 +105,9 @@ mkdir -p $INSTALL [ "$GAMES" = "yes" ] && $SCRIPTS/install games-sdk [ "$EMULATORS" = "yes" ] && $SCRIPTS/install emulators-sdk +# some system tools + [ "$TOOLS" = "yes" ] && $SCRIPTS/install tools + # Devtools... (not for Release) [ "$TESTING" = "yes" ] && $SCRIPTS/install testing [ "$DEVTOOLS" = "yes" ] && $SCRIPTS/install debug