Subversion Repositories HelenOS-historic

Compare Revisions

Ignore whitespace Rev 708 → Rev 707

/boot/trunk/boot.config
File deleted
/boot/trunk/Makefile
File deleted
/boot/trunk/tools/config.py
File deleted
Property changes:
Deleted: svn:executable
-*
\ No newline at end of property
/boot/trunk/arch/amd64/Makefile.inc
File deleted
/boot/trunk/arch/amd64/Makefile
0,0 → 1,15
.PHONY=build kernel clean
 
ROOT=distroot
BASE=$(shell cd ../../..; pwd)
KERNELDIR=$(BASE)/kernel
 
build: kernel
gunzip -c grub/grub.img.gz > image.bin
e2cp $(KERNELDIR)/kernel.bin image.bin:/boot/kernel.bin
 
kernel:
$(MAKE) -C $(KERNELDIR)
 
clean:
-rm image.bin
/boot/trunk/arch/ia32/Makefile.inc
File deleted
/boot/trunk/arch/ia32/Makefile
0,0 → 1,20
.PHONY=build kernel uspace clean
 
ROOT=distroot
BASE=$(shell cd ../../..; pwd)
KERNELDIR=$(BASE)/kernel
USPACEDIR=$(BASE)/uspace
 
build: kernel uspace
gunzip -c grub/grub.img.gz > image.bin
e2cp $(KERNELDIR)/kernel.bin image.bin:/boot/kernel.bin
e2cp $(USPACEDIR)/init/init image.bin:/init
 
kernel:
$(MAKE) -C $(KERNELDIR)
 
uspace:
$(MAKE) -C $(USPACEDIR)
 
clean:
-rm image.bin
/boot/trunk/arch/sparc64/Makefile.inc
File deleted
/boot/trunk/arch/sparc64/Makefile
0,0 → 1,20
.PHONY=build kernel clean
 
ROOT=distroot
BASE=$(shell cd ../../..; pwd)
KERNELDIR=$(BASE)/kernel
 
build: kernel
mkdir -p $(ROOT)/boot
mkdir -p $(ROOT)/kernel
cat silo/silo.tar.gz | (cd $(ROOT)/boot; tar xvfz -)
cp silo/README silo/COPYING silo/silo.conf $(ROOT)/boot
ln -s $(KERNELDIR)/kernel.bin $(ROOT)/kernel
mkisofs -f -G distroot/boot/isofs.b -B ... -r -o image.iso $(ROOT)/
 
kernel:
$(MAKE) -C $(KERNELDIR)
 
clean:
-rm -r $(ROOT)/
-rm image.iso