Changes in / [34ae0a5:1f7753a] in mainline
- Files:
-
- 26 deleted
- 25 edited
Legend:
- Unmodified
- Added
- Removed
-
boot/Makefile.common
r34ae0a5 r1f7753a 109 109 $(USPACE_PATH)/srv/fs/exfat/exfat \ 110 110 $(USPACE_PATH)/srv/fs/udf/udf \ 111 $(USPACE_PATH)/srv/fs/ext2fs/ext2fs \112 111 $(USPACE_PATH)/srv/fs/ext4fs/ext4fs \ 113 112 $(USPACE_PATH)/srv/hid/remcons/remcons \ … … 167 166 $(USPACE_PATH)/app/dload/dload \ 168 167 $(USPACE_PATH)/app/edit/edit \ 169 $(USPACE_PATH)/app/ext2info/ext2info \170 168 $(USPACE_PATH)/app/inet/inet \ 171 169 $(USPACE_PATH)/app/kill/kill \ -
kernel/arch/amd64/Makefile.inc
r34ae0a5 r1f7753a 33 33 34 34 FPU_NO_CFLAGS = -mno-sse -mno-sse2 35 36 # 37 # FIXME: 38 # 39 # The -fno-optimize-sibling-calls should be removed as soon as a bug 40 # in GCC concerning the "large" memory model and tail call optimization 41 # is fixed. 42 # 43 # When GCC generates a code for tail call, instead of generating .. 44 # 45 # jmp *fnc 46 # 47 # it generates an assembly code with an illegal immediate prefix: 48 # 49 # jmp *$fnc 50 # 51 # See http://gcc.gnu.org/bugzilla/show_bug.cgi?id=48385 for reference. 52 # 53 54 CMN1 = -m64 -mcmodel=large -mno-red-zone -fno-unwind-tables -fno-omit-frame-pointer -fno-optimize-sibling-calls 35 CMN1 = -m64 -mcmodel=large -mno-red-zone -fno-unwind-tables -fno-omit-frame-pointer 55 36 GCC_CFLAGS += $(CMN1) 56 37 ICC_CFLAGS += $(CMN1) -
kernel/arch/ppc32/src/ppc32.c
r34ae0a5 r1f7753a 103 103 } 104 104 105 #ifdef CONFIG_FB 105 106 static bool display_register(ofw_tree_node_t *node, void *arg) 106 107 { … … 169 170 return true; 170 171 } 172 #endif 171 173 172 174 void arch_post_mm_init(void) -
tools/autotool.py
r34ae0a5 r1f7753a 563 563 outmk.write('#########################################\n') 564 564 outmk.write('## AUTO-GENERATED FILE, DO NOT EDIT!!! ##\n') 565 outmk.write('## Generated by: tools/autotool.py ##\n') 565 566 outmk.write('#########################################\n\n') 566 567 … … 580 581 outhd.write('/***************************************\n') 581 582 outhd.write(' * AUTO-GENERATED FILE, DO NOT EDIT!!! *\n') 583 outhd.write(' * Generated by: tools/autotool.py *\n') 582 584 outhd.write(' ***************************************/\n\n') 583 585 -
tools/config.py
r34ae0a5 r1f7753a 388 388 outmk.write('#########################################\n') 389 389 outmk.write('## AUTO-GENERATED FILE, DO NOT EDIT!!! ##\n') 390 outmk.write('## Generated by: tools/config.py ##\n') 390 391 outmk.write('#########################################\n\n') 391 392 392 393 outmc.write('/***************************************\n') 393 394 outmc.write(' * AUTO-GENERATED FILE, DO NOT EDIT!!! *\n') 395 outmc.write(' * Generated by: tools/config.py *\n') 394 396 outmc.write(' ***************************************/\n\n') 395 397 -
tools/mkarray.py
r34ae0a5 r1f7753a 95 95 header.write('/***************************************\n') 96 96 header.write(' * AUTO-GENERATED FILE, DO NOT EDIT!!! *\n') 97 header.write(' * Generated by: tools/mkarray.py *\n') 97 98 header.write(' ***************************************/\n\n') 98 99 header.write("#ifndef %s_H_\n" % label) … … 109 110 data.write('/***************************************\n') 110 111 data.write(' * AUTO-GENERATED FILE, DO NOT EDIT!!! *\n') 112 data.write(' * Generated by: tools/mkarray.py *\n') 111 113 data.write(' ***************************************/\n\n') 112 114 data.write("#include \"%s.h\"\n\n" % dest) -
tools/pack.py
r34ae0a5 r1f7753a 155 155 header.write('/***************************************\n') 156 156 header.write(' * AUTO-GENERATED FILE, DO NOT EDIT!!! *\n') 157 header.write(' * Generated by: tools/pack.py *\n') 157 158 header.write(' ***************************************/\n\n') 158 159 header.write("#ifndef BOOT_COMPONENTS_H_\n") … … 177 178 data.write('/***************************************\n') 178 179 data.write(' * AUTO-GENERATED FILE, DO NOT EDIT!!! *\n') 180 data.write(' * Generated by: tools/pack.py *\n') 179 181 data.write(' ***************************************/\n\n') 180 182 data.write("#include <typedefs.h>\n") -
uspace/Makefile
r34ae0a5 r1f7753a 40 40 app/devctl \ 41 41 app/edit \ 42 app/ext2info \43 42 app/getterm \ 44 43 app/init \ … … 105 104 srv/fs/mfs \ 106 105 srv/fs/locfs \ 107 srv/fs/ext2fs \108 106 srv/fs/ext4fs \ 109 107 srv/hid/compositor \ … … 213 211 lib/net \ 214 212 lib/nic \ 215 lib/ext2 \216 213 lib/ext4 \ 217 214 lib/usb \ -
uspace/Makefile.common
r34ae0a5 r1f7753a 118 118 LIBGUI_PREFIX = $(LIB_PREFIX)/gui 119 119 120 LIBEXT2_PREFIX = $(LIB_PREFIX)/ext2121 120 LIBEXT4_PREFIX = $(LIB_PREFIX)/ext4 122 121 -
uspace/app/tester/Makefile
r34ae0a5 r1f7753a 29 29 30 30 USPACE_PREFIX = ../.. 31 LIBS = $(LIB EXT2_PREFIX)/libext2.a $(LIBBLOCK_PREFIX)/libblock.a $(LIBSOFTFLOAT_PREFIX)/libsoftfloat.a32 EXTRA_CFLAGS = -I$(LIBBLOCK_PREFIX) -I$(LIB EXT2_PREFIX) -I$(LIBSOFTFLOAT_PREFIX)31 LIBS = $(LIBBLOCK_PREFIX)/libblock.a $(LIBSOFTFLOAT_PREFIX)/libsoftfloat.a 32 EXTRA_CFLAGS = -I$(LIBBLOCK_PREFIX) -I$(LIBSOFTFLOAT_PREFIX) 33 33 BINARY = tester 34 34 … … 63 63 mm/mapping1.c \ 64 64 hw/misc/virtchar1.c \ 65 hw/serial/serial1.c \ 66 ext2/ext2_1.c 65 hw/serial/serial1.c 67 66 68 67 include $(USPACE_PREFIX)/Makefile.common -
uspace/app/tester/tester.c
r34ae0a5 r1f7753a 74 74 #include "hw/serial/serial1.def" 75 75 #include "hw/misc/virtchar1.def" 76 #include "ext2/ext2_1.def"77 76 {NULL, NULL, NULL, false} 78 77 }; -
uspace/app/tester/tester.h
r34ae0a5 r1f7753a 106 106 extern const char *test_serial1(void); 107 107 extern const char *test_virtchar1(void); 108 extern const char *test_ext2_1(void);109 108 extern const char *test_devman1(void); 110 109 extern const char *test_devman2(void); -
uspace/lib/ext4/libext4_block_group.c
r34ae0a5 r1f7753a 1 1 /* 2 * Copyright (c) 2011 Martin Sucha 2 3 * Copyright (c) 2012 Frantisek Princ 3 4 * All rights reserved. -
uspace/lib/ext4/libext4_block_group.h
r34ae0a5 r1f7753a 1 1 /* 2 * Copyright (c) 2011 Martin Sucha 2 3 * Copyright (c) 2012 Frantisek Princ 3 4 * All rights reserved. -
uspace/lib/ext4/libext4_directory.c
r34ae0a5 r1f7753a 1 1 /* 2 * Copyright (c) 2011 Martin Sucha 2 3 * Copyright (c) 2012 Frantisek Princ 3 4 * All rights reserved. -
uspace/lib/ext4/libext4_directory.h
r34ae0a5 r1f7753a 1 1 /* 2 * Copyright (c) 2011 Martin Sucha 2 3 * Copyright (c) 2012 Frantisek Princ 3 4 * All rights reserved. -
uspace/lib/ext4/libext4_filesystem.c
r34ae0a5 r1f7753a 1 1 /* 2 * Copyright (c) 2011 Martin Sucha 2 3 * Copyright (c) 2012 Frantisek Princ 3 4 * All rights reserved. -
uspace/lib/ext4/libext4_filesystem.h
r34ae0a5 r1f7753a 1 1 /* 2 * Copyright (c) 2011 Martin Sucha 2 3 * Copyright (c) 2012 Frantisek Princ 3 4 * All rights reserved. -
uspace/lib/ext4/libext4_inode.c
r34ae0a5 r1f7753a 1 1 /* 2 * Copyright (c) 2011 Martin Sucha 2 3 * Copyright (c) 2012 Frantisek Princ 3 4 * All rights reserved. -
uspace/lib/ext4/libext4_inode.h
r34ae0a5 r1f7753a 1 1 /* 2 * Copyright (c) 2011 Martin Sucha 2 3 * Copyright (c) 2012 Frantisek Princ 3 4 * All rights reserved. -
uspace/lib/ext4/libext4_superblock.c
r34ae0a5 r1f7753a 1 1 /* 2 * Copyright (c) 2011 Martin Sucha 2 3 * Copyright (c) 2012 Frantisek Princ 3 4 * All rights reserved. -
uspace/lib/ext4/libext4_superblock.h
r34ae0a5 r1f7753a 1 1 /* 2 * Copyright (c) 2011 Martin Sucha 2 3 * Copyright (c) 2012 Frantisek Princ 3 4 * All rights reserved. -
uspace/lib/ext4/libext4_types.h
r34ae0a5 r1f7753a 1 1 /* 2 * Copyright (c) 2011 Martin Sucha 2 3 * Copyright (c) 2012 Frantisek Princ 3 4 * All rights reserved. -
uspace/srv/fs/ext4fs/ext4fs_ops.c
r34ae0a5 r1f7753a 1 1 /* 2 * Copyright (c) 2011 Martin Sucha 2 3 * Copyright (c) 2012 Frantisek Princ 3 4 * All rights reserved. -
uspace/srv/logger/initlvl.c
r34ae0a5 r1f7753a 38 38 #include <sysinfo.h> 39 39 #include <str.h> 40 #include <stdlib.h> 40 41 #include "logger.h" 41 42 … … 91 92 char level_str[200]; 92 93 str_cpy(level_str, 200, (const char *) argument); 94 free(argument); 93 95 94 96 parse_level_settings(level_str);
Note:
See TracChangeset
for help on using the changeset viewer.