Changeset 27518e4 in mainline for boot/arch/sparc64/loader/Makefile


Ignore:
Timestamp:
2008-09-13T14:45:04Z (16 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
9f3363e
Parents:
0320823
Message:

Support for ramdisks external to image.boot on sparc64.

The sparc64 port can now boot from a ramdisk which is not part of image.boot.
This allows us to use larger ramdisks with SILO.

File:
1 edited

Legend:

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

    r0320823 r27518e4  
    115115-include Makefile.depend
    116116
    117 image.boot: depend _components.h _link.ld $(COMPONENT_OBJECTS) initrd.o $(OBJECTS)
    118         $(LD) -Map image.map -no-check-sections -N -T _link.ld $(COMPONENT_OBJECTS) initrd.o $(OBJECTS) -o $@
     117image.boot: depend _components.h _link.ld $(COMPONENT_OBJECTS) $(OBJECTS)
     118        $(LD) -Map image.map -no-check-sections -N -T _link.ld $(COMPONENT_OBJECTS) $(OBJECTS) -o $@
    119119
    120120depend:
     
    125125                rm -f $(USPACEDIR)/dist/sbin/`basename $$task` ; \
    126126        done
    127         -rm -f _components.h _components.c _link.ld $(COMPONENT_OBJECTS) initrd.o $(OBJECTS) initrd.img image.boot image.map image.disasm Makefile.depend
     127        -rm -f _components.h _components.c _link.ld $(COMPONENT_OBJECTS) $(OBJECTS) initrd.img image.boot image.map image.disasm Makefile.depend
    128128
    129129_components.h _components.c _link.ld $(COMPONENT_OBJECTS) initrd.o: $(COMPONENTS) $(RD_TASKS) _link.ld.in
     
    139139        ../../../../tools/mkhord.py 16384 initrd.fs initrd.img
    140140        rm initrd.fs
    141         ../../../tools/pack.py $(OBJCOPY) $(BFD_NAME) $(BFD_ARCH) 1 "unsigned long" $(COMPONENTS) ./initrd.img
     141        ../../../tools/pack.py $(OBJCOPY) $(BFD_NAME) $(BFD_ARCH) 1 "unsigned long" $(COMPONENTS)
    142142
    143143%.o: %.S
Note: See TracChangeset for help on using the changeset viewer.