- Timestamp:
- 2013-03-28T20:39:16Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 2d1fdcad
- Parents:
- cc3c27ad (diff), 5d9fce4 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - Location:
- uspace
- Files:
-
- 4 deleted
- 11 edited
-
Makefile (modified) (1 diff)
-
app/init/init.c (modified) (1 diff)
-
lib/c/arch/mips32/Makefile.common (modified) (2 diffs)
-
lib/c/arch/mips32eb/Makefile.common (modified) (2 diffs)
-
srv/bd/gxe_bd/Makefile (deleted)
-
srv/bd/gxe_bd/gxe_bd.c (deleted)
-
srv/fs/exfat/exfat_fat.c (modified) (1 diff)
-
srv/fs/fat/fat_fat.c (modified) (5 diffs)
-
srv/fs/mfs/mfs_ops.c (modified) (2 diffs)
-
srv/hid/input/Makefile (modified) (2 diffs)
-
srv/hid/input/ctl/gxe_fb.c (deleted)
-
srv/hid/input/input.c (modified) (1 diff)
-
srv/hid/input/kbd_ctl.h (modified) (1 diff)
-
srv/hid/input/kbd_port.h (modified) (1 diff)
-
srv/hid/input/port/gxemul.c (deleted)
Legend:
- Unmodified
- Added
- Removed
-
uspace/Makefile
rcc3c27ad rc6a7b3a 97 97 srv/bd/sata_bd \ 98 98 srv/bd/file_bd \ 99 srv/bd/gxe_bd \100 99 srv/bd/rd \ 101 100 srv/bd/part/guid_part \ -
uspace/app/init/init.c
rcc3c27ad rc6a7b3a 369 369 #ifdef CONFIG_START_BD 370 370 srv_start("/srv/ata_bd"); 371 srv_start("/srv/gxe_bd");372 371 #endif 373 372 -
uspace/lib/c/arch/mips32/Makefile.common
rcc3c27ad rc6a7b3a 27 27 # 28 28 29 GCC_CFLAGS += -msoft-float -m ips3 -mabi=3229 GCC_CFLAGS += -msoft-float -mabi=32 30 30 BASE_LIBS += $(LIBSOFTFLOAT_PREFIX)/libsoftfloat.a 31 31 … … 34 34 BFD_ARCH = mips 35 35 BFD_NAME = elf32-tradlittlemips 36 37 ifeq ($(MACHINE),msim) 38 GCC_CFLAGS += -march=r4000 39 endif 40 41 ifeq ($(MACHINE),lmalta) 42 GCC_CFLAGS += -march=4kc 43 endif 44 -
uspace/lib/c/arch/mips32eb/Makefile.common
rcc3c27ad rc6a7b3a 27 27 # 28 28 29 GCC_CFLAGS += -msoft-float -m ips3 -mabi=3229 GCC_CFLAGS += -msoft-float -mabi=32 30 30 BASE_LIBS += $(LIBSOFTFLOAT_PREFIX)/libsoftfloat.a 31 31 … … 34 34 BFD_ARCH = mips 35 35 BFD_NAME = elf32-tradbigmips 36 37 ifeq ($(MACHINE),bmalta) 38 GCC_CFLAGS += -march=4kc 39 endif 40 -
uspace/srv/fs/exfat/exfat_fat.c
rcc3c27ad rc6a7b3a 401 401 { 402 402 service_id_t service_id = nodep->idx->service_id; 403 exfat_cluster_t lastc ;403 exfat_cluster_t lastc = 0; 404 404 int rc; 405 405 -
uspace/srv/fs/fat/fat_fat.c
rcc3c27ad rc6a7b3a 128 128 { 129 129 fat_cluster_t firstc = nodep->firstc; 130 fat_cluster_t currc ;130 fat_cluster_t currc = 0; 131 131 aoff64_t relbn = bn; 132 132 int rc; … … 194 194 uint32_t clusters; 195 195 uint32_t max_clusters; 196 fat_cluster_t c ;196 fat_cluster_t c = 0; 197 197 int rc; 198 198 … … 679 679 fat_cluster_t *lifo; /* stack for storing free cluster numbers */ 680 680 unsigned found = 0; /* top of the free cluster number stack */ 681 fat_cluster_t clst, value, clst_last1 = FAT_CLST_LAST1(bs); 681 fat_cluster_t clst; 682 fat_cluster_t value = 0; 683 fat_cluster_t clst_last1 = FAT_CLST_LAST1(bs); 682 684 int rc = EOK; 683 685 … … 783 785 { 784 786 service_id_t service_id = nodep->idx->service_id; 785 fat_cluster_t lastc ;787 fat_cluster_t lastc = 0; 786 788 uint8_t fatno; 787 789 int rc; … … 907 909 int fat_sanity_check(fat_bs_t *bs, service_id_t service_id) 908 910 { 909 fat_cluster_t e0, e1; 911 fat_cluster_t e0 = 0; 912 fat_cluster_t e1 = 0; 910 913 unsigned fat_no; 911 914 int rc; -
uspace/srv/fs/mfs/mfs_ops.c
rcc3c27ad rc6a7b3a 773 773 { 774 774 int rc; 775 fs_node_t *fn ;775 fs_node_t *fn = NULL; 776 776 777 777 rc = mfs_node_get(&fn, service_id, index); … … 1108 1108 mfs_sync(service_id_t service_id, fs_index_t index) 1109 1109 { 1110 fs_node_t *fn ;1110 fs_node_t *fn = NULL; 1111 1111 int rc = mfs_node_get(&fn, service_id, index); 1112 1112 if (rc != EOK) -
uspace/srv/hid/input/Makefile
rcc3c27ad rc6a7b3a 39 39 port/adb_mouse.c \ 40 40 port/chardev.c \ 41 port/gxemul.c \42 41 port/msim.c \ 43 42 port/niagara.c \ … … 48 47 proto/mousedev.c \ 49 48 ctl/apple.c \ 50 ctl/gxe_fb.c \51 49 ctl/kbdev.c \ 52 50 ctl/pc.c \ -
uspace/srv/hid/input/input.c
rcc3c27ad rc6a7b3a 440 440 kbd_add_dev(&msim_port, &stty_ctl); 441 441 #endif 442 #if (defined(MACHINE_lgxemul) || defined(MACHINE_bgxemul)) && defined(CONFIG_FB)443 kbd_add_dev(&gxemul_port, &gxe_fb_ctl);444 #endif445 #if defined(MACHINE_lgxemul) || defined(MACHINE_bgxemul) && !defined(CONFIG_FB)446 kbd_add_dev(&gxemul_port, &stty_ctl);447 #endif448 442 #if defined(UARCH_ppc32) 449 443 kbd_add_dev(&adb_port, &apple_ctl); -
uspace/srv/hid/input/kbd_ctl.h
rcc3c27ad rc6a7b3a 49 49 50 50 extern kbd_ctl_ops_t apple_ctl; 51 extern kbd_ctl_ops_t gxe_fb_ctl;52 51 extern kbd_ctl_ops_t kbdev_ctl; 53 52 extern kbd_ctl_ops_t pc_ctl; -
uspace/srv/hid/input/kbd_port.h
rcc3c27ad rc6a7b3a 51 51 extern kbd_port_ops_t adb_port; 52 52 extern kbd_port_ops_t chardev_port; 53 extern kbd_port_ops_t gxemul_port;54 53 extern kbd_port_ops_t msim_port; 55 54 extern kbd_port_ops_t niagara_port;
Note:
See TracChangeset
for help on using the changeset viewer.
