From c2ce53e4368ec2255fcc5b848abaa9f99056387d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=2E=20Akil=20G=C3=BCndo=C4=9Fan?= <84398756+0xr3act0r@users.noreply.github.com> Date: Fri, 15 Nov 2024 02:39:15 +0300 Subject: [PATCH 1/5] Update installer.sh Added the "linux-modules-extra". --- installer.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/installer.sh b/installer.sh index 2597e4bb3..81f323736 100755 --- a/installer.sh +++ b/installer.sh @@ -280,6 +280,9 @@ if [[ ${LIST_DEP} -eq 0 ]] ; then apt-get -y update fi +# To using ubi and nandsim with modprobe, the linux-modules-extra package must be installed. (Ubuntu 22.04) +apt install linux-modules-extra-$(uname -r) + # setup the python virtual environment in external directory # external is also setup in the docker image apt-get -y install python3-venv From 804a1a12e1cce8c17d460df34974ba4771d895ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=2E=20Akil=20G=C3=BCndo=C4=9Fan?= <84398756+0xr3act0r@users.noreply.github.com> Date: Sun, 17 Nov 2024 13:19:58 +0300 Subject: [PATCH 2/5] Update installer.sh --- installer.sh | 3 --- 1 file changed, 3 deletions(-) diff --git a/installer.sh b/installer.sh index 81f323736..2597e4bb3 100755 --- a/installer.sh +++ b/installer.sh @@ -280,9 +280,6 @@ if [[ ${LIST_DEP} -eq 0 ]] ; then apt-get -y update fi -# To using ubi and nandsim with modprobe, the linux-modules-extra package must be installed. (Ubuntu 22.04) -apt install linux-modules-extra-$(uname -r) - # setup the python virtual environment in external directory # external is also setup in the docker image apt-get -y install python3-venv From e973ab6c259265eb8d513e28cc798b40fe3011cd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=2E=20Akil=20G=C3=BCndo=C4=9Fan?= <84398756+0xr3act0r@users.noreply.github.com> Date: Sun, 17 Nov 2024 13:20:45 +0300 Subject: [PATCH 3/5] Update ID1_ubuntu_os.sh --- installer/ID1_ubuntu_os.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/installer/ID1_ubuntu_os.sh b/installer/ID1_ubuntu_os.sh index 24ad203ed..7917e0080 100755 --- a/installer/ID1_ubuntu_os.sh +++ b/installer/ID1_ubuntu_os.sh @@ -25,6 +25,10 @@ ID1_ubuntu_os() { print_tool_info "notification-daemon" 1 print_tool_info "dbus" 1 print_tool_info "dbus-x11" 1 + + # To using ubi and nandsim with modprobe, the linux-modules-extra package must be installed. (Ubuntu 22.04) + apt install linux-modules-extra-$(uname -r) + # is not available in Ubuntu 24.04 -> need to check on this: # print_tool_info "libnotify-cil-dev" 1 From ff363249dd9c70f9cad05b65ea54367a14711659 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=2E=20Akil=20G=C3=BCndo=C4=9Fan?= <84398756+0xr3act0r@users.noreply.github.com> Date: Sun, 17 Nov 2024 18:20:16 +0300 Subject: [PATCH 4/5] Update ID1_ubuntu_os.sh --- installer/ID1_ubuntu_os.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/installer/ID1_ubuntu_os.sh b/installer/ID1_ubuntu_os.sh index 7917e0080..3425e28b5 100755 --- a/installer/ID1_ubuntu_os.sh +++ b/installer/ID1_ubuntu_os.sh @@ -25,9 +25,8 @@ ID1_ubuntu_os() { print_tool_info "notification-daemon" 1 print_tool_info "dbus" 1 print_tool_info "dbus-x11" 1 - # To using ubi and nandsim with modprobe, the linux-modules-extra package must be installed. (Ubuntu 22.04) - apt install linux-modules-extra-$(uname -r) + print_tool_info "linux-modules-extra-$(uname -r)" 1 # is not available in Ubuntu 24.04 -> need to check on this: # print_tool_info "libnotify-cil-dev" 1 From 4112acb8781b59c725f3ea2c5c04cb5b548934e9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=2E=20Akil=20G=C3=BCndo=C4=9Fan?= <84398756+0xr3act0r@users.noreply.github.com> Date: Sun, 17 Nov 2024 23:34:43 +0300 Subject: [PATCH 5/5] Update ID1_ubuntu_os.sh - fixed interesting space bug in newline fixed interesting space bug in newline, there should be no more errors in the output of check-project.sh. --- installer/ID1_ubuntu_os.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installer/ID1_ubuntu_os.sh b/installer/ID1_ubuntu_os.sh index 3425e28b5..95b802397 100755 --- a/installer/ID1_ubuntu_os.sh +++ b/installer/ID1_ubuntu_os.sh @@ -27,7 +27,7 @@ ID1_ubuntu_os() { print_tool_info "dbus-x11" 1 # To using ubi and nandsim with modprobe, the linux-modules-extra package must be installed. (Ubuntu 22.04) print_tool_info "linux-modules-extra-$(uname -r)" 1 - + # is not available in Ubuntu 24.04 -> need to check on this: # print_tool_info "libnotify-cil-dev" 1