Changeset 10ea0ca in mainline


Ignore:
Timestamp:
2008-12-12T06:21:51Z (16 years ago)
Author:
Jakub Vana <jakub.vana@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
a1e28489
Parents:
4b8f1c3
Message:

IA$:Fix in hello,Makefile

Location:
boot/arch/ia64/loader
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • boot/arch/ia64/loader/Makefile

    r4b8f1c3 r10ea0ca  
    8888        boot.S
    8989
     90NOCOMPONENTS = \
     91        $(KERNELDIR)/kernel.bin
    9092COMPONENTS = \
    91         $(KERNELDIR)/kernel.bin
    92 NOCOMPONENTS = \
    9393        $(KERNELDIR)/kernel.bin \
    9494        $(USPACEDIR)/srv/ns/ns \
  • boot/arch/ia64/loader/gefi/HelenOS/hello.c

    r4b8f1c3 r10ea0ca  
    107107                defaultLoad=1;
    108108        }       
     109/*      else{
     110                CHAR16 buf[1024];
     111                //buf[0]='\\';
     112                i--;
     113                int j;
     114                for(j=0;LoadOptions[i+j]!=L' '&&LoadOptions[i+j]!=0;j++)
     115                        buf[j+1]=LoadOptions[i+j];
     116                buf[j+1]=0;
     117                StrCat(FileName,buf);
     118                defaultLoad=0;
     119        }*/
    109120        else{
    110121                CHAR16 buf[1024];
     
    113124                int j;
    114125                for(j=0;LoadOptions[i+j]!=L' '&&LoadOptions[i+j]!=0;j++)
    115                         buf[j+1]=LoadOptions[i+j];
     126                        buf[j]=LoadOptions[i+j];
    116127                buf[j+1]=0;
    117128                StrCat(FileName,buf);
Note: See TracChangeset for help on using the changeset viewer.