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