Changes in / [1f7753a:34ae0a5] in mainline
- Files:
-
- 26 added
- 25 edited
-
boot/Makefile.common (modified) (2 diffs)
-
boot/grub.pc/stage2_eltorito (added)
-
kernel/arch/amd64/Makefile.inc (modified) (1 diff)
-
kernel/arch/ppc32/src/ppc32.c (modified) (2 diffs)
-
tools/autotool.py (modified) (2 diffs)
-
tools/config.py (modified) (1 diff)
-
tools/mkarray.py (modified) (2 diffs)
-
tools/pack.py (modified) (2 diffs)
-
uspace/Makefile (modified) (3 diffs)
-
uspace/Makefile.common (modified) (1 diff)
-
uspace/app/ext2info/Makefile (added)
-
uspace/app/ext2info/ext2info.c (added)
-
uspace/app/tester/Makefile (modified) (2 diffs)
-
uspace/app/tester/ext2/ext2_1.c (added)
-
uspace/app/tester/ext2/ext2_1.def (added)
-
uspace/app/tester/tester.c (modified) (1 diff)
-
uspace/app/tester/tester.h (modified) (1 diff)
-
uspace/lib/ext2/Makefile (added)
-
uspace/lib/ext2/libext2.h (added)
-
uspace/lib/ext2/libext2_block_group.c (added)
-
uspace/lib/ext2/libext2_block_group.h (added)
-
uspace/lib/ext2/libext2_directory.c (added)
-
uspace/lib/ext2/libext2_directory.h (added)
-
uspace/lib/ext2/libext2_filesystem.c (added)
-
uspace/lib/ext2/libext2_filesystem.h (added)
-
uspace/lib/ext2/libext2_inode.c (added)
-
uspace/lib/ext2/libext2_inode.h (added)
-
uspace/lib/ext2/libext2_superblock.c (added)
-
uspace/lib/ext2/libext2_superblock.h (added)
-
uspace/lib/ext4/libext4_block_group.c (modified) (1 diff)
-
uspace/lib/ext4/libext4_block_group.h (modified) (1 diff)
-
uspace/lib/ext4/libext4_directory.c (modified) (1 diff)
-
uspace/lib/ext4/libext4_directory.h (modified) (1 diff)
-
uspace/lib/ext4/libext4_filesystem.c (modified) (1 diff)
-
uspace/lib/ext4/libext4_filesystem.h (modified) (1 diff)
-
uspace/lib/ext4/libext4_inode.c (modified) (1 diff)
-
uspace/lib/ext4/libext4_inode.h (modified) (1 diff)
-
uspace/lib/ext4/libext4_superblock.c (modified) (1 diff)
-
uspace/lib/ext4/libext4_superblock.h (modified) (1 diff)
-
uspace/lib/ext4/libext4_types.h (modified) (1 diff)
-
uspace/srv/fs/ext2fs/Makefile (added)
-
uspace/srv/fs/ext2fs/ext2fs.c (added)
-
uspace/srv/fs/ext2fs/ext2fs.h (added)
-
uspace/srv/fs/ext2fs/ext2fs_ops.c (added)
-
uspace/srv/fs/ext4fs/ext4fs_ops.c (modified) (1 diff)
-
uspace/srv/hid/input/include/sun.h (added)
-
uspace/srv/hid/input/port/dummy.c (added)
-
uspace/srv/hid/input/port/sgcn.c (added)
-
uspace/srv/hid/input/port/sun.c (added)
-
uspace/srv/hid/input/port/z8530.c (added)
-
uspace/srv/logger/initlvl.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
boot/Makefile.common
r1f7753a r34ae0a5 109 109 $(USPACE_PATH)/srv/fs/exfat/exfat \ 110 110 $(USPACE_PATH)/srv/fs/udf/udf \ 111 $(USPACE_PATH)/srv/fs/ext2fs/ext2fs \ 111 112 $(USPACE_PATH)/srv/fs/ext4fs/ext4fs \ 112 113 $(USPACE_PATH)/srv/hid/remcons/remcons \ … … 166 167 $(USPACE_PATH)/app/dload/dload \ 167 168 $(USPACE_PATH)/app/edit/edit \ 169 $(USPACE_PATH)/app/ext2info/ext2info \ 168 170 $(USPACE_PATH)/app/inet/inet \ 169 171 $(USPACE_PATH)/app/kill/kill \ -
kernel/arch/amd64/Makefile.inc
r1f7753a r34ae0a5 33 33 34 34 FPU_NO_CFLAGS = -mno-sse -mno-sse2 35 CMN1 = -m64 -mcmodel=large -mno-red-zone -fno-unwind-tables -fno-omit-frame-pointer 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 36 55 GCC_CFLAGS += $(CMN1) 37 56 ICC_CFLAGS += $(CMN1) -
kernel/arch/ppc32/src/ppc32.c
r1f7753a r34ae0a5 103 103 } 104 104 105 #ifdef CONFIG_FB106 105 static bool display_register(ofw_tree_node_t *node, void *arg) 107 106 { … … 170 169 return true; 171 170 } 172 #endif173 171 174 172 void arch_post_mm_init(void) -
tools/autotool.py
r1f7753a r34ae0a5 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')566 565 outmk.write('#########################################\n\n') 567 566 … … 581 580 outhd.write('/***************************************\n') 582 581 outhd.write(' * AUTO-GENERATED FILE, DO NOT EDIT!!! *\n') 583 outhd.write(' * Generated by: tools/autotool.py *\n')584 582 outhd.write(' ***************************************/\n\n') 585 583 -
tools/config.py
r1f7753a r34ae0a5 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')391 390 outmk.write('#########################################\n\n') 392 391 393 392 outmc.write('/***************************************\n') 394 393 outmc.write(' * AUTO-GENERATED FILE, DO NOT EDIT!!! *\n') 395 outmc.write(' * Generated by: tools/config.py *\n')396 394 outmc.write(' ***************************************/\n\n') 397 395 -
tools/mkarray.py
r1f7753a r34ae0a5 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')98 97 header.write(' ***************************************/\n\n') 99 98 header.write("#ifndef %s_H_\n" % label) … … 110 109 data.write('/***************************************\n') 111 110 data.write(' * AUTO-GENERATED FILE, DO NOT EDIT!!! *\n') 112 data.write(' * Generated by: tools/mkarray.py *\n')113 111 data.write(' ***************************************/\n\n') 114 112 data.write("#include \"%s.h\"\n\n" % dest) -
tools/pack.py
r1f7753a r34ae0a5 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')158 157 header.write(' ***************************************/\n\n') 159 158 header.write("#ifndef BOOT_COMPONENTS_H_\n") … … 178 177 data.write('/***************************************\n') 179 178 data.write(' * AUTO-GENERATED FILE, DO NOT EDIT!!! *\n') 180 data.write(' * Generated by: tools/pack.py *\n')181 179 data.write(' ***************************************/\n\n') 182 180 data.write("#include <typedefs.h>\n") -
uspace/Makefile
r1f7753a r34ae0a5 40 40 app/devctl \ 41 41 app/edit \ 42 app/ext2info \ 42 43 app/getterm \ 43 44 app/init \ … … 104 105 srv/fs/mfs \ 105 106 srv/fs/locfs \ 107 srv/fs/ext2fs \ 106 108 srv/fs/ext4fs \ 107 109 srv/hid/compositor \ … … 211 213 lib/net \ 212 214 lib/nic \ 215 lib/ext2 \ 213 216 lib/ext4 \ 214 217 lib/usb \ -
uspace/Makefile.common
r1f7753a r34ae0a5 118 118 LIBGUI_PREFIX = $(LIB_PREFIX)/gui 119 119 120 LIBEXT2_PREFIX = $(LIB_PREFIX)/ext2 120 121 LIBEXT4_PREFIX = $(LIB_PREFIX)/ext4 121 122 -
uspace/app/tester/Makefile
r1f7753a r34ae0a5 29 29 30 30 USPACE_PREFIX = ../.. 31 LIBS = $(LIB BLOCK_PREFIX)/libblock.a $(LIBSOFTFLOAT_PREFIX)/libsoftfloat.a32 EXTRA_CFLAGS = -I$(LIBBLOCK_PREFIX) -I$(LIB SOFTFLOAT_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 … … 63 63 mm/mapping1.c \ 64 64 hw/misc/virtchar1.c \ 65 hw/serial/serial1.c 65 hw/serial/serial1.c \ 66 ext2/ext2_1.c 66 67 67 68 include $(USPACE_PREFIX)/Makefile.common -
uspace/app/tester/tester.c
r1f7753a r34ae0a5 74 74 #include "hw/serial/serial1.def" 75 75 #include "hw/misc/virtchar1.def" 76 #include "ext2/ext2_1.def" 76 77 {NULL, NULL, NULL, false} 77 78 }; -
uspace/app/tester/tester.h
r1f7753a r34ae0a5 106 106 extern const char *test_serial1(void); 107 107 extern const char *test_virtchar1(void); 108 extern const char *test_ext2_1(void); 108 109 extern const char *test_devman1(void); 109 110 extern const char *test_devman2(void); -
uspace/lib/ext4/libext4_block_group.c
r1f7753a r34ae0a5 1 1 /* 2 * Copyright (c) 2011 Martin Sucha3 2 * Copyright (c) 2012 Frantisek Princ 4 3 * All rights reserved. -
uspace/lib/ext4/libext4_block_group.h
r1f7753a r34ae0a5 1 1 /* 2 * Copyright (c) 2011 Martin Sucha3 2 * Copyright (c) 2012 Frantisek Princ 4 3 * All rights reserved. -
uspace/lib/ext4/libext4_directory.c
r1f7753a r34ae0a5 1 1 /* 2 * Copyright (c) 2011 Martin Sucha3 2 * Copyright (c) 2012 Frantisek Princ 4 3 * All rights reserved. -
uspace/lib/ext4/libext4_directory.h
r1f7753a r34ae0a5 1 1 /* 2 * Copyright (c) 2011 Martin Sucha3 2 * Copyright (c) 2012 Frantisek Princ 4 3 * All rights reserved. -
uspace/lib/ext4/libext4_filesystem.c
r1f7753a r34ae0a5 1 1 /* 2 * Copyright (c) 2011 Martin Sucha3 2 * Copyright (c) 2012 Frantisek Princ 4 3 * All rights reserved. -
uspace/lib/ext4/libext4_filesystem.h
r1f7753a r34ae0a5 1 1 /* 2 * Copyright (c) 2011 Martin Sucha3 2 * Copyright (c) 2012 Frantisek Princ 4 3 * All rights reserved. -
uspace/lib/ext4/libext4_inode.c
r1f7753a r34ae0a5 1 1 /* 2 * Copyright (c) 2011 Martin Sucha3 2 * Copyright (c) 2012 Frantisek Princ 4 3 * All rights reserved. -
uspace/lib/ext4/libext4_inode.h
r1f7753a r34ae0a5 1 1 /* 2 * Copyright (c) 2011 Martin Sucha3 2 * Copyright (c) 2012 Frantisek Princ 4 3 * All rights reserved. -
uspace/lib/ext4/libext4_superblock.c
r1f7753a r34ae0a5 1 1 /* 2 * Copyright (c) 2011 Martin Sucha3 2 * Copyright (c) 2012 Frantisek Princ 4 3 * All rights reserved. -
uspace/lib/ext4/libext4_superblock.h
r1f7753a r34ae0a5 1 1 /* 2 * Copyright (c) 2011 Martin Sucha3 2 * Copyright (c) 2012 Frantisek Princ 4 3 * All rights reserved. -
uspace/lib/ext4/libext4_types.h
r1f7753a r34ae0a5 1 1 /* 2 * Copyright (c) 2011 Martin Sucha3 2 * Copyright (c) 2012 Frantisek Princ 4 3 * All rights reserved. -
uspace/srv/fs/ext4fs/ext4fs_ops.c
r1f7753a r34ae0a5 1 1 /* 2 * Copyright (c) 2011 Martin Sucha3 2 * Copyright (c) 2012 Frantisek Princ 4 3 * All rights reserved. -
uspace/srv/logger/initlvl.c
r1f7753a r34ae0a5 38 38 #include <sysinfo.h> 39 39 #include <str.h> 40 #include <stdlib.h>41 40 #include "logger.h" 42 41 … … 92 91 char level_str[200]; 93 92 str_cpy(level_str, 200, (const char *) argument); 94 free(argument);95 93 96 94 parse_level_settings(level_str);
Note:
See TracChangeset
for help on using the changeset viewer.
