Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

core: start-blueos-core: Remove memory limit for some non critical services #2476

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 4 additions & 2 deletions core/start-blueos-core
Expand Up @@ -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"
Expand Down