Changes in / [23c1fae:87e5b526] in mainline
- Files:
-
- 21 added
- 25 deleted
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
defaults/amd64/Makefile.config
r23c1fae r87e5b526 54 54 55 55 # Default framebuffer mode 56 CONFIG_BFB_MODE = 1024x76856 CONFIG_BFB_MODE = 800x600 57 57 58 58 # Default framebuffer depth -
defaults/ia32/Makefile.config
r23c1fae r87e5b526 60 60 61 61 # Default framebuffer mode 62 CONFIG_BFB_MODE = 1024x76862 CONFIG_BFB_MODE = 800x600 63 63 64 64 # Default framebuffer depth -
kernel/arch/arm32/Makefile.inc
r23c1fae r87e5b526 33 33 ATSIGN = % 34 34 35 GCC_CFLAGS += -march=armv4 -fno-omit-frame-pointer -mapcs-frame35 GCC_CFLAGS += -march=armv4 36 36 37 37 BITS = 32 -
kernel/arch/arm32/include/istate.h
r23c1fae r87e5b526 49 49 /** Struct representing CPU state saved when an exception occurs. */ 50 50 typedef struct istate { 51 uint32_t dummy;52 51 uint32_t spsr; 53 52 uint32_t sp; -
kernel/arch/arm32/src/exc_handler.S
r23c1fae r87e5b526 130 130 stmfd r13!, {r2} 131 131 2: 132 sub sp, sp, #4133 132 .endm 134 133 135 134 .macro LOAD_REGS_FROM_STACK 136 add sp, sp, #4137 135 ldmfd r13!, {r0} 138 136 msr spsr, r0 -
uspace/app/tester/Makefile
r23c1fae r87e5b526 29 29 30 30 USPACE_PREFIX = ../.. 31 LIBS = $(LIBEXT2_PREFIX)/libext2.a $(LIBBLOCK_PREFIX)/libblock.a $(LIBSOFTFLOAT_PREFIX)/libsoftfloat.a32 EXTRA_CFLAGS = -I$(LIBBLOCK_PREFIX) -I$(LIBEXT2_PREFIX) -I$(LIBSOFTFLOAT_PREFIX)31 LIBS = $(LIBEXT2_PREFIX)/libext2.a $(LIBBLOCK_PREFIX)/libblock.a 32 EXTRA_CFLAGS = -I$(LIBBLOCK_PREFIX) -I$(LIBEXT2_PREFIX) 33 33 BINARY = tester 34 34 … … 48 48 fault/fault2.c \ 49 49 fault/fault3.c \ 50 float/float1.c \51 float/softfloat1.c \52 50 vfs/vfs1.c \ 53 51 ipc/ping_pong.c \ … … 61 59 hw/misc/virtchar1.c \ 62 60 hw/serial/serial1.c \ 63 ext2/ext2_1.c61 libext2/libext2_1.c 64 62 65 63 include $(USPACE_PREFIX)/Makefile.common -
uspace/app/tester/tester.c
r23c1fae r87e5b526 58 58 #include "fault/fault2.def" 59 59 #include "fault/fault3.def" 60 #include "float/float1.def"61 #include "float/softfloat1.def"62 60 #include "vfs/vfs1.def" 63 61 #include "ipc/ping_pong.def" … … 70 68 #include "hw/serial/serial1.def" 71 69 #include "hw/misc/virtchar1.def" 72 #include " ext2/ext2_1.def"70 #include "libext2/libext2_1.def" 73 71 {NULL, NULL, NULL, false} 74 72 }; -
uspace/app/tester/tester.h
r23c1fae r87e5b526 91 91 extern const char *test_fault2(void); 92 92 extern const char *test_fault3(void); 93 extern const char *test_float1(void);94 extern const char *test_softfloat1(void);95 93 extern const char *test_vfs1(void); 96 94 extern const char *test_ping_pong(void); … … 103 101 extern const char *test_serial1(void); 104 102 extern const char *test_virtchar1(void); 105 extern const char *test_ ext2_1(void);103 extern const char *test_libext2_1(void); 106 104 extern const char *test_devman1(void); 107 105 extern const char *test_devman2(void); -
uspace/lib/c/arch/arm32/Makefile.common
r23c1fae r87e5b526 28 28 # 29 29 30 GCC_CFLAGS += -ffixed-r9 -mtp=soft -fno-omit-frame-pointer -march=armv4 -mapcs-frame30 GCC_CFLAGS += -ffixed-r9 -mtp=soft -fno-omit-frame-pointer -march=armv4 31 31 32 32 ENDIANESS = LE -
uspace/lib/softfloat/Makefile
r23c1fae r87e5b526 29 29 30 30 USPACE_PREFIX = ../.. 31 EXTRA_CFLAGS = -Iinclude 31 32 LIBRARY = libsoftfloat 32 33 33 34 SOURCES = \ 34 softfloat.c \35 common.c \36 add.c \37 sub.c \38 div.c \39 mul.c \40 comparison.c \41 conversion.c \42 other.c35 generic/add.c \ 36 generic/common.c \ 37 generic/comparison.c \ 38 generic/conversion.c \ 39 generic/div.c \ 40 generic/mul.c \ 41 generic/other.c \ 42 generic/softfloat.c \ 43 generic/sub.c 43 44 44 45 include $(USPACE_PREFIX)/Makefile.common
Note:
See TracChangeset
for help on using the changeset viewer.