This website requires JavaScript.
Explore
Help
Register
Sign In
korg
/
linux
Watch
0
Star
0
Fork
0
You've already forked linux
mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced
2024-11-16 08:44:21 +08:00
Code
Issues
Packages
Projects
Releases
Wiki
Activity
2d826404f0
linux
/
arch
/
x86
/
lguest
/
Makefile
3 lines
86 B
Makefile
Raw
Normal View
History
Unescape
Escape
Move lguest guest support to arch/x86. Lguest has two sides: host support (to launch guests) and guest support (replacement boot path and paravirt_ops). This moves the guest side to arch/x86/lguest where it's closer to related code. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au> Cc: Andi Kleen <ak@suse.de>
2007-10-22 09:01:54 +08:00
obj-y
:=
i386_head.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 13:22:24 +08:00
CFLAGS_boot.o
:=
$(
call cc-option, -fno-stack-protector
)
Reference in New Issue
Copy Permalink