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
1
Issues
1
List
Board
Labels
Milestones
Merge Requests
1
Merge Requests
1
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
e42bcdcb
Commit
e42bcdcb
authored
Jul 10, 2019
by
Anton Midyukov
Committed by
Michael Shigorin
Aug 30, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
90-build-distro.mk, boot.mk, syslinux: add ARM64 EFI support for distro targets
parent
01ee4075
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
1 deletion
+10
-1
90-build-distro.mk
features.in/build-distro/lib/90-build-distro.mk
+3
-0
01-syslinux
features.in/syslinux/stage1/scripts.d/01-syslinux
+1
-1
boot.mk
lib/boot.mk
+6
-0
No files found.
features.in/build-distro/lib/90-build-distro.mk
View file @
e42bcdcb
...
...
@@ -32,6 +32,9 @@ endif
ifeq (,$(filter-out i586 x86_64,$(ARCH)))
BOOT_TYPE := isolinux
endif
ifeq (,$(filter-out aarch64,$(ARCH)))
BOOT_TYPE := grubaa64boot
endif
ifeq (,$(filter-out ppc64le,$(ARCH)))
BOOT_TYPE := ieee1275boot
endif
...
...
features.in/syslinux/stage1/scripts.d/01-syslinux
View file @
e42bcdcb
...
...
@@ -10,7 +10,7 @@ cd "$WORKDIR/syslinux"
# validate just in case (see also stage1 Makefile)
case
"
$GLOBAL_BOOTLOADER
"
in
isolinux|syslinux|ieee1275boot
)
;;
isolinux|syslinux|ieee1275boot
|grubaa64boot
)
;;
*
)
echo
"error: weird GLOBAL_BOOTLOADER:
\`
$GLOBAL_BOOTLOADER
'"
>
&2
;
exit
1
;;
esac
...
...
lib/boot.mk
View file @
e42bcdcb
...
...
@@ -10,6 +10,12 @@ boot/iso: use/syslinux
@$(call set,BOOTLOADER,isolinux)
endif
# install aarch64 media bootloader
ifeq (,$(filter-out aarch64,$(ARCH)))
boot/iso:
@$(call set,BOOTLOADER,grubaa64boot)
endif
# firmware is the bootloader
ifeq (,$(filter-out e2k%,$(ARCH)))
boot/iso:
...
...
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