Skip to content

Commit 5e9bc43

Browse files
Revert "Enabling RCD DLStreamer (#459)" (#467)
This reverts commit cdc4e2f. Co-authored-by: yockgen <yockgen@gmail.com>
1 parent cdc4e2f commit 5e9bc43

File tree

2 files changed

+10
-34
lines changed

2 files changed

+10
-34
lines changed

image-templates/rcd10-x86_64-dlstreamer.yml

Lines changed: 1 addition & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -9,30 +9,13 @@ target:
99
imageType: raw # Image type, valid value: [raw, iso].
1010

1111
packageRepositories:
12-
- codename: "EdgeAI"
13-
url: "https://yum.repos.intel.com/edgeai/"
14-
pkey: "https://yum.repos.intel.com/edgeai/GPG-PUB-KEY-INTEL-DLS.gpg" # Uncomment and replace in real config
15-
1612
- codename: "edge-base"
1713
url: "https://files-rs.edgeorchestration.intel.com/files-edge-orch/microvisor/rpms/3.0/base"
1814
pkey: "https://raw.githubusercontent.com/open-edge-platform/edge-microvisor-toolkit/refs/heads/3.0/SPECS/edge-repos/INTEL-RPM-GPG-KEY" # Uncomment and replace in real config
1915
allowPackages:
2016
- kernel-drivers-gpu
2117
- kernel
2218
- grub2-configuration
23-
- linux-firmware-i915
24-
- libva-intel-media-driver
25-
- libva-utils
26-
- intel-gmmlib
27-
28-
- codename: "OpenVINO"
29-
url: "https://yum.repos.intel.com/openvino/"
30-
pkey: "https://yum.repos.intel.com/intel-gpg-keys/GPG-PUB-KEY-INTEL-SW-PRODUCTS.PUB" # Uncomment and replace in real config
31-
32-
- codename: "mariner"
33-
url: "https://packages.microsoft.com/yumrepos/cbl-mariner-2.0-prod-extended-x86_64/"
34-
pkey: "https://packages.microsoft.com/azurelinux/3.0/prod/base/x86_64/repodata/repomd.xml.key" # Uncomment and replace in real config
35-
3619

3720
disk:
3821
name: Minimal_Raw # 1:1 mapping to the systemConfigs name
@@ -74,16 +57,4 @@ systemConfig:
7457
- kernel-drivers-gpu
7558

7659
immutability:
77-
enabled: false # default is true, overridden to false here
78-
packages:
79-
- sqlite
80-
- curl
81-
- nano
82-
- paho-mqtt-c
83-
- ffmpeg
84-
- gstreamer
85-
- opencv
86-
- intel-dlstreamer
87-
- openvino-2025.2.0
88-
- linux-firmware-i915
89-
# - tdnf
60+
enabled: false # default is true, overridden to false here

internal/image/imageos/imageos.go

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -964,25 +964,30 @@ func buildImageUKI(installRoot string, template *config.ImageTemplate) error {
964964
} else {
965965
log.Errorf("Install Root does not exist at %s", installRoot)
966966
}
967+
if _, err := os.Stat(kernelPath); err == nil {
968+
log.Infof("kernelPath Exists at %s", kernelPath)
969+
} else {
970+
log.Errorf("Install Root does not exist at %s", installRoot)
971+
}
967972

968-
if _, err := os.Stat(filepath.Join(installRoot, kernelPath)); err == nil {
973+
if _, err := os.Stat(kernelPath); err == nil {
969974
log.Infof("kernelPath Exists at %s", kernelPath)
970975
} else {
971976
log.Errorf("kernelPath does not exist at %s", kernelPath)
972977
}
973978

974-
if _, err := os.Stat(filepath.Join(installRoot, initrdPath)); err == nil {
979+
if _, err := os.Stat(initrdPath); err == nil {
975980
log.Infof("initrdPath Exists at %s", initrdPath)
976981
} else {
977982
log.Errorf("initrdPath does not exist at %s", initrdPath)
978983
}
979-
if _, err := os.Stat(filepath.Join(installRoot, cmdlineFile)); err == nil {
984+
if _, err := os.Stat(cmdlineFile); err == nil {
980985
log.Infof("cmdlineFile Exists at %s", cmdlineFile)
981986
return nil
982987
} else {
983988
log.Errorf("cmdlineFile does not exist at %s", cmdlineFile)
984989
}
985-
if _, err := os.Stat(filepath.Join(installRoot, outputPath)); err == nil {
990+
if _, err := os.Stat(outputPath); err == nil {
986991
log.Infof("outputPath Exists at %s", outputPath)
987992
return nil
988993
} else {

0 commit comments

Comments
 (0)