Changeset bb74e8ab in mainline
- Timestamp:
- 2008-12-12T05:34:10Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 4b8f1c3
- Parents:
- 925fdd7
- Location:
- boot/arch/ia64/loader/gefi/HelenOS
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
boot/arch/ia64/loader/gefi/HelenOS/Makefile
r925fdd7 rbb74e8ab 49 49 #When selected first lines or second lines, select if image is linked into hello or not - usefull for network boot 50 50 #hello.so: hello.o image.o division.o 51 hello.so: hello.o image.bin 51 hello.so: hello.o image.bin division.o 52 52 # $(LD) $(LDFLAGS) -Map hello.map hello.o division.o image.o -o hello.so $(LOADLIBES) #link image inside hello 53 53 $(LD) $(LDFLAGS) -Map hello.map hello.o division.o -o hello.so $(LOADLIBES) #dont link image inside hello -
boot/arch/ia64/loader/gefi/HelenOS/hello.c
r925fdd7 rbb74e8ab 13 13 14 14 //Link image as a data array into hello - usefull with network boot 15 #define IMAGE_LINKED15 //#define IMAGE_LINKED 16 16 17 17 bootinfo_t *bootinfo=(bootinfo_t *)BOOTINFO_ADDRESS; … … 87 87 for(i=StrLen(FileName);i>=0 && FileName[i]!='\\';i--); 88 88 FileName[i] = 0; 89 FileName[0] = 0; 89 90 90 91 Print(L"%s\n",LoadedImage->LoadOptions); … … 108 109 else{ 109 110 CHAR16 buf[1024]; 110 buf[0]='\\';111 //buf[0]='\\'; 111 112 i--; 112 113 int j;
Note:
See TracChangeset
for help on using the changeset viewer.