Skip to content

Commit 43bbad4

Browse files
authored
Merge pull request #304 from open-edge-platform/update-branch
fix: Remove 6.11 kernel validation (#819)
2 parents 7a184f5 + 693ba5e commit 43bbad4

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

docs/autogenbom.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Bill of Materials (BOM)
22

3-
**Generated:** 2025-10-14 01:18:48 UTC
3+
**Generated:** 2025-10-24 03:18:36 UTC
44
**Tool:** Intel Edge Developer Kit Reference Scripts
55
**Repository:** intel/edge-developer-kit-reference-scripts
66

@@ -49,8 +49,8 @@ intel-gsc | 0.9.5-0ubuntu1~24.04~ppa1
4949
------------------------ -+-----------------------------------------
5050
GPU Media Components |
5151
------------------------ -+-----------------------------------------
52-
intel-media-va-driver-non-free | 25.3.3-0ubuntu1~2.04~ppa1
53-
libmfx-gen1 | 25.3.3-0ubuntu1~24.04~ppa1
52+
intel-media-va-driver-non-free | 25.4.0-0ubuntu1~24.04~ppa1
53+
libmfx-gen1 | 25.4.0-0ubuntu1~24.04~ppa1
5454
libvpl2 | 1:2.15.0-0ubuntu1~24.04~ppa1
5555
libvpl-tools | 1.4.0-0ubuntu1~24.04~ppa1
5656
libva-glx2 | 2.22.0-1ubuntu1~24.04~ppa1

main_installer.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ usage() {
7171
echo ""
7272
echo "Usage: $0"
7373
echo ""
74-
echo "Supported OS: Ubuntu 24.04 LTS with kernel 6.11.x (HWE) only"
74+
echo "Supported OS: Ubuntu 24.04 LTS with kernel 6.14.x (HWE) only"
7575
echo ""
7676
}
7777

@@ -153,16 +153,16 @@ verify_ubuntu_24() {
153153
exit 1
154154
fi
155155

156-
# Check kernel version (Ubuntu 24.04 LTS - require 6.11.x or 6.14.x only)
156+
# Check kernel version (Ubuntu 24.04 LTS - require 6.14.x)
157157
local kernel_major
158158
local kernel_minor
159159
kernel_major=$(uname -r | cut -d'.' -f1)
160160
kernel_minor=$(uname -r | cut -d'.' -f2)
161161

162-
# Check for supported kernel versions (6.11.x or 6.14.x)
163-
if ! { [ "$kernel_major" = "6" ] && { [ "$kernel_minor" = "11" ] || [ "$kernel_minor" = "14" ]; }; }; then
162+
# Check for supported kernel versions (6.14.x)
163+
if ! { [ "$kernel_major" = "6" ] && { [ "$kernel_minor" = "14" ] ; }; }; then
164164
echo "$S_WARNING Unsupported kernel version: $(uname -r)"
165-
echo "This installer requires Ubuntu 24.04 LTS with kernel 6.11.x or 6.14.x"
165+
echo "This installer requires Ubuntu 24.04 LTS with kernel 6.14.x"
166166

167167
# Check HWE support status if command is available
168168
if command -v hwe-support-status >/dev/null 2>&1; then

0 commit comments

Comments
 (0)