From c2a43a48af6066508716bdb8a6455cdd34ee0170 Mon Sep 17 00:00:00 2001 From: Justin Travis Date: Wed, 10 Jan 2024 08:07:47 -0500 Subject: [PATCH] KASM-5433 Remove ashmem check --- src/ubuntu/install/redroid/custom_startup.sh | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/src/ubuntu/install/redroid/custom_startup.sh b/src/ubuntu/install/redroid/custom_startup.sh index f8bd860..b6e056f 100644 --- a/src/ubuntu/install/redroid/custom_startup.sh +++ b/src/ubuntu/install/redroid/custom_startup.sh @@ -34,16 +34,6 @@ function check_modules() { notify-send -u critical -t 0 -i "${ICON_ERROR}" "Redroid Error" "${msg}" exit 1 fi - - # Check for ashmem_linux module - if lsmod | grep -q ashmem_linux; then - echo "ashmem_linux module is loaded." - else - msg="Host level module ashmem_linux is not loaded. Cannot continue.\nSee https://github.com/remote-android/redroid-doc?tab=readme-ov-file#getting-started for more details." - echo msg - notify-send -u critical -t 0 -i "${ICON_ERROR}" "Redroid Error" "${msg}" - exit 1 - fi } start_android() {