Changeset 3f10d92 in mainline
- Timestamp:
- 2011-05-01T12:33:18Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 7f9bc04
- Parents:
- 326d86e
- Files:
-
- 10 deleted
- 11 edited
Legend:
- Unmodified
- Added
- Removed
-
defaults/amd64/Makefile.config
r326d86e r3f10d92 3 3 4 4 # Ramdisk format 5 RDFMT = tmpfs5 RDFMT = fat 6 6 7 7 # Compiler … … 59 59 CONFIG_VESA_BPP = 16 60 60 61 # Build shared libraries62 CONFIG_BUILD_SHARED_LIBS = n63 64 61 # Load disk drivers on startup 65 62 CONFIG_START_BD = n -
defaults/arm32/Makefile.config
r326d86e r3f10d92 3 3 4 4 # Ramdisk format 5 RDFMT = tmpfs5 RDFMT = fat 6 6 7 7 # Compiler … … 35 35 CONFIG_HID_OUT = generic 36 36 37 # Build shared libraries38 CONFIG_BUILD_SHARED_LIBS = n39 40 37 # Load disk drivers on startup 41 38 CONFIG_START_BD = n -
defaults/ia32/Makefile.config
r326d86e r3f10d92 6 6 7 7 # Ramdisk format 8 RDFMT = tmpfs8 RDFMT = fat 9 9 10 10 # Compiler -
defaults/ia64/Makefile.config
r326d86e r3f10d92 3 3 4 4 # Ramdisk format 5 RDFMT = tmpfs5 RDFMT = fat 6 6 7 7 # Compiler … … 47 47 CONFIG_HID_OUT = generic 48 48 49 # Build shared libraries50 CONFIG_BUILD_SHARED_LIBS = n51 52 49 # Load disk drivers on startup 53 50 CONFIG_START_BD = n -
defaults/mips32/Makefile.config
r326d86e r3f10d92 3 3 4 4 # Ramdisk format 5 RDFMT = tmpfs5 RDFMT = fat 6 6 7 7 # Compiler -
defaults/ppc32/Makefile.config
r326d86e r3f10d92 3 3 4 4 # Ramdisk format 5 RDFMT = tmpfs5 RDFMT = fat 6 6 7 7 # Compiler -
defaults/sparc64/Makefile.config
r326d86e r3f10d92 56 56 CONFIG_AOUT_ISOFS_B = y 57 57 58 # Build shared libraries59 CONFIG_BUILD_SHARED_LIBS = n60 61 58 # Load disk drivers on startup 62 59 CONFIG_START_BD = n -
defaults/special/Makefile.config
r326d86e r3f10d92 29 29 CONFIG_TEST = y 30 30 31 # Build shared libraries32 CONFIG_BUILD_SHARED_LIBS = n33 34 31 # Load disk drivers on startup 35 32 CONFIG_START_BD = n -
kernel/generic/include/syscall/syscall.h
r326d86e r3f10d92 90 90 SYS_SYSINFO_GET_DATA, 91 91 92 SYS_DEBUG_PUTINT,93 92 SYS_DEBUG_ENABLE_CONSOLE, 94 93 SYS_DEBUG_DISABLE_CONSOLE, -
kernel/generic/src/syscall/syscall.c
r326d86e r3f10d92 55 55 #include <console/console.h> 56 56 #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 }64 57 65 58 /** Dispatch system call */ … … 187 180 188 181 /* Debug calls */ 189 (syshandler_t) sys_debug_putint,190 182 (syshandler_t) sys_debug_enable_console, 191 183 (syshandler_t) sys_debug_disable_console -
uspace/Makefile
r326d86e r3f10d92 92 92 drv/test2 93 93 94 ## Shared libraries95 ifeq ($(CONFIG_BUILD_SHARED_LIBS), y)96 DIRS += \97 app/dltest \98 app/dltest299 endif100 101 94 ## Networking 102 95 # … … 153 146 lib/softint \ 154 147 lib/softfloat \ 155 lib/test \156 148 lib/drv \ 157 149 lib/packet \
Note:
See TracChangeset
for help on using the changeset viewer.