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
Anton Palgunov
mkimage-profiles
Commits
cf420b21
Commit
cf420b21
authored
Nov 27, 2018
by
Alexey Shabalin
Committed by
Michael Shigorin
Dec 24, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vm.mk: add vm/.bare-grub{,-efi}
Some images will now be better off with GRUB; rework ve/.bare while at that (splitting the image targets appropriately).
parent
11e1bf73
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
3 deletions
+15
-3
vm.mk
conf.d/vm.mk
+2
-2
vm.mk
lib/vm.mk
+13
-1
No files found.
conf.d/vm.mk
View file @
cf420b21
...
...
@@ -2,10 +2,10 @@
ifeq (vm,$(IMAGE_CLASS))
# NB: interactivesystem pulls in network-config-subsystem anyways
vm/bare: vm/.ba
re
+sysvinit
vm/bare: vm/.ba
se-lilo
+sysvinit
@$(call add,BASE_PACKAGES,apt)
vm/systemd: vm/.ba
re
+systemd
vm/systemd: vm/.ba
se-grub
+systemd
@$(call add,BASE_PACKAGES,apt)
# handle ROOTPW (through deflogin)
...
...
lib/vm.mk
View file @
cf420b21
...
...
@@ -8,8 +8,20 @@ ifeq (vm,$(IMAGE_CLASS))
vm/.bare: profile/bare
@$(call add,BASE_PACKAGES,interactivesystem shadow-utils e2fsprogs)
ifeq (,$(filter-out i586 x86_64,$(ARCH))) # useless on anything else
ifeq (,$(filter-out i586 x86_64,$(ARCH)))
vm/.base-lilo: vm/.bare
@$(call add,BASE_PACKAGES,lilo)
endif
ifeq (,$(filter-out i586 x86_64,$(ARCH)))
vm/.base-grub: vm/.bare
@$(call add,BASE_PACKAGES,grub2-pc)
endif
ifeq (,$(filter-out i586 x86_64 aarch64,$(ARCH)))
vm/.base-grub-efi: vm/.bare
@$(call add,BASE_PACKAGES,grub2-efi)
endif
endif
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