Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 144032 | Differences between
and this patch

Collapse All | Expand All

(-)xen/arch/x86/boot/x86_32.S (+4 lines)
Lines 261-263 Link Here
261
.section ".bss.stack_aligned","w"
261
.section ".bss.stack_aligned","w"
262
ENTRY(cpu0_stack)
262
ENTRY(cpu0_stack)
263
        .fill STACK_SIZE,1,0
263
        .fill STACK_SIZE,1,0
264
265
#ifdef __ELF__
266
.section .note.GNU-stack,"",%progbits
267
#endif
(-)xen/arch/x86/hvm/svm/x86_32/exits.S (+4 lines)
Lines 157-159 Link Here
157
        sti
157
        sti
158
        call do_softirq
158
        call do_softirq
159
        jmp  svm_test_all_events
159
        jmp  svm_test_all_events
160
161
#ifdef __ELF__
162
.section .note.GNU-stack,"",%progbits
163
#endif
(-)xen/arch/x86/hvm/vmx/x86_32/exits.S (+4 lines)
Lines 147-149 Link Here
147
ENTRY(vmx_asm_do_relaunch)
147
ENTRY(vmx_asm_do_relaunch)
148
    vmx_asm_common 1, 1
148
    vmx_asm_common 1, 1
149
150
#ifdef __ELF__
151
.section .note.GNU-stack,"",%progbits
152
#endif
(-)xen/arch/x86/trampoline.S (+4 lines)
Lines 65-67 Link Here
65
ENTRY(trampoline_end)
65
ENTRY(trampoline_end)
66
#endif /* CONFIG_SMP */
66
#endif /* CONFIG_SMP */
67
68
#ifdef __ELF__
69
.section .note.GNU-stack,"",%progbits
70
#endif
(-)xen/arch/x86/x86_32/entry.S (+4 lines)
Lines 686-688 Link Here
686
        .rept NR_hypercalls-(.-hypercall_args_table)
686
        .rept NR_hypercalls-(.-hypercall_args_table)
687
        .byte 0 /* do_ni_hypercall      */
687
        .byte 0 /* do_ni_hypercall      */
688
        .endr
688
        .endr
689
690
#ifdef __ELF__
691
.section .note.GNU-stack,"",%progbits
692
#endif
(-)xen/Makefile (-1 / +1 lines)
Lines 31-37 Link Here
31
       ln -f -s $(notdir $(TARGET))-$(XEN_FULLVERSION).gz $(DESTDIR)/boot/$(notdir $(TARGET))-$(XEN_VERSION).$(XEN_SUBVERSION).gz
31
       ln -f -s $(notdir $(TARGET))-$(XEN_FULLVERSION).gz $(DESTDIR)/boot/$(notdir $(TARGET))-$(XEN_VERSION).$(XEN_SUBVERSION).gz
32
       ln -f -s $(notdir $(TARGET))-$(XEN_FULLVERSION).gz $(DESTDIR)/boot/$(notdir $(TARGET))-$(XEN_VERSION).gz
32
       ln -f -s $(notdir $(TARGET))-$(XEN_FULLVERSION).gz $(DESTDIR)/boot/$(notdir $(TARGET))-$(XEN_VERSION).gz
33
       ln -f -s $(notdir $(TARGET))-$(XEN_FULLVERSION).gz $(DESTDIR)/boot/$(notdir $(TARGET)).gz
33
       ln -f -s $(notdir $(TARGET))-$(XEN_FULLVERSION).gz $(DESTDIR)/boot/$(notdir $(TARGET)).gz
34
       $(INSTALL_DATA) $(TARGET)-syms $(DESTDIR)/boot/$(notdir $(TARGET))-syms-$(XEN_FULLVERSION)
34
       $(INSTALL) -m0755 $(TARGET)-syms $(DESTDIR)/boot/$(notdir $(TARGET))-syms-$(XEN_FULLVERSION)
35
       [ -d $(DESTDIR)/usr/include/xen/io ] || \
35
       [ -d $(DESTDIR)/usr/include/xen/io ] || \
36
               $(INSTALL_DIR) $(DESTDIR)/usr/include/xen/io
36
               $(INSTALL_DIR) $(DESTDIR)/usr/include/xen/io
37
       $(INSTALL_DATA) include/public/*.h $(DESTDIR)/usr/include/xen
37
       $(INSTALL_DATA) include/public/*.h $(DESTDIR)/usr/include/xen

Return to bug 144032