Skip to content

Commit b3545a5

Browse files
authored
Merge pull request #393 from open-edge-platform/update-branch
bug: remove kernel validation (#941)
2 parents 94fdda0 + a17016a commit b3545a5

4 files changed

Lines changed: 13 additions & 31 deletions

File tree

README.md

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,22 @@ This repository provides simplified developer kit reference setup scripts for va
2424

2525

2626
## 5-Minute Quick Start
27-
27+
1) Run following command:
2828
```bash
2929
sudo bash -c "$(wget -qLO - https://raw.githubusercontent.com/open-edge-platform/edge-developer-kit-reference-scripts/refs/heads/main/main_installer.sh)"
3030

3131
```
32-
Follow the on-screen instructions to complete installation until you see the `Platform configured` message.
32+
2) Follow the on-screen instructions to install.
33+
34+
3) If the following output appears, reboot your system and rerun the script from step 1. Else, proceed to next step.
35+
36+
![EEF](./docs/images/EEF%20reboot.png)
37+
38+
4) Edge Developer Kit Reference Scripts installation is complete when you see the `Platform is configured` message.
39+
40+
![platform](./docs/images/platform%20configured.png)
41+
42+
**Note:** It is highly recommended to reboot the system after completing the installation.
3343

3444
### Next Steps
3545

docs/images/EEF reboot.png

9.81 KB
Loading
8.05 KB
Loading

main_installer.sh

Lines changed: 1 addition & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -166,34 +166,6 @@ verify_ubuntu_24() {
166166
echo "Please upgrade to Ubuntu 24.04 LTS before running this script"
167167
exit 1
168168
fi
169-
170-
# Kernel policy: Accept 6.14.x (standard) OR 6.17.x (OEM) when PTL_PLATFORM=true
171-
local kernel_major kernel_minor running_kernel
172-
running_kernel=$(uname -r)
173-
kernel_major=$(echo "$running_kernel" | cut -d'.' -f1)
174-
kernel_minor=$(echo "$running_kernel" | cut -d'.' -f2)
175-
176-
if { [ "$kernel_major" = "6" ] && [ "$kernel_minor" = "14" ]; }; then
177-
echo "$S_VALID Ubuntu 24.04 LTS with supported HWE kernel $running_kernel detected"
178-
elif { [ "${PTL_PLATFORM:-false}" = true ] && [ "$kernel_major" = "6" ] && [ "$kernel_minor" = "17" ]; }; then
179-
echo "$S_VALID PTL platform OEM kernel $running_kernel accepted"
180-
else
181-
echo "$S_WARNING Unsupported kernel version: $running_kernel"
182-
if [ "${PTL_PLATFORM:-false}" = true ]; then
183-
echo "PTL platform detected; proceeding to install OEM 6.17 kernel via prerequisites phase."
184-
# Do not exit; apply_ptl_platform_prereqs will manage kernel upgrade & reboot gate.
185-
else
186-
echo "This installer requires Ubuntu 24.04 LTS with kernel 6.14.x"
187-
if command -v hwe-support-status >/dev/null 2>&1; then
188-
echo "Checking HWE support status..."
189-
hwe-support-status --verbose || true
190-
fi
191-
echo "Installing HWE kernel..."
192-
apt update && apt install -y linux-generic-hwe-24.04
193-
echo "$S_VALID HWE kernel installed. Please reboot and run this installer again."
194-
exit 0
195-
fi
196-
fi
197169
}
198170

199171
# Apply PTL platform prerequisites before standard GPU driver installation
@@ -630,7 +602,7 @@ main() {
630602
detect_platform
631603
echo ""
632604

633-
# 2. Verify Ubuntu version & kernel (allows 6.17 if PTL)
605+
# 2. Verify Ubuntu version
634606
verify_ubuntu_24
635607
echo ""
636608

0 commit comments

Comments
 (0)