forked from davidsaOpenu/simulator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
145 lines (134 loc) · 4.06 KB
/
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
*.o
*.d
*.a
*.bin
# vssim data files
*.dat
# ramdisk
eVSSIM/RAMDISK/rd
# QMake-generated makefiles
eVSSIM/MONITOR/SSD_MONITOR_PM/Makefile
eVSSIM/QEMU/roms/seabios/Makefile
eVSSIM/QEMU/roms/vgabios/Makefile
# monitor executable and files
eVSSIM/MONITOR/SSD_MONITOR_PM/ssd_monitor_p
eVSSIM/MONITOR/SSD_MONITOR_PM/moc_form1.cpp
# qemu configure-created files
eVSSIM/QEMU/config-host.mak
eVSSIM/QEMU/config-host.h
eVSSIM/QEMU/libhw32/Makefile
eVSSIM/QEMU/libhw64/Makefile
eVSSIM/QEMU/x86_64-softmmu/Makefile
eVSSIM/QEMU/x86_64-softmmu/config.mak
eVSSIM/QEMU/roms/seabios/config.mak
eVSSIM/QEMU/roms/vgabios/config.mak
# qemu executables and files
eVSSIM/QEMU/qemu-img
eVSSIM/QEMU/qemu-img-cmds.h
eVSSIM/QEMU/qemu-io
eVSSIM/QEMU/qemu-nbd
eVSSIM/QEMU/x86_64-softmmu/gdbstub-xml.c
eVSSIM/QEMU/x86_64-softmmu/qemu-monitor.h
eVSSIM/QEMU/x86_64-softmmu/qemu-options.h
eVSSIM/QEMU/x86_64-softmmu/qemu-system-x86_64
eVSSIM/QEMU/libcacard/vscclient
# symlinks
eVSSIM/QEMU/Makefile.target
eVSSIM/QEMU/hw/common.h
eVSSIM/QEMU/hw/ssd_util.h
eVSSIM/QEMU/hw/ftl_type.h
eVSSIM/QEMU/hw/ftl.h
eVSSIM/QEMU/hw/ftl_mapping_manager.h
eVSSIM/QEMU/hw/ftl_inverse_mapping_manager.h
eVSSIM/QEMU/hw/ftl_gc_manager.h
eVSSIM/QEMU/hw/ftl_sect_strategy.h
eVSSIM/QEMU/hw/ftl_obj_strategy.h
eVSSIM/QEMU/hw/ftl_perf_manager.h
eVSSIM/QEMU/hw/ssd_io_manager.h
eVSSIM/QEMU/hw/ssd_log_manager.h
eVSSIM/QEMU/hw/ftl.c
eVSSIM/QEMU/hw/ftl_mapping_manager.c
eVSSIM/QEMU/hw/ftl_inverse_mapping_manager.c
eVSSIM/QEMU/hw/ftl_gc_manager.c
eVSSIM/QEMU/hw/ftl_sect_strategy.c
eVSSIM/QEMU/hw/ftl_obj_strategy.c
eVSSIM/QEMU/hw/ftl_perf_manager.c
eVSSIM/QEMU/hw/ssd_io_manager.c
eVSSIM/QEMU/hw/ssd_log_manager.c
eVSSIM/QEMU/x86_64-softmmu/ssd_monitor
eVSSIM/QEMU/x86_64-softmmu/data/ssd.conf
eVSSIM/QEMU/hw/vssim_config_manager.h
eVSSIM/QEMU/hw/vssim_config_manager.c
eVSSIM/QEMU/hw/uthash.h
eVSSIM/QEMU/hw/ssd.c
eVSSIM/QEMU/hw/ssd.h
eVSSIM/QEMU/hw/ssd_monitor
eVSSIM/QEMU/hw/logging_backend.c
eVSSIM/QEMU/hw/logging_backend.h
eVSSIM/QEMU/hw/logging_manager.c
eVSSIM/QEMU/hw/logging_manager.h
eVSSIM/QEMU/hw/logging_parser.c
eVSSIM/QEMU/hw/logging_parser.h
eVSSIM/QEMU/hw/logging_rt_analyzer.c
eVSSIM/QEMU/hw/logging_rt_analyzer.h
eVSSIM/QEMU/hw/logging_server.c
eVSSIM/QEMU/hw/logging_server.h
eVSSIM/QEMU/hw/logging_statistics.c
eVSSIM/QEMU/hw/logging_statistics.h
eVSSIM/QEMU/hw/www
# unit test files
eVSSIM/tests/host/test_*.txt
eVSSIM/tests/host/log_mgr_tests
eVSSIM/tests/host/unit_tests
eVSSIM/tests/host/sector_tests
eVSSIM/tests/host/object_tests
eVSSIM/tests/host/data
eVSSIM/tests/host/common.h
eVSSIM/tests/host/logging_rt_analyzer.h
eVSSIM/tests/host/logging_rt_analyzer.c
eVSSIM/tests/host/logging_parser.h
eVSSIM/tests/host/logging_parser.c
eVSSIM/tests/host/logging_manager.h
eVSSIM/tests/host/logging_manager.c
eVSSIM/tests/host/logging_backend.h
eVSSIM/tests/host/logging_backend.c
eVSSIM/tests/host/logging_statistics.h
eVSSIM/tests/host/logging_statistics.c
eVSSIM/tests/host/ftl.h
eVSSIM/tests/host/ftl.c
eVSSIM/tests/host/ftl_gc_manager.h
eVSSIM/tests/host/ftl_gc_manager.c
eVSSIM/tests/host/ftl_inverse_mapping_manager.c
eVSSIM/tests/host/ftl_inverse_mapping_manager.h
eVSSIM/tests/host/ftl_mapping_manager.c
eVSSIM/tests/host/ftl_mapping_manager.h
eVSSIM/tests/host/ftl_obj_strategy.c
eVSSIM/tests/host/ftl_obj_strategy.h
eVSSIM/tests/host/ftl_perf_manager.c
eVSSIM/tests/host/ftl_perf_manager.h
eVSSIM/tests/host/ftl_sect_strategy.c
eVSSIM/tests/host/ftl_sect_strategy.h
eVSSIM/tests/host/ftl_type.h
eVSSIM/tests/host/ssd.h
eVSSIM/tests/host/ssd.c
eVSSIM/tests/host/ssd_io_manager.c
eVSSIM/tests/host/ssd_io_manager.h
eVSSIM/tests/host/ssd_log_manager.c
eVSSIM/tests/host/ssd_log_manager.h
eVSSIM/tests/host/ssd_monitor
eVSSIM/tests/host/ssd_util.h
eVSSIM/tests/host/uthash.h
eVSSIM/tests/host/vssim_config_manager.c
eVSSIM/tests/host/vssim_config_manager.h
eVSSIM/tests/host/monitor_test.h
eVSSIM/tests/host/logging_server.c
eVSSIM/tests/host/logging_server.h
eVSSIM/tests/host/www
# osd-osd files
eVSSIM/osc-osd/osd-util/.depend
eVSSIM/osc-osd/osd-target/.depend
eVSSIM/osc-osd/osd-target/tests
eVSSIM/osc-osd/osd-target/osd-schema.c
# infra/ansible files
*.retry
!bios.bin