Changeset ff12a3c in mainline


Ignore:
Timestamp:
2005-12-18T13:28:50Z (19 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
031e264
Parents:
2cf87e50
Message:

Remove unnecessary files or files that are now part of the boot/ module.

Location:
arch
Files:
3 deleted
2 edited

Legend:

Unmodified
Added
Removed
  • arch/ia32/boot/Makefile

    r2cf87e50 rff12a3c  
    11.PHONY: build clean
    22
    3 build: grub.img.gz
    4         gunzip -c grub.img.gz > ../../../image.bin
    5         e2cp ../../../kernel.bin ../../../image.bin:/boot/kernel.bin
     3build:
    64
    75clean:
    8         -rm -f ../../../image.bin
  • arch/sparc64/boot/Makefile

    r2cf87e50 rff12a3c  
    11.PHONY: build clean
    22
    3 CFLAGS = -nostdinc -nostdlib -fno-builtin -Werror-implicit-function-declaration -Wmissing-prototypes -Werror -O3 -I../include
    4 
    5 build: boot.bin
    6         cp boot.bin ../../../load.bin
    7 
    8 boot.bin: boot.a.out
    9         dd if=/dev/zero of=$@ bs=512 count=16
    10         dd if=boot.a.out of=$@ bs=512 seek=1 conv=notrunc
    11 
    12 boot.a.out: boot.o
    13         $(LD) -no-check-sections -N -T _link.ld -s boot.o -o $@
    14 
    15 boot.o: boot.S
    16         $(CC) $(CFLAGS) -c boot.S -o $@
     3build:
    174
    185clean:
    19         -rm -f boot.o boot.a.out boot.bin ../../../load.bin
     6
Note: See TracChangeset for help on using the changeset viewer.