Changes in / [85f2064:d11a181] in mainline


Ignore:
Files:
12 deleted
10 edited

Legend:

Unmodified
Added
Removed
  • boot/Makefile.common

    r85f2064 rd11a181  
    187187        $(USPACE_PATH)/app/vuhid/vuh \
    188188        $(USPACE_PATH)/app/mkbd/mkbd \
    189         $(USPACE_PATH)/app/websrv/websrv \
    190         $(USPACE_PATH)/app/date/date
     189        $(USPACE_PATH)/app/websrv/websrv
    191190
    192191ifeq ($(CONFIG_PCC),y)
  • boot/arch/amd64/Makefile.inc

    r85f2064 rd11a181  
    4242        char/ps2mouse \
    4343        char/xtkbd \
    44         time/cmos-rtc \
    4544        bus/usb/ehci\
    4645        bus/usb/ohci \
  • uspace/Makefile

    r85f2064 rd11a181  
    7070        app/sysinfo \
    7171        app/mkbd \
    72         app/date \
    7372        srv/clip \
    7473        srv/loc \
     
    126125        drv/nic/ne2k \
    127126        drv/nic/e1k \
    128         drv/nic/rtl8139 \
     127        drv/nic/rtl8139
    129128
    130129ifeq ($(CONFIG_PCC),y)
     
    150149                drv/bus/isa \
    151150                drv/char/ns8250 \
    152                 drv/time/cmos-rtc \
    153151                srv/hw/irc/apic \
    154152                srv/hw/irc/i8259
     
    161159                drv/bus/isa \
    162160                drv/char/ns8250 \
    163                 drv/time/cmos-rtc \
    164161                srv/hw/irc/apic \
    165162                srv/hw/irc/i8259
  • uspace/drv/bus/isa/isa.dev

    r85f2064 rd11a181  
    2727        dma 1
    2828        dma 5
    29 
    30 cmos-rtc:
    31         match 100 isa/cmos-rtc
    32         io_range 70 2
  • uspace/lib/c/Makefile

    r85f2064 rd11a181  
    6969        generic/device/hw_res_parsed.c \
    7070        generic/device/char_dev.c \
    71         generic/device/clock_dev.c \
    7271        generic/device/nic.c \
    7372        generic/device/pci.c \
  • uspace/lib/c/include/ipc/dev_iface.h

    r85f2064 rd11a181  
    5252        USBHID_DEV_IFACE,
    5353
    54         /** Interface provided by Real Time Clock devices */
    55         CLOCK_DEV_IFACE,
    56 
    5754        DEV_IFACE_MAX
    5855} dev_inferface_idx_t;
  • uspace/lib/c/include/sys/time.h

    r85f2064 rd11a181  
    4646typedef uint32_t mseconds_t;
    4747
    48 struct tm {
    49         int tm_sec;       /* 0 - 59 */
    50         int tm_min;       /* 0 - 59 */
    51         int tm_hour;      /* 0 - 23 */
    52         int tm_mday;      /* 1 - 31 */
    53         int tm_mon;       /* 0 - 11 */
    54         int tm_year;      /* years since 1900 */
    55 };
    56 
    5748struct timeval {
    5849        time_t tv_sec;        /* seconds */
  • uspace/lib/drv/Makefile

    r85f2064 rd11a181  
    4444        generic/remote_pci.c \
    4545        generic/remote_usbhc.c \
    46         generic/remote_usbhid.c \
    47         generic/remote_clock_dev.c
     46        generic/remote_usbhid.c
    4847
    4948include $(USPACE_PREFIX)/Makefile.common
  • uspace/lib/drv/generic/dev_iface.c

    r85f2064 rd11a181  
    4141#include "remote_hw_res.h"
    4242#include "remote_char_dev.h"
    43 #include "remote_clock_dev.h"
    4443#include "remote_nic.h"
    4544#include "remote_usb.h"
     
    5655                &remote_usb_iface,
    5756                &remote_usbhc_iface,
    58                 &remote_usbhid_iface,
    59                 &remote_clock_dev_iface,
     57                &remote_usbhid_iface
    6058        }
    6159};
  • uspace/srv/loc/loc.c

    r85f2064 rd11a181  
    13051305        categ_dir_add_cat(&cdir, cat);
    13061306
    1307         cat = category_new("clock");
    1308         categ_dir_add_cat(&cdir, cat);
    1309 
    13101307        cat = category_new("test3");
    13111308        categ_dir_add_cat(&cdir, cat);
Note: See TracChangeset for help on using the changeset viewer.