Changes in / [368ee04:2166728] in mainline


Ignore:
Files:
4 added
4 deleted
21 edited

Legend:

Unmodified
Added
Removed
  • boot/Makefile

    r368ee04 r2166728  
    6868                cp "$$file" "$(DIST_PATH)/app/" ; \
    6969        done
    70         for file in $(RD_DATA) ; do \
    71                 cp "$$file" "$(DIST_PATH)/" ; \
    72         done
    7370ifeq ($(CONFIG_PCUT_TESTS),y)
    7471        echo "echo Running all tests..." >"$(DIST_PATH)/test/run_all"
     
    8784        echo "</ul></body></html>" >>"$(DIST_PATH)/test/test.html"
    8885endif
    89        
     86
    9087ifeq ($(CONFIG_PCUT_SELF_TESTS),y)
    9188        echo "echo Running all PCUT self-tests..." >"$(DIST_PATH)/test/run_pcut"
     
    105102        echo "</ul></body></html>" >>"$(DIST_PATH)/test/pcut.html"
    106103endif
    107        
     104
    108105        for drv in $(RD_DRVS) ; do \
    109106                drv_dir="`dirname "$$drv"`" ; \
     
    138135clean_dist:
    139136        rm -f $(INITRD).img $(COMPS_H) $(COMPS_C) $(LINK) $(LINK).comp *.co
    140         find $(USPACE_PATH)/dist -mindepth 1 -maxdepth 1 -type f -exec rm \{\} \;
    141137        rm -f $(USPACE_PATH)/dist/srv/*
    142138        rm -rf $(USPACE_PATH)/dist/drv/*
  • boot/Makefile.common

    r368ee04 r2166728  
    237237        $(USPACE_PATH)/app/bdsh/test-bdsh
    238238
    239 RD_DATA_ESSENTIAL = \
    240         $(USPACE_PATH)/app/bdsh/demo.txt
    241 
    242 RD_DATA_NON_ESSENTIAL = \
    243         $(USPACE_PATH)/app/modplay/demo.xm \
    244         $(USPACE_PATH)/app/viewer/logo.tga
    245 
    246239
    247240COMPONENTS = \
     
    261254RD_DRVS = $(RD_DRVS_ESSENTIAL)
    262255RD_DRVS_FW = $(RD_DRVS_FW_ESSENTIAL)
    263 RD_DATA = $(RD_DATA_ESSENTIAL)
    264256else
    265257RD_SRVS = $(RD_SRVS_ESSENTIAL) $(RD_SRVS_NON_ESSENTIAL)
     
    267259RD_DRVS = $(RD_DRVS_ESSENTIAL) $(RD_DRVS_NON_ESSENTIAL)
    268260RD_DRVS_FW = $(RD_DRVS_FW_ESSENTIAL) $(RD_DRVS_FW_NON_ESSENTIAL)
    269 RD_DATA = $(RD_DATA_ESSENTIAL) $(RD_DATA_NON_ESSENTIAL)
    270261endif
    271262
  • boot/arch/amd64/Makefile.inc

    r368ee04 r2166728  
    6666        $(USPACE_PATH)/app/wavplay/wavplay
    6767
    68 RD_DATA_NON_ESSENTIAL += \
    69         $(USPACE_PATH)/app/wavplay/demo.wav
    70 
    7168BOOT_OUTPUT = $(ROOT_PATH)/image.iso
    7269PREBUILD = $(INITRD).img
  • boot/arch/arm32/include/types.h

    r368ee04 r2166728  
    4545typedef uint32_t pfn_t;
    4646
    47 typedef int32_t ptrdiff_t;
    48 
    4947typedef struct {
    5048        /** Address where the task was placed. */
  • boot/arch/ia64/include/types.h

    r368ee04 r2166728  
    4040typedef uint64_t uintptr_t;
    4141
    42 typedef int64_t ptrdiff_t;
    43 
    4442typedef struct {
    4543        void *addr;
  • boot/arch/mips32/include/types.h

    r368ee04 r2166728  
    3737typedef uint32_t uintptr_t;
    3838
    39 typedef int32_t ptrdiff_t;
    40 
    4139typedef struct {
    4240        /** Address where the task was placed. */
  • boot/arch/ppc32/include/types.h

    r368ee04 r2166728  
    3838typedef int32_t native_t;
    3939
    40 typedef int32_t ptrdiff_t;
    41 
    4240typedef struct {
    4341        void *addr;
  • boot/arch/riscv64/include/types.h

    r368ee04 r2166728  
    3737typedef uint64_t uintptr_t;
    3838
    39 typedef int64_t ptrdiff_t;
    40 
    4139typedef struct {
    4240        void *start;
  • boot/arch/sparc64/include/types.h

    r368ee04 r2166728  
    3838typedef int64_t native_t;
    3939
    40 typedef int64_t ptrdiff_t;
    41 
    4240typedef struct {
    4341        void *addr;
  • boot/generic/src/printf_core.c

    r368ee04 r2166728  
    605605                       
    606606                        switch (uc) {
    607                         case 't':
    608                                 /* ptrdiff_t */
    609                                 if (sizeof(ptrdiff_t) == sizeof(int32_t))
    610                                         qualifier = PrintfQualifierInt;
    611                                 else
    612                                         qualifier = PrintfQualifierLongLong;
    613                                 i = nxt;
    614                                 uc = str_decode(fmt, &nxt, STR_NO_LIMIT);
    615                                 break;
     607                        /** @todo Unimplemented qualifiers:
     608                         *        t ptrdiff_t - ISO C 99
     609                         */
    616610                        case 'h':
    617611                                /* Char or short */
  • defaults/mips32/Makefile.config

    r368ee04 r2166728  
    4444CONFIG_HID_OUT = generic
    4545
    46 # Barebone build with essential binaries only
     46# Barebone build with essential binaries only 
    4747CONFIG_BAREBONE = y
  • defaults/mips32/malta-be/Makefile.config

    r368ee04 r2166728  
    11# Machine type
    2 MACHINE = bmalta
     2MACHINE = bmalta 
  • defaults/mips32/malta-le/Makefile.config

    r368ee04 r2166728  
    11# Machine type
    2 MACHINE = lmalta
     2MACHINE = lmalta 
  • kernel/generic/include/typedefs.h

    r368ee04 r2166728  
    6161typedef volatile uint32_t ioport32_t;
    6262
    63 typedef native_t ptrdiff_t;
    64 
    6563#ifdef __32_BITS__
    6664
  • kernel/generic/src/printf/printf_core.c

    r368ee04 r2166728  
    733733                       
    734734                        switch (uc) {
    735                         case 't':
    736                                 /* ptrdiff_t */
    737                                 if (sizeof(ptrdiff_t) == sizeof(int32_t))
    738                                         qualifier = PrintfQualifierInt;
    739                                 else
    740                                         qualifier = PrintfQualifierLongLong;
    741                                 i = nxt;
    742                                 uc = str_decode(fmt, &nxt, STR_NO_LIMIT);
    743                                 break;
     735                        /** @todo Unimplemented qualifiers:
     736                         *        t ptrdiff_t - ISO C 99
     737                         */
    744738                        case 'h':
    745739                                /* Char or short */
  • kernel/test/print/print2.c

    r368ee04 r2166728  
    5252        TPRINTF("Real output:     [%#x] [%#5.3x] [%#-5.3x] [%#3.5x] [%#-3.5x]\n\n", 17, 18, 19, 20, 21);
    5353       
    54         char ch[12];
    55         ptrdiff_t d, neg_d;
    56        
    57         d = &ch[0] - &ch[12];
    58         neg_d = (unsigned)(-d);
    59         TPRINTF("Testing printf(\"%%td %%tu %%tx %%ti %%to\", d, neg_d, neg_d, d, neg_d):\n");
    60         TPRINTF("Expected output: [-12] [12] [c] [-12] [14]\n");
    61         TPRINTF("Real output:     [%td] [%tu] [%tx] [%ti] [%to]\n\n", d, neg_d, neg_d, d, neg_d);
    62        
    6354        sysarg_t nat = UINTN_C(0x12345678);
    6455       
  • tools/autotool.py

    r368ee04 r2166728  
    925925                # Platform-specific utilities
    926926                if ((config['BARCH'] == "amd64") or (config['BARCH'] == "ia32") or (config['BARCH'] == "ppc32") or (config['BARCH'] == "sparc64")):
    927                         common['GENISOIMAGE'] = check_app_alternatives(["genisoimage", "mkisofs", "xorriso"], ["--version"], "ISO 9660 creation utility", "usually part of genisoimage")
     927                        common['GENISOIMAGE'] = check_app_alternatives(["mkisofs", "genisoimage", "xorriso"], ["--version"], "ISO 9660 creation utility", "usually part of genisoimage")
    928928                        if common['GENISOIMAGE'] == 'xorriso':
    929929                                common['GENISOIMAGE'] += ' -as genisoimage'
  • uspace/app/modplay/Makefile

    r368ee04 r2166728  
    3737        -I$(LIBHOUND_PREFIX)/include \
    3838        -I$(LIBPCM_PREFIX)/include
    39 
    4039BINARY = modplay
    4140
  • uspace/app/tester/print/print2.c

    r368ee04 r2166728  
    5353        TPRINTF("Real output:     [%#x] [%#5.3x] [%#-5.3x] [%#3.5x] [%#-3.5x]\n\n", 17, 18, 19, 20, 21);
    5454       
    55         char ch[12];
    56         ptrdiff_t d, neg_d;
    57        
    58         d = &ch[0] - &ch[12];
    59         neg_d = (unsigned)(-d);
    60         TPRINTF("Testing printf(\"%%td %%tu %%tx %%ti %%to\", d, neg_d, neg_d, d, neg_d):\n");
    61         TPRINTF("Expected output: [-12] [12] [c] [-12] [14]\n");
    62         TPRINTF("Real output:     [%td] [%tu] [%tx] [%ti] [%to]\n\n", d, neg_d, neg_d, d, neg_d);
    63        
    6455        return NULL;
    6556}
  • uspace/lib/c/generic/io/printf_core.c

    r368ee04 r2166728  
    14481448                       
    14491449                        switch (uc) {
    1450                         case 't':
    1451                                 /* ptrdiff_t */
    1452                                 if (sizeof(ptrdiff_t) == sizeof(int32_t))
    1453                                         qualifier = PrintfQualifierInt;
    1454                                 else
    1455                                         qualifier = PrintfQualifierLongLong;
    1456                                 i = nxt;
    1457                                 uc = str_decode(fmt, &nxt, STR_NO_LIMIT);
    1458                                 break;
     1450                        /** @todo Unimplemented qualifiers:
     1451                         *        t ptrdiff_t - ISO C 99
     1452                         */
    14591453                        case 'h':
    14601454                                /* Char or short */
  • version

    r368ee04 r2166728  
    3636
    3737VERSION = 0
    38 PATCHLEVEL = 7
     38PATCHLEVEL = 6
    3939SUBLEVEL = 0
    4040
     
    4545endif
    4646
    47 NAME = Parabolic Potassium
    48 COPYRIGHT = Copyright (c) 2001-2017 HelenOS project
     47NAME = Elastic Horse
     48COPYRIGHT = Copyright (c) 2001-2016 HelenOS project
Note: See TracChangeset for help on using the changeset viewer.