From c9ef1f7f9eaf9fa4f20963724ac6589f90cef81d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrick=20Jos=C3=A9=20Pereira?= Date: Thu, 21 Mar 2024 14:40:26 -0300 Subject: [PATCH] core: start-blueos-core: Remove memory limit for some non critical services MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Patrick José Pereira --- core/start-blueos-core | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/core/start-blueos-core b/core/start-blueos-core index 33391da1c..60f8e9bc3 100755 --- a/core/start-blueos-core +++ b/core/start-blueos-core @@ -95,9 +95,11 @@ PRIORITY_SERVICES=( ) SERVICES=( + # This services are not prioritized because they are not fundamental for the vehicle to work + 'kraken',0,"nice -19 $SERVICES_PATH/kraken/main.py" + 'wifi',0,"nice -19 $SERVICES_PATH/wifi/main.py --socket wlan0" + # This services are not as important as the others 'beacon',250,"$SERVICES_PATH/beacon/main.py" - 'kraken',250,"nice -19 $SERVICES_PATH/kraken/main.py" - 'wifi',250,"nice -19 $SERVICES_PATH/wifi/main.py --socket wlan0" 'bridget',250,"nice -19 $SERVICES_PATH/bridget/main.py" 'commander',250,"$SERVICES_PATH/commander/main.py" 'nmea_injector',250,"nice -19 $SERVICES_PATH/nmea_injector/nmea_injector/main.py"