Subversion Repositories HelenOS-historic

Compare Revisions

Ignore whitespace Rev 1763 → Rev 1764

/boot/trunk/arch/mips32/Makefile.inc
32,7 → 32,7
make -C arch/$(ARCH)/loader COMPILER=$(COMPILER) KERNELDIR=../../../$(KERNELDIR) USPACEDIR=../../../$(USPACEDIR) IMAGE=$(CONFIG_IMAGE)
cp arch/$(ARCH)/loader/image.boot image.boot
 
clean: clean_kernel clean_uspace
clean: clean_boot_gen clean_kernel clean_uspace
make -C arch/$(ARCH)/loader clean
-rm -f image.boot
 
/boot/trunk/arch/mips32/loader/main.c
27,7 → 27,7
*/
 
#include "main.h"
#include "../../../generic/printf.h"
#include <printf.h>
#include "msim.h"
#include "asm.h"
#include "_components.h"
/boot/trunk/arch/mips32/loader/msim.c
27,7 → 27,7
*/
#include "msim.h"
#include "../../../generic/printf.h"
#include <printf.h>
 
#define MSIM_VIDEORAM 0xB0000000
 
/boot/trunk/arch/mips32/loader/types.h
29,7 → 29,7
#ifndef TYPES_H__
#define TYPES_H__
 
#include "../../../generic/types.h"
#include <gentypes.h>
 
typedef signed char __s8;
 
/boot/trunk/arch/mips32/loader/Makefile
46,8 → 46,7
OBJDUMP = $(TOOLCHAIN_DIR)/$(TARGET)-objdump
endif
 
CFLAGS = -nostdinc -nostdlib -fno-builtin -Werror-implicit-function-declaration -Wmissing-prototypes -Werror -O3 -mno-abicalls -G 0 -fno-zero-initialized-in-bss -mhard-float -mips3
DEFS = -I.
CFLAGS = -I. -I../../../generic -nostdinc -nostdlib -fno-builtin -Werror-implicit-function-declaration -Wmissing-prototypes -Werror -O3 -mno-abicalls -G 0 -fno-zero-initialized-in-bss -mhard-float -mips3
 
SOURCES = \
main.c \