diff options
author | Joursoir <chat@joursoir.net> | 2022-09-29 10:58:00 +0300 |
---|---|---|
committer | Joursoir <chat@joursoir.net> | 2022-10-07 22:25:32 +0300 |
commit | f7d6f01ca277a5ee131d0f423c26a924da5f68e4 (patch) | |
tree | be1407aac9e035ab095d4dadac7ced798dbb2e82 /arch/x86/boot | |
parent | 9d1dc21b597470a1acb5b512c240c7f27b87b17c (diff) | |
download | mfsos-f7d6f01ca277a5ee131d0f423c26a924da5f68e4.tar.gz mfsos-f7d6f01ca277a5ee131d0f423c26a924da5f68e4.tar.bz2 mfsos-f7d6f01ca277a5ee131d0f423c26a924da5f68e4.zip |
x86/multiboot: rename multiboot.s to head.s
"Head" is a more typical name for code that passes control to the
kernel.
Diffstat (limited to 'arch/x86/boot')
-rw-r--r-- | arch/x86/boot/multiboot/head.s (renamed from arch/x86/boot/multiboot/multiboot.s) | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/x86/boot/multiboot/multiboot.s b/arch/x86/boot/multiboot/head.s index e6e8c21..31051ff 100644 --- a/arch/x86/boot/multiboot/multiboot.s +++ b/arch/x86/boot/multiboot/head.s @@ -1,3 +1,4 @@ +# head.s - bootstrap the kernel # https://www.gnu.org/software/grub/manual/multiboot/multiboot.html .include "bare_multiboot.h" # the file is auto-generated |