Changeset 3f10d92 in mainline


Ignore:
Timestamp:
2011-05-01T12:33:18Z (13 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
7f9bc04
Parents:
326d86e
Message:

Remove more stuff before integration.

Files:
10 deleted
11 edited

Legend:

Unmodified
Added
Removed
  • defaults/amd64/Makefile.config

    r326d86e r3f10d92  
    33
    44# Ramdisk format
    5 RDFMT = tmpfs
     5RDFMT = fat
    66
    77# Compiler
     
    5959CONFIG_VESA_BPP = 16
    6060
    61 # Build shared libraries
    62 CONFIG_BUILD_SHARED_LIBS = n
    63 
    6461# Load disk drivers on startup
    6562CONFIG_START_BD = n
  • defaults/arm32/Makefile.config

    r326d86e r3f10d92  
    33
    44# Ramdisk format
    5 RDFMT = tmpfs
     5RDFMT = fat
    66
    77# Compiler
     
    3535CONFIG_HID_OUT = generic
    3636
    37 # Build shared libraries
    38 CONFIG_BUILD_SHARED_LIBS = n
    39 
    4037# Load disk drivers on startup
    4138CONFIG_START_BD = n
  • defaults/ia32/Makefile.config

    r326d86e r3f10d92  
    66
    77# Ramdisk format
    8 RDFMT = tmpfs
     8RDFMT = fat
    99
    1010# Compiler
  • defaults/ia64/Makefile.config

    r326d86e r3f10d92  
    33
    44# Ramdisk format
    5 RDFMT = tmpfs
     5RDFMT = fat
    66
    77# Compiler
     
    4747CONFIG_HID_OUT = generic
    4848
    49 # Build shared libraries
    50 CONFIG_BUILD_SHARED_LIBS = n
    51 
    5249# Load disk drivers on startup
    5350CONFIG_START_BD = n
  • defaults/mips32/Makefile.config

    r326d86e r3f10d92  
    33
    44# Ramdisk format
    5 RDFMT = tmpfs
     5RDFMT = fat
    66
    77# Compiler
  • defaults/ppc32/Makefile.config

    r326d86e r3f10d92  
    33
    44# Ramdisk format
    5 RDFMT = tmpfs
     5RDFMT = fat
    66
    77# Compiler
  • defaults/sparc64/Makefile.config

    r326d86e r3f10d92  
    5656CONFIG_AOUT_ISOFS_B = y
    5757
    58 # Build shared libraries
    59 CONFIG_BUILD_SHARED_LIBS = n
    60 
    6158# Load disk drivers on startup
    6259CONFIG_START_BD = n
  • defaults/special/Makefile.config

    r326d86e r3f10d92  
    2929CONFIG_TEST = y
    3030
    31 # Build shared libraries
    32 CONFIG_BUILD_SHARED_LIBS = n
    33 
    3431# Load disk drivers on startup
    3532CONFIG_START_BD = n
  • kernel/generic/include/syscall/syscall.h

    r326d86e r3f10d92  
    9090        SYS_SYSINFO_GET_DATA,
    9191       
    92         SYS_DEBUG_PUTINT,
    9392        SYS_DEBUG_ENABLE_CONSOLE,
    9493        SYS_DEBUG_DISABLE_CONSOLE,
  • kernel/generic/src/syscall/syscall.c

    r326d86e r3f10d92  
    5555#include <console/console.h>
    5656#include <udebug/udebug.h>
    57 
    58 /** Print a hex integer into klog */
    59 static sysarg_t sys_debug_putint(sysarg_t i)
    60 {
    61         printf("[task:0x%x]", (unsigned) i);
    62         return 0;
    63 }
    6457
    6558/** Dispatch system call */
     
    187180       
    188181        /* Debug calls */
    189         (syshandler_t) sys_debug_putint,
    190182        (syshandler_t) sys_debug_enable_console,
    191183        (syshandler_t) sys_debug_disable_console
  • uspace/Makefile

    r326d86e r3f10d92  
    9292        drv/test2
    9393
    94 ## Shared libraries
    95 ifeq ($(CONFIG_BUILD_SHARED_LIBS), y)
    96         DIRS += \
    97                 app/dltest \
    98                 app/dltest2
    99 endif
    100 
    10194## Networking
    10295#
     
    153146        lib/softint \
    154147        lib/softfloat \
    155         lib/test \
    156148        lib/drv \
    157149        lib/packet \
Note: See TracChangeset for help on using the changeset viewer.