Changes in / [d11a181:85f2064] in mainline
- Files:
-
- 12 added
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
boot/Makefile.common
rd11a181 r85f2064 187 187 $(USPACE_PATH)/app/vuhid/vuh \ 188 188 $(USPACE_PATH)/app/mkbd/mkbd \ 189 $(USPACE_PATH)/app/websrv/websrv 189 $(USPACE_PATH)/app/websrv/websrv \ 190 $(USPACE_PATH)/app/date/date 190 191 191 192 ifeq ($(CONFIG_PCC),y) -
boot/arch/amd64/Makefile.inc
rd11a181 r85f2064 42 42 char/ps2mouse \ 43 43 char/xtkbd \ 44 time/cmos-rtc \ 44 45 bus/usb/ehci\ 45 46 bus/usb/ohci \ -
uspace/Makefile
rd11a181 r85f2064 70 70 app/sysinfo \ 71 71 app/mkbd \ 72 app/date \ 72 73 srv/clip \ 73 74 srv/loc \ … … 125 126 drv/nic/ne2k \ 126 127 drv/nic/e1k \ 127 drv/nic/rtl8139 128 drv/nic/rtl8139 \ 128 129 129 130 ifeq ($(CONFIG_PCC),y) … … 149 150 drv/bus/isa \ 150 151 drv/char/ns8250 \ 152 drv/time/cmos-rtc \ 151 153 srv/hw/irc/apic \ 152 154 srv/hw/irc/i8259 … … 159 161 drv/bus/isa \ 160 162 drv/char/ns8250 \ 163 drv/time/cmos-rtc \ 161 164 srv/hw/irc/apic \ 162 165 srv/hw/irc/i8259 -
uspace/drv/bus/isa/isa.dev
rd11a181 r85f2064 27 27 dma 1 28 28 dma 5 29 30 cmos-rtc: 31 match 100 isa/cmos-rtc 32 io_range 70 2 -
uspace/lib/c/Makefile
rd11a181 r85f2064 69 69 generic/device/hw_res_parsed.c \ 70 70 generic/device/char_dev.c \ 71 generic/device/clock_dev.c \ 71 72 generic/device/nic.c \ 72 73 generic/device/pci.c \ -
uspace/lib/c/include/ipc/dev_iface.h
rd11a181 r85f2064 52 52 USBHID_DEV_IFACE, 53 53 54 /** Interface provided by Real Time Clock devices */ 55 CLOCK_DEV_IFACE, 56 54 57 DEV_IFACE_MAX 55 58 } dev_inferface_idx_t; -
uspace/lib/c/include/sys/time.h
rd11a181 r85f2064 46 46 typedef uint32_t mseconds_t; 47 47 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 48 57 struct timeval { 49 58 time_t tv_sec; /* seconds */ -
uspace/lib/drv/Makefile
rd11a181 r85f2064 44 44 generic/remote_pci.c \ 45 45 generic/remote_usbhc.c \ 46 generic/remote_usbhid.c 46 generic/remote_usbhid.c \ 47 generic/remote_clock_dev.c 47 48 48 49 include $(USPACE_PREFIX)/Makefile.common -
uspace/lib/drv/generic/dev_iface.c
rd11a181 r85f2064 41 41 #include "remote_hw_res.h" 42 42 #include "remote_char_dev.h" 43 #include "remote_clock_dev.h" 43 44 #include "remote_nic.h" 44 45 #include "remote_usb.h" … … 55 56 &remote_usb_iface, 56 57 &remote_usbhc_iface, 57 &remote_usbhid_iface 58 &remote_usbhid_iface, 59 &remote_clock_dev_iface, 58 60 } 59 61 }; -
uspace/srv/loc/loc.c
rd11a181 r85f2064 1305 1305 categ_dir_add_cat(&cdir, cat); 1306 1306 1307 cat = category_new("clock"); 1308 categ_dir_add_cat(&cdir, cat); 1309 1307 1310 cat = category_new("test3"); 1308 1311 categ_dir_add_cat(&cdir, cat);
Note:
See TracChangeset
for help on using the changeset viewer.