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
a7d2e27c
Commit
a7d2e27c
authored
Jul 14, 2023
by
Anton Midyukov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Initial loongarch64 support
parent
cc1fd337
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
10 additions
and
6 deletions
+10
-6
live.mk
conf.d/live.mk
+1
-1
config.mk
features.in/bootloader/config.mk
+1
-1
config.mk
features.in/efi/config.mk
+1
-1
config.mk
features.in/grub/config.mk
+1
-1
config.mk
features.in/kernel/config.mk
+4
-0
boot.mk
lib/boot.mk
+1
-1
vm.mk
lib/vm.mk
+1
-1
No files found.
conf.d/live.mk
View file @
a7d2e27c
...
...
@@ -10,7 +10,7 @@ distro/syslinux: distro/.boot \
@$(call set,BOOTLOADER,isolinux)
endif
ifeq (,$(filter-out i586 x86_64 aarch64 ppc64le riscv64,$(ARCH)))
ifeq (,$(filter-out i586 x86_64 aarch64 ppc64le riscv64
loongarch64
,$(ARCH)))
distro/grub: distro/.boot use/grub use/hdt use/memtest +efi \
use/grub/localboot_bios.cfg use/grub/sdab_bios.cfg; @:
ifeq (,$(filter-out i586 x86_64,$(ARCH)))
...
...
features.in/bootloader/config.mk
View file @
a7d2e27c
...
...
@@ -6,7 +6,7 @@
# NB: "mysterious" conflicts if BASE_BOOTLOADER is empty
GRUB_ARCHES := i586 x86_64 aarch64 ppc64le riscv64
GRUB_ARCHES := i586 x86_64 aarch64 ppc64le riscv64
loongarch64
use/bootloader: use/pkgpriorities
ifneq (,$(filter-out e2k%,$(ARCH)))
...
...
features.in/efi/config.mk
View file @
a7d2e27c
EFI_ARCHES := x86_64 aarch64 riscv64
EFI_ARCHES := x86_64 aarch64 riscv64
loongarch64
+efi: use/efi/signed; @:
...
...
features.in/grub/config.mk
View file @
a7d2e27c
# default is plain text prompt
# NB: might be usbflash-ready hybrid iso
ifeq (,$(filter-out i586 x86_64 ppc64le aarch64 riscv64,$(ARCH)))
ifeq (,$(filter-out i586 x86_64 ppc64le aarch64 riscv64
loongarch64
,$(ARCH)))
use/grub: sub/stage1 $(ISOHYBRID:%=use/isohybrid)
@$(call add_feature)
...
...
features.in/kernel/config.mk
View file @
a7d2e27c
...
...
@@ -6,9 +6,13 @@ else
ifeq (,$(filter-out riscv64,$(ARCH)))
@$(call try,KFLAVOURS,un-def)
else
ifeq (,$(filter-out loongarch64,$(ARCH)))
@$(call try,KFLAVOURS,loongarch)
else
@$(call try,KFLAVOURS,std-def)
endif
endif
endif
@$(call xport,KFLAVOURS)
use/kernel/latest: use/kernel; @:
...
...
lib/boot.mk
View file @
a7d2e27c
...
...
@@ -9,7 +9,7 @@ boot/iso:
ifeq (,$(filter-out i586 x86_64,$(ARCH)))
@$(call try,BOOTLOADER,isolinux)
endif
ifeq (,$(filter-out aarch64 riscv64,$(ARCH)))
ifeq (,$(filter-out aarch64 riscv64
loongarch64
,$(ARCH)))
@$(call try,BOOTLOADER,efiboot)
endif
ifeq (,$(filter-out e2k%,$(ARCH)))
...
...
lib/vm.mk
View file @
a7d2e27c
...
...
@@ -21,7 +21,7 @@ else
vm/.base-grub: vm/.base-grub-efi; @:
endif
ifeq (,$(filter-out x86_64 aarch64 riscv64,$(ARCH)))
ifeq (,$(filter-out x86_64 aarch64 riscv64
loongarch64
,$(ARCH)))
vm/.base-grub-efi: vm/.bare use/efi/grub; @:
else
vm/.base-grub-efi: vm/.bare; @:
...
...
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