Subversion Repositories HelenOS-historic

Compare Revisions

No changes between revisions

Ignore whitespace Rev 640 → Rev 644

/kernel/trunk/arch/sparc64/boot/_link.ld
File deleted
/kernel/trunk/arch/sparc64/boot/boot.S
File deleted
/kernel/trunk/arch/sparc64/boot/Makefile
1,19 → 1,6
.PHONY: build clean
 
CFLAGS = -nostdinc -nostdlib -fno-builtin -Werror-implicit-function-declaration -Wmissing-prototypes -Werror -O3 -I../include
build:
 
build: boot.bin
cp boot.bin ../../../load.bin
clean:
 
boot.bin: boot.a.out
dd if=/dev/zero of=$@ bs=512 count=16
dd if=boot.a.out of=$@ bs=512 seek=1 conv=notrunc
 
boot.a.out: boot.o
$(LD) -no-check-sections -N -T _link.ld -s boot.o -o $@
 
boot.o: boot.S
$(CC) $(CFLAGS) -c boot.S -o $@
 
clean:
-rm -f boot.o boot.a.out boot.bin ../../../load.bin
/kernel/trunk/arch/ia32/boot/grub.img.gz
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes:
Deleted: svn:mime-type
-application/octet-stream
\ No newline at end of property
/kernel/trunk/arch/ia32/boot/Makefile
1,8 → 1,5
.PHONY: build clean
 
build: grub.img.gz
gunzip -c grub.img.gz > ../../../image.bin
e2cp ../../../kernel.bin ../../../image.bin:/boot/kernel.bin
build:
 
clean:
-rm -f ../../../image.bin