diff --git a/config/functions b/config/functions index 70a4547898..509c6ea7d7 100644 --- a/config/functions +++ b/config/functions @@ -341,7 +341,6 @@ if [ "$BOOTLOADER" = "u-boot" ]; then fi config_message="$config_message\n - UDisks support:\t\t\t $UDISKS" config_message="$config_message\n - UPower support:\t\t\t $UPOWER" - config_message="$config_message\n - Update support:\t\t\t $UPDATE_SUPPORT" config_message="$config_message\n - Installer support:\t\t\t $INSTALLER_SUPPORT" # Misc. Filesystems diff --git a/projects/ARCTIC_MC/options b/projects/ARCTIC_MC/options index 75c6408839..5f11ca7a16 100755 --- a/projects/ARCTIC_MC/options +++ b/projects/ARCTIC_MC/options @@ -314,9 +314,6 @@ # swapfile size if SWAP_SUPPORT=yes in kB (example: 262144 = 256MB ) SWAPFILESIZE="262144" -# build with automatic update support (yes / no) - UPDATE_SUPPORT="yes" - # build with installer (yes / no) INSTALLER_SUPPORT="yes" diff --git a/projects/ATV/options b/projects/ATV/options index 3f699239fe..4ae73a0f83 100755 --- a/projects/ATV/options +++ b/projects/ATV/options @@ -315,9 +315,6 @@ # swapfile size if SWAP_SUPPORT=yes in kB (example: 262144 = 256MB ) SWAPFILESIZE="262144" -# build with automatic update support (yes / no) - UPDATE_SUPPORT="yes" - # build with installer (yes / no) INSTALLER_SUPPORT="no" diff --git a/projects/Fusion/options b/projects/Fusion/options index 134cd0e609..48483ba899 100755 --- a/projects/Fusion/options +++ b/projects/Fusion/options @@ -314,9 +314,6 @@ # swapfile size if SWAP_SUPPORT=yes in kB (example: 262144 = 256MB ) SWAPFILESIZE="262144" -# build with automatic update support (yes / no) - UPDATE_SUPPORT="yes" - # build with installer (yes / no) INSTALLER_SUPPORT="yes" diff --git a/projects/Generic/options b/projects/Generic/options index 76b5db5335..ee86a0253b 100755 --- a/projects/Generic/options +++ b/projects/Generic/options @@ -314,9 +314,6 @@ # swapfile size if SWAP_SUPPORT=yes in kB (example: 262144 = 256MB ) SWAPFILESIZE="262144" -# build with automatic update support (yes / no) - UPDATE_SUPPORT="yes" - # build with installer (yes / no) INSTALLER_SUPPORT="yes" diff --git a/projects/Generic_OSS/options b/projects/Generic_OSS/options index c4fe0dd203..1589766c65 100755 --- a/projects/Generic_OSS/options +++ b/projects/Generic_OSS/options @@ -314,9 +314,6 @@ # swapfile size if SWAP_SUPPORT=yes in kB (example: 262144 = 256MB ) SWAPFILESIZE="262144" -# build with automatic update support (yes / no) - UPDATE_SUPPORT="yes" - # build with installer (yes / no) INSTALLER_SUPPORT="yes" diff --git a/projects/ION/options b/projects/ION/options index 499bdd1954..c146a43a8c 100755 --- a/projects/ION/options +++ b/projects/ION/options @@ -314,9 +314,6 @@ # swapfile size if SWAP_SUPPORT=yes in kB (example: 262144 = 256MB ) SWAPFILESIZE="262144" -# build with automatic update support (yes / no) - UPDATE_SUPPORT="yes" - # build with installer (yes / no) INSTALLER_SUPPORT="yes" diff --git a/projects/Intel/options b/projects/Intel/options index a750ad5d35..862af0b6d0 100755 --- a/projects/Intel/options +++ b/projects/Intel/options @@ -314,9 +314,6 @@ # swapfile size if SWAP_SUPPORT=yes in kB (example: 262144 = 256MB ) SWAPFILESIZE="262144" -# build with automatic update support (yes / no) - UPDATE_SUPPORT="yes" - # build with installer (yes / no) INSTALLER_SUPPORT="yes" diff --git a/projects/RPi/options b/projects/RPi/options index b29a476d63..e9d11775e3 100755 --- a/projects/RPi/options +++ b/projects/RPi/options @@ -314,9 +314,6 @@ # swapfile size if SWAP_SUPPORT=yes in kB (example: 262144 = 256MB ) SWAPFILESIZE="131072" -# build with automatic update support (yes / no) - UPDATE_SUPPORT="yes" - # build with installer (yes / no) INSTALLER_SUPPORT="no" diff --git a/projects/Ultra/options b/projects/Ultra/options index 909560775c..e5d518f82e 100755 --- a/projects/Ultra/options +++ b/projects/Ultra/options @@ -314,9 +314,6 @@ # swapfile size if SWAP_SUPPORT=yes in kB (example: 262144 = 256MB ) SWAPFILESIZE="262144" -# build with automatic update support (yes / no) - UPDATE_SUPPORT="yes" - # build with installer (yes / no) INSTALLER_SUPPORT="yes" diff --git a/projects/Virtual/options b/projects/Virtual/options index 3e7492f276..7ce9543d6f 100755 --- a/projects/Virtual/options +++ b/projects/Virtual/options @@ -309,9 +309,6 @@ # swapfile size if SWAP_SUPPORT=yes in kB (example: 262144 = 256MB ) SWAPFILESIZE="262144" -# build with automatic update support (yes / no) - UPDATE_SUPPORT="yes" - # build with installer (yes / no) INSTALLER_SUPPORT="yes" diff --git a/scripts/image b/scripts/image index 02f7e5b709..f9db2bd16a 100755 --- a/scripts/image +++ b/scripts/image @@ -141,9 +141,6 @@ IMAGE_NAME="$DISTRONAME-$TARGET_VERSION" # Sensors support [ "$SENSOR_SUPPORT" = "yes" ] && $SCRIPTS/install lm_sensors -# Update support - [ "$UPDATE_SUPPORT" = "yes" ] && $SCRIPTS/install autoupdate - # Installer support [ "$INSTALLER_SUPPORT" = "yes" ] && $SCRIPTS/install installer