This website requires JavaScript.
Explore
Help
Register
Sign In
Minki
/
linux
Watch
1
Star
0
Fork
1
You've already forked linux
mirror of
https://github.com/torvalds/linux.git
synced
2024-11-16 17:12:06 +00:00
Code
Issues
Packages
Projects
Releases
Wiki
Activity
e86f949667
linux
/
arch
/
x86
/
lguest
/
Makefile
3 lines
84 B
Makefile
Raw
Normal View
History
Unescape
Escape
lguest: rename i386_head.S Since commit 9a163ed8e0 (i386: move kernel) kernel/i386_head.S was renamed to kernel/head_32.S. We do the same for lguest/i386_head.S. Signed-off-by: Daniel Baluta <dbaluta@ixiacom.com> Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
2013-05-20 00:55:39 +00:00
obj-y
:=
head_32.o boot.o
lguest: fix 'unhandled trap 13' with CONFIG_CC_STACKPROTECTOR We don't set up the canary; let's disable stack protector on boot.c so we can get into lguest_init, then set it up. As a side effect, switch_to_new_gdt() sets up %fs for us properly too. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au> Acked-by: Tejun Heo <tj@kernel.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2009-06-03 05:22:24 +00:00
CFLAGS_boot.o
:=
$(
call cc-option, -fno-stack-protector
)
Reference in New Issue
Copy Permalink