-1

I am working on an OS, and need to load an INITRD (grub command "module") and can't find info on where (in RAM) the module is loaded to

Does grub have a way of telling me or is it a fixed address or none of the above? Any help would be appreciated

unixsmurf
  • 5,852
  • 1
  • 33
  • 40
  • The vote to close indicates a misunderstanding of the question. This question is about programming, and would be off-topic on superuser. – unixsmurf Jul 21 '21 at 21:34

1 Answers1

0

This information is passed to the OS as part of the multiboot information structure data.

Although if you're working on a new OS, you may want to follow the (incompatible) Multiboot2 specification (using grub commands multiboot2/module2) instead.

unixsmurf
  • 5,852
  • 1
  • 33
  • 40