Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mkimage-profiles
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Ximper Linux
mkimage-profiles
Commits
d5feb0c7
Commit
d5feb0c7
authored
Jan 24, 2025
by
Anton Midyukov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
e2k, stage2: replace e2k fix for install kernel in ISO to stage2 feature
parent
fc2fd035
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
+5
-5
20-e2k-boot
features.in/e2k/scripts.d/20-e2k-boot
+0
-4
95-copy-kernel
features.in/stage2/stage1/scripts.d/95-copy-kernel
+5
-1
No files found.
features.in/e2k/scripts.d/20-e2k-boot
View file @
d5feb0c7
...
...
@@ -4,10 +4,6 @@ echo "** 20-e2k-boot START"
cd
"
$WORKDIR
"
# Rename kernel image, unable to boot kernel from CD/DVD
# if its name does not contain "." (mcst#6856).
mv
boot/image
{
,.0
}
# slightly different logic as there's no boot *menu*:
# ensure the user can install this if possible
[
-f
live
]
&&
default
=
live
...
...
features.in/stage2/stage1/scripts.d/95-copy-kernel
View file @
d5feb0c7
...
...
@@ -6,9 +6,13 @@ mkdir -p boot
case
"
`
arch
`
"
in
e2k
)
kname
=
image
# Rename kernel image, unable to boot kernel from CD/DVD
# if its name does not contain "." (mcst#6856).
ksuffix
=
.0
;;
*
)
kname
=
vmlinuz
ksuffix
=
;;
esac
...
...
@@ -21,7 +25,7 @@ kimage="$(find /boot -type f -name "$kname-*")"
initrd
=
"
$(
find /boot
-type
f
-name
'initrd-*.img'
)
"
cp
$verbose
-af
$kimage
boot/
mv
boot/
$kname
-
$kverdef
boot/
$kname
mv
boot/
$kname
-
$kverdef
boot/
$kname
$ksuffix
cp
$verbose
-af
$initrd
boot/
mv
boot/initrd-
$kverdef
.img boot/initrd.img
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment