- Timestamp:
- 2011-05-01T19:34:26Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 0e26444
- Parents:
- 1ff896e (diff), 042fbe0 (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
Legend:
- Unmodified
- Added
- Removed
-
boot/Makefile
r1ff896e r694ca93f 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
r1ff896e r694ca93f 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
r1ff896e r694ca93f 120 120 RD_DRV_CFG = 121 121 122 RD_LIBS = 123 124 ifeq ($(CONFIG_BUILD_SHARED_LIBS), y) 125 RD_LIBS += \ 126 $(USPACE_PATH)/lib/c/libc.so0 \ 127 $(USPACE_PATH)/lib/softint/libsofti.so0 128 RD_APPS += \ 129 $(USPACE_PATH)/app/dltest/dltest 130 endif 131 122 132 RD_APPS_ESSENTIAL = \ 123 133 $(USPACE_PATH)/app/bdsh/bdsh \ … … 127 137 RD_APPS_NON_ESSENTIAL = \ 128 138 $(USPACE_PATH)/app/blkdump/blkdump \ 139 $(USPACE_PATH)/app/dltest/dltest \ 140 $(USPACE_PATH)/app/dltest2/dltest2 \ 141 $(USPACE_PATH)/app/dload/dload \ 129 142 $(USPACE_PATH)/app/edit/edit \ 130 143 $(USPACE_PATH)/app/ext2info/ext2info \ -
boot/arch/ia64/_link.ld.in
r1ff896e r694ca93f 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
r1ff896e r694ca93f 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.