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