- Timestamp:
- 2011-05-17T07:44:17Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 04c418d, 2586860, 5e6e50b
- Parents:
- 72cd53d (diff), 0d8a304 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - Location:
- boot
- Files:
-
- 5 edited
-
Makefile (modified) (2 diffs)
-
Makefile.build (modified) (2 diffs)
-
Makefile.common (modified) (2 diffs)
-
arch/ia64/_link.ld.in (modified) (2 diffs)
-
arch/ia64/src/boot.S (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
boot/Makefile
r72cd53d r3375bd4 55 55 cp "$$file" "$(DIST_PATH)/srv/" ; \ 56 56 done 57 for file in $(RD_LIBS) ; do \ 58 cp "$$file" "$(DIST_PATH)/lib/" ; \ 59 done 57 60 for file in $(RD_APPS) ; do \ 58 61 cp "$$file" "$(DIST_PATH)/app/" ; \ … … 83 86 rm -f $(USPACE_PATH)/dist/srv/* 84 87 rm -rf $(USPACE_PATH)/dist/drv/* 88 rm -f $(USPACE_PATH)/dist/lib/* 85 89 rm -f $(USPACE_PATH)/dist/app/* 86 90 rm -f $(USPACE_PATH)/dist/cfg/net/* -
boot/Makefile.build
r72cd53d r3375bd4 40 40 -finput-charset=UTF-8 -ffreestanding -fno-builtin -nostdlib -nostdinc \ 41 41 -Wall -Wextra -Wno-unused-parameter -Wmissing-prototypes \ 42 - Werror-implicit-function-declaration -Wwrite-strings \42 -std=gnu99 -Werror-implicit-function-declaration -Wwrite-strings \ 43 43 -pipe 44 44 … … 111 111 112 112 $(RAW): $(OBJECTS) $(COMPONENT_OBJECTS) $(LINK) 113 $(LD) - N$(LFLAGS) -T $(LINK) -M -Map $(MAP) -o $@ $(COMPONENT_OBJECTS) $(OBJECTS)113 $(LD) -n $(LFLAGS) -T $(LINK) -M -Map $(MAP) -o $@ $(COMPONENT_OBJECTS) $(OBJECTS) 114 114 115 115 $(LINK): $(LINK).comp $(DEPEND) -
boot/Makefile.common
r72cd53d r3375bd4 118 118 RD_DRV_CFG = 119 119 120 RD_LIBS = 121 122 ifeq ($(CONFIG_BUILD_SHARED_LIBS), y) 123 RD_LIBS += \ 124 $(USPACE_PATH)/lib/c/libc.so0 \ 125 $(USPACE_PATH)/lib/softint/libsofti.so0 126 RD_APPS += \ 127 $(USPACE_PATH)/app/dltest/dltest 128 endif 129 120 130 RD_APPS_ESSENTIAL = \ 121 131 $(USPACE_PATH)/app/bdsh/bdsh \ … … 124 134 125 135 RD_APPS_NON_ESSENTIAL = \ 136 $(USPACE_PATH)/app/dltest/dltest \ 137 $(USPACE_PATH)/app/dltest2/dltest2 \ 138 $(USPACE_PATH)/app/dload/dload \ 126 139 $(USPACE_PATH)/app/edit/edit \ 127 140 $(USPACE_PATH)/app/kill/kill \ -
boot/arch/ia64/_link.ld.in
r72cd53d r3375bd4 11 11 *(.rodata); 12 12 *(.rodata.*); 13 *(.data );/* initialized data */14 _ got= . ;13 *(.data .data.*); /* initialized data */ 14 __gp = . ; 15 15 *(.got .got.*); 16 16 *(.bss); /* uninitialized static variables */ … … 20 20 21 21 /DISCARD/ : { 22 *(.comment); 23 *(.note*); 22 *(.*); 24 23 } 25 24 } -
boot/arch/ia64/src/boot.S
r72cd53d r3375bd4 34 34 .global start 35 35 start: 36 movl gp = LOADER_ADDRESS36 movl gp = __gp 37 37 38 38 #
Note:
See TracChangeset
for help on using the changeset viewer.
