Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
aports
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
646
Issues
646
List
Boards
Labels
Service Desk
Milestones
Merge Requests
183
Merge Requests
183
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
alpine
aports
Commits
fd978b70
Commit
fd978b70
authored
Oct 18, 2017
by
Timo Teräs
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
scripts/mkimg.base: add efi formats and filenames for arm and x86
parent
acd1cd8f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
11 deletions
+5
-11
scripts/mkimg.base.sh
scripts/mkimg.base.sh
+5
-11
No files found.
scripts/mkimg.base.sh
View file @
fd978b70
...
...
@@ -195,17 +195,11 @@ section_grub_efi() {
local
_format _efi
case
"
$ARCH
"
in
x86_64
)
_format
=
"x86_64-efi"
_efi
=
"bootx64.efi"
;;
aarch64
)
_format
=
"arm64-efi"
_efi
=
"bootaa64.efi"
;;
*
)
return
0
;;
aarch64
)
_format
=
"arm64-efi"
;
_efi
=
"bootaa64.efi"
;;
arm
*
)
_format
=
"arm-efi"
;
_efi
=
"bootarm.efi"
;;
x86
)
_format
=
"i386-efi"
;
_efi
=
"bootia32.efi"
;;
x86_64
)
_format
=
"x86_64-efi"
;
_efi
=
"bootx64.efi"
;;
*
)
return
0
;;
esac
build_section grub_cfg boot/grub/grub.cfg
$(
grub_gen_config | checksum
)
...
...
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