Changes in / [34ae0a5:1f7753a] in mainline


Ignore:
Files:
26 deleted
25 edited

Legend:

Unmodified
Added
Removed
  • boot/Makefile.common

    r34ae0a5 r1f7753a  
    109109        $(USPACE_PATH)/srv/fs/exfat/exfat \
    110110        $(USPACE_PATH)/srv/fs/udf/udf \
    111         $(USPACE_PATH)/srv/fs/ext2fs/ext2fs \
    112111        $(USPACE_PATH)/srv/fs/ext4fs/ext4fs \
    113112        $(USPACE_PATH)/srv/hid/remcons/remcons \
     
    167166        $(USPACE_PATH)/app/dload/dload \
    168167        $(USPACE_PATH)/app/edit/edit \
    169         $(USPACE_PATH)/app/ext2info/ext2info \
    170168        $(USPACE_PATH)/app/inet/inet \
    171169        $(USPACE_PATH)/app/kill/kill \
  • kernel/arch/amd64/Makefile.inc

    r34ae0a5 r1f7753a  
    3333
    3434FPU_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
     35CMN1 = -m64 -mcmodel=large -mno-red-zone -fno-unwind-tables -fno-omit-frame-pointer
    5536GCC_CFLAGS += $(CMN1)
    5637ICC_CFLAGS += $(CMN1)
  • kernel/arch/ppc32/src/ppc32.c

    r34ae0a5 r1f7753a  
    103103}
    104104
     105#ifdef CONFIG_FB
    105106static bool display_register(ofw_tree_node_t *node, void *arg)
    106107{
     
    169170        return true;
    170171}
     172#endif
    171173
    172174void arch_post_mm_init(void)
  • tools/autotool.py

    r34ae0a5 r1f7753a  
    563563        outmk.write('#########################################\n')
    564564        outmk.write('## AUTO-GENERATED FILE, DO NOT EDIT!!! ##\n')
     565        outmk.write('## Generated by: tools/autotool.py     ##\n')
    565566        outmk.write('#########################################\n\n')
    566567       
     
    580581        outhd.write('/***************************************\n')
    581582        outhd.write(' * AUTO-GENERATED FILE, DO NOT EDIT!!! *\n')
     583        outhd.write(' * Generated by: tools/autotool.py     *\n')
    582584        outhd.write(' ***************************************/\n\n')
    583585       
  • tools/config.py

    r34ae0a5 r1f7753a  
    388388        outmk.write('#########################################\n')
    389389        outmk.write('## AUTO-GENERATED FILE, DO NOT EDIT!!! ##\n')
     390        outmk.write('## Generated by: tools/config.py       ##\n')
    390391        outmk.write('#########################################\n\n')
    391392       
    392393        outmc.write('/***************************************\n')
    393394        outmc.write(' * AUTO-GENERATED FILE, DO NOT EDIT!!! *\n')
     395        outmc.write(' * Generated by: tools/config.py       *\n')
    394396        outmc.write(' ***************************************/\n\n')
    395397       
  • tools/mkarray.py

    r34ae0a5 r1f7753a  
    9595        header.write('/***************************************\n')
    9696        header.write(' * AUTO-GENERATED FILE, DO NOT EDIT!!! *\n')
     97        header.write(' * Generated by: tools/mkarray.py      *\n')
    9798        header.write(' ***************************************/\n\n')
    9899        header.write("#ifndef %s_H_\n" % label)
     
    109110        data.write('/***************************************\n')
    110111        data.write(' * AUTO-GENERATED FILE, DO NOT EDIT!!! *\n')
     112        data.write(' * Generated by: tools/mkarray.py      *\n')
    111113        data.write(' ***************************************/\n\n')
    112114        data.write("#include \"%s.h\"\n\n" % dest)
  • tools/pack.py

    r34ae0a5 r1f7753a  
    155155        header.write('/***************************************\n')
    156156        header.write(' * AUTO-GENERATED FILE, DO NOT EDIT!!! *\n')
     157        header.write(' * Generated by: tools/pack.py         *\n')
    157158        header.write(' ***************************************/\n\n')
    158159        header.write("#ifndef BOOT_COMPONENTS_H_\n")
     
    177178        data.write('/***************************************\n')
    178179        data.write(' * AUTO-GENERATED FILE, DO NOT EDIT!!! *\n')
     180        data.write(' * Generated by: tools/pack.py         *\n')
    179181        data.write(' ***************************************/\n\n')
    180182        data.write("#include <typedefs.h>\n")
  • uspace/Makefile

    r34ae0a5 r1f7753a  
    4040        app/devctl \
    4141        app/edit \
    42         app/ext2info \
    4342        app/getterm \
    4443        app/init \
     
    105104        srv/fs/mfs \
    106105        srv/fs/locfs \
    107         srv/fs/ext2fs \
    108106        srv/fs/ext4fs \
    109107        srv/hid/compositor \
     
    213211        lib/net \
    214212        lib/nic \
    215         lib/ext2 \
    216213        lib/ext4 \
    217214        lib/usb \
  • uspace/Makefile.common

    r34ae0a5 r1f7753a  
    118118LIBGUI_PREFIX = $(LIB_PREFIX)/gui
    119119
    120 LIBEXT2_PREFIX = $(LIB_PREFIX)/ext2
    121120LIBEXT4_PREFIX = $(LIB_PREFIX)/ext4
    122121
  • uspace/app/tester/Makefile

    r34ae0a5 r1f7753a  
    2929
    3030USPACE_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)
     31LIBS = $(LIBBLOCK_PREFIX)/libblock.a $(LIBSOFTFLOAT_PREFIX)/libsoftfloat.a
     32EXTRA_CFLAGS = -I$(LIBBLOCK_PREFIX) -I$(LIBSOFTFLOAT_PREFIX)
    3333BINARY = tester
    3434
     
    6363        mm/mapping1.c \
    6464        hw/misc/virtchar1.c \
    65         hw/serial/serial1.c \
    66         ext2/ext2_1.c
     65        hw/serial/serial1.c
    6766
    6867include $(USPACE_PREFIX)/Makefile.common
  • uspace/app/tester/tester.c

    r34ae0a5 r1f7753a  
    7474#include "hw/serial/serial1.def"
    7575#include "hw/misc/virtchar1.def"
    76 #include "ext2/ext2_1.def"
    7776        {NULL, NULL, NULL, false}
    7877};
  • uspace/app/tester/tester.h

    r34ae0a5 r1f7753a  
    106106extern const char *test_serial1(void);
    107107extern const char *test_virtchar1(void);
    108 extern const char *test_ext2_1(void);
    109108extern const char *test_devman1(void);
    110109extern const char *test_devman2(void);
  • uspace/lib/ext4/libext4_block_group.c

    r34ae0a5 r1f7753a  
    11/*
     2 * Copyright (c) 2011 Martin Sucha
    23 * Copyright (c) 2012 Frantisek Princ
    34 * All rights reserved.
  • uspace/lib/ext4/libext4_block_group.h

    r34ae0a5 r1f7753a  
    11/*
     2 * Copyright (c) 2011 Martin Sucha
    23 * Copyright (c) 2012 Frantisek Princ
    34 * All rights reserved.
  • uspace/lib/ext4/libext4_directory.c

    r34ae0a5 r1f7753a  
    11/*
     2 * Copyright (c) 2011 Martin Sucha
    23 * Copyright (c) 2012 Frantisek Princ
    34 * All rights reserved.
  • uspace/lib/ext4/libext4_directory.h

    r34ae0a5 r1f7753a  
    11/*
     2 * Copyright (c) 2011 Martin Sucha
    23 * Copyright (c) 2012 Frantisek Princ
    34 * All rights reserved.
  • uspace/lib/ext4/libext4_filesystem.c

    r34ae0a5 r1f7753a  
    11/*
     2 * Copyright (c) 2011 Martin Sucha
    23 * Copyright (c) 2012 Frantisek Princ
    34 * All rights reserved.
  • uspace/lib/ext4/libext4_filesystem.h

    r34ae0a5 r1f7753a  
    11/*
     2 * Copyright (c) 2011 Martin Sucha
    23 * Copyright (c) 2012 Frantisek Princ
    34 * All rights reserved.
  • uspace/lib/ext4/libext4_inode.c

    r34ae0a5 r1f7753a  
    11/*
     2 * Copyright (c) 2011 Martin Sucha
    23 * Copyright (c) 2012 Frantisek Princ
    34 * All rights reserved.
  • uspace/lib/ext4/libext4_inode.h

    r34ae0a5 r1f7753a  
    11/*
     2 * Copyright (c) 2011 Martin Sucha
    23 * Copyright (c) 2012 Frantisek Princ
    34 * All rights reserved.
  • uspace/lib/ext4/libext4_superblock.c

    r34ae0a5 r1f7753a  
    11/*
     2 * Copyright (c) 2011 Martin Sucha
    23 * Copyright (c) 2012 Frantisek Princ
    34 * All rights reserved.
  • uspace/lib/ext4/libext4_superblock.h

    r34ae0a5 r1f7753a  
    11/*
     2 * Copyright (c) 2011 Martin Sucha
    23 * Copyright (c) 2012 Frantisek Princ
    34 * All rights reserved.
  • uspace/lib/ext4/libext4_types.h

    r34ae0a5 r1f7753a  
    11/*
     2 * Copyright (c) 2011 Martin Sucha
    23 * Copyright (c) 2012 Frantisek Princ
    34 * All rights reserved.
  • uspace/srv/fs/ext4fs/ext4fs_ops.c

    r34ae0a5 r1f7753a  
    11/*
     2 * Copyright (c) 2011 Martin Sucha
    23 * Copyright (c) 2012 Frantisek Princ
    34 * All rights reserved.
  • uspace/srv/logger/initlvl.c

    r34ae0a5 r1f7753a  
    3838#include <sysinfo.h>
    3939#include <str.h>
     40#include <stdlib.h>
    4041#include "logger.h"
    4142
     
    9192        char level_str[200];
    9293        str_cpy(level_str, 200, (const char *) argument);
     94        free(argument);
    9395
    9496        parse_level_settings(level_str);
Note: See TracChangeset for help on using the changeset viewer.