1
0
mirror of https://github.com/0xAX/linux-insides.git synced 2025-01-03 12:20:56 +00:00

Update how_kernel_compiled.md

This commit is contained in:
Simarpreet Singh 2015-10-08 13:09:17 -07:00
parent 33a4a4f284
commit 9db4e1ed04

View File

@ -550,7 +550,7 @@ The first is `voffset.h` generated by the `sed` script that gets two addresses f
#define VO__text 0xffffffff81000000 #define VO__text 0xffffffff81000000
``` ```
They are start and end of the kernel. The second is `zoffset.h` depens on the `vmlinux` target from the [arch/x86/boot/compressed/Makefile](https://github.com/torvalds/linux/blob/master/arch/x86/boot/compressed/Makefile): They are the start and the end of the kernel. The second is `zoffset.h` depens on the `vmlinux` target from the [arch/x86/boot/compressed/Makefile](https://github.com/torvalds/linux/blob/master/arch/x86/boot/compressed/Makefile):
```Makefile ```Makefile
$(obj)/zoffset.h: $(obj)/compressed/vmlinux FORCE $(obj)/zoffset.h: $(obj)/compressed/vmlinux FORCE