Changeset a4bd537 in mainline for boot/Makefile.grub
- Timestamp:
- 2019-04-06T13:39:58Z (6 years ago)
- Children:
- f7842ef
- Parents:
- 0d073b8
- git-author:
- Petr Pavlu <setup@…> (2019-03-31 14:09:57)
- git-committer:
- Petr Pavlu <setup@…> (2019-04-06 13:39:58)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
boot/Makefile.grub
r0d073b8 ra4bd537 64 64 endif 65 65 66 ifeq ($(GRUB_LOADER),multiboot) 66 67 for module in $(COMPONENTS) ; do \ 67 68 cp "$$module" $(BOOT)/ ; \ 68 69 done 70 endif 71 ifeq ($(GRUB_LOADER),chainloader) 72 cp "$(BOOT_OUTPUT)" $(BOOT)/ 73 endif 69 74 70 75 echo "set default=0" > $(BOOT_CONFIG) … … 83 88 84 89 echo "menuentry 'HelenOS $(RELEASE)' --class helenos --class os {" >> $(BOOT_CONFIG) 90 ifeq ($(GRUB_LOADER),multiboot) 85 91 for module in $(MODULES) ; do \ 86 92 echo " echo 'Loading $$module'" >> $(BOOT_CONFIG) ; \ … … 91 97 fi \ 92 98 done 99 endif 100 ifeq ($(GRUB_LOADER),chainloader) 101 echo " echo 'Loading $(BOOT_OUTPUT)'" >> $(BOOT_CONFIG) 102 echo " chainloader /boot/$(BOOT_OUTPUT)" >> $(BOOT_CONFIG) 103 echo " boot" >> $(BOOT_CONFIG) 104 endif 93 105 echo "}" >> $(BOOT_CONFIG) 94 106
Note:
See TracChangeset
for help on using the changeset viewer.