├── .DS_Store ├── .gitignore ├── Aurora-lwip-sgx ├── App │ ├── App.cpp │ ├── App.h │ ├── lwip │ │ ├── FILES │ │ ├── Filelists.mk │ │ ├── api │ │ │ ├── api_lib.cpp │ │ │ ├── api_msg.cpp │ │ │ ├── err.cpp │ │ │ ├── if_api.cpp │ │ │ ├── netbuf.cpp │ │ │ ├── netdb.cpp │ │ │ ├── netifapi.cpp │ │ │ ├── sockets.cpp │ │ │ └── tcpip.cpp │ │ ├── apps │ │ │ ├── altcp_tls │ │ │ │ ├── altcp_tls_mbedtls.cpp │ │ │ │ ├── altcp_tls_mbedtls_mem.cpp │ │ │ │ ├── altcp_tls_mbedtls_mem.h │ │ │ │ └── altcp_tls_mbedtls_structs.h │ │ │ ├── httpd │ │ │ │ ├── fs.cpp │ │ │ │ ├── fs │ │ │ │ │ ├── 404.html │ │ │ │ │ ├── img │ │ │ │ │ │ └── sics.gif │ │ │ │ │ └── index.html │ │ │ │ ├── fsdata.cpp │ │ │ │ ├── fsdata.h │ │ │ │ ├── httpd.cpp │ │ │ │ ├── httpd_structs.h │ │ │ │ └── makefsdata │ │ │ │ │ ├── makefsdata │ │ │ │ │ ├── makefsdata.cpp │ │ │ │ │ ├── readme.txt │ │ │ │ │ └── tinydir.h │ │ │ ├── lwiperf │ │ │ │ └── lwiperf.cpp │ │ │ ├── mdns │ │ │ │ └── mdns.cpp │ │ │ ├── mqtt │ │ │ │ └── mqtt.cpp │ │ │ ├── netbiosns │ │ │ │ └── netbiosns.cpp │ │ │ ├── smtp │ │ │ │ └── smtp.cpp │ │ │ ├── snmp │ │ │ │ ├── snmp_asn1.cpp │ │ │ │ ├── snmp_asn1.h │ │ │ │ ├── snmp_core.cpp │ │ │ │ ├── snmp_core_priv.h │ │ │ │ ├── snmp_mib2.cpp │ │ │ │ ├── snmp_mib2_icmp.cpp │ │ │ │ ├── snmp_mib2_interfaces.cpp │ │ │ │ ├── snmp_mib2_ip.cpp │ │ │ │ ├── snmp_mib2_snmp.cpp │ │ │ │ ├── snmp_mib2_system.cpp │ │ │ │ ├── snmp_mib2_tcp.cpp │ │ │ │ ├── snmp_mib2_udp.cpp │ │ │ │ ├── snmp_msg.cpp │ │ │ │ ├── snmp_msg.h │ │ │ │ ├── snmp_netconn.cpp │ │ │ │ ├── snmp_pbuf_stream.cpp │ │ │ │ ├── snmp_pbuf_stream.h │ │ │ │ ├── snmp_raw.cpp │ │ │ │ ├── snmp_scalar.cpp │ │ │ │ ├── snmp_snmpv2_framework.cpp │ │ │ │ ├── snmp_snmpv2_usm.cpp │ │ │ │ ├── snmp_table.cpp │ │ │ │ ├── snmp_threadsync.cpp │ │ │ │ ├── snmp_traps.cpp │ │ │ │ ├── snmpv3.cpp │ │ │ │ ├── snmpv3_mbedtls.cpp │ │ │ │ └── snmpv3_priv.h │ │ │ ├── sntp │ │ │ │ └── sntp.cpp │ │ │ └── tftp │ │ │ │ └── tftp_server.cpp │ │ ├── core │ │ │ ├── altcp.cpp │ │ │ ├── altcp_tcp.cpp │ │ │ ├── def.cpp │ │ │ ├── dns.cpp │ │ │ ├── inet_chksum.cpp │ │ │ ├── init.cpp │ │ │ ├── ip.cpp │ │ │ ├── ipv4 │ │ │ │ ├── autoip.cpp │ │ │ │ ├── dhcp.cpp │ │ │ │ ├── etharp.cpp │ │ │ │ ├── icmp.cpp │ │ │ │ ├── igmp.cpp │ │ │ │ ├── ip4.cpp │ │ │ │ ├── ip4_addr.cpp │ │ │ │ └── ip4_frag.cpp │ │ │ ├── ipv6 │ │ │ │ ├── dhcp6.cpp │ │ │ │ ├── ethip6.cpp │ │ │ │ ├── icmp6.cpp │ │ │ │ ├── inet6.cpp │ │ │ │ ├── ip6.cpp │ │ │ │ ├── ip6_addr.cpp │ │ │ │ ├── ip6_frag.cpp │ │ │ │ ├── mld6.cpp │ │ │ │ └── nd6.cpp │ │ │ ├── mem.cpp │ │ │ ├── memp.cpp │ │ │ ├── netif.cpp │ │ │ ├── pbuf.cpp │ │ │ ├── raw.cpp │ │ │ ├── stats.cpp │ │ │ ├── sys.cpp │ │ │ ├── tcp.cpp │ │ │ ├── tcp_in.cpp │ │ │ ├── tcp_out.cpp │ │ │ ├── timeouts.cpp │ │ │ └── udp.cpp │ │ ├── include │ │ │ ├── arch │ │ │ │ ├── cc.h │ │ │ │ ├── perf.h │ │ │ │ └── sys_arch.h │ │ │ ├── compat │ │ │ │ ├── posix │ │ │ │ │ ├── arpa │ │ │ │ │ │ └── inet.h │ │ │ │ │ ├── net │ │ │ │ │ │ └── if.h │ │ │ │ │ ├── netdb.h │ │ │ │ │ └── sys │ │ │ │ │ │ └── socket.h │ │ │ │ └── stdc │ │ │ │ │ └── errno.h │ │ │ ├── lwip │ │ │ │ ├── altcp.h │ │ │ │ ├── altcp_tcp.h │ │ │ │ ├── altcp_tls.h │ │ │ │ ├── api.h │ │ │ │ ├── apps │ │ │ │ │ ├── FILES │ │ │ │ │ ├── altcp_tls_mbedtls_opts.h │ │ │ │ │ ├── fs.h │ │ │ │ │ ├── httpd.h │ │ │ │ │ ├── httpd_opts.h │ │ │ │ │ ├── lwiperf.h │ │ │ │ │ ├── mdns.h │ │ │ │ │ ├── mdns_opts.h │ │ │ │ │ ├── mdns_priv.h │ │ │ │ │ ├── mqtt.h │ │ │ │ │ ├── mqtt_opts.h │ │ │ │ │ ├── mqtt_priv.h │ │ │ │ │ ├── netbiosns.h │ │ │ │ │ ├── netbiosns_opts.h │ │ │ │ │ ├── smtp.h │ │ │ │ │ ├── smtp_opts.h │ │ │ │ │ ├── snmp.h │ │ │ │ │ ├── snmp_core.h │ │ │ │ │ ├── snmp_mib2.h │ │ │ │ │ ├── snmp_opts.h │ │ │ │ │ ├── snmp_scalar.h │ │ │ │ │ ├── snmp_snmpv2_framework.h │ │ │ │ │ ├── snmp_snmpv2_usm.h │ │ │ │ │ ├── snmp_table.h │ │ │ │ │ ├── snmp_threadsync.h │ │ │ │ │ ├── snmpv3.h │ │ │ │ │ ├── sntp.h │ │ │ │ │ ├── sntp_opts.h │ │ │ │ │ ├── tftp_opts.h │ │ │ │ │ └── tftp_server.h │ │ │ │ ├── arch.h │ │ │ │ ├── autoip.h │ │ │ │ ├── debug.h │ │ │ │ ├── def.h │ │ │ │ ├── dhcp.h │ │ │ │ ├── dhcp6.h │ │ │ │ ├── dns.h │ │ │ │ ├── err.h │ │ │ │ ├── errno.h │ │ │ │ ├── etharp.h │ │ │ │ ├── ethip6.h │ │ │ │ ├── icmp.h │ │ │ │ ├── icmp6.h │ │ │ │ ├── if_api.h │ │ │ │ ├── igmp.h │ │ │ │ ├── inet.h │ │ │ │ ├── inet_chksum.h │ │ │ │ ├── init.h │ │ │ │ ├── ip.h │ │ │ │ ├── ip4.h │ │ │ │ ├── ip4_addr.h │ │ │ │ ├── ip4_frag.h │ │ │ │ ├── ip6.h │ │ │ │ ├── ip6_addr.h │ │ │ │ ├── ip6_frag.h │ │ │ │ ├── ip6_zone.h │ │ │ │ ├── ip_addr.h │ │ │ │ ├── lwipopts.h │ │ │ │ ├── mem.h │ │ │ │ ├── memp.h │ │ │ │ ├── mld6.h │ │ │ │ ├── nd6.h │ │ │ │ ├── netbuf.h │ │ │ │ ├── netdb.h │ │ │ │ ├── netif.h │ │ │ │ ├── netifapi.h │ │ │ │ ├── opt.h │ │ │ │ ├── pbuf.h │ │ │ │ ├── priv │ │ │ │ │ ├── altcp_priv.h │ │ │ │ │ ├── api_msg.h │ │ │ │ │ ├── memp_priv.h │ │ │ │ │ ├── memp_std.h │ │ │ │ │ ├── nd6_priv.h │ │ │ │ │ ├── sockets_priv.h │ │ │ │ │ ├── tcp_priv.h │ │ │ │ │ └── tcpip_priv.h │ │ │ │ ├── prot │ │ │ │ │ ├── autoip.h │ │ │ │ │ ├── dhcp.h │ │ │ │ │ ├── dhcp6.h │ │ │ │ │ ├── dns.h │ │ │ │ │ ├── etharp.h │ │ │ │ │ ├── ethernet.h │ │ │ │ │ ├── iana.h │ │ │ │ │ ├── icmp.h │ │ │ │ │ ├── icmp6.h │ │ │ │ │ ├── ieee.h │ │ │ │ │ ├── igmp.h │ │ │ │ │ ├── ip.h │ │ │ │ │ ├── ip4.h │ │ │ │ │ ├── ip6.h │ │ │ │ │ ├── mld6.h │ │ │ │ │ ├── nd6.h │ │ │ │ │ ├── tcp.h │ │ │ │ │ └── udp.h │ │ │ │ ├── raw.h │ │ │ │ ├── sio.h │ │ │ │ ├── snmp.h │ │ │ │ ├── sockets.h │ │ │ │ ├── stats.h │ │ │ │ ├── sys.h │ │ │ │ ├── tcp.h │ │ │ │ ├── tcpbase.h │ │ │ │ ├── tcpip.h │ │ │ │ ├── timeouts.h │ │ │ │ └── udp.h │ │ │ └── netif │ │ │ │ ├── bridgeif.h │ │ │ │ ├── bridgeif_opts.h │ │ │ │ ├── etharp.h │ │ │ │ ├── ethernet.h │ │ │ │ ├── lowpan6.h │ │ │ │ ├── lowpan6_opts.h │ │ │ │ ├── ppp │ │ │ │ ├── ccp.h │ │ │ │ ├── chap-md5.h │ │ │ │ ├── chap-new.h │ │ │ │ ├── chap_ms.h │ │ │ │ ├── eap.h │ │ │ │ ├── ecp.h │ │ │ │ ├── eui64.h │ │ │ │ ├── fsm.h │ │ │ │ ├── ipcp.h │ │ │ │ ├── ipv6cp.h │ │ │ │ ├── lcp.h │ │ │ │ ├── magic.h │ │ │ │ ├── mppe.h │ │ │ │ ├── polarssl │ │ │ │ │ ├── arc4.h │ │ │ │ │ ├── des.h │ │ │ │ │ ├── md4.h │ │ │ │ │ ├── md5.h │ │ │ │ │ └── sha1.h │ │ │ │ ├── ppp.h │ │ │ │ ├── ppp_impl.h │ │ │ │ ├── ppp_opts.h │ │ │ │ ├── pppapi.h │ │ │ │ ├── pppcrypt.h │ │ │ │ ├── pppdebug.h │ │ │ │ ├── pppoe.h │ │ │ │ ├── pppol2tp.h │ │ │ │ ├── pppos.h │ │ │ │ ├── upap.h │ │ │ │ └── vj.h │ │ │ │ └── slipif.h │ │ ├── netif │ │ │ ├── FILES │ │ │ ├── ethernet.cpp │ │ │ └── ethernetif.cpp │ │ └── unit │ │ │ ├── Filelists.mk │ │ │ ├── api │ │ │ ├── test_sockets.cpp │ │ │ └── test_sockets.h │ │ │ ├── arch │ │ │ ├── sys_arch.cpp │ │ │ └── sys_arch.h │ │ │ ├── core │ │ │ ├── test_mem.cpp │ │ │ ├── test_mem.h │ │ │ ├── test_pbuf.cpp │ │ │ └── test_pbuf.h │ │ │ ├── dhcp │ │ │ ├── test_dhcp.cpp │ │ │ └── test_dhcp.h │ │ │ ├── etharp │ │ │ ├── test_etharp.cpp │ │ │ └── test_etharp.h │ │ │ ├── ip4 │ │ │ ├── test_ip4.cpp │ │ │ └── test_ip4.h │ │ │ ├── lwip_check.h │ │ │ ├── lwip_unittests.cpp │ │ │ ├── lwipopts.h │ │ │ ├── mdns │ │ │ ├── test_mdns.cpp │ │ │ └── test_mdns.h │ │ │ ├── mqtt │ │ │ ├── test_mqtt.cpp │ │ │ └── test_mqtt.h │ │ │ ├── tcp │ │ │ ├── tcp_helper.cpp │ │ │ ├── tcp_helper.h │ │ │ ├── test_tcp.cpp │ │ │ ├── test_tcp.h │ │ │ ├── test_tcp_oos.cpp │ │ │ └── test_tcp_oos.h │ │ │ └── udp │ │ │ ├── test_udp.cpp │ │ │ └── test_udp.h │ ├── smx │ │ ├── aead_aes256gcm_aesni.cpp │ │ ├── randombytes.cpp │ │ ├── rdrand.cpp │ │ ├── ring_buffer.cpp │ │ └── utils.cpp │ ├── test.cpp │ └── utils.cpp ├── Enclave │ ├── Enclave.config.xml │ ├── Enclave.cpp │ ├── Enclave.edl │ ├── Enclave.h │ ├── Enclave.lds │ ├── Enclave_private.pem │ ├── lwip │ │ ├── FILES │ │ ├── Filelists.mk │ │ ├── api │ │ │ ├── api_lib.cpp │ │ │ ├── api_msg.cpp │ │ │ ├── err.cpp │ │ │ ├── if_api.cpp │ │ │ ├── netbuf.cpp │ │ │ ├── netdb.cpp │ │ │ ├── netifapi.cpp │ │ │ ├── sockets.cpp │ │ │ └── tcpip.cpp │ │ ├── apps │ │ │ ├── altcp_tls │ │ │ │ ├── altcp_tls_mbedtls.cpp │ │ │ │ ├── altcp_tls_mbedtls_mem.cpp │ │ │ │ ├── altcp_tls_mbedtls_mem.h │ │ │ │ └── altcp_tls_mbedtls_structs.h │ │ │ ├── httpd │ │ │ │ ├── fs.cpp │ │ │ │ ├── fs │ │ │ │ │ ├── 404.html │ │ │ │ │ ├── img │ │ │ │ │ │ └── sics.gif │ │ │ │ │ └── index.html │ │ │ │ ├── fsdata.cpp │ │ │ │ ├── fsdata.h │ │ │ │ ├── httpd.cpp │ │ │ │ ├── httpd_structs.h │ │ │ │ └── makefsdata │ │ │ │ │ ├── makefsdata │ │ │ │ │ ├── makefsdata.cpp │ │ │ │ │ ├── readme.txt │ │ │ │ │ └── tinydir.h │ │ │ ├── lwiperf │ │ │ │ └── lwiperf.cpp │ │ │ ├── mdns │ │ │ │ └── mdns.cpp │ │ │ ├── mqtt │ │ │ │ └── mqtt.cpp │ │ │ ├── netbiosns │ │ │ │ └── netbiosns.cpp │ │ │ ├── smtp │ │ │ │ └── smtp.cpp │ │ │ ├── snmp │ │ │ │ ├── snmp_asn1.cpp │ │ │ │ ├── snmp_asn1.h │ │ │ │ ├── snmp_core.cpp │ │ │ │ ├── snmp_core_priv.h │ │ │ │ ├── snmp_mib2.cpp │ │ │ │ ├── snmp_mib2_icmp.cpp │ │ │ │ ├── snmp_mib2_interfaces.cpp │ │ │ │ ├── snmp_mib2_ip.cpp │ │ │ │ ├── snmp_mib2_snmp.cpp │ │ │ │ ├── snmp_mib2_system.cpp │ │ │ │ ├── snmp_mib2_tcp.cpp │ │ │ │ ├── snmp_mib2_udp.cpp │ │ │ │ ├── snmp_msg.cpp │ │ │ │ ├── snmp_msg.h │ │ │ │ ├── snmp_netconn.cpp │ │ │ │ ├── snmp_pbuf_stream.cpp │ │ │ │ ├── snmp_pbuf_stream.h │ │ │ │ ├── snmp_raw.cpp │ │ │ │ ├── snmp_scalar.cpp │ │ │ │ ├── snmp_snmpv2_framework.cpp │ │ │ │ ├── snmp_snmpv2_usm.cpp │ │ │ │ ├── snmp_table.cpp │ │ │ │ ├── snmp_threadsync.cpp │ │ │ │ ├── snmp_traps.cpp │ │ │ │ ├── snmpv3.cpp │ │ │ │ ├── snmpv3_mbedtls.cpp │ │ │ │ └── snmpv3_priv.h │ │ │ ├── sntp │ │ │ │ └── sntp.cpp │ │ │ └── tftp │ │ │ │ └── tftp_server.cpp │ │ ├── core │ │ │ ├── altcp.cpp │ │ │ ├── altcp_tcp.cpp │ │ │ ├── def.cpp │ │ │ ├── dns.cpp │ │ │ ├── inet_chksum.cpp │ │ │ ├── init.cpp │ │ │ ├── ip.cpp │ │ │ ├── ipv4 │ │ │ │ ├── autoip.cpp │ │ │ │ ├── dhcp.cpp │ │ │ │ ├── etharp.cpp │ │ │ │ ├── icmp.cpp │ │ │ │ ├── igmp.cpp │ │ │ │ ├── ip4.cpp │ │ │ │ ├── ip4_addr.cpp │ │ │ │ └── ip4_frag.cpp │ │ │ ├── ipv6 │ │ │ │ ├── dhcp6.cpp │ │ │ │ ├── ethip6.cpp │ │ │ │ ├── icmp6.cpp │ │ │ │ ├── inet6.cpp │ │ │ │ ├── ip6.cpp │ │ │ │ ├── ip6_addr.cpp │ │ │ │ ├── ip6_frag.cpp │ │ │ │ ├── mld6.cpp │ │ │ │ └── nd6.cpp │ │ │ ├── mem.cpp │ │ │ ├── memp.cpp │ │ │ ├── netif.cpp │ │ │ ├── pbuf.cpp │ │ │ ├── raw.cpp │ │ │ ├── stats.cpp │ │ │ ├── sys.cpp │ │ │ ├── tcp.cpp │ │ │ ├── tcp_in.cpp │ │ │ ├── tcp_out.cpp │ │ │ ├── timeouts.cpp │ │ │ └── udp.cpp │ │ ├── include │ │ │ ├── arch │ │ │ │ ├── cc.h │ │ │ │ ├── perf.h │ │ │ │ └── sys_arch.h │ │ │ ├── compat │ │ │ │ ├── posix │ │ │ │ │ ├── arpa │ │ │ │ │ │ └── inet.h │ │ │ │ │ ├── net │ │ │ │ │ │ └── if.h │ │ │ │ │ ├── netdb.h │ │ │ │ │ └── sys │ │ │ │ │ │ └── socket.h │ │ │ │ └── stdc │ │ │ │ │ └── errno.h │ │ │ ├── lwip │ │ │ │ ├── altcp.h │ │ │ │ ├── altcp_tcp.h │ │ │ │ ├── altcp_tls.h │ │ │ │ ├── api.h │ │ │ │ ├── apps │ │ │ │ │ ├── FILES │ │ │ │ │ ├── altcp_tls_mbedtls_opts.h │ │ │ │ │ ├── fs.h │ │ │ │ │ ├── httpd.h │ │ │ │ │ ├── httpd_opts.h │ │ │ │ │ ├── lwiperf.h │ │ │ │ │ ├── mdns.h │ │ │ │ │ ├── mdns_opts.h │ │ │ │ │ ├── mdns_priv.h │ │ │ │ │ ├── mqtt.h │ │ │ │ │ ├── mqtt_opts.h │ │ │ │ │ ├── mqtt_priv.h │ │ │ │ │ ├── netbiosns.h │ │ │ │ │ ├── netbiosns_opts.h │ │ │ │ │ ├── smtp.h │ │ │ │ │ ├── smtp_opts.h │ │ │ │ │ ├── snmp.h │ │ │ │ │ ├── snmp_core.h │ │ │ │ │ ├── snmp_mib2.h │ │ │ │ │ ├── snmp_opts.h │ │ │ │ │ ├── snmp_scalar.h │ │ │ │ │ ├── snmp_snmpv2_framework.h │ │ │ │ │ ├── snmp_snmpv2_usm.h │ │ │ │ │ ├── snmp_table.h │ │ │ │ │ ├── snmp_threadsync.h │ │ │ │ │ ├── snmpv3.h │ │ │ │ │ ├── sntp.h │ │ │ │ │ ├── sntp_opts.h │ │ │ │ │ ├── tftp_opts.h │ │ │ │ │ └── tftp_server.h │ │ │ │ ├── arch.h │ │ │ │ ├── autoip.h │ │ │ │ ├── debug.h │ │ │ │ ├── def.h │ │ │ │ ├── dhcp.h │ │ │ │ ├── dhcp6.h │ │ │ │ ├── dns.h │ │ │ │ ├── err.h │ │ │ │ ├── errno.h │ │ │ │ ├── etharp.h │ │ │ │ ├── ethip6.h │ │ │ │ ├── icmp.h │ │ │ │ ├── icmp6.h │ │ │ │ ├── if_api.h │ │ │ │ ├── igmp.h │ │ │ │ ├── inet.h │ │ │ │ ├── inet_chksum.h │ │ │ │ ├── init.h │ │ │ │ ├── ip.h │ │ │ │ ├── ip4.h │ │ │ │ ├── ip4_addr.h │ │ │ │ ├── ip4_frag.h │ │ │ │ ├── ip6.h │ │ │ │ ├── ip6_addr.h │ │ │ │ ├── ip6_frag.h │ │ │ │ ├── ip6_zone.h │ │ │ │ ├── ip_addr.h │ │ │ │ ├── lwipopts.h │ │ │ │ ├── mem.h │ │ │ │ ├── memp.h │ │ │ │ ├── mld6.h │ │ │ │ ├── nd6.h │ │ │ │ ├── netbuf.h │ │ │ │ ├── netdb.h │ │ │ │ ├── netif.h │ │ │ │ ├── netifapi.h │ │ │ │ ├── opt.h │ │ │ │ ├── pbuf.h │ │ │ │ ├── priv │ │ │ │ │ ├── altcp_priv.h │ │ │ │ │ ├── api_msg.h │ │ │ │ │ ├── memp_priv.h │ │ │ │ │ ├── memp_std.h │ │ │ │ │ ├── nd6_priv.h │ │ │ │ │ ├── sockets_priv.h │ │ │ │ │ ├── tcp_priv.h │ │ │ │ │ └── tcpip_priv.h │ │ │ │ ├── prot │ │ │ │ │ ├── autoip.h │ │ │ │ │ ├── dhcp.h │ │ │ │ │ ├── dhcp6.h │ │ │ │ │ ├── dns.h │ │ │ │ │ ├── etharp.h │ │ │ │ │ ├── ethernet.h │ │ │ │ │ ├── iana.h │ │ │ │ │ ├── icmp.h │ │ │ │ │ ├── icmp6.h │ │ │ │ │ ├── ieee.h │ │ │ │ │ ├── igmp.h │ │ │ │ │ ├── ip.h │ │ │ │ │ ├── ip4.h │ │ │ │ │ ├── ip6.h │ │ │ │ │ ├── mld6.h │ │ │ │ │ ├── nd6.h │ │ │ │ │ ├── tcp.h │ │ │ │ │ └── udp.h │ │ │ │ ├── raw.h │ │ │ │ ├── sio.h │ │ │ │ ├── snmp.h │ │ │ │ ├── sockets.h │ │ │ │ ├── stats.h │ │ │ │ ├── sys.h │ │ │ │ ├── tcp.h │ │ │ │ ├── tcpbase.h │ │ │ │ ├── tcpip.h │ │ │ │ ├── timeouts.h │ │ │ │ └── udp.h │ │ │ └── netif │ │ │ │ ├── bridgeif.h │ │ │ │ ├── bridgeif_opts.h │ │ │ │ ├── etharp.h │ │ │ │ ├── ethernet.h │ │ │ │ ├── lowpan6.h │ │ │ │ ├── lowpan6_opts.h │ │ │ │ ├── ppp │ │ │ │ ├── ccp.h │ │ │ │ ├── chap-md5.h │ │ │ │ ├── chap-new.h │ │ │ │ ├── chap_ms.h │ │ │ │ ├── eap.h │ │ │ │ ├── ecp.h │ │ │ │ ├── eui64.h │ │ │ │ ├── fsm.h │ │ │ │ ├── ipcp.h │ │ │ │ ├── ipv6cp.h │ │ │ │ ├── lcp.h │ │ │ │ ├── magic.h │ │ │ │ ├── mppe.h │ │ │ │ ├── polarssl │ │ │ │ │ ├── arc4.h │ │ │ │ │ ├── des.h │ │ │ │ │ ├── md4.h │ │ │ │ │ ├── md5.h │ │ │ │ │ └── sha1.h │ │ │ │ ├── ppp.h │ │ │ │ ├── ppp_impl.h │ │ │ │ ├── ppp_opts.h │ │ │ │ ├── pppapi.h │ │ │ │ ├── pppcrypt.h │ │ │ │ ├── pppdebug.h │ │ │ │ ├── pppoe.h │ │ │ │ ├── pppol2tp.h │ │ │ │ ├── pppos.h │ │ │ │ ├── upap.h │ │ │ │ └── vj.h │ │ │ │ └── slipif.h │ │ ├── netif │ │ │ ├── FILES │ │ │ ├── ethernet.cpp │ │ │ └── ethernetif.cpp │ │ └── unit │ │ │ ├── Filelists.mk │ │ │ ├── api │ │ │ ├── test_sockets.cpp │ │ │ └── test_sockets.h │ │ │ ├── arch │ │ │ ├── sys_arch.cpp │ │ │ └── sys_arch.h │ │ │ ├── core │ │ │ ├── test_mem.cpp │ │ │ ├── test_mem.h │ │ │ ├── test_pbuf.cpp │ │ │ └── test_pbuf.h │ │ │ ├── dhcp │ │ │ ├── test_dhcp.cpp │ │ │ └── test_dhcp.h │ │ │ ├── etharp │ │ │ ├── test_etharp.cpp │ │ │ └── test_etharp.h │ │ │ ├── ip4 │ │ │ ├── test_ip4.cpp │ │ │ └── test_ip4.h │ │ │ ├── lwip_check.h │ │ │ ├── lwip_unittests.cpp │ │ │ ├── lwipopts.h │ │ │ ├── mdns │ │ │ ├── test_mdns.cpp │ │ │ └── test_mdns.h │ │ │ ├── mqtt │ │ │ ├── test_mqtt.cpp │ │ │ └── test_mqtt.h │ │ │ ├── tcp │ │ │ ├── tcp_helper.cpp │ │ │ ├── tcp_helper.h │ │ │ ├── test_tcp.cpp │ │ │ ├── test_tcp.h │ │ │ ├── test_tcp_oos.cpp │ │ │ └── test_tcp_oos.h │ │ │ └── udp │ │ │ ├── test_udp.cpp │ │ │ └── test_udp.h │ ├── smx │ │ ├── aead_aes256gcm_aesni.cpp │ │ ├── randombytes.cpp │ │ ├── ring_buffer.cpp │ │ └── utils.cpp │ └── test.cpp ├── Include │ ├── arpa │ │ └── inet.h │ ├── libsodium │ │ ├── Makefile │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── sodium.h │ │ └── sodium │ │ │ ├── core.h │ │ │ ├── crypto_aead_aes256gcm.h │ │ │ ├── crypto_aead_chacha20poly1305.h │ │ │ ├── crypto_aead_xchacha20poly1305.h │ │ │ ├── crypto_auth.h │ │ │ ├── crypto_auth_hmacsha256.h │ │ │ ├── crypto_auth_hmacsha512.h │ │ │ ├── crypto_auth_hmacsha512256.h │ │ │ ├── crypto_box.h │ │ │ ├── crypto_box_curve25519xchacha20poly1305.h │ │ │ ├── crypto_box_curve25519xsalsa20poly1305.h │ │ │ ├── crypto_core_ed25519.h │ │ │ ├── crypto_core_hchacha20.h │ │ │ ├── crypto_core_hsalsa20.h │ │ │ ├── crypto_core_salsa20.h │ │ │ ├── crypto_core_salsa2012.h │ │ │ ├── crypto_core_salsa208.h │ │ │ ├── crypto_generichash.h │ │ │ ├── crypto_generichash_blake2b.h │ │ │ ├── crypto_hash.h │ │ │ ├── crypto_hash_sha256.h │ │ │ ├── crypto_hash_sha512.h │ │ │ ├── crypto_kdf.h │ │ │ ├── crypto_kdf_blake2b.h │ │ │ ├── crypto_kx.h │ │ │ ├── crypto_onetimeauth.h │ │ │ ├── crypto_onetimeauth_poly1305.h │ │ │ ├── crypto_pwhash.h │ │ │ ├── crypto_pwhash_argon2i.h │ │ │ ├── crypto_pwhash_argon2id.h │ │ │ ├── crypto_pwhash_scryptsalsa208sha256.h │ │ │ ├── crypto_scalarmult.h │ │ │ ├── crypto_scalarmult_curve25519.h │ │ │ ├── crypto_scalarmult_ed25519.h │ │ │ ├── crypto_secretbox.h │ │ │ ├── crypto_secretbox_xchacha20poly1305.h │ │ │ ├── crypto_secretbox_xsalsa20poly1305.h │ │ │ ├── crypto_secretstream_xchacha20poly1305.h │ │ │ ├── crypto_shorthash.h │ │ │ ├── crypto_shorthash_siphash24.h │ │ │ ├── crypto_sign.h │ │ │ ├── crypto_sign_ed25519.h │ │ │ ├── crypto_sign_edwards25519sha512batch.h │ │ │ ├── crypto_stream.h │ │ │ ├── crypto_stream_chacha20.h │ │ │ ├── crypto_stream_salsa20.h │ │ │ ├── crypto_stream_salsa2012.h │ │ │ ├── crypto_stream_salsa208.h │ │ │ ├── crypto_stream_xchacha20.h │ │ │ ├── crypto_stream_xsalsa20.h │ │ │ ├── crypto_verify_16.h │ │ │ ├── crypto_verify_32.h │ │ │ ├── crypto_verify_64.h │ │ │ ├── export.h │ │ │ ├── private │ │ │ ├── common.h │ │ │ ├── ed25519_ref10.h │ │ │ ├── ed25519_ref10_fe_25_5.h │ │ │ ├── ed25519_ref10_fe_51.h │ │ │ ├── implementations.h │ │ │ ├── mutex.h │ │ │ └── sse2_64_32.h │ │ │ ├── randombytes.h │ │ │ ├── randombytes_nativeclient.h │ │ │ ├── randombytes_salsa20_random.h │ │ │ ├── randombytes_sysrandom.h │ │ │ ├── runtime.h │ │ │ ├── utils.h │ │ │ ├── version.h │ │ │ └── version.h.in │ ├── netinet │ │ └── in.h │ ├── sys │ │ └── socket.h │ └── user_types.h ├── Makefile └── README.txt ├── Aurora-openssh-sgx ├── .cproject ├── .project ├── .settings │ └── language.settings.xml ├── App │ ├── App.cpp │ ├── App.h │ └── ssh │ │ ├── clientloop.cpp │ │ ├── mux.cpp │ │ ├── readconf.cpp │ │ ├── ssh.cpp │ │ ├── sshconnect.cpp │ │ ├── sshconnect2.cpp │ │ └── sshtty.cpp ├── Enclave │ ├── Enclave.config.xml │ ├── Enclave.cpp │ ├── Enclave.edl │ ├── Enclave.h │ ├── Enclave.lds │ ├── Enclave_debug.lds │ ├── Enclave_private.pem │ ├── aead_aes256gcm_aesni.cpp │ ├── debug.cpp │ ├── libsodium_inc │ │ ├── Makefile │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── sodium.h │ │ └── sodium │ │ │ ├── core.h │ │ │ ├── crypto_aead_aes256gcm.h │ │ │ ├── crypto_aead_chacha20poly1305.h │ │ │ ├── crypto_aead_xchacha20poly1305.h │ │ │ ├── crypto_auth.h │ │ │ ├── crypto_auth_hmacsha256.h │ │ │ ├── crypto_auth_hmacsha512.h │ │ │ ├── crypto_auth_hmacsha512256.h │ │ │ ├── crypto_box.h │ │ │ ├── crypto_box_curve25519xchacha20poly1305.h │ │ │ ├── crypto_box_curve25519xsalsa20poly1305.h │ │ │ ├── crypto_core_ed25519.h │ │ │ ├── crypto_core_hchacha20.h │ │ │ ├── crypto_core_hsalsa20.h │ │ │ ├── crypto_core_salsa20.h │ │ │ ├── crypto_core_salsa2012.h │ │ │ ├── crypto_core_salsa208.h │ │ │ ├── crypto_generichash.h │ │ │ ├── crypto_generichash_blake2b.h │ │ │ ├── crypto_hash.h │ │ │ ├── crypto_hash_sha256.h │ │ │ ├── crypto_hash_sha512.h │ │ │ ├── crypto_kdf.h │ │ │ ├── crypto_kdf_blake2b.h │ │ │ ├── crypto_kx.h │ │ │ ├── crypto_onetimeauth.h │ │ │ ├── crypto_onetimeauth_poly1305.h │ │ │ ├── crypto_pwhash.h │ │ │ ├── crypto_pwhash_argon2i.h │ │ │ ├── crypto_pwhash_argon2id.h │ │ │ ├── crypto_pwhash_scryptsalsa208sha256.h │ │ │ ├── crypto_scalarmult.h │ │ │ ├── crypto_scalarmult_curve25519.h │ │ │ ├── crypto_scalarmult_ed25519.h │ │ │ ├── crypto_secretbox.h │ │ │ ├── crypto_secretbox_xchacha20poly1305.h │ │ │ ├── crypto_secretbox_xsalsa20poly1305.h │ │ │ ├── crypto_secretstream_xchacha20poly1305.h │ │ │ ├── crypto_shorthash.h │ │ │ ├── crypto_shorthash_siphash24.h │ │ │ ├── crypto_sign.h │ │ │ ├── crypto_sign_ed25519.h │ │ │ ├── crypto_sign_edwards25519sha512batch.h │ │ │ ├── crypto_stream.h │ │ │ ├── crypto_stream_chacha20.h │ │ │ ├── crypto_stream_salsa20.h │ │ │ ├── crypto_stream_salsa2012.h │ │ │ ├── crypto_stream_salsa208.h │ │ │ ├── crypto_stream_xchacha20.h │ │ │ ├── crypto_stream_xsalsa20.h │ │ │ ├── crypto_verify_16.h │ │ │ ├── crypto_verify_32.h │ │ │ ├── crypto_verify_64.h │ │ │ ├── export.h │ │ │ ├── private │ │ │ ├── common.h │ │ │ ├── ed25519_ref10.h │ │ │ ├── ed25519_ref10_fe_25_5.h │ │ │ ├── ed25519_ref10_fe_51.h │ │ │ ├── implementations.h │ │ │ ├── mutex.h │ │ │ └── sse2_64_32.h │ │ │ ├── randombytes.h │ │ │ ├── randombytes_nativeclient.h │ │ │ ├── randombytes_salsa20_random.h │ │ │ ├── randombytes_sysrandom.h │ │ │ ├── runtime.h │ │ │ ├── utils.h │ │ │ ├── version.h │ │ │ └── version.h.in │ ├── randombytes.cpp │ ├── ring_buffer.cpp │ └── utils.cpp ├── Makefile └── README.txt ├── Aurora-qemu-sgx ├── .dir-locals.el ├── .exrc ├── .gitignore ├── .gitmodules ├── .mailmap ├── .travis.yml ├── CODING_STYLE ├── COPYING ├── COPYING.LIB ├── Changelog ├── HACKING ├── LICENSE ├── MAINTAINERS ├── Makefile ├── Makefile.objs ├── Makefile.target ├── README ├── VERSION ├── accel.c ├── aio-posix.c ├── aio-win32.c ├── arch_init.c ├── async.c ├── atomic_template.h ├── audio │ ├── Makefile.objs │ ├── alsaaudio.c │ ├── audio.c │ ├── audio.h │ ├── audio_int.h │ ├── audio_pt_int.c │ ├── audio_pt_int.h │ ├── audio_template.h │ ├── audio_win_int.c │ ├── audio_win_int.h │ ├── coreaudio.c │ ├── dsound_template.h │ ├── dsoundaudio.c │ ├── mixeng.c │ ├── mixeng.h │ ├── mixeng_template.h │ ├── noaudio.c │ ├── ossaudio.c │ ├── paaudio.c │ ├── rate_template.h │ ├── sdlaudio.c │ ├── spiceaudio.c │ ├── trace-events │ ├── wavaudio.c │ └── wavcapture.c ├── backends │ ├── Makefile.objs │ ├── baum.c │ ├── cryptodev-builtin.c │ ├── cryptodev.c │ ├── hostmem-file.c │ ├── hostmem-ram.c │ ├── hostmem.c │ ├── msmouse.c │ ├── rng-egd.c │ ├── rng-random.c │ ├── rng.c │ ├── testdev.c │ └── tpm.c ├── balloon.c ├── block.c ├── block │ ├── Makefile.objs │ ├── accounting.c │ ├── archipelago.c │ ├── backup.c │ ├── blkdebug.c │ ├── blkreplay.c │ ├── blkverify.c │ ├── block-backend.c │ ├── bochs.c │ ├── cloop.c │ ├── commit.c │ ├── crypto.c │ ├── curl.c │ ├── dirty-bitmap.c │ ├── dmg-bz2.c │ ├── dmg.c │ ├── dmg.h │ ├── gluster.c │ ├── io.c │ ├── iscsi.c │ ├── linux-aio.c │ ├── mirror.c │ ├── nbd-client.c │ ├── nbd-client.h │ ├── nbd.c │ ├── nfs.c │ ├── null.c │ ├── parallels.c │ ├── qapi.c │ ├── qcow.c │ ├── qcow2-cache.c │ ├── qcow2-cluster.c │ ├── qcow2-refcount.c │ ├── qcow2-snapshot.c │ ├── qcow2.c │ ├── qcow2.h │ ├── qed-check.c │ ├── qed-cluster.c │ ├── qed-gencb.c │ ├── qed-l2-cache.c │ ├── qed-table.c │ ├── qed.c │ ├── qed.h │ ├── quorum.c │ ├── raw-posix.c │ ├── raw-win32.c │ ├── raw_bsd.c │ ├── rbd.c │ ├── replication.c │ ├── sheepdog.c │ ├── snapshot.c │ ├── ssh.c │ ├── stream.c │ ├── throttle-groups.c │ ├── trace-events │ ├── vdi.c │ ├── vhdx-endian.c │ ├── vhdx-log.c │ ├── vhdx.c │ ├── vhdx.h │ ├── vmdk.c │ ├── vpc.c │ ├── vvfat.c │ ├── win32-aio.c │ └── write-threshold.c ├── blockdev-nbd.c ├── blockdev.c ├── blockjob.c ├── bootdevice.c ├── bsd-user │ ├── Makefile.objs │ ├── bsd-mman.h │ ├── bsdload.c │ ├── elfload.c │ ├── errno_defs.h │ ├── freebsd │ │ ├── strace.list │ │ └── syscall_nr.h │ ├── i386 │ │ ├── target_signal.h │ │ └── target_syscall.h │ ├── main.c │ ├── mmap.c │ ├── netbsd │ │ ├── strace.list │ │ └── syscall_nr.h │ ├── openbsd │ │ ├── strace.list │ │ └── syscall_nr.h │ ├── qemu.h │ ├── signal.c │ ├── sparc │ │ ├── target_signal.h │ │ └── target_syscall.h │ ├── sparc64 │ │ ├── target_signal.h │ │ └── target_syscall.h │ ├── strace.c │ ├── syscall.c │ ├── syscall_defs.h │ ├── uaccess.c │ └── x86_64 │ │ ├── target_signal.h │ │ └── target_syscall.h ├── bt-host.c ├── bt-vhci.c ├── configure ├── contrib │ ├── ivshmem-client │ │ ├── Makefile.objs │ │ ├── ivshmem-client.c │ │ ├── ivshmem-client.h │ │ └── main.c │ └── ivshmem-server │ │ ├── Makefile.objs │ │ ├── ivshmem-server.c │ │ ├── ivshmem-server.h │ │ └── main.c ├── cpu-exec-common.c ├── cpu-exec.c ├── cpus-common.c ├── cpus.c ├── cputlb.c ├── crypto │ ├── Makefile.objs │ ├── aes.c │ ├── afsplit.c │ ├── block-luks.c │ ├── block-luks.h │ ├── block-qcow.c │ ├── block-qcow.h │ ├── block.c │ ├── blockpriv.h │ ├── cipher-builtin.c │ ├── cipher-gcrypt.c │ ├── cipher-nettle.c │ ├── cipher.c │ ├── desrfb.c │ ├── hash-gcrypt.c │ ├── hash-glib.c │ ├── hash-nettle.c │ ├── hash.c │ ├── init.c │ ├── ivgen-essiv.c │ ├── ivgen-essiv.h │ ├── ivgen-plain.c │ ├── ivgen-plain.h │ ├── ivgen-plain64.c │ ├── ivgen-plain64.h │ ├── ivgen.c │ ├── ivgenpriv.h │ ├── pbkdf-gcrypt.c │ ├── pbkdf-nettle.c │ ├── pbkdf-stub.c │ ├── pbkdf.c │ ├── random-gcrypt.c │ ├── random-gnutls.c │ ├── random-platform.c │ ├── secret.c │ ├── tlscreds.c │ ├── tlscredsanon.c │ ├── tlscredspriv.h │ ├── tlscredsx509.c │ ├── tlssession.c │ ├── trace-events │ └── xts.c ├── default-configs │ ├── aarch64-linux-user.mak │ ├── aarch64-softmmu.mak │ ├── alpha-linux-user.mak │ ├── alpha-softmmu.mak │ ├── arm-linux-user.mak │ ├── arm-softmmu.mak │ ├── armeb-linux-user.mak │ ├── cris-linux-user.mak │ ├── cris-softmmu.mak │ ├── i386-bsd-user.mak │ ├── i386-linux-user.mak │ ├── i386-softmmu.mak │ ├── lm32-softmmu.mak │ ├── m68k-linux-user.mak │ ├── m68k-softmmu.mak │ ├── microblaze-linux-user.mak │ ├── microblaze-softmmu.mak │ ├── microblazeel-linux-user.mak │ ├── microblazeel-softmmu.mak │ ├── mips-linux-user.mak │ ├── mips-softmmu-common.mak │ ├── mips-softmmu.mak │ ├── mips64-linux-user.mak │ ├── mips64-softmmu.mak │ ├── mips64el-linux-user.mak │ ├── mips64el-softmmu.mak │ ├── mipsel-linux-user.mak │ ├── mipsel-softmmu.mak │ ├── mipsn32-linux-user.mak │ ├── mipsn32el-linux-user.mak │ ├── moxie-softmmu.mak │ ├── or32-linux-user.mak │ ├── or32-softmmu.mak │ ├── pci.mak │ ├── ppc-linux-user.mak │ ├── ppc-softmmu.mak │ ├── ppc64-linux-user.mak │ ├── ppc64-softmmu.mak │ ├── ppc64abi32-linux-user.mak │ ├── ppc64le-linux-user.mak │ ├── ppcemb-softmmu.mak │ ├── s390x-linux-user.mak │ ├── s390x-softmmu.mak │ ├── sh4-linux-user.mak │ ├── sh4-softmmu.mak │ ├── sh4eb-linux-user.mak │ ├── sh4eb-softmmu.mak │ ├── sound.mak │ ├── sparc-bsd-user.mak │ ├── sparc-linux-user.mak │ ├── sparc-softmmu.mak │ ├── sparc32plus-linux-user.mak │ ├── sparc64-bsd-user.mak │ ├── sparc64-linux-user.mak │ ├── sparc64-softmmu.mak │ ├── tilegx-linux-user.mak │ ├── tricore-softmmu.mak │ ├── unicore32-softmmu.mak │ ├── usb.mak │ ├── x86_64-bsd-user.mak │ ├── x86_64-linux-user.mak │ ├── x86_64-softmmu.mak │ ├── xtensa-softmmu.mak │ └── xtensaeb-softmmu.mak ├── device-hotplug.c ├── device_tree.c ├── disas.c ├── disas │ ├── Makefile.objs │ ├── alpha.c │ ├── arm-a64.cc │ ├── arm.c │ ├── cris.c │ ├── i386.c │ ├── ia64.c │ ├── libvixl │ │ ├── LICENCE │ │ ├── Makefile.objs │ │ ├── README │ │ └── vixl │ │ │ ├── a64 │ │ │ ├── assembler-a64.h │ │ │ ├── constants-a64.h │ │ │ ├── cpu-a64.h │ │ │ ├── decoder-a64.cc │ │ │ ├── decoder-a64.h │ │ │ ├── disasm-a64.cc │ │ │ ├── disasm-a64.h │ │ │ ├── instructions-a64.cc │ │ │ └── instructions-a64.h │ │ │ ├── code-buffer.h │ │ │ ├── compiler-intrinsics.cc │ │ │ ├── compiler-intrinsics.h │ │ │ ├── globals.h │ │ │ ├── invalset.h │ │ │ ├── platform.h │ │ │ ├── utils.cc │ │ │ └── utils.h │ ├── lm32.c │ ├── m68k.c │ ├── microblaze.c │ ├── mips.c │ ├── moxie.c │ ├── ppc.c │ ├── s390.c │ ├── sh4.c │ ├── sparc.c │ └── tci.c ├── dma-helpers.c ├── docs │ ├── COLO-FT.txt │ ├── aio_notify.promela │ ├── aio_notify_accept.promela │ ├── aio_notify_bug.promela │ ├── atomics.txt │ ├── bitmaps.md │ ├── blkdebug.txt │ ├── blkverify.txt │ ├── block-replication.txt │ ├── bootindex.txt │ ├── build-system.txt │ ├── ccid.txt │ ├── colo-proxy.txt │ ├── generic-loader.txt │ ├── ich9-ehci-uhci.cfg │ ├── igd-assign.txt │ ├── image-fuzzer.txt │ ├── live-block-ops.txt │ ├── memory-hotplug.txt │ ├── memory.txt │ ├── migration.txt │ ├── multi-thread-compression.txt │ ├── multiple-iothreads.txt │ ├── multiseat.txt │ ├── pci_expander_bridge.txt │ ├── pcie.txt │ ├── q35-chipset.cfg │ ├── qapi-code-gen.txt │ ├── qcow2-cache.txt │ ├── qdev-device-use.txt │ ├── qemupciserial.inf │ ├── qmp-commands.txt │ ├── qmp-events.txt │ ├── qmp-intro.txt │ ├── qmp-spec.txt │ ├── rcu.txt │ ├── rdma.txt │ ├── replay.txt │ ├── specs │ │ ├── acpi_cpu_hotplug.txt │ │ ├── acpi_mem_hotplug.txt │ │ ├── acpi_nvdimm.txt │ │ ├── acpi_pci_hotplug.txt │ │ ├── edu.txt │ │ ├── fw_cfg.txt │ │ ├── ivshmem-spec.txt │ │ ├── parallels.txt │ │ ├── pci-ids.txt │ │ ├── pci-serial.txt │ │ ├── pci-testdev.txt │ │ ├── ppc-spapr-hcalls.txt │ │ ├── ppc-spapr-hotplug.txt │ │ ├── pvpanic.txt │ │ ├── qcow2.txt │ │ ├── qed_spec.txt │ │ ├── rocker.txt │ │ ├── standard-vga.txt │ │ ├── vhost-user.txt │ │ └── vmw_pvscsi-spec.txt │ ├── spice-port-fqdn.txt │ ├── tcg-exclusive.promela │ ├── throttle.txt │ ├── tracing.txt │ ├── usb-storage.txt │ ├── usb2.txt │ ├── virtio-balloon-stats.txt │ ├── virtio-migration.txt │ ├── vnc-ledstate-Pseudo-encoding.txt │ ├── win32-qemu-event.promela │ ├── writing-qmp-commands.txt │ ├── xbzrle.txt │ └── xen-save-devices-state.txt ├── dump.c ├── exec.c ├── fpu │ ├── softfloat-macros.h │ ├── softfloat-specialize.h │ └── softfloat.c ├── fsdev │ ├── 9p-iov-marshal.c │ ├── 9p-iov-marshal.h │ ├── 9p-marshal.c │ ├── 9p-marshal.h │ ├── Makefile.objs │ ├── file-op-9p.h │ ├── qemu-fsdev-dummy.c │ ├── qemu-fsdev-opts.c │ ├── qemu-fsdev.c │ ├── qemu-fsdev.h │ ├── virtfs-proxy-helper.c │ └── virtfs-proxy-helper.texi ├── gdb-xml │ ├── aarch64-core.xml │ ├── aarch64-fpu.xml │ ├── arm-core.xml │ ├── arm-neon.xml │ ├── arm-vfp.xml │ ├── arm-vfp3.xml │ ├── cf-core.xml │ ├── cf-fp.xml │ ├── power-altivec.xml │ ├── power-core.xml │ ├── power-fpu.xml │ ├── power-spe.xml │ ├── power-vsx.xml │ ├── power64-core.xml │ ├── s390-acr.xml │ ├── s390-cr.xml │ ├── s390-fpr.xml │ ├── s390-virt.xml │ ├── s390-vx.xml │ └── s390x-core64.xml ├── gdbstub.c ├── hmp-commands-info.hx ├── hmp-commands.hx ├── hmp.c ├── hmp.h ├── hw │ ├── 9pfs │ │ ├── 9p-handle.c │ │ ├── 9p-local.c │ │ ├── 9p-posix-acl.c │ │ ├── 9p-proxy.c │ │ ├── 9p-proxy.h │ │ ├── 9p-synth.c │ │ ├── 9p-synth.h │ │ ├── 9p-xattr-user.c │ │ ├── 9p-xattr.c │ │ ├── 9p-xattr.h │ │ ├── 9p.c │ │ ├── 9p.h │ │ ├── Makefile.objs │ │ ├── codir.c │ │ ├── cofile.c │ │ ├── cofs.c │ │ ├── coth.c │ │ ├── coth.h │ │ ├── coxattr.c │ │ ├── trace-events │ │ ├── virtio-9p-device.c │ │ └── virtio-9p.h │ ├── Makefile.objs │ ├── acpi │ │ ├── Makefile.objs │ │ ├── acpi_interface.c │ │ ├── aml-build.c │ │ ├── bios-linker-loader.c │ │ ├── core.c │ │ ├── cpu.c │ │ ├── cpu_hotplug.c │ │ ├── ich9.c │ │ ├── ipmi.c │ │ ├── memory_hotplug.c │ │ ├── memory_hotplug_acpi_table.c │ │ ├── nvdimm.c │ │ ├── pcihp.c │ │ ├── piix4.c │ │ ├── tco.c │ │ └── trace-events │ ├── adc │ │ ├── Makefile.objs │ │ └── stm32f2xx_adc.c │ ├── alpha │ │ ├── Makefile.objs │ │ ├── alpha_sys.h │ │ ├── dp264.c │ │ ├── pci.c │ │ ├── trace-events │ │ └── typhoon.c │ ├── arm │ │ ├── Makefile.objs │ │ ├── allwinner-a10.c │ │ ├── armv7m.c │ │ ├── aspeed.c │ │ ├── aspeed_soc.c │ │ ├── bcm2835_peripherals.c │ │ ├── bcm2836.c │ │ ├── boot.c │ │ ├── collie.c │ │ ├── cubieboard.c │ │ ├── digic.c │ │ ├── digic_boards.c │ │ ├── exynos4210.c │ │ ├── exynos4_boards.c │ │ ├── fsl-imx25.c │ │ ├── fsl-imx31.c │ │ ├── fsl-imx6.c │ │ ├── gumstix.c │ │ ├── highbank.c │ │ ├── imx25_pdk.c │ │ ├── integratorcp.c │ │ ├── kzm.c │ │ ├── mainstone.c │ │ ├── musicpal.c │ │ ├── netduino2.c │ │ ├── nseries.c │ │ ├── omap1.c │ │ ├── omap2.c │ │ ├── omap_sx1.c │ │ ├── palm.c │ │ ├── pxa2xx.c │ │ ├── pxa2xx_gpio.c │ │ ├── pxa2xx_pic.c │ │ ├── raspi.c │ │ ├── realview.c │ │ ├── sabrelite.c │ │ ├── spitz.c │ │ ├── stellaris.c │ │ ├── stm32f205_soc.c │ │ ├── strongarm.c │ │ ├── strongarm.h │ │ ├── sysbus-fdt.c │ │ ├── tosa.c │ │ ├── trace-events │ │ ├── versatilepb.c │ │ ├── vexpress.c │ │ ├── virt-acpi-build.c │ │ ├── virt.c │ │ ├── xilinx_zynq.c │ │ ├── xlnx-ep108.c │ │ ├── xlnx-zynqmp.c │ │ └── z2.c │ ├── audio │ │ ├── Makefile.objs │ │ ├── ac97.c │ │ ├── adlib.c │ │ ├── cs4231.c │ │ ├── cs4231a.c │ │ ├── es1370.c │ │ ├── fmopl.c │ │ ├── fmopl.h │ │ ├── gus.c │ │ ├── gusemu.h │ │ ├── gusemu_hal.c │ │ ├── gusemu_mixer.c │ │ ├── gustate.h │ │ ├── hda-codec-common.h │ │ ├── hda-codec.c │ │ ├── intel-hda-defs.h │ │ ├── intel-hda.c │ │ ├── intel-hda.h │ │ ├── lm4549.c │ │ ├── lm4549.h │ │ ├── marvell_88w8618.c │ │ ├── milkymist-ac97.c │ │ ├── pcspk.c │ │ ├── pl041.c │ │ ├── pl041.h │ │ ├── pl041.hx │ │ ├── sb16.c │ │ ├── trace-events │ │ └── wm8750.c │ ├── block │ │ ├── Makefile.objs │ │ ├── block.c │ │ ├── cdrom.c │ │ ├── dataplane │ │ │ ├── Makefile.objs │ │ │ ├── virtio-blk.c │ │ │ └── virtio-blk.h │ │ ├── ecc.c │ │ ├── fdc.c │ │ ├── hd-geometry.c │ │ ├── m25p80.c │ │ ├── nand.c │ │ ├── nvme.c │ │ ├── nvme.h │ │ ├── onenand.c │ │ ├── pflash_cfi01.c │ │ ├── pflash_cfi02.c │ │ ├── tc58128.c │ │ ├── trace-events │ │ ├── virtio-blk.c │ │ ├── xen_blkif.h │ │ └── xen_disk.c │ ├── bt │ │ ├── Makefile.objs │ │ ├── core.c │ │ ├── hci-csr.c │ │ ├── hci.c │ │ ├── hid.c │ │ ├── l2cap.c │ │ └── sdp.c │ ├── char │ │ ├── Makefile.objs │ │ ├── bcm2835_aux.c │ │ ├── cadence_uart.c │ │ ├── debugcon.c │ │ ├── digic-uart.c │ │ ├── escc.c │ │ ├── etraxfs_ser.c │ │ ├── exynos4210_uart.c │ │ ├── grlib_apbuart.c │ │ ├── imx_serial.c │ │ ├── ipoctal232.c │ │ ├── lm32_juart.c │ │ ├── lm32_uart.c │ │ ├── mcf_uart.c │ │ ├── milkymist-uart.c │ │ ├── omap_uart.c │ │ ├── parallel.c │ │ ├── pl011.c │ │ ├── sclpconsole-lm.c │ │ ├── sclpconsole.c │ │ ├── serial-isa.c │ │ ├── serial-pci.c │ │ ├── serial.c │ │ ├── sh_serial.c │ │ ├── spapr_vty.c │ │ ├── stm32f2xx_usart.c │ │ ├── trace-events │ │ ├── virtio-console.c │ │ ├── virtio-serial-bus.c │ │ ├── xen_console.c │ │ └── xilinx_uartlite.c │ ├── core │ │ ├── Makefile.objs │ │ ├── bus.c │ │ ├── empty_slot.c │ │ ├── fw-path-provider.c │ │ ├── generic-loader.c │ │ ├── hotplug.c │ │ ├── irq.c │ │ ├── loader.c │ │ ├── machine.c │ │ ├── nmi.c │ │ ├── null-machine.c │ │ ├── or-irq.c │ │ ├── platform-bus.c │ │ ├── ptimer.c │ │ ├── qdev-properties-system.c │ │ ├── qdev-properties.c │ │ ├── qdev.c │ │ ├── register.c │ │ ├── stream.c │ │ ├── sysbus.c │ │ └── uboot_image.h │ ├── cpu │ │ ├── Makefile.objs │ │ ├── a15mpcore.c │ │ ├── a9mpcore.c │ │ ├── arm11mpcore.c │ │ ├── core.c │ │ └── realview_mpcore.c │ ├── cris │ │ ├── Makefile.objs │ │ ├── axis_dev88.c │ │ ├── boot.c │ │ └── boot.h │ ├── display │ │ ├── Makefile.objs │ │ ├── ads7846.c │ │ ├── bcm2835_fb.c │ │ ├── blizzard.c │ │ ├── cg3.c │ │ ├── cirrus_vga.c │ │ ├── cirrus_vga_rop.h │ │ ├── cirrus_vga_rop2.h │ │ ├── dpcd.c │ │ ├── exynos4210_fimd.c │ │ ├── framebuffer.c │ │ ├── framebuffer.h │ │ ├── g364fb.c │ │ ├── jazz_led.c │ │ ├── milkymist-tmu2.c │ │ ├── milkymist-vgafb.c │ │ ├── milkymist-vgafb_template.h │ │ ├── omap_dss.c │ │ ├── omap_lcd_template.h │ │ ├── omap_lcdc.c │ │ ├── pl110.c │ │ ├── pl110_template.h │ │ ├── pxa2xx_lcd.c │ │ ├── pxa2xx_template.h │ │ ├── qxl-logger.c │ │ ├── qxl-render.c │ │ ├── qxl.c │ │ ├── qxl.h │ │ ├── sm501.c │ │ ├── sm501_template.h │ │ ├── ssd0303.c │ │ ├── ssd0323.c │ │ ├── tc6393xb.c │ │ ├── tc6393xb_template.h │ │ ├── tcx.c │ │ ├── trace-events │ │ ├── vga-helpers.h │ │ ├── vga-isa-mm.c │ │ ├── vga-isa.c │ │ ├── vga-pci.c │ │ ├── vga.c │ │ ├── vga.h │ │ ├── vga_int.h │ │ ├── virtio-gpu-3d.c │ │ ├── virtio-gpu-pci.c │ │ ├── virtio-gpu.c │ │ ├── virtio-vga.c │ │ ├── vmware_vga.c │ │ ├── xenfb.c │ │ └── xlnx_dp.c │ ├── dma │ │ ├── Makefile.objs │ │ ├── bcm2835_dma.c │ │ ├── etraxfs_dma.c │ │ ├── i82374.c │ │ ├── i8257.c │ │ ├── omap_dma.c │ │ ├── pl080.c │ │ ├── pl330.c │ │ ├── puv3_dma.c │ │ ├── pxa2xx_dma.c │ │ ├── rc4030.c │ │ ├── soc_dma.c │ │ ├── sparc32_dma.c │ │ ├── sun4m_iommu.c │ │ ├── trace-events │ │ ├── xilinx_axidma.c │ │ ├── xlnx-zynq-devcfg.c │ │ └── xlnx_dpdma.c │ ├── gpio │ │ ├── Makefile.objs │ │ ├── gpio_key.c │ │ ├── imx_gpio.c │ │ ├── max7310.c │ │ ├── mpc8xxx.c │ │ ├── omap_gpio.c │ │ ├── pl061.c │ │ ├── puv3_gpio.c │ │ └── zaurus.c │ ├── i2c │ │ ├── Makefile.objs │ │ ├── aspeed_i2c.c │ │ ├── bitbang_i2c.c │ │ ├── bitbang_i2c.h │ │ ├── core.c │ │ ├── exynos4210_i2c.c │ │ ├── i2c-ddc.c │ │ ├── imx_i2c.c │ │ ├── omap_i2c.c │ │ ├── pm_smbus.c │ │ ├── smbus.c │ │ ├── smbus_eeprom.c │ │ ├── smbus_ich9.c │ │ └── versatile_i2c.c │ ├── i386 │ │ ├── Makefile.objs │ │ ├── acpi-build.c │ │ ├── acpi-build.h │ │ ├── amd_iommu.c │ │ ├── amd_iommu.h │ │ ├── intel_iommu.c │ │ ├── intel_iommu_internal.h │ │ ├── kvm │ │ │ ├── Makefile.objs │ │ │ ├── apic.c │ │ │ ├── clock.c │ │ │ ├── i8254.c │ │ │ ├── i8259.c │ │ │ ├── ioapic.c │ │ │ └── pci-assign.c │ │ ├── kvmvapic.c │ │ ├── multiboot.c │ │ ├── multiboot.h │ │ ├── pc.c │ │ ├── pc_piix.c │ │ ├── pc_q35.c │ │ ├── pc_sysfw.c │ │ ├── pci-assign-load-rom.c │ │ ├── trace-events │ │ ├── x86-iommu.c │ │ └── xen │ │ │ ├── Makefile.objs │ │ │ ├── xen_apic.c │ │ │ ├── xen_platform.c │ │ │ └── xen_pvdevice.c │ ├── ide │ │ ├── Makefile.objs │ │ ├── ahci.c │ │ ├── atapi.c │ │ ├── cmd646.c │ │ ├── core.c │ │ ├── ich.c │ │ ├── isa.c │ │ ├── macio.c │ │ ├── microdrive.c │ │ ├── mmio.c │ │ ├── pci.c │ │ ├── piix.c │ │ ├── qdev.c │ │ └── via.c │ ├── input │ │ ├── Makefile.objs │ │ ├── adb.c │ │ ├── hid.c │ │ ├── lm832x.c │ │ ├── milkymist-softusb.c │ │ ├── pckbd.c │ │ ├── pl050.c │ │ ├── ps2.c │ │ ├── pxa2xx_keypad.c │ │ ├── stellaris_input.c │ │ ├── trace-events │ │ ├── tsc2005.c │ │ ├── tsc210x.c │ │ ├── virtio-input-hid.c │ │ ├── virtio-input-host.c │ │ ├── virtio-input.c │ │ └── vmmouse.c │ ├── intc │ │ ├── Makefile.objs │ │ ├── allwinner-a10-pic.c │ │ ├── apic.c │ │ ├── apic_common.c │ │ ├── arm_gic.c │ │ ├── arm_gic_common.c │ │ ├── arm_gic_kvm.c │ │ ├── arm_gicv2m.c │ │ ├── arm_gicv3.c │ │ ├── arm_gicv3_common.c │ │ ├── arm_gicv3_cpuif.c │ │ ├── arm_gicv3_dist.c │ │ ├── arm_gicv3_its_common.c │ │ ├── arm_gicv3_its_kvm.c │ │ ├── arm_gicv3_kvm.c │ │ ├── arm_gicv3_redist.c │ │ ├── armv7m_nvic.c │ │ ├── aspeed_vic.c │ │ ├── bcm2835_ic.c │ │ ├── bcm2836_control.c │ │ ├── etraxfs_pic.c │ │ ├── exynos4210_combiner.c │ │ ├── exynos4210_gic.c │ │ ├── gic_internal.h │ │ ├── gicv3_internal.h │ │ ├── grlib_irqmp.c │ │ ├── heathrow_pic.c │ │ ├── i8259.c │ │ ├── i8259_common.c │ │ ├── imx_avic.c │ │ ├── intc.c │ │ ├── ioapic.c │ │ ├── ioapic_common.c │ │ ├── lm32_pic.c │ │ ├── mips_gic.c │ │ ├── omap_intc.c │ │ ├── openpic.c │ │ ├── openpic_kvm.c │ │ ├── pl190.c │ │ ├── puv3_intc.c │ │ ├── realview_gic.c │ │ ├── s390_flic.c │ │ ├── s390_flic_kvm.c │ │ ├── sh_intc.c │ │ ├── slavio_intctl.c │ │ ├── trace-events │ │ ├── vgic_common.h │ │ ├── xics.c │ │ ├── xics_kvm.c │ │ ├── xics_spapr.c │ │ └── xilinx_intc.c │ ├── ipack │ │ ├── Makefile.objs │ │ ├── ipack.c │ │ └── tpci200.c │ ├── ipmi │ │ ├── Makefile.objs │ │ ├── ipmi.c │ │ ├── ipmi_bmc_extern.c │ │ ├── ipmi_bmc_sim.c │ │ ├── isa_ipmi_bt.c │ │ └── isa_ipmi_kcs.c │ ├── isa │ │ ├── Makefile.objs │ │ ├── apm.c │ │ ├── i82378.c │ │ ├── isa-bus.c │ │ ├── lpc_ich9.c │ │ ├── pc87312.c │ │ ├── piix4.c │ │ ├── trace-events │ │ └── vt82c686.c │ ├── lm32 │ │ ├── Makefile.objs │ │ ├── lm32.h │ │ ├── lm32_boards.c │ │ ├── lm32_hwsetup.h │ │ ├── milkymist-hw.h │ │ └── milkymist.c │ ├── m68k │ │ ├── Makefile.objs │ │ ├── an5206.c │ │ ├── dummy_m68k.c │ │ ├── mcf5206.c │ │ ├── mcf5208.c │ │ └── mcf_intc.c │ ├── mem │ │ ├── Makefile.objs │ │ ├── nvdimm.c │ │ ├── pc-dimm.c │ │ └── trace-events │ ├── microblaze │ │ ├── Makefile.objs │ │ ├── boot.c │ │ ├── boot.h │ │ ├── petalogix_ml605_mmu.c │ │ └── petalogix_s3adsp1800_mmu.c │ ├── mips │ │ ├── Makefile.objs │ │ ├── addr.c │ │ ├── cps.c │ │ ├── cputimer.c │ │ ├── gt64xxx_pci.c │ │ ├── mips_fulong2e.c │ │ ├── mips_int.c │ │ ├── mips_jazz.c │ │ ├── mips_malta.c │ │ ├── mips_mipssim.c │ │ └── mips_r4k.c │ ├── misc │ │ ├── Makefile.objs │ │ ├── a9scu.c │ │ ├── applesmc.c │ │ ├── arm11scu.c │ │ ├── arm_integrator_debug.c │ │ ├── arm_l2x0.c │ │ ├── arm_sysctl.c │ │ ├── aspeed_scu.c │ │ ├── aspeed_sdmc.c │ │ ├── auxbus.c │ │ ├── bcm2835_mbox.c │ │ ├── bcm2835_property.c │ │ ├── cbus.c │ │ ├── debugexit.c │ │ ├── eccmemctl.c │ │ ├── edu.c │ │ ├── exynos4210_pmu.c │ │ ├── hyperv_testdev.c │ │ ├── imx25_ccm.c │ │ ├── imx31_ccm.c │ │ ├── imx6_ccm.c │ │ ├── imx6_src.c │ │ ├── imx_ccm.c │ │ ├── ivshmem.c │ │ ├── macio │ │ │ ├── Makefile.objs │ │ │ ├── cuda.c │ │ │ ├── mac_dbdma.c │ │ │ └── macio.c │ │ ├── max111x.c │ │ ├── milkymist-hpdmc.c │ │ ├── milkymist-pfpu.c │ │ ├── mips_cmgcr.c │ │ ├── mips_cpc.c │ │ ├── mips_itu.c │ │ ├── mst_fpga.c │ │ ├── omap_clk.c │ │ ├── omap_gpmc.c │ │ ├── omap_l4.c │ │ ├── omap_sdrc.c │ │ ├── omap_tap.c │ │ ├── pc-testdev.c │ │ ├── pci-testdev.c │ │ ├── puv3_pm.c │ │ ├── pvpanic.c │ │ ├── sga.c │ │ ├── sgx_virt_dev.c │ │ ├── slavio_misc.c │ │ ├── stm32f2xx_syscfg.c │ │ ├── tmp105.c │ │ ├── tmp105.h │ │ ├── trace-events │ │ ├── vmport.c │ │ ├── zynq-xadc.c │ │ └── zynq_slcr.c │ ├── moxie │ │ ├── Makefile.objs │ │ └── moxiesim.c │ ├── net │ │ ├── Makefile.objs │ │ ├── allwinner_emac.c │ │ ├── cadence_gem.c │ │ ├── dp8393x.c │ │ ├── e1000.c │ │ ├── e1000_regs.h │ │ ├── e1000e.c │ │ ├── e1000e_core.c │ │ ├── e1000e_core.h │ │ ├── e1000x_common.c │ │ ├── e1000x_common.h │ │ ├── eepro100.c │ │ ├── etraxfs_eth.c │ │ ├── fsl_etsec │ │ │ ├── etsec.c │ │ │ ├── etsec.h │ │ │ ├── miim.c │ │ │ ├── registers.c │ │ │ ├── registers.h │ │ │ └── rings.c │ │ ├── imx_fec.c │ │ ├── lan9118.c │ │ ├── lance.c │ │ ├── mcf_fec.c │ │ ├── milkymist-minimac2.c │ │ ├── mipsnet.c │ │ ├── ne2000-isa.c │ │ ├── ne2000.c │ │ ├── ne2000.h │ │ ├── net_rx_pkt.c │ │ ├── net_rx_pkt.h │ │ ├── net_tx_pkt.c │ │ ├── net_tx_pkt.h │ │ ├── opencores_eth.c │ │ ├── pcnet-pci.c │ │ ├── pcnet.c │ │ ├── pcnet.h │ │ ├── rocker │ │ │ ├── qmp-norocker.c │ │ │ ├── rocker.c │ │ │ ├── rocker.h │ │ │ ├── rocker_desc.c │ │ │ ├── rocker_desc.h │ │ │ ├── rocker_fp.c │ │ │ ├── rocker_fp.h │ │ │ ├── rocker_hw.h │ │ │ ├── rocker_of_dpa.c │ │ │ ├── rocker_of_dpa.h │ │ │ ├── rocker_tlv.h │ │ │ ├── rocker_world.c │ │ │ └── rocker_world.h │ │ ├── rtl8139.c │ │ ├── smc91c111.c │ │ ├── spapr_llan.c │ │ ├── stellaris_enet.c │ │ ├── trace-events │ │ ├── vhost_net.c │ │ ├── virtio-net.c │ │ ├── vmware_utils.h │ │ ├── vmxnet3.c │ │ ├── vmxnet3.h │ │ ├── vmxnet_debug.h │ │ ├── xen_nic.c │ │ ├── xgmac.c │ │ ├── xilinx_axienet.c │ │ └── xilinx_ethlite.c │ ├── nvram │ │ ├── Makefile.objs │ │ ├── chrp_nvram.c │ │ ├── ds1225y.c │ │ ├── eeprom93xx.c │ │ ├── fw_cfg.c │ │ ├── mac_nvram.c │ │ ├── spapr_nvram.c │ │ └── trace-events │ ├── openrisc │ │ ├── Makefile.objs │ │ ├── cputimer.c │ │ ├── openrisc_sim.c │ │ └── pic_cpu.c │ ├── pci-bridge │ │ ├── Makefile.objs │ │ ├── dec.c │ │ ├── dec.h │ │ ├── i82801b11.c │ │ ├── ioh3420.c │ │ ├── ioh3420.h │ │ ├── pci_bridge_dev.c │ │ ├── pci_expander_bridge.c │ │ ├── xio3130_downstream.c │ │ ├── xio3130_downstream.h │ │ ├── xio3130_upstream.c │ │ └── xio3130_upstream.h │ ├── pci-host │ │ ├── Makefile.objs │ │ ├── apb.c │ │ ├── bonito.c │ │ ├── gpex.c │ │ ├── grackle.c │ │ ├── pam.c │ │ ├── piix.c │ │ ├── ppce500.c │ │ ├── prep.c │ │ ├── q35.c │ │ ├── uninorth.c │ │ └── versatile.c │ ├── pci │ │ ├── Makefile.objs │ │ ├── msi.c │ │ ├── msix.c │ │ ├── pci-stub.c │ │ ├── pci.c │ │ ├── pci_bridge.c │ │ ├── pci_host.c │ │ ├── pcie.c │ │ ├── pcie_aer.c │ │ ├── pcie_host.c │ │ ├── pcie_port.c │ │ ├── shpc.c │ │ ├── slotid_cap.c │ │ └── trace-events │ ├── pcmcia │ │ ├── Makefile.objs │ │ ├── pcmcia.c │ │ └── pxa2xx.c │ ├── ppc │ │ ├── Makefile.objs │ │ ├── e500-ccsr.h │ │ ├── e500.c │ │ ├── e500.h │ │ ├── e500plat.c │ │ ├── fdt.c │ │ ├── mac.h │ │ ├── mac_newworld.c │ │ ├── mac_oldworld.c │ │ ├── mpc8544_guts.c │ │ ├── mpc8544ds.c │ │ ├── pnv.c │ │ ├── pnv_core.c │ │ ├── pnv_lpc.c │ │ ├── pnv_xscom.c │ │ ├── ppc.c │ │ ├── ppc405.h │ │ ├── ppc405_boards.c │ │ ├── ppc405_uc.c │ │ ├── ppc440_bamboo.c │ │ ├── ppc4xx_devs.c │ │ ├── ppc4xx_pci.c │ │ ├── ppc_booke.c │ │ ├── ppce500_spin.c │ │ ├── prep.c │ │ ├── spapr.c │ │ ├── spapr_cpu_core.c │ │ ├── spapr_drc.c │ │ ├── spapr_events.c │ │ ├── spapr_hcall.c │ │ ├── spapr_iommu.c │ │ ├── spapr_ovec.c │ │ ├── spapr_pci.c │ │ ├── spapr_pci_vfio.c │ │ ├── spapr_rng.c │ │ ├── spapr_rtas.c │ │ ├── spapr_rtas_ddw.c │ │ ├── spapr_rtc.c │ │ ├── spapr_vio.c │ │ ├── trace-events │ │ └── virtex_ml507.c │ ├── s390x │ │ ├── Makefile.objs │ │ ├── ccw-device.c │ │ ├── ccw-device.h │ │ ├── css-bridge.c │ │ ├── css.c │ │ ├── event-facility.c │ │ ├── ipl.c │ │ ├── ipl.h │ │ ├── s390-pci-bus.c │ │ ├── s390-pci-bus.h │ │ ├── s390-pci-inst.c │ │ ├── s390-pci-inst.h │ │ ├── s390-skeys-kvm.c │ │ ├── s390-skeys.c │ │ ├── s390-virtio-ccw.c │ │ ├── s390-virtio-hcall.c │ │ ├── s390-virtio.c │ │ ├── s390-virtio.h │ │ ├── sclp.c │ │ ├── sclpcpu.c │ │ ├── sclpquiesce.c │ │ ├── trace-events │ │ ├── virtio-ccw.c │ │ └── virtio-ccw.h │ ├── scsi │ │ ├── Makefile.objs │ │ ├── esp-pci.c │ │ ├── esp.c │ │ ├── lsi53c895a.c │ │ ├── megasas.c │ │ ├── mfi.h │ │ ├── mpi.h │ │ ├── mptconfig.c │ │ ├── mptendian.c │ │ ├── mptsas.c │ │ ├── mptsas.h │ │ ├── scsi-bus.c │ │ ├── scsi-disk.c │ │ ├── scsi-generic.c │ │ ├── spapr_vscsi.c │ │ ├── srp.h │ │ ├── trace-events │ │ ├── vhost-scsi.c │ │ ├── viosrp.h │ │ ├── virtio-scsi-dataplane.c │ │ ├── virtio-scsi.c │ │ ├── vmw_pvscsi.c │ │ └── vmw_pvscsi.h │ ├── sd │ │ ├── Makefile.objs │ │ ├── core.c │ │ ├── milkymist-memcard.c │ │ ├── omap_mmc.c │ │ ├── pl181.c │ │ ├── pxa2xx_mmci.c │ │ ├── sd.c │ │ ├── sdhci-internal.h │ │ ├── sdhci.c │ │ ├── ssi-sd.c │ │ └── trace-events │ ├── sh4 │ │ ├── Makefile.objs │ │ ├── r2d.c │ │ ├── sh7750.c │ │ ├── sh7750_regnames.c │ │ ├── sh7750_regnames.h │ │ ├── sh7750_regs.h │ │ ├── sh_pci.c │ │ └── shix.c │ ├── smbios │ │ ├── Makefile.objs │ │ ├── smbios.c │ │ ├── smbios_build.h │ │ └── smbios_type_38.c │ ├── sparc │ │ ├── Makefile.objs │ │ ├── leon3.c │ │ ├── sun4m.c │ │ └── trace-events │ ├── sparc64 │ │ ├── Makefile.objs │ │ └── sun4u.c │ ├── ssi │ │ ├── Makefile.objs │ │ ├── aspeed_smc.c │ │ ├── imx_spi.c │ │ ├── omap_spi.c │ │ ├── pl022.c │ │ ├── ssi.c │ │ ├── stm32f2xx_spi.c │ │ ├── xilinx_spi.c │ │ └── xilinx_spips.c │ ├── timer │ │ ├── Makefile.objs │ │ ├── a9gtimer.c │ │ ├── allwinner-a10-pit.c │ │ ├── arm_mptimer.c │ │ ├── arm_timer.c │ │ ├── aspeed_timer.c │ │ ├── cadence_ttc.c │ │ ├── digic-timer.c │ │ ├── ds1338.c │ │ ├── etraxfs_timer.c │ │ ├── exynos4210_mct.c │ │ ├── exynos4210_pwm.c │ │ ├── exynos4210_rtc.c │ │ ├── grlib_gptimer.c │ │ ├── hpet.c │ │ ├── i8254.c │ │ ├── i8254_common.c │ │ ├── imx_epit.c │ │ ├── imx_gpt.c │ │ ├── lm32_timer.c │ │ ├── m48t59.c │ │ ├── mc146818rtc.c │ │ ├── milkymist-sysctl.c │ │ ├── mips_gictimer.c │ │ ├── omap_gptimer.c │ │ ├── omap_synctimer.c │ │ ├── pl031.c │ │ ├── puv3_ost.c │ │ ├── pxa2xx_timer.c │ │ ├── sh_timer.c │ │ ├── slavio_timer.c │ │ ├── stm32f2xx_timer.c │ │ ├── trace-events │ │ ├── twl92230.c │ │ └── xilinx_timer.c │ ├── tpm │ │ ├── Makefile.objs │ │ ├── tpm_int.h │ │ ├── tpm_passthrough.c │ │ ├── tpm_tis.c │ │ ├── tpm_tis.h │ │ ├── tpm_util.c │ │ └── tpm_util.h │ ├── tricore │ │ ├── Makefile.objs │ │ └── tricore_testboard.c │ ├── unicore32 │ │ ├── Makefile.objs │ │ └── puv3.c │ ├── usb │ │ ├── Makefile.objs │ │ ├── bus.c │ │ ├── ccid-card-emulated.c │ │ ├── ccid-card-passthru.c │ │ ├── ccid.h │ │ ├── combined-packet.c │ │ ├── core.c │ │ ├── desc-msos.c │ │ ├── desc.c │ │ ├── desc.h │ │ ├── dev-audio.c │ │ ├── dev-bluetooth.c │ │ ├── dev-dummy.c │ │ ├── dev-hid.c │ │ ├── dev-hub.c │ │ ├── dev-mtp.c │ │ ├── dev-network.c │ │ ├── dev-serial.c │ │ ├── dev-smartcard-reader.c │ │ ├── dev-storage.c │ │ ├── dev-uas.c │ │ ├── dev-wacom.c │ │ ├── hcd-ehci-pci.c │ │ ├── hcd-ehci-sysbus.c │ │ ├── hcd-ehci.c │ │ ├── hcd-ehci.h │ │ ├── hcd-musb.c │ │ ├── hcd-ohci.c │ │ ├── hcd-uhci.c │ │ ├── hcd-xhci.c │ │ ├── host-legacy.c │ │ ├── host-libusb.c │ │ ├── host-stub.c │ │ ├── host.h │ │ ├── libhw.c │ │ ├── quirks-ftdi-ids.h │ │ ├── quirks-pl2303-ids.h │ │ ├── quirks.c │ │ ├── quirks.h │ │ ├── redirect.c │ │ ├── trace-events │ │ ├── tusb6010.c │ │ └── xen-usb.c │ ├── vfio │ │ ├── Makefile.objs │ │ ├── amd-xgbe.c │ │ ├── calxeda-xgmac.c │ │ ├── common.c │ │ ├── pci-quirks.c │ │ ├── pci.c │ │ ├── pci.h │ │ ├── platform.c │ │ ├── spapr.c │ │ └── trace-events │ ├── virtio │ │ ├── Makefile.objs │ │ ├── trace-events │ │ ├── vhost-backend.c │ │ ├── vhost-user.c │ │ ├── vhost-vsock.c │ │ ├── vhost.c │ │ ├── virtio-balloon.c │ │ ├── virtio-bus.c │ │ ├── virtio-crypto-pci.c │ │ ├── virtio-crypto.c │ │ ├── virtio-mmio.c │ │ ├── virtio-pci.c │ │ ├── virtio-pci.h │ │ ├── virtio-rng.c │ │ └── virtio.c │ ├── watchdog │ │ ├── Makefile.objs │ │ ├── watchdog.c │ │ ├── wdt_diag288.c │ │ ├── wdt_i6300esb.c │ │ └── wdt_ib700.c │ ├── xen │ │ ├── Makefile.objs │ │ ├── xen-host-pci-device.c │ │ ├── xen-host-pci-device.h │ │ ├── xen_backend.c │ │ ├── xen_devconfig.c │ │ ├── xen_pt.c │ │ ├── xen_pt.h │ │ ├── xen_pt_config_init.c │ │ ├── xen_pt_graphics.c │ │ ├── xen_pt_msi.c │ │ └── xen_pvdev.c │ ├── xenpv │ │ ├── Makefile.objs │ │ ├── xen_domainbuild.c │ │ ├── xen_domainbuild.h │ │ └── xen_machine_pv.c │ └── xtensa │ │ ├── Makefile.objs │ │ ├── bootparam.h │ │ ├── pic_cpu.c │ │ ├── sim.c │ │ └── xtfpga.c ├── include │ ├── block │ │ ├── accounting.h │ │ ├── aio.h │ │ ├── block.h │ │ ├── block_backup.h │ │ ├── block_int.h │ │ ├── blockjob.h │ │ ├── blockjob_int.h │ │ ├── dirty-bitmap.h │ │ ├── nbd.h │ │ ├── qapi.h │ │ ├── raw-aio.h │ │ ├── scsi.h │ │ ├── snapshot.h │ │ ├── thread-pool.h │ │ ├── throttle-groups.h │ │ └── write-threshold.h │ ├── crypto │ │ ├── aes.h │ │ ├── afsplit.h │ │ ├── block.h │ │ ├── cipher.h │ │ ├── desrfb.h │ │ ├── hash.h │ │ ├── init.h │ │ ├── ivgen.h │ │ ├── pbkdf.h │ │ ├── random.h │ │ ├── secret.h │ │ ├── tlscreds.h │ │ ├── tlscredsanon.h │ │ ├── tlscredsx509.h │ │ ├── tlssession.h │ │ └── xts.h │ ├── disas │ │ ├── bfd.h │ │ └── disas.h │ ├── elf.h │ ├── exec │ │ ├── address-spaces.h │ │ ├── cpu-all.h │ │ ├── cpu-common.h │ │ ├── cpu-defs.h │ │ ├── cpu_ldst.h │ │ ├── cpu_ldst_template.h │ │ ├── cpu_ldst_useronly_template.h │ │ ├── cputlb.h │ │ ├── exec-all.h │ │ ├── gdbstub.h │ │ ├── gen-icount.h │ │ ├── helper-gen.h │ │ ├── helper-head.h │ │ ├── helper-proto.h │ │ ├── helper-tcg.h │ │ ├── hwaddr.h │ │ ├── ioport.h │ │ ├── log.h │ │ ├── memattrs.h │ │ ├── memory-internal.h │ │ ├── memory.h │ │ ├── poison.h │ │ ├── ram_addr.h │ │ ├── semihost.h │ │ ├── softmmu-semi.h │ │ ├── tb-context.h │ │ ├── tb-hash-xx.h │ │ ├── tb-hash.h │ │ └── user │ │ │ ├── abitypes.h │ │ │ └── thunk.h │ ├── fpu │ │ └── softfloat.h │ ├── glib-compat.h │ ├── hw │ │ ├── acpi │ │ │ ├── acpi-defs.h │ │ │ ├── acpi.h │ │ │ ├── acpi_dev_interface.h │ │ │ ├── aml-build.h │ │ │ ├── bios-linker-loader.h │ │ │ ├── cpu.h │ │ │ ├── cpu_hotplug.h │ │ │ ├── ich9.h │ │ │ ├── ipmi.h │ │ │ ├── memory_hotplug.h │ │ │ ├── pc-hotplug.h │ │ │ ├── pcihp.h │ │ │ ├── piix4.h │ │ │ ├── tco.h │ │ │ └── tpm.h │ │ ├── adc │ │ │ └── stm32f2xx_adc.h │ │ ├── arm │ │ │ ├── allwinner-a10.h │ │ │ ├── arm.h │ │ │ ├── aspeed_soc.h │ │ │ ├── bcm2835_peripherals.h │ │ │ ├── bcm2836.h │ │ │ ├── digic.h │ │ │ ├── exynos4210.h │ │ │ ├── fdt.h │ │ │ ├── fsl-imx25.h │ │ │ ├── fsl-imx31.h │ │ │ ├── fsl-imx6.h │ │ │ ├── linux-boot-if.h │ │ │ ├── omap.h │ │ │ ├── primecell.h │ │ │ ├── pxa.h │ │ │ ├── raspi_platform.h │ │ │ ├── sharpsl.h │ │ │ ├── soc_dma.h │ │ │ ├── stm32f205_soc.h │ │ │ ├── sysbus-fdt.h │ │ │ ├── virt-acpi-build.h │ │ │ ├── virt.h │ │ │ └── xlnx-zynqmp.h │ │ ├── audio │ │ │ ├── audio.h │ │ │ └── pcspk.h │ │ ├── block │ │ │ ├── block.h │ │ │ ├── fdc.h │ │ │ └── flash.h │ │ ├── boards.h │ │ ├── bt.h │ │ ├── char │ │ │ ├── bcm2835_aux.h │ │ │ ├── cadence_uart.h │ │ │ ├── digic-uart.h │ │ │ ├── escc.h │ │ │ ├── imx_serial.h │ │ │ ├── lm32_juart.h │ │ │ ├── pl011.h │ │ │ ├── serial.h │ │ │ ├── stm32f2xx_usart.h │ │ │ └── xilinx_uartlite.h │ │ ├── compat.h │ │ ├── core │ │ │ └── generic-loader.h │ │ ├── cpu │ │ │ ├── a15mpcore.h │ │ │ ├── a9mpcore.h │ │ │ ├── arm11mpcore.h │ │ │ └── core.h │ │ ├── cris │ │ │ ├── etraxfs.h │ │ │ └── etraxfs_dma.h │ │ ├── devices.h │ │ ├── display │ │ │ ├── bcm2835_fb.h │ │ │ ├── dpcd.h │ │ │ └── xlnx_dp.h │ │ ├── dma │ │ │ ├── bcm2835_dma.h │ │ │ ├── xlnx-zynq-devcfg.h │ │ │ └── xlnx_dpdma.h │ │ ├── elf_ops.h │ │ ├── empty_slot.h │ │ ├── fw-path-provider.h │ │ ├── gpio │ │ │ └── imx_gpio.h │ │ ├── hotplug.h │ │ ├── hw.h │ │ ├── i2c │ │ │ ├── aspeed_i2c.h │ │ │ ├── i2c-ddc.h │ │ │ ├── i2c.h │ │ │ ├── imx_i2c.h │ │ │ ├── pm_smbus.h │ │ │ └── smbus.h │ │ ├── i386 │ │ │ ├── apic-msidef.h │ │ │ ├── apic.h │ │ │ ├── apic_internal.h │ │ │ ├── ich9.h │ │ │ ├── intel_iommu.h │ │ │ ├── ioapic.h │ │ │ ├── ioapic_internal.h │ │ │ ├── pc.h │ │ │ ├── topology.h │ │ │ └── x86-iommu.h │ │ ├── ide.h │ │ ├── ide │ │ │ ├── ahci.h │ │ │ ├── internal.h │ │ │ └── pci.h │ │ ├── input │ │ │ ├── adb-keys.h │ │ │ ├── adb.h │ │ │ ├── hid.h │ │ │ └── ps2.h │ │ ├── intc │ │ │ ├── allwinner-a10-pic.h │ │ │ ├── arm_gic.h │ │ │ ├── arm_gic_common.h │ │ │ ├── arm_gicv3.h │ │ │ ├── arm_gicv3_common.h │ │ │ ├── arm_gicv3_its_common.h │ │ │ ├── aspeed_vic.h │ │ │ ├── bcm2835_ic.h │ │ │ ├── bcm2836_control.h │ │ │ ├── imx_avic.h │ │ │ ├── intc.h │ │ │ ├── mips_gic.h │ │ │ └── realview_gic.h │ │ ├── ipack │ │ │ └── ipack.h │ │ ├── ipmi │ │ │ └── ipmi.h │ │ ├── irq.h │ │ ├── isa │ │ │ ├── apm.h │ │ │ ├── i8257.h │ │ │ ├── i8259_internal.h │ │ │ ├── isa.h │ │ │ ├── pc87312.h │ │ │ └── vt82c686.h │ │ ├── kvm │ │ │ └── clock.h │ │ ├── lm32 │ │ │ └── lm32_pic.h │ │ ├── loader.h │ │ ├── m68k │ │ │ └── mcf.h │ │ ├── mem │ │ │ ├── nvdimm.h │ │ │ └── pc-dimm.h │ │ ├── mips │ │ │ ├── bios.h │ │ │ ├── cps.h │ │ │ ├── cpudevs.h │ │ │ └── mips.h │ │ ├── misc │ │ │ ├── a9scu.h │ │ │ ├── arm11scu.h │ │ │ ├── arm_integrator_debug.h │ │ │ ├── aspeed_scu.h │ │ │ ├── aspeed_sdmc.h │ │ │ ├── auxbus.h │ │ │ ├── bcm2835_mbox.h │ │ │ ├── bcm2835_mbox_defs.h │ │ │ ├── bcm2835_property.h │ │ │ ├── imx25_ccm.h │ │ │ ├── imx31_ccm.h │ │ │ ├── imx6_ccm.h │ │ │ ├── imx6_src.h │ │ │ ├── imx_ccm.h │ │ │ ├── ivshmem.h │ │ │ ├── mips_cmgcr.h │ │ │ ├── mips_cpc.h │ │ │ ├── mips_itu.h │ │ │ ├── stm32f2xx_syscfg.h │ │ │ ├── tmp105_regs.h │ │ │ └── zynq-xadc.h │ │ ├── net │ │ │ ├── allwinner_emac.h │ │ │ ├── cadence_gem.h │ │ │ ├── imx_fec.h │ │ │ └── mii.h │ │ ├── nmi.h │ │ ├── nvram │ │ │ ├── chrp_nvram.h │ │ │ ├── eeprom93xx.h │ │ │ ├── fw_cfg.h │ │ │ ├── fw_cfg_keys.h │ │ │ └── sun_nvram.h │ │ ├── or-irq.h │ │ ├── pci-host │ │ │ ├── apb.h │ │ │ ├── gpex.h │ │ │ ├── pam.h │ │ │ ├── ppce500.h │ │ │ ├── q35.h │ │ │ └── spapr.h │ │ ├── pci │ │ │ ├── msi.h │ │ │ ├── msix.h │ │ │ ├── pci-assign.h │ │ │ ├── pci.h │ │ │ ├── pci_bridge.h │ │ │ ├── pci_bus.h │ │ │ ├── pci_host.h │ │ │ ├── pci_ids.h │ │ │ ├── pci_regs.h │ │ │ ├── pcie.h │ │ │ ├── pcie_aer.h │ │ │ ├── pcie_host.h │ │ │ ├── pcie_port.h │ │ │ ├── pcie_regs.h │ │ │ ├── shpc.h │ │ │ └── slotid_cap.h │ │ ├── pcmcia.h │ │ ├── platform-bus.h │ │ ├── ppc │ │ │ ├── fdt.h │ │ │ ├── mac_dbdma.h │ │ │ ├── openpic.h │ │ │ ├── pnv.h │ │ │ ├── pnv_core.h │ │ │ ├── pnv_lpc.h │ │ │ ├── pnv_xscom.h │ │ │ ├── ppc.h │ │ │ ├── ppc4xx.h │ │ │ ├── ppc_e500.h │ │ │ ├── spapr.h │ │ │ ├── spapr_cpu_core.h │ │ │ ├── spapr_drc.h │ │ │ ├── spapr_ovec.h │ │ │ ├── spapr_rtas.h │ │ │ ├── spapr_vio.h │ │ │ └── xics.h │ │ ├── ptimer.h │ │ ├── qdev-core.h │ │ ├── qdev-dma.h │ │ ├── qdev-properties.h │ │ ├── qdev.h │ │ ├── register.h │ │ ├── s390x │ │ │ ├── adapter.h │ │ │ ├── css-bridge.h │ │ │ ├── css.h │ │ │ ├── ebcdic.h │ │ │ ├── event-facility.h │ │ │ ├── ioinst.h │ │ │ ├── s390-virtio-ccw.h │ │ │ ├── s390_flic.h │ │ │ ├── sclp.h │ │ │ └── storage-keys.h │ │ ├── scsi │ │ │ ├── esp.h │ │ │ └── scsi.h │ │ ├── sd │ │ │ ├── sd.h │ │ │ └── sdhci.h │ │ ├── sh4 │ │ │ ├── sh.h │ │ │ └── sh_intc.h │ │ ├── smbios │ │ │ ├── ipmi.h │ │ │ └── smbios.h │ │ ├── sparc │ │ │ ├── grlib.h │ │ │ ├── sparc32_dma.h │ │ │ └── sun4m.h │ │ ├── ssi │ │ │ ├── aspeed_smc.h │ │ │ ├── imx_spi.h │ │ │ ├── ssi.h │ │ │ ├── stm32f2xx_spi.h │ │ │ └── xilinx_spips.h │ │ ├── stream.h │ │ ├── sysbus.h │ │ ├── timer │ │ │ ├── a9gtimer.h │ │ │ ├── allwinner-a10-pit.h │ │ │ ├── arm_mptimer.h │ │ │ ├── aspeed_timer.h │ │ │ ├── digic-timer.h │ │ │ ├── hpet.h │ │ │ ├── i8254.h │ │ │ ├── i8254_internal.h │ │ │ ├── imx_epit.h │ │ │ ├── imx_gpt.h │ │ │ ├── m48t59.h │ │ │ ├── mc146818rtc.h │ │ │ ├── mc146818rtc_regs.h │ │ │ ├── mips_gictimer.h │ │ │ └── stm32f2xx_timer.h │ │ ├── tricore │ │ │ └── tricore.h │ │ ├── unicore32 │ │ │ └── puv3.h │ │ ├── usb.h │ │ ├── usb │ │ │ ├── ehci-regs.h │ │ │ └── uhci-regs.h │ │ ├── vfio │ │ │ ├── vfio-amd-xgbe.h │ │ │ ├── vfio-calxeda-xgmac.h │ │ │ ├── vfio-common.h │ │ │ ├── vfio-platform.h │ │ │ └── vfio.h │ │ ├── virtio │ │ │ ├── vhost-backend.h │ │ │ ├── vhost-scsi.h │ │ │ ├── vhost-vsock.h │ │ │ ├── vhost.h │ │ │ ├── virtio-access.h │ │ │ ├── virtio-balloon.h │ │ │ ├── virtio-blk.h │ │ │ ├── virtio-bus.h │ │ │ ├── virtio-crypto.h │ │ │ ├── virtio-gpu.h │ │ │ ├── virtio-input.h │ │ │ ├── virtio-net.h │ │ │ ├── virtio-rng.h │ │ │ ├── virtio-scsi.h │ │ │ ├── virtio-serial.h │ │ │ └── virtio.h │ │ ├── watchdog │ │ │ └── wdt_diag288.h │ │ └── xen │ │ │ ├── xen.h │ │ │ ├── xen_backend.h │ │ │ ├── xen_common.h │ │ │ └── xen_pvdev.h │ ├── io │ │ ├── channel-buffer.h │ │ ├── channel-command.h │ │ ├── channel-file.h │ │ ├── channel-socket.h │ │ ├── channel-tls.h │ │ ├── channel-util.h │ │ ├── channel-watch.h │ │ ├── channel-websock.h │ │ ├── channel.h │ │ └── task.h │ ├── libdecnumber │ │ ├── dconfig.h │ │ ├── decContext.h │ │ ├── decDPD.h │ │ ├── decNumber.h │ │ ├── decNumberLocal.h │ │ └── dpd │ │ │ ├── decimal128.h │ │ │ ├── decimal128Local.h │ │ │ ├── decimal32.h │ │ │ └── decimal64.h │ ├── migration │ │ ├── block.h │ │ ├── colo.h │ │ ├── cpu.h │ │ ├── failover.h │ │ ├── migration.h │ │ ├── page_cache.h │ │ ├── postcopy-ram.h │ │ ├── qemu-file.h │ │ ├── qjson.h │ │ └── vmstate.h │ ├── monitor │ │ ├── hmp-target.h │ │ ├── monitor.h │ │ └── qdev.h │ ├── net │ │ ├── checksum.h │ │ ├── eth.h │ │ ├── filter.h │ │ ├── net.h │ │ ├── queue.h │ │ ├── slirp.h │ │ ├── tap.h │ │ ├── vhost-user.h │ │ └── vhost_net.h │ ├── qapi │ │ ├── clone-visitor.h │ │ ├── dealloc-visitor.h │ │ ├── error.h │ │ ├── opts-visitor.h │ │ ├── qmp-event.h │ │ ├── qmp │ │ │ ├── dispatch.h │ │ │ ├── json-lexer.h │ │ │ ├── json-parser.h │ │ │ ├── json-streamer.h │ │ │ ├── qbool.h │ │ │ ├── qdict.h │ │ │ ├── qerror.h │ │ │ ├── qfloat.h │ │ │ ├── qint.h │ │ │ ├── qjson.h │ │ │ ├── qlist.h │ │ │ ├── qobject.h │ │ │ ├── qstring.h │ │ │ └── types.h │ │ ├── qobject-input-visitor.h │ │ ├── qobject-output-visitor.h │ │ ├── string-input-visitor.h │ │ ├── string-output-visitor.h │ │ ├── util.h │ │ ├── visitor-impl.h │ │ └── visitor.h │ ├── qemu-common.h │ ├── qemu-io.h │ ├── qemu │ │ ├── acl.h │ │ ├── atomic.h │ │ ├── base64.h │ │ ├── bcd.h │ │ ├── bitmap.h │ │ ├── bitops.h │ │ ├── bswap.h │ │ ├── buffer.h │ │ ├── compatfd.h │ │ ├── compiler.h │ │ ├── config-file.h │ │ ├── coroutine.h │ │ ├── coroutine_int.h │ │ ├── crc32c.h │ │ ├── cutils.h │ │ ├── envlist.h │ │ ├── error-report.h │ │ ├── event_notifier.h │ │ ├── fifo32.h │ │ ├── fifo8.h │ │ ├── fprintf-fn.h │ │ ├── hbitmap.h │ │ ├── help_option.h │ │ ├── host-utils.h │ │ ├── id.h │ │ ├── int128.h │ │ ├── iov.h │ │ ├── jhash.h │ │ ├── log.h │ │ ├── main-loop.h │ │ ├── memfd.h │ │ ├── mmap-alloc.h │ │ ├── module.h │ │ ├── notify.h │ │ ├── option.h │ │ ├── option_int.h │ │ ├── osdep.h │ │ ├── path.h │ │ ├── processor.h │ │ ├── qdist.h │ │ ├── qht.h │ │ ├── queue.h │ │ ├── range.h │ │ ├── ratelimit.h │ │ ├── rcu.h │ │ ├── rcu_queue.h │ │ ├── readline.h │ │ ├── seqlock.h │ │ ├── sockets.h │ │ ├── thread-posix.h │ │ ├── thread-win32.h │ │ ├── thread.h │ │ ├── throttle.h │ │ ├── timed-average.h │ │ ├── timer.h │ │ ├── typedefs.h │ │ ├── unicode.h │ │ ├── uri.h │ │ ├── uuid.h │ │ └── xattr.h │ ├── qom │ │ ├── cpu.h │ │ ├── object.h │ │ ├── object_interfaces.h │ │ └── qom-qobject.h │ ├── standard-headers │ │ ├── asm-s390 │ │ │ ├── kvm_virtio.h │ │ │ └── virtio-ccw.h │ │ ├── asm-x86 │ │ │ └── hyperv.h │ │ └── linux │ │ │ ├── if_ether.h │ │ │ ├── input-event-codes.h │ │ │ ├── input.h │ │ │ ├── pci_regs.h │ │ │ ├── types.h │ │ │ ├── virtio_9p.h │ │ │ ├── virtio_balloon.h │ │ │ ├── virtio_blk.h │ │ │ ├── virtio_config.h │ │ │ ├── virtio_console.h │ │ │ ├── virtio_crypto.h │ │ │ ├── virtio_gpu.h │ │ │ ├── virtio_ids.h │ │ │ ├── virtio_input.h │ │ │ ├── virtio_net.h │ │ │ ├── virtio_pci.h │ │ │ ├── virtio_ring.h │ │ │ ├── virtio_rng.h │ │ │ ├── virtio_scsi.h │ │ │ ├── virtio_types.h │ │ │ └── virtio_vsock.h │ ├── sysemu │ │ ├── accel.h │ │ ├── arch_init.h │ │ ├── balloon.h │ │ ├── block-backend.h │ │ ├── blockdev.h │ │ ├── bt.h │ │ ├── char.h │ │ ├── cpus.h │ │ ├── cryptodev.h │ │ ├── device_tree.h │ │ ├── dma.h │ │ ├── dump-arch.h │ │ ├── dump.h │ │ ├── hostmem.h │ │ ├── iothread.h │ │ ├── kvm.h │ │ ├── kvm_int.h │ │ ├── memory_mapping.h │ │ ├── numa.h │ │ ├── os-posix.h │ │ ├── os-win32.h │ │ ├── qtest.h │ │ ├── replay.h │ │ ├── rng-random.h │ │ ├── rng.h │ │ ├── seccomp.h │ │ ├── sysemu.h │ │ ├── tpm.h │ │ ├── tpm_backend.h │ │ ├── tpm_backend_int.h │ │ ├── watchdog.h │ │ └── xen-mapcache.h │ ├── trace-tcg.h │ ├── trace.h │ └── ui │ │ ├── console.h │ │ ├── egl-context.h │ │ ├── egl-helpers.h │ │ ├── gtk.h │ │ ├── input.h │ │ ├── pixel_ops.h │ │ ├── qemu-pixman.h │ │ ├── qemu-spice.h │ │ ├── sdl2.h │ │ ├── shader.h │ │ └── spice-display.h ├── io │ ├── Makefile.objs │ ├── channel-buffer.c │ ├── channel-command.c │ ├── channel-file.c │ ├── channel-socket.c │ ├── channel-tls.c │ ├── channel-util.c │ ├── channel-watch.c │ ├── channel-websock.c │ ├── channel.c │ ├── task.c │ └── trace-events ├── iohandler.c ├── ioport.c ├── iothread.c ├── kvm-all.c ├── kvm-stub.c ├── libdecnumber │ ├── decContext.c │ ├── decNumber.c │ └── dpd │ │ ├── decimal128.c │ │ ├── decimal32.c │ │ └── decimal64.c ├── linux-headers │ ├── COPYING │ ├── README │ ├── asm-arm │ │ ├── kvm.h │ │ ├── kvm_para.h │ │ └── unistd.h │ ├── asm-arm64 │ │ ├── kvm.h │ │ ├── kvm_para.h │ │ └── unistd.h │ ├── asm-generic │ │ └── kvm_para.h │ ├── asm-mips │ │ ├── kvm.h │ │ ├── kvm_para.h │ │ └── unistd.h │ ├── asm-powerpc │ │ ├── epapr_hcalls.h │ │ ├── kvm.h │ │ ├── kvm_para.h │ │ └── unistd.h │ ├── asm-s390 │ │ ├── kvm.h │ │ ├── kvm_para.h │ │ └── unistd.h │ ├── asm-x86 │ │ ├── hyperv.h │ │ ├── kvm.h │ │ ├── kvm_para.h │ │ ├── unistd.h │ │ ├── unistd_32.h │ │ ├── unistd_64.h │ │ └── unistd_x32.h │ └── linux │ │ ├── kvm.h │ │ ├── kvm_para.h │ │ ├── psci.h │ │ ├── userfaultfd.h │ │ ├── vfio.h │ │ ├── vhost.h │ │ ├── virtio_config.h │ │ └── virtio_ring.h ├── linux-user │ ├── Makefile.objs │ ├── aarch64 │ │ ├── syscall_nr.h │ │ ├── target_cpu.h │ │ ├── target_signal.h │ │ ├── target_structs.h │ │ ├── target_syscall.h │ │ └── termbits.h │ ├── alpha │ │ ├── syscall_nr.h │ │ ├── target_cpu.h │ │ ├── target_signal.h │ │ ├── target_structs.h │ │ ├── target_syscall.h │ │ └── termbits.h │ ├── arm │ │ ├── nwfpe │ │ │ ├── Makefile.objs │ │ │ ├── double_cpdo.c │ │ │ ├── extended_cpdo.c │ │ │ ├── fpa11.c │ │ │ ├── fpa11.h │ │ │ ├── fpa11.inl │ │ │ ├── fpa11_cpdo.c │ │ │ ├── fpa11_cpdt.c │ │ │ ├── fpa11_cprt.c │ │ │ ├── fpopcode.c │ │ │ ├── fpopcode.h │ │ │ ├── fpsr.h │ │ │ └── single_cpdo.c │ │ ├── syscall_nr.h │ │ ├── target_cpu.h │ │ ├── target_signal.h │ │ ├── target_structs.h │ │ ├── target_syscall.h │ │ └── termbits.h │ ├── cris │ │ ├── syscall_nr.h │ │ ├── target_cpu.h │ │ ├── target_signal.h │ │ ├── target_structs.h │ │ ├── target_syscall.h │ │ └── termbits.h │ ├── elfload.c │ ├── errno_defs.h │ ├── flat.h │ ├── flatload.c │ ├── host │ │ ├── aarch64 │ │ │ ├── hostdep.h │ │ │ └── safe-syscall.inc.S │ │ ├── arm │ │ │ ├── hostdep.h │ │ │ └── safe-syscall.inc.S │ │ ├── i386 │ │ │ ├── hostdep.h │ │ │ └── safe-syscall.inc.S │ │ ├── ia64 │ │ │ └── hostdep.h │ │ ├── mips │ │ │ └── hostdep.h │ │ ├── ppc │ │ │ └── hostdep.h │ │ ├── ppc64 │ │ │ ├── hostdep.h │ │ │ └── safe-syscall.inc.S │ │ ├── s390 │ │ │ └── hostdep.h │ │ ├── s390x │ │ │ ├── hostdep.h │ │ │ └── safe-syscall.inc.S │ │ ├── sparc │ │ │ └── hostdep.h │ │ ├── sparc64 │ │ │ └── hostdep.h │ │ ├── x32 │ │ │ └── hostdep.h │ │ └── x86_64 │ │ │ ├── hostdep.h │ │ │ └── safe-syscall.inc.S │ ├── i386 │ │ ├── syscall_nr.h │ │ ├── target_cpu.h │ │ ├── target_signal.h │ │ ├── target_structs.h │ │ ├── target_syscall.h │ │ └── termbits.h │ ├── ioctls.h │ ├── linux_loop.h │ ├── linuxload.c │ ├── m68k-sim.c │ ├── m68k │ │ ├── syscall_nr.h │ │ ├── target_cpu.h │ │ ├── target_signal.h │ │ ├── target_structs.h │ │ ├── target_syscall.h │ │ └── termbits.h │ ├── main.c │ ├── microblaze │ │ ├── syscall_nr.h │ │ ├── target_cpu.h │ │ ├── target_signal.h │ │ ├── target_structs.h │ │ ├── target_syscall.h │ │ └── termbits.h │ ├── mips │ │ ├── syscall_nr.h │ │ ├── target_cpu.h │ │ ├── target_signal.h │ │ ├── target_structs.h │ │ ├── target_syscall.h │ │ └── termbits.h │ ├── mips64 │ │ ├── syscall_nr.h │ │ ├── target_cpu.h │ │ ├── target_signal.h │ │ ├── target_structs.h │ │ ├── target_syscall.h │ │ └── termbits.h │ ├── mmap.c │ ├── openrisc │ │ ├── syscall_nr.h │ │ ├── target_cpu.h │ │ ├── target_signal.h │ │ ├── target_structs.h │ │ ├── target_syscall.h │ │ └── termbits.h │ ├── ppc │ │ ├── syscall_nr.h │ │ ├── target_cpu.h │ │ ├── target_signal.h │ │ ├── target_structs.h │ │ ├── target_syscall.h │ │ └── termbits.h │ ├── qemu.h │ ├── s390x │ │ ├── syscall_nr.h │ │ ├── target_cpu.h │ │ ├── target_signal.h │ │ ├── target_structs.h │ │ ├── target_syscall.h │ │ └── termbits.h │ ├── safe-syscall.S │ ├── sh4 │ │ ├── syscall_nr.h │ │ ├── target_cpu.h │ │ ├── target_signal.h │ │ ├── target_structs.h │ │ ├── target_syscall.h │ │ └── termbits.h │ ├── signal.c │ ├── socket.h │ ├── sparc │ │ ├── syscall_nr.h │ │ ├── target_cpu.h │ │ ├── target_signal.h │ │ ├── target_structs.h │ │ ├── target_syscall.h │ │ └── termbits.h │ ├── sparc64 │ │ ├── syscall_nr.h │ │ ├── target_cpu.h │ │ ├── target_signal.h │ │ ├── target_structs.h │ │ ├── target_syscall.h │ │ └── termbits.h │ ├── strace.c │ ├── strace.list │ ├── syscall.c │ ├── syscall_defs.h │ ├── syscall_types.h │ ├── target_flat.h │ ├── tilegx │ │ ├── syscall_nr.h │ │ ├── target_cpu.h │ │ ├── target_signal.h │ │ ├── target_structs.h │ │ ├── target_syscall.h │ │ └── termbits.h │ ├── trace-events │ ├── uaccess.c │ ├── uname.c │ ├── uname.h │ ├── unicore32 │ │ ├── syscall_nr.h │ │ ├── target_cpu.h │ │ ├── target_signal.h │ │ ├── target_structs.h │ │ ├── target_syscall.h │ │ └── termbits.h │ ├── vm86.c │ └── x86_64 │ │ ├── syscall_nr.h │ │ ├── target_cpu.h │ │ ├── target_signal.h │ │ ├── target_structs.h │ │ ├── target_syscall.h │ │ └── termbits.h ├── main-loop.c ├── memory.c ├── memory_mapping.c ├── migration │ ├── Makefile.objs │ ├── block.c │ ├── colo-comm.c │ ├── colo-failover.c │ ├── colo.c │ ├── exec.c │ ├── fd.c │ ├── migration.c │ ├── postcopy-ram.c │ ├── qemu-file-channel.c │ ├── qemu-file.c │ ├── qjson.c │ ├── ram.c │ ├── rdma.c │ ├── savevm.c │ ├── socket.c │ ├── tls.c │ ├── trace-events │ ├── vmstate.c │ └── xbzrle.c ├── module-common.c ├── monitor.c ├── nbd │ ├── Makefile.objs │ ├── client.c │ ├── common.c │ ├── nbd-internal.h │ └── server.c ├── net │ ├── Makefile.objs │ ├── checksum.c │ ├── clients.h │ ├── colo-compare.c │ ├── colo.c │ ├── colo.h │ ├── dump.c │ ├── eth.c │ ├── filter-buffer.c │ ├── filter-mirror.c │ ├── filter-rewriter.c │ ├── filter.c │ ├── hub.c │ ├── hub.h │ ├── l2tpv3.c │ ├── net.c │ ├── netmap.c │ ├── queue.c │ ├── slirp.c │ ├── socket.c │ ├── tap-aix.c │ ├── tap-bsd.c │ ├── tap-haiku.c │ ├── tap-linux.c │ ├── tap-linux.h │ ├── tap-solaris.c │ ├── tap-win32.c │ ├── tap.c │ ├── tap_int.h │ ├── trace-events │ ├── util.c │ ├── util.h │ ├── vde.c │ └── vhost-user.c ├── numa.c ├── os-posix.c ├── os-win32.c ├── page_cache.c ├── pc-bios │ ├── Makefile │ ├── QEMU,cgthree.bin │ ├── QEMU,tcx.bin │ ├── README │ ├── acpi-dsdt.aml │ ├── bamboo.dtb │ ├── bamboo.dts │ ├── bios-256k.bin │ ├── bios.bin │ ├── efi-e1000.rom │ ├── efi-e1000e.rom │ ├── efi-eepro100.rom │ ├── efi-ne2k_pci.rom │ ├── efi-pcnet.rom │ ├── efi-rtl8139.rom │ ├── efi-virtio.rom │ ├── efi-vmxnet3.rom │ ├── keymaps │ │ ├── ar │ │ ├── bepo │ │ ├── common │ │ ├── cz │ │ ├── da │ │ ├── de │ │ ├── de-ch │ │ ├── en-gb │ │ ├── en-us │ │ ├── es │ │ ├── et │ │ ├── fi │ │ ├── fo │ │ ├── fr │ │ ├── fr-be │ │ ├── fr-ca │ │ ├── fr-ch │ │ ├── hr │ │ ├── hu │ │ ├── is │ │ ├── it │ │ ├── ja │ │ ├── lt │ │ ├── lv │ │ ├── mk │ │ ├── modifiers │ │ ├── nl │ │ ├── nl-be │ │ ├── no │ │ ├── pl │ │ ├── pt │ │ ├── pt-br │ │ ├── ru │ │ ├── sl │ │ ├── sv │ │ ├── th │ │ └── tr │ ├── kvmvapic.bin │ ├── linuxboot.bin │ ├── linuxboot_dma.bin │ ├── multiboot.bin │ ├── openbios-ppc │ ├── openbios-sparc32 │ ├── openbios-sparc64 │ ├── optionrom │ │ ├── Makefile │ │ ├── code16gcc.h │ │ ├── flat.lds │ │ ├── kvmvapic.S │ │ ├── linuxboot.S │ │ ├── linuxboot_dma.c │ │ ├── multiboot.S │ │ └── optionrom.h │ ├── palcode-clipper │ ├── petalogix-ml605.dtb │ ├── petalogix-s3adsp1800.dtb │ ├── ppc_rom.bin │ ├── pxe-e1000.rom │ ├── pxe-eepro100.rom │ ├── pxe-ne2k_pci.rom │ ├── pxe-pcnet.rom │ ├── pxe-rtl8139.rom │ ├── pxe-virtio.rom │ ├── qemu-icon.bmp │ ├── qemu-nsis.bmp │ ├── qemu-nsis.ico │ ├── qemu.rsrc │ ├── qemu_logo.svg │ ├── qemu_logo_no_text.svg │ ├── s390-ccw.img │ ├── s390-ccw │ │ ├── Makefile │ │ ├── bootmap.c │ │ ├── bootmap.h │ │ ├── cio.h │ │ ├── iplb.h │ │ ├── main.c │ │ ├── s390-ccw.h │ │ ├── sclp-ascii.c │ │ ├── sclp.h │ │ ├── scsi.h │ │ ├── start.S │ │ ├── virtio-scsi.c │ │ ├── virtio-scsi.h │ │ ├── virtio.c │ │ └── virtio.h │ ├── sgabios.bin │ ├── skiboot.lid │ ├── slof.bin │ ├── spapr-rtas.bin │ ├── spapr-rtas │ │ ├── Makefile │ │ └── spapr-rtas.S │ ├── u-boot.e500 │ ├── vgabios-cirrus.bin │ ├── vgabios-qxl.bin │ ├── vgabios-stdvga.bin │ ├── vgabios-virtio.bin │ ├── vgabios-vmware.bin │ └── vgabios.bin ├── po │ ├── Makefile │ ├── bg.po │ ├── de_DE.po │ ├── fr_FR.po │ ├── hu.po │ ├── it.po │ ├── messages.po │ ├── tr.po │ └── zh_CN.po ├── qapi-schema.json ├── qapi │ ├── Makefile.objs │ ├── block-core.json │ ├── block.json │ ├── common.json │ ├── crypto.json │ ├── event.json │ ├── introspect.json │ ├── opts-visitor.c │ ├── qapi-clone-visitor.c │ ├── qapi-dealloc-visitor.c │ ├── qapi-util.c │ ├── qapi-visit-core.c │ ├── qmp-dispatch.c │ ├── qmp-event.c │ ├── qmp-registry.c │ ├── qobject-input-visitor.c │ ├── qobject-output-visitor.c │ ├── rocker.json │ ├── string-input-visitor.c │ ├── string-output-visitor.c │ ├── trace-events │ └── trace.json ├── qdev-monitor.c ├── qdict-test-data.txt ├── qemu-bridge-helper.c ├── qemu-char.c ├── qemu-doc.texi ├── qemu-ga.texi ├── qemu-img-cmds.hx ├── qemu-img.c ├── qemu-img.texi ├── qemu-io-cmds.c ├── qemu-io.c ├── qemu-nbd.c ├── qemu-nbd.texi ├── qemu-option-trace.texi ├── qemu-options-wrapper.h ├── qemu-options.h ├── qemu-options.hx ├── qemu-seccomp.c ├── qemu-tech.texi ├── qemu-timer.c ├── qemu.nsi ├── qemu.sasl ├── qga │ ├── Makefile.objs │ ├── channel-posix.c │ ├── channel-win32.c │ ├── channel.h │ ├── commands-posix.c │ ├── commands-win32.c │ ├── commands.c │ ├── guest-agent-command-state.c │ ├── guest-agent-core.h │ ├── installer │ │ └── qemu-ga.wxs │ ├── main.c │ ├── qapi-schema.json │ ├── service-win32.c │ ├── service-win32.h │ ├── vss-win32.c │ ├── vss-win32.h │ └── vss-win32 │ │ ├── Makefile.objs │ │ ├── install.cpp │ │ ├── provider.cpp │ │ ├── qga-vss.def │ │ ├── qga-vss.idl │ │ ├── qga-vss.tlb │ │ ├── requester.cpp │ │ ├── requester.h │ │ └── vss-common.h ├── qmp.c ├── qobject │ ├── Makefile.objs │ ├── json-lexer.c │ ├── json-parser.c │ ├── json-streamer.c │ ├── qbool.c │ ├── qdict.c │ ├── qfloat.c │ ├── qint.c │ ├── qjson.c │ ├── qlist.c │ ├── qnull.c │ ├── qobject.c │ └── qstring.c ├── qom │ ├── Makefile.objs │ ├── container.c │ ├── cpu.c │ ├── object.c │ ├── object_interfaces.c │ ├── qom-qobject.c │ └── trace-events ├── qtest.c ├── replay │ ├── Makefile.objs │ ├── replay-char.c │ ├── replay-events.c │ ├── replay-input.c │ ├── replay-internal.c │ ├── replay-internal.h │ ├── replay-snapshot.c │ ├── replay-time.c │ └── replay.c ├── replication.c ├── replication.h ├── roms │ ├── Makefile │ ├── config.seabios-128k │ ├── config.seabios-256k │ ├── config.vga-cirrus │ ├── config.vga-isavga │ ├── config.vga-qxl │ ├── config.vga-stdvga │ ├── config.vga-virtio │ ├── config.vga-vmware │ └── configure-seabios.sh ├── rules.mak ├── scripts │ ├── analyse-9p-simpletrace.py │ ├── analyze-inclusions │ ├── analyze-migration.py │ ├── check-qerror.sh │ ├── checkpatch.pl │ ├── clean-header-guards.pl │ ├── clean-includes │ ├── cleanup-trace-events.pl │ ├── cocci-macro-file.h │ ├── coccinelle │ │ ├── err-bad-newline.cocci │ │ ├── error_propagate_null.cocci │ │ ├── overflow_muldiv64.cocci │ │ ├── remove_local_err.cocci │ │ ├── remove_muldiv64.cocci │ │ ├── return_directly.cocci │ │ ├── round.cocci │ │ ├── simplify_muldiv64.cocci │ │ ├── swap_muldiv64.cocci │ │ └── typecast.cocci │ ├── coverity-model.c │ ├── create_config │ ├── disas-objdump.pl │ ├── dump-guest-memory.py │ ├── extract-vsssdk-headers │ ├── feature_to_c.sh │ ├── get_maintainer.pl │ ├── gtester-cat │ ├── hxtool │ ├── kvm │ │ ├── kvm_flightrecorder │ │ └── vmxcap │ ├── make-release │ ├── make_device_config.sh │ ├── modules │ │ └── module_block.py │ ├── ordereddict.py │ ├── qapi-commands.py │ ├── qapi-event.py │ ├── qapi-introspect.py │ ├── qapi-types.py │ ├── qapi-visit.py │ ├── qapi.py │ ├── qemu-binfmt-conf.sh │ ├── qemu-gdb.py │ ├── qemu-guest-agent │ │ ├── fsfreeze-hook │ │ └── fsfreeze-hook.d │ │ │ └── mysql-flush.sh.sample │ ├── qemu.py │ ├── qemugdb │ │ ├── __init__.py │ │ ├── aio.py │ │ ├── coroutine.py │ │ └── mtree.py │ ├── qmp │ │ ├── __init__.py │ │ ├── qemu-ga-client │ │ ├── qmp │ │ ├── qmp-shell │ │ ├── qmp.py │ │ ├── qom-fuse │ │ ├── qom-get │ │ ├── qom-list │ │ ├── qom-set │ │ └── qom-tree │ ├── qtest.py │ ├── refresh-pxe-roms.sh │ ├── shaderinclude.pl │ ├── show-fixed-bugs.sh │ ├── signrom.py │ ├── simpletrace.py │ ├── switch-timer-api │ ├── texi2pod.pl │ ├── tracetool.py │ ├── tracetool │ │ ├── __init__.py │ │ ├── backend │ │ │ ├── __init__.py │ │ │ ├── dtrace.py │ │ │ ├── ftrace.py │ │ │ ├── log.py │ │ │ ├── simple.py │ │ │ ├── syslog.py │ │ │ └── ust.py │ │ ├── format │ │ │ ├── __init__.py │ │ │ ├── c.py │ │ │ ├── d.py │ │ │ ├── h.py │ │ │ ├── simpletrace_stap.py │ │ │ ├── stap.py │ │ │ ├── tcg_h.py │ │ │ ├── tcg_helper_c.py │ │ │ ├── tcg_helper_h.py │ │ │ ├── tcg_helper_wrapper_h.py │ │ │ ├── ust_events_c.py │ │ │ └── ust_events_h.py │ │ ├── transform.py │ │ └── vcpu.py │ ├── update-linux-headers.sh │ └── vmstate-static-checker.py ├── slirp │ ├── COPYRIGHT │ ├── Makefile.objs │ ├── arp_table.c │ ├── bootp.c │ ├── bootp.h │ ├── cksum.c │ ├── debug.h │ ├── dhcpv6.c │ ├── dhcpv6.h │ ├── dnssearch.c │ ├── if.c │ ├── if.h │ ├── ip.h │ ├── ip6.h │ ├── ip6_icmp.c │ ├── ip6_icmp.h │ ├── ip6_input.c │ ├── ip6_output.c │ ├── ip_icmp.c │ ├── ip_icmp.h │ ├── ip_input.c │ ├── ip_output.c │ ├── libslirp.h │ ├── main.h │ ├── mbuf.c │ ├── mbuf.h │ ├── misc.c │ ├── misc.h │ ├── ndp_table.c │ ├── sbuf.c │ ├── sbuf.h │ ├── slirp.c │ ├── slirp.h │ ├── slirp_config.h │ ├── socket.c │ ├── socket.h │ ├── tcp.h │ ├── tcp_input.c │ ├── tcp_output.c │ ├── tcp_subr.c │ ├── tcp_timer.c │ ├── tcp_timer.h │ ├── tcp_var.h │ ├── tcpip.h │ ├── tftp.c │ ├── tftp.h │ ├── udp.c │ ├── udp.h │ └── udp6.c ├── softmmu_template.h ├── spice-qemu-char.c ├── stubs │ ├── Makefile.objs │ ├── arch-query-cpu-def.c │ ├── arch-query-cpu-model-baseline.c │ ├── arch-query-cpu-model-comparison.c │ ├── arch-query-cpu-model-expansion.c │ ├── bdrv-next-monitor-owned.c │ ├── blk-commit-all.c │ ├── blockdev-close-all-bdrv-states.c │ ├── clock-warp.c │ ├── cpu-get-clock.c │ ├── cpu-get-icount.c │ ├── cpus.c │ ├── dump.c │ ├── error-printf.c │ ├── fd-register.c │ ├── fdset-add-fd.c │ ├── fdset-find-fd.c │ ├── fdset-get-fd.c │ ├── fdset-remove-fd.c │ ├── gdbstub.c │ ├── get-fd.c │ ├── get-next-serial.c │ ├── get-vm-name.c │ ├── iohandler.c │ ├── iothread-lock.c │ ├── iothread.c │ ├── ipmi.c │ ├── is-daemonized.c │ ├── kvm.c │ ├── machine-init-done.c │ ├── migr-blocker.c │ ├── migration-colo.c │ ├── mon-is-qmp.c │ ├── monitor-init.c │ ├── notify-event.c │ ├── pc_madt_cpu_entry.c │ ├── qmp_pc_dimm_device_list.c │ ├── qtest.c │ ├── replay-user.c │ ├── replay.c │ ├── reset.c │ ├── runstate-check.c │ ├── set-fd-handler.c │ ├── slirp.c │ ├── smbios_type_38.c │ ├── sysbus.c │ ├── target-get-monitor-def.c │ ├── target-monitor-defs.c │ ├── trace-control.c │ ├── uuid.c │ ├── vhost.c │ ├── vm-stop.c │ └── vmstate.c ├── target-alpha │ ├── Makefile.objs │ ├── STATUS │ ├── cpu-qom.h │ ├── cpu.c │ ├── cpu.h │ ├── fpu_helper.c │ ├── gdbstub.c │ ├── helper.c │ ├── helper.h │ ├── int_helper.c │ ├── machine.c │ ├── mem_helper.c │ ├── sys_helper.c │ ├── translate.c │ └── vax_helper.c ├── target-arm │ ├── Makefile.objs │ ├── arch_dump.c │ ├── arm-powerctl.c │ ├── arm-powerctl.h │ ├── arm-semi.c │ ├── arm_ldst.h │ ├── cpu-qom.h │ ├── cpu.c │ ├── cpu.h │ ├── cpu64.c │ ├── crypto_helper.c │ ├── gdbstub.c │ ├── gdbstub64.c │ ├── helper-a64.c │ ├── helper-a64.h │ ├── helper.c │ ├── helper.h │ ├── internals.h │ ├── iwmmxt_helper.c │ ├── kvm-consts.h │ ├── kvm-stub.c │ ├── kvm.c │ ├── kvm32.c │ ├── kvm64.c │ ├── kvm_arm.h │ ├── machine.c │ ├── monitor.c │ ├── neon_helper.c │ ├── op_addsub.h │ ├── op_helper.c │ ├── psci.c │ ├── trace-events │ ├── translate-a64.c │ ├── translate.c │ └── translate.h ├── target-cris │ ├── Makefile.objs │ ├── cpu-qom.h │ ├── cpu.c │ ├── cpu.h │ ├── crisv10-decode.h │ ├── crisv32-decode.h │ ├── gdbstub.c │ ├── helper.c │ ├── helper.h │ ├── machine.c │ ├── mmu.c │ ├── mmu.h │ ├── op_helper.c │ ├── opcode-cris.h │ ├── translate.c │ └── translate_v10.c ├── target-i386 │ ├── Makefile.objs │ ├── TODO │ ├── arch_dump.c │ ├── arch_memory_mapping.c │ ├── bpt_helper.c │ ├── cc_helper.c │ ├── cc_helper_template.h │ ├── cpu-qom.h │ ├── cpu.c │ ├── cpu.h │ ├── excp_helper.c │ ├── fpu_helper.c │ ├── gdbstub.c │ ├── helper.c │ ├── helper.h │ ├── hyperv.c │ ├── hyperv.h │ ├── int_helper.c │ ├── kvm-stub.c │ ├── kvm.c │ ├── kvm_i386.h │ ├── machine.c │ ├── mem_helper.c │ ├── misc_helper.c │ ├── monitor.c │ ├── mpx_helper.c │ ├── ops_sse.h │ ├── ops_sse_header.h │ ├── seg_helper.c │ ├── shift_helper_template.h │ ├── smm_helper.c │ ├── svm.h │ ├── svm_helper.c │ ├── trace-events │ └── translate.c ├── target-lm32 │ ├── Makefile.objs │ ├── README │ ├── TODO │ ├── cpu-qom.h │ ├── cpu.c │ ├── cpu.h │ ├── gdbstub.c │ ├── helper.c │ ├── helper.h │ ├── lm32-semi.c │ ├── machine.c │ ├── op_helper.c │ └── translate.c ├── target-m68k │ ├── Makefile.objs │ ├── cpu-qom.h │ ├── cpu.c │ ├── cpu.h │ ├── gdbstub.c │ ├── helper.c │ ├── helper.h │ ├── m68k-semi.c │ ├── op_helper.c │ ├── qregs.def │ └── translate.c ├── target-microblaze │ ├── Makefile.objs │ ├── cpu-qom.h │ ├── cpu.c │ ├── cpu.h │ ├── gdbstub.c │ ├── helper.c │ ├── helper.h │ ├── microblaze-decode.h │ ├── mmu.c │ ├── mmu.h │ ├── op_helper.c │ └── translate.c ├── target-mips │ ├── Makefile.objs │ ├── TODO │ ├── cpu-qom.h │ ├── cpu.c │ ├── cpu.h │ ├── dsp_helper.c │ ├── gdbstub.c │ ├── helper.c │ ├── helper.h │ ├── kvm.c │ ├── kvm_mips.h │ ├── lmi_helper.c │ ├── machine.c │ ├── mips-defs.h │ ├── mips-semi.c │ ├── msa_helper.c │ ├── op_helper.c │ ├── translate.c │ └── translate_init.c ├── target-moxie │ ├── Makefile.objs │ ├── cpu.c │ ├── cpu.h │ ├── helper.c │ ├── helper.h │ ├── machine.c │ ├── machine.h │ ├── mmu.c │ ├── mmu.h │ └── translate.c ├── target-openrisc │ ├── Makefile.objs │ ├── cpu.c │ ├── cpu.h │ ├── exception.c │ ├── exception.h │ ├── exception_helper.c │ ├── fpu_helper.c │ ├── gdbstub.c │ ├── helper.h │ ├── int_helper.c │ ├── interrupt.c │ ├── interrupt_helper.c │ ├── machine.c │ ├── mmu.c │ ├── mmu_helper.c │ ├── sys_helper.c │ └── translate.c ├── target-ppc │ ├── Makefile.objs │ ├── STATUS │ ├── arch_dump.c │ ├── cpu-models.c │ ├── cpu-models.h │ ├── cpu-qom.h │ ├── cpu.h │ ├── dfp_helper.c │ ├── excp_helper.c │ ├── fpu_helper.c │ ├── gdbstub.c │ ├── helper.h │ ├── helper_regs.h │ ├── int_helper.c │ ├── internal.h │ ├── kvm-stub.c │ ├── kvm.c │ ├── kvm_ppc.h │ ├── machine.c │ ├── mem_helper.c │ ├── mfrom_table.c │ ├── mfrom_table_gen.c │ ├── misc_helper.c │ ├── mmu-hash32.c │ ├── mmu-hash32.h │ ├── mmu-hash64.c │ ├── mmu-hash64.h │ ├── mmu_helper.c │ ├── monitor.c │ ├── timebase_helper.c │ ├── trace-events │ ├── translate.c │ ├── translate │ │ ├── dfp-impl.inc.c │ │ ├── dfp-ops.inc.c │ │ ├── fp-impl.inc.c │ │ ├── fp-ops.inc.c │ │ ├── spe-impl.inc.c │ │ ├── spe-ops.inc.c │ │ ├── vmx-impl.inc.c │ │ ├── vmx-ops.inc.c │ │ ├── vsx-impl.inc.c │ │ └── vsx-ops.inc.c │ ├── translate_init.c │ └── user_only_helper.c ├── target-s390x │ ├── Makefile.objs │ ├── arch_dump.c │ ├── cc_helper.c │ ├── cpu-qom.h │ ├── cpu.c │ ├── cpu.h │ ├── cpu_features.c │ ├── cpu_features.h │ ├── cpu_features_def.h │ ├── cpu_models.c │ ├── cpu_models.h │ ├── fpu_helper.c │ ├── gdbstub.c │ ├── gen-features.c │ ├── helper.c │ ├── helper.h │ ├── insn-data.def │ ├── insn-format.def │ ├── int_helper.c │ ├── interrupt.c │ ├── ioinst.c │ ├── kvm.c │ ├── machine.c │ ├── mem_helper.c │ ├── misc_helper.c │ ├── mmu_helper.c │ ├── trace-events │ └── translate.c ├── target-sh4 │ ├── Makefile.objs │ ├── README.sh4 │ ├── cpu-qom.h │ ├── cpu.c │ ├── cpu.h │ ├── gdbstub.c │ ├── helper.c │ ├── helper.h │ ├── monitor.c │ ├── op_helper.c │ └── translate.c ├── target-sparc │ ├── Makefile.objs │ ├── TODO │ ├── asi.h │ ├── cc_helper.c │ ├── cpu-qom.h │ ├── cpu.c │ ├── cpu.h │ ├── fop_helper.c │ ├── gdbstub.c │ ├── helper.c │ ├── helper.h │ ├── int32_helper.c │ ├── int64_helper.c │ ├── ldst_helper.c │ ├── machine.c │ ├── mmu_helper.c │ ├── monitor.c │ ├── trace-events │ ├── translate.c │ ├── vis_helper.c │ └── win_helper.c ├── target-tilegx │ ├── Makefile.objs │ ├── cpu.c │ ├── cpu.h │ ├── helper.c │ ├── helper.h │ ├── opcode_tilegx.h │ ├── simd_helper.c │ ├── spr_def_64.h │ └── translate.c ├── target-tricore │ ├── Makefile.objs │ ├── cpu-qom.h │ ├── cpu.c │ ├── cpu.h │ ├── csfr.def │ ├── fpu_helper.c │ ├── helper.c │ ├── helper.h │ ├── op_helper.c │ ├── translate.c │ ├── tricore-defs.h │ └── tricore-opcodes.h ├── target-unicore32 │ ├── Makefile.objs │ ├── cpu-qom.h │ ├── cpu.c │ ├── cpu.h │ ├── helper.c │ ├── helper.h │ ├── op_helper.c │ ├── softmmu.c │ ├── translate.c │ └── ucf64_helper.c ├── target-xtensa │ ├── Makefile.objs │ ├── core-dc232b.c │ ├── core-dc232b │ │ ├── core-isa.h │ │ └── gdb-config.c │ ├── core-dc233c.c │ ├── core-dc233c │ │ ├── core-isa.h │ │ └── gdb-config.c │ ├── core-fsf.c │ ├── core-fsf │ │ └── core-isa.h │ ├── cpu-qom.h │ ├── cpu.c │ ├── cpu.h │ ├── gdbstub.c │ ├── helper.c │ ├── helper.h │ ├── import_core.sh │ ├── monitor.c │ ├── op_helper.c │ ├── overlay_tool.h │ ├── translate.c │ └── xtensa-semi.c ├── tcg-runtime.c ├── tcg │ ├── LICENSE │ ├── README │ ├── TODO │ ├── aarch64 │ │ ├── tcg-target.h │ │ └── tcg-target.inc.c │ ├── arm │ │ ├── tcg-target.h │ │ └── tcg-target.inc.c │ ├── i386 │ │ ├── tcg-target.h │ │ └── tcg-target.inc.c │ ├── ia64 │ │ ├── tcg-target.h │ │ └── tcg-target.inc.c │ ├── mips │ │ ├── tcg-target.h │ │ └── tcg-target.inc.c │ ├── optimize.c │ ├── ppc │ │ ├── tcg-target.h │ │ └── tcg-target.inc.c │ ├── s390 │ │ ├── tcg-target.h │ │ └── tcg-target.inc.c │ ├── sparc │ │ ├── tcg-target.h │ │ └── tcg-target.inc.c │ ├── tcg-be-ldst.h │ ├── tcg-be-null.h │ ├── tcg-common.c │ ├── tcg-op.c │ ├── tcg-op.h │ ├── tcg-opc.h │ ├── tcg-runtime.h │ ├── tcg.c │ ├── tcg.h │ └── tci │ │ ├── README │ │ ├── tcg-target.h │ │ └── tcg-target.inc.c ├── tci.c ├── tests │ ├── .gitignore │ ├── Makefile.include │ ├── ac97-test.c │ ├── acpi-test-data │ │ ├── pc │ │ │ ├── APIC │ │ │ ├── APIC.cphp │ │ │ ├── DSDT │ │ │ ├── DSDT.bridge │ │ │ ├── DSDT.cphp │ │ │ ├── DSDT.ipmikcs │ │ │ ├── FACP │ │ │ ├── FACS │ │ │ ├── HPET │ │ │ └── SRAT.cphp │ │ ├── q35 │ │ │ ├── APIC │ │ │ ├── APIC.cphp │ │ │ ├── DSDT │ │ │ ├── DSDT.bridge │ │ │ ├── DSDT.cphp │ │ │ ├── DSDT.ipmibt │ │ │ ├── FACP │ │ │ ├── FACS │ │ │ ├── HPET │ │ │ ├── MCFG │ │ │ └── SRAT.cphp │ │ └── rebuild-expected-aml.sh │ ├── ahci-test.c │ ├── atomic_add-bench.c │ ├── bios-tables-test.c │ ├── boot-order-test.c │ ├── boot-sector.c │ ├── boot-sector.h │ ├── boot-serial-test.c │ ├── check-block.sh │ ├── check-qdict.c │ ├── check-qfloat.c │ ├── check-qint.c │ ├── check-qjson.c │ ├── check-qlist.c │ ├── check-qnull.c │ ├── check-qom-interface.c │ ├── check-qom-proplist.c │ ├── check-qstring.c │ ├── crypto-tls-x509-helpers.c │ ├── crypto-tls-x509-helpers.h │ ├── data │ │ └── test-qga-config │ ├── device-introspect-test.c │ ├── display-vga-test.c │ ├── docker │ │ ├── Makefile.include │ │ ├── common.rc │ │ ├── docker.py │ │ ├── dockerfiles │ │ │ ├── centos6.docker │ │ │ ├── debian-bootstrap.docker │ │ │ ├── debian-bootstrap.pre │ │ │ ├── fedora.docker │ │ │ ├── min-glib.docker │ │ │ ├── travis.docker │ │ │ └── ubuntu.docker │ │ ├── run │ │ ├── test-build │ │ ├── test-clang │ │ ├── test-full │ │ ├── test-mingw │ │ ├── test-quick │ │ ├── travis │ │ └── travis.py │ ├── drive_del-test.c │ ├── ds1338-test.c │ ├── e1000-test.c │ ├── e1000e-test.c │ ├── eepro100-test.c │ ├── endianness-test.c │ ├── es1370-test.c │ ├── fdc-test.c │ ├── fw_cfg-test.c │ ├── guest-debug │ │ └── test-gdbstub.py │ ├── hd-geo-test.c │ ├── i440fx-test.c │ ├── i82801b11-test.c │ ├── ide-test.c │ ├── image-fuzzer │ │ ├── qcow2 │ │ │ ├── __init__.py │ │ │ ├── fuzz.py │ │ │ └── layout.py │ │ └── runner.py │ ├── intel-hda-test.c │ ├── io-channel-helpers.c │ ├── io-channel-helpers.h │ ├── ioh3420-test.c │ ├── ipmi-bt-test.c │ ├── ipmi-kcs-test.c │ ├── ipoctal232-test.c │ ├── ivshmem-test.c │ ├── libqos │ │ ├── ahci.c │ │ ├── ahci.h │ │ ├── fw_cfg.c │ │ ├── fw_cfg.h │ │ ├── i2c-imx.c │ │ ├── i2c-omap.c │ │ ├── i2c.c │ │ ├── i2c.h │ │ ├── libqos-pc.c │ │ ├── libqos-pc.h │ │ ├── libqos-spapr.c │ │ ├── libqos-spapr.h │ │ ├── libqos.c │ │ ├── libqos.h │ │ ├── malloc-generic.c │ │ ├── malloc-generic.h │ │ ├── malloc-pc.c │ │ ├── malloc-pc.h │ │ ├── malloc-spapr.c │ │ ├── malloc-spapr.h │ │ ├── malloc.c │ │ ├── malloc.h │ │ ├── pci-pc.c │ │ ├── pci-pc.h │ │ ├── pci-spapr.c │ │ ├── pci-spapr.h │ │ ├── pci.c │ │ ├── pci.h │ │ ├── rtas.c │ │ ├── rtas.h │ │ ├── usb.c │ │ ├── usb.h │ │ ├── virtio-mmio.c │ │ ├── virtio-mmio.h │ │ ├── virtio-pci.c │ │ ├── virtio-pci.h │ │ ├── virtio.c │ │ └── virtio.h │ ├── libqtest.c │ ├── libqtest.h │ ├── m25p80-test.c │ ├── m48t59-test.c │ ├── migration │ │ ├── .gitignore │ │ ├── guestperf-batch.py │ │ ├── guestperf-plot.py │ │ ├── guestperf.py │ │ ├── guestperf │ │ │ ├── __init__.py │ │ │ ├── comparison.py │ │ │ ├── engine.py │ │ │ ├── hardware.py │ │ │ ├── plot.py │ │ │ ├── progress.py │ │ │ ├── report.py │ │ │ ├── scenario.py │ │ │ ├── shell.py │ │ │ └── timings.py │ │ └── stress.c │ ├── multiboot │ │ ├── Makefile │ │ ├── libc.c │ │ ├── libc.h │ │ ├── link.ld │ │ ├── mmap.c │ │ ├── mmap.out │ │ ├── module.txt │ │ ├── modules.c │ │ ├── modules.out │ │ ├── multiboot.h │ │ ├── run_test.sh │ │ └── start.S │ ├── ne2000-test.c │ ├── nvme-test.c │ ├── pc-cpu-test.c │ ├── pcnet-test.c │ ├── pkix_asn1_tab.c │ ├── pnv-xscom-test.c │ ├── postcopy-test.c │ ├── prom-env-test.c │ ├── ptimer-test-stubs.c │ ├── ptimer-test.c │ ├── ptimer-test.h │ ├── pvpanic-test.c │ ├── pxe-test.c │ ├── q35-test.c │ ├── qapi-schema │ │ ├── alternate-any.err │ │ ├── alternate-any.exit │ │ ├── alternate-any.json │ │ ├── alternate-any.out │ │ ├── alternate-array.err │ │ ├── alternate-array.exit │ │ ├── alternate-array.json │ │ ├── alternate-array.out │ │ ├── alternate-base.err │ │ ├── alternate-base.exit │ │ ├── alternate-base.json │ │ ├── alternate-base.out │ │ ├── alternate-clash.err │ │ ├── alternate-clash.exit │ │ ├── alternate-clash.json │ │ ├── alternate-clash.out │ │ ├── alternate-conflict-dict.err │ │ ├── alternate-conflict-dict.exit │ │ ├── alternate-conflict-dict.json │ │ ├── alternate-conflict-dict.out │ │ ├── alternate-conflict-string.err │ │ ├── alternate-conflict-string.exit │ │ ├── alternate-conflict-string.json │ │ ├── alternate-conflict-string.out │ │ ├── alternate-empty.err │ │ ├── alternate-empty.exit │ │ ├── alternate-empty.json │ │ ├── alternate-empty.out │ │ ├── alternate-nested.err │ │ ├── alternate-nested.exit │ │ ├── alternate-nested.json │ │ ├── alternate-nested.out │ │ ├── alternate-unknown.err │ │ ├── alternate-unknown.exit │ │ ├── alternate-unknown.json │ │ ├── alternate-unknown.out │ │ ├── args-alternate.err │ │ ├── args-alternate.exit │ │ ├── args-alternate.json │ │ ├── args-alternate.out │ │ ├── args-any.err │ │ ├── args-any.exit │ │ ├── args-any.json │ │ ├── args-any.out │ │ ├── args-array-empty.err │ │ ├── args-array-empty.exit │ │ ├── args-array-empty.json │ │ ├── args-array-empty.out │ │ ├── args-array-unknown.err │ │ ├── args-array-unknown.exit │ │ ├── args-array-unknown.json │ │ ├── args-array-unknown.out │ │ ├── args-bad-boxed.err │ │ ├── args-bad-boxed.exit │ │ ├── args-bad-boxed.json │ │ ├── args-bad-boxed.out │ │ ├── args-boxed-anon.err │ │ ├── args-boxed-anon.exit │ │ ├── args-boxed-anon.json │ │ ├── args-boxed-anon.out │ │ ├── args-boxed-empty.err │ │ ├── args-boxed-empty.exit │ │ ├── args-boxed-empty.json │ │ ├── args-boxed-empty.out │ │ ├── args-boxed-string.err │ │ ├── args-boxed-string.exit │ │ ├── args-boxed-string.json │ │ ├── args-boxed-string.out │ │ ├── args-int.err │ │ ├── args-int.exit │ │ ├── args-int.json │ │ ├── args-int.out │ │ ├── args-invalid.err │ │ ├── args-invalid.exit │ │ ├── args-invalid.json │ │ ├── args-invalid.out │ │ ├── args-member-array-bad.err │ │ ├── args-member-array-bad.exit │ │ ├── args-member-array-bad.json │ │ ├── args-member-array-bad.out │ │ ├── args-member-case.err │ │ ├── args-member-case.exit │ │ ├── args-member-case.json │ │ ├── args-member-case.out │ │ ├── args-member-unknown.err │ │ ├── args-member-unknown.exit │ │ ├── args-member-unknown.json │ │ ├── args-member-unknown.out │ │ ├── args-name-clash.err │ │ ├── args-name-clash.exit │ │ ├── args-name-clash.json │ │ ├── args-name-clash.out │ │ ├── args-union.err │ │ ├── args-union.exit │ │ ├── args-union.json │ │ ├── args-union.out │ │ ├── args-unknown.err │ │ ├── args-unknown.exit │ │ ├── args-unknown.json │ │ ├── args-unknown.out │ │ ├── bad-base.err │ │ ├── bad-base.exit │ │ ├── bad-base.json │ │ ├── bad-base.out │ │ ├── bad-data.err │ │ ├── bad-data.exit │ │ ├── bad-data.json │ │ ├── bad-data.out │ │ ├── bad-ident.err │ │ ├── bad-ident.exit │ │ ├── bad-ident.json │ │ ├── bad-ident.out │ │ ├── bad-type-bool.err │ │ ├── bad-type-bool.exit │ │ ├── bad-type-bool.json │ │ ├── bad-type-bool.out │ │ ├── bad-type-dict.err │ │ ├── bad-type-dict.exit │ │ ├── bad-type-dict.json │ │ ├── bad-type-dict.out │ │ ├── bad-type-int.err │ │ ├── bad-type-int.exit │ │ ├── bad-type-int.json │ │ ├── bad-type-int.out │ │ ├── base-cycle-direct.err │ │ ├── base-cycle-direct.exit │ │ ├── base-cycle-direct.json │ │ ├── base-cycle-direct.out │ │ ├── base-cycle-indirect.err │ │ ├── base-cycle-indirect.exit │ │ ├── base-cycle-indirect.json │ │ ├── base-cycle-indirect.out │ │ ├── command-int.err │ │ ├── command-int.exit │ │ ├── command-int.json │ │ ├── command-int.out │ │ ├── comments.err │ │ ├── comments.exit │ │ ├── comments.json │ │ ├── comments.out │ │ ├── double-data.err │ │ ├── double-data.exit │ │ ├── double-data.json │ │ ├── double-data.out │ │ ├── double-type.err │ │ ├── double-type.exit │ │ ├── double-type.json │ │ ├── double-type.out │ │ ├── duplicate-key.err │ │ ├── duplicate-key.exit │ │ ├── duplicate-key.json │ │ ├── duplicate-key.out │ │ ├── empty.err │ │ ├── empty.exit │ │ ├── empty.json │ │ ├── empty.out │ │ ├── enum-bad-name.err │ │ ├── enum-bad-name.exit │ │ ├── enum-bad-name.json │ │ ├── enum-bad-name.out │ │ ├── enum-bad-prefix.err │ │ ├── enum-bad-prefix.exit │ │ ├── enum-bad-prefix.json │ │ ├── enum-bad-prefix.out │ │ ├── enum-clash-member.err │ │ ├── enum-clash-member.exit │ │ ├── enum-clash-member.json │ │ ├── enum-clash-member.out │ │ ├── enum-dict-member.err │ │ ├── enum-dict-member.exit │ │ ├── enum-dict-member.json │ │ ├── enum-dict-member.out │ │ ├── enum-int-member.err │ │ ├── enum-int-member.exit │ │ ├── enum-int-member.json │ │ ├── enum-int-member.out │ │ ├── enum-member-case.err │ │ ├── enum-member-case.exit │ │ ├── enum-member-case.json │ │ ├── enum-member-case.out │ │ ├── enum-missing-data.err │ │ ├── enum-missing-data.exit │ │ ├── enum-missing-data.json │ │ ├── enum-missing-data.out │ │ ├── enum-wrong-data.err │ │ ├── enum-wrong-data.exit │ │ ├── enum-wrong-data.json │ │ ├── enum-wrong-data.out │ │ ├── escape-outside-string.err │ │ ├── escape-outside-string.exit │ │ ├── escape-outside-string.json │ │ ├── escape-outside-string.out │ │ ├── escape-too-big.err │ │ ├── escape-too-big.exit │ │ ├── escape-too-big.json │ │ ├── escape-too-big.out │ │ ├── escape-too-short.err │ │ ├── escape-too-short.exit │ │ ├── escape-too-short.json │ │ ├── escape-too-short.out │ │ ├── event-boxed-empty.err │ │ ├── event-boxed-empty.exit │ │ ├── event-boxed-empty.json │ │ ├── event-boxed-empty.out │ │ ├── event-case.err │ │ ├── event-case.exit │ │ ├── event-case.json │ │ ├── event-case.out │ │ ├── event-nest-struct.err │ │ ├── event-nest-struct.exit │ │ ├── event-nest-struct.json │ │ ├── event-nest-struct.out │ │ ├── flat-union-array-branch.err │ │ ├── flat-union-array-branch.exit │ │ ├── flat-union-array-branch.json │ │ ├── flat-union-array-branch.out │ │ ├── flat-union-bad-base.err │ │ ├── flat-union-bad-base.exit │ │ ├── flat-union-bad-base.json │ │ ├── flat-union-bad-base.out │ │ ├── flat-union-bad-discriminator.err │ │ ├── flat-union-bad-discriminator.exit │ │ ├── flat-union-bad-discriminator.json │ │ ├── flat-union-bad-discriminator.out │ │ ├── flat-union-base-any.err │ │ ├── flat-union-base-any.exit │ │ ├── flat-union-base-any.json │ │ ├── flat-union-base-any.out │ │ ├── flat-union-base-union.err │ │ ├── flat-union-base-union.exit │ │ ├── flat-union-base-union.json │ │ ├── flat-union-base-union.out │ │ ├── flat-union-clash-member.err │ │ ├── flat-union-clash-member.exit │ │ ├── flat-union-clash-member.json │ │ ├── flat-union-clash-member.out │ │ ├── flat-union-empty.err │ │ ├── flat-union-empty.exit │ │ ├── flat-union-empty.json │ │ ├── flat-union-empty.out │ │ ├── flat-union-incomplete-branch.err │ │ ├── flat-union-incomplete-branch.exit │ │ ├── flat-union-incomplete-branch.json │ │ ├── flat-union-incomplete-branch.out │ │ ├── flat-union-inline.err │ │ ├── flat-union-inline.exit │ │ ├── flat-union-inline.json │ │ ├── flat-union-inline.out │ │ ├── flat-union-int-branch.err │ │ ├── flat-union-int-branch.exit │ │ ├── flat-union-int-branch.json │ │ ├── flat-union-int-branch.out │ │ ├── flat-union-invalid-branch-key.err │ │ ├── flat-union-invalid-branch-key.exit │ │ ├── flat-union-invalid-branch-key.json │ │ ├── flat-union-invalid-branch-key.out │ │ ├── flat-union-invalid-discriminator.err │ │ ├── flat-union-invalid-discriminator.exit │ │ ├── flat-union-invalid-discriminator.json │ │ ├── flat-union-invalid-discriminator.out │ │ ├── flat-union-no-base.err │ │ ├── flat-union-no-base.exit │ │ ├── flat-union-no-base.json │ │ ├── flat-union-no-base.out │ │ ├── flat-union-optional-discriminator.err │ │ ├── flat-union-optional-discriminator.exit │ │ ├── flat-union-optional-discriminator.json │ │ ├── flat-union-optional-discriminator.out │ │ ├── flat-union-string-discriminator.err │ │ ├── flat-union-string-discriminator.exit │ │ ├── flat-union-string-discriminator.json │ │ ├── flat-union-string-discriminator.out │ │ ├── funny-char.err │ │ ├── funny-char.exit │ │ ├── funny-char.json │ │ ├── funny-char.out │ │ ├── ident-with-escape.err │ │ ├── ident-with-escape.exit │ │ ├── ident-with-escape.json │ │ ├── ident-with-escape.out │ │ ├── include-before-err.err │ │ ├── include-before-err.exit │ │ ├── include-before-err.json │ │ ├── include-before-err.out │ │ ├── include-cycle-b.json │ │ ├── include-cycle-c.json │ │ ├── include-cycle.err │ │ ├── include-cycle.exit │ │ ├── include-cycle.json │ │ ├── include-cycle.out │ │ ├── include-format-err.err │ │ ├── include-format-err.exit │ │ ├── include-format-err.json │ │ ├── include-format-err.out │ │ ├── include-nested-err.err │ │ ├── include-nested-err.exit │ │ ├── include-nested-err.json │ │ ├── include-nested-err.out │ │ ├── include-no-file.err │ │ ├── include-no-file.exit │ │ ├── include-no-file.json │ │ ├── include-no-file.out │ │ ├── include-non-file.err │ │ ├── include-non-file.exit │ │ ├── include-non-file.json │ │ ├── include-non-file.out │ │ ├── include-relpath-sub.json │ │ ├── include-relpath.err │ │ ├── include-relpath.exit │ │ ├── include-relpath.json │ │ ├── include-relpath.out │ │ ├── include-repetition-sub.json │ │ ├── include-repetition.err │ │ ├── include-repetition.exit │ │ ├── include-repetition.json │ │ ├── include-repetition.out │ │ ├── include-self-cycle.err │ │ ├── include-self-cycle.exit │ │ ├── include-self-cycle.json │ │ ├── include-self-cycle.out │ │ ├── include-simple-sub.json │ │ ├── include-simple.err │ │ ├── include-simple.exit │ │ ├── include-simple.json │ │ ├── include-simple.out │ │ ├── include │ │ │ └── relpath.json │ │ ├── indented-expr.err │ │ ├── indented-expr.exit │ │ ├── indented-expr.json │ │ ├── indented-expr.out │ │ ├── leading-comma-list.err │ │ ├── leading-comma-list.exit │ │ ├── leading-comma-list.json │ │ ├── leading-comma-list.out │ │ ├── leading-comma-object.err │ │ ├── leading-comma-object.exit │ │ ├── leading-comma-object.json │ │ ├── leading-comma-object.out │ │ ├── missing-colon.err │ │ ├── missing-colon.exit │ │ ├── missing-colon.json │ │ ├── missing-colon.out │ │ ├── missing-comma-list.err │ │ ├── missing-comma-list.exit │ │ ├── missing-comma-list.json │ │ ├── missing-comma-list.out │ │ ├── missing-comma-object.err │ │ ├── missing-comma-object.exit │ │ ├── missing-comma-object.json │ │ ├── missing-comma-object.out │ │ ├── missing-type.err │ │ ├── missing-type.exit │ │ ├── missing-type.json │ │ ├── missing-type.out │ │ ├── nested-struct-data.err │ │ ├── nested-struct-data.exit │ │ ├── nested-struct-data.json │ │ ├── nested-struct-data.out │ │ ├── non-objects.err │ │ ├── non-objects.exit │ │ ├── non-objects.json │ │ ├── non-objects.out │ │ ├── qapi-schema-test.err │ │ ├── qapi-schema-test.exit │ │ ├── qapi-schema-test.json │ │ ├── qapi-schema-test.out │ │ ├── quoted-structural-chars.err │ │ ├── quoted-structural-chars.exit │ │ ├── quoted-structural-chars.json │ │ ├── quoted-structural-chars.out │ │ ├── redefined-builtin.err │ │ ├── redefined-builtin.exit │ │ ├── redefined-builtin.json │ │ ├── redefined-builtin.out │ │ ├── redefined-command.err │ │ ├── redefined-command.exit │ │ ├── redefined-command.json │ │ ├── redefined-command.out │ │ ├── redefined-event.err │ │ ├── redefined-event.exit │ │ ├── redefined-event.json │ │ ├── redefined-event.out │ │ ├── redefined-type.err │ │ ├── redefined-type.exit │ │ ├── redefined-type.json │ │ ├── redefined-type.out │ │ ├── reserved-command-q.err │ │ ├── reserved-command-q.exit │ │ ├── reserved-command-q.json │ │ ├── reserved-command-q.out │ │ ├── reserved-enum-q.err │ │ ├── reserved-enum-q.exit │ │ ├── reserved-enum-q.json │ │ ├── reserved-enum-q.out │ │ ├── reserved-member-has.err │ │ ├── reserved-member-has.exit │ │ ├── reserved-member-has.json │ │ ├── reserved-member-has.out │ │ ├── reserved-member-q.err │ │ ├── reserved-member-q.exit │ │ ├── reserved-member-q.json │ │ ├── reserved-member-q.out │ │ ├── reserved-member-u.err │ │ ├── reserved-member-u.exit │ │ ├── reserved-member-u.json │ │ ├── reserved-member-u.out │ │ ├── reserved-member-underscore.err │ │ ├── reserved-member-underscore.exit │ │ ├── reserved-member-underscore.json │ │ ├── reserved-member-underscore.out │ │ ├── reserved-type-kind.err │ │ ├── reserved-type-kind.exit │ │ ├── reserved-type-kind.json │ │ ├── reserved-type-kind.out │ │ ├── reserved-type-list.err │ │ ├── reserved-type-list.exit │ │ ├── reserved-type-list.json │ │ ├── reserved-type-list.out │ │ ├── returns-alternate.err │ │ ├── returns-alternate.exit │ │ ├── returns-alternate.json │ │ ├── returns-alternate.out │ │ ├── returns-array-bad.err │ │ ├── returns-array-bad.exit │ │ ├── returns-array-bad.json │ │ ├── returns-array-bad.out │ │ ├── returns-dict.err │ │ ├── returns-dict.exit │ │ ├── returns-dict.json │ │ ├── returns-dict.out │ │ ├── returns-unknown.err │ │ ├── returns-unknown.exit │ │ ├── returns-unknown.json │ │ ├── returns-unknown.out │ │ ├── returns-whitelist.err │ │ ├── returns-whitelist.exit │ │ ├── returns-whitelist.json │ │ ├── returns-whitelist.out │ │ ├── struct-base-clash-deep.err │ │ ├── struct-base-clash-deep.exit │ │ ├── struct-base-clash-deep.json │ │ ├── struct-base-clash-deep.out │ │ ├── struct-base-clash.err │ │ ├── struct-base-clash.exit │ │ ├── struct-base-clash.json │ │ ├── struct-base-clash.out │ │ ├── struct-data-invalid.err │ │ ├── struct-data-invalid.exit │ │ ├── struct-data-invalid.json │ │ ├── struct-data-invalid.out │ │ ├── struct-member-invalid.err │ │ ├── struct-member-invalid.exit │ │ ├── struct-member-invalid.json │ │ ├── struct-member-invalid.out │ │ ├── test-qapi.py │ │ ├── trailing-comma-list.err │ │ ├── trailing-comma-list.exit │ │ ├── trailing-comma-list.json │ │ ├── trailing-comma-list.out │ │ ├── trailing-comma-object.err │ │ ├── trailing-comma-object.exit │ │ ├── trailing-comma-object.json │ │ ├── trailing-comma-object.out │ │ ├── type-bypass-bad-gen.err │ │ ├── type-bypass-bad-gen.exit │ │ ├── type-bypass-bad-gen.json │ │ ├── type-bypass-bad-gen.out │ │ ├── unclosed-list.err │ │ ├── unclosed-list.exit │ │ ├── unclosed-list.json │ │ ├── unclosed-list.out │ │ ├── unclosed-object.err │ │ ├── unclosed-object.exit │ │ ├── unclosed-object.json │ │ ├── unclosed-object.out │ │ ├── unclosed-string.err │ │ ├── unclosed-string.exit │ │ ├── unclosed-string.json │ │ ├── unclosed-string.out │ │ ├── unicode-str.err │ │ ├── unicode-str.exit │ │ ├── unicode-str.json │ │ ├── unicode-str.out │ │ ├── union-base-no-discriminator.err │ │ ├── union-base-no-discriminator.exit │ │ ├── union-base-no-discriminator.json │ │ ├── union-base-no-discriminator.out │ │ ├── union-branch-case.err │ │ ├── union-branch-case.exit │ │ ├── union-branch-case.json │ │ ├── union-branch-case.out │ │ ├── union-clash-branches.err │ │ ├── union-clash-branches.exit │ │ ├── union-clash-branches.json │ │ ├── union-clash-branches.out │ │ ├── union-empty.err │ │ ├── union-empty.exit │ │ ├── union-empty.json │ │ ├── union-empty.out │ │ ├── union-invalid-base.err │ │ ├── union-invalid-base.exit │ │ ├── union-invalid-base.json │ │ ├── union-invalid-base.out │ │ ├── union-optional-branch.err │ │ ├── union-optional-branch.exit │ │ ├── union-optional-branch.json │ │ ├── union-optional-branch.out │ │ ├── union-unknown.err │ │ ├── union-unknown.exit │ │ ├── union-unknown.json │ │ ├── union-unknown.out │ │ ├── unknown-escape.err │ │ ├── unknown-escape.exit │ │ ├── unknown-escape.json │ │ ├── unknown-escape.out │ │ ├── unknown-expr-key.err │ │ ├── unknown-expr-key.exit │ │ ├── unknown-expr-key.json │ │ └── unknown-expr-key.out │ ├── qemu-iotests-quick.sh │ ├── qemu-iotests │ │ ├── 101 │ │ ├── 102 │ │ ├── 103 │ │ ├── 104 │ │ ├── 105 │ │ ├── 107 │ │ ├── 108 │ │ ├── 109 │ │ ├── 110 │ │ ├── 111 │ │ ├── 112 │ │ ├── 113 │ │ ├── 114 │ │ ├── 115 │ │ ├── 116 │ │ ├── 117 │ │ ├── 118 │ │ ├── 119 │ │ ├── 120 │ │ ├── 121 │ │ ├── 122 │ │ ├── 123 │ │ ├── 124 │ │ ├── 128 │ │ ├── 129 │ │ ├── 130 │ │ ├── 131 │ │ ├── 132 │ │ ├── 133 │ │ ├── 134 │ │ ├── 135 │ │ ├── 136 │ │ ├── 137 │ │ ├── 138 │ │ ├── 139 │ │ ├── 140 │ │ ├── 141 │ │ ├── 142 │ │ ├── 143 │ │ ├── 144 │ │ ├── 145 │ │ ├── 146 │ │ ├── 147 │ │ ├── 148 │ │ ├── 149 │ │ ├── 150 │ │ ├── 152 │ │ ├── 154 │ │ ├── 155 │ │ ├── 156 │ │ ├── 157 │ │ ├── 158 │ │ ├── 159 │ │ ├── 160 │ │ ├── 162 │ │ ├── 170 │ │ ├── 171 │ │ ├── 172 │ │ ├── .gitignore │ │ ├── 001 │ │ ├── 001.out │ │ ├── 002 │ │ ├── 002.out │ │ ├── 003 │ │ ├── 003.out │ │ ├── 004 │ │ ├── 004.out │ │ ├── 005 │ │ ├── 005.out │ │ ├── 007 │ │ ├── 007.out │ │ ├── 008 │ │ ├── 008.out │ │ ├── 009 │ │ ├── 009.out │ │ ├── 010 │ │ ├── 010.out │ │ ├── 011 │ │ ├── 011.out │ │ ├── 012 │ │ ├── 012.out │ │ ├── 013 │ │ ├── 013.out │ │ ├── 014 │ │ ├── 014.out │ │ ├── 015 │ │ ├── 015.out │ │ ├── 017 │ │ ├── 017.out │ │ ├── 018 │ │ ├── 018.out │ │ ├── 019 │ │ ├── 019.out │ │ ├── 020 │ │ ├── 020.out │ │ ├── 021 │ │ ├── 021.out │ │ ├── 022 │ │ ├── 022.out │ │ ├── 023 │ │ ├── 023.out │ │ ├── 024 │ │ ├── 024.out │ │ ├── 025 │ │ ├── 025.out │ │ ├── 026 │ │ ├── 026.out │ │ ├── 026.out.nocache │ │ ├── 027 │ │ ├── 027.out │ │ ├── 028 │ │ ├── 028.out │ │ ├── 029 │ │ ├── 029.out │ │ ├── 030 │ │ ├── 030.out │ │ ├── 031 │ │ ├── 031.out │ │ ├── 032 │ │ ├── 032.out │ │ ├── 033 │ │ ├── 033.out │ │ ├── 034 │ │ ├── 034.out │ │ ├── 035 │ │ ├── 035.out │ │ ├── 036 │ │ ├── 036.out │ │ ├── 037 │ │ ├── 037.out │ │ ├── 038 │ │ ├── 038.out │ │ ├── 039 │ │ ├── 039.out │ │ ├── 040 │ │ ├── 040.out │ │ ├── 041 │ │ ├── 041.out │ │ ├── 042 │ │ ├── 042.out │ │ ├── 043 │ │ ├── 043.out │ │ ├── 044 │ │ ├── 044.out │ │ ├── 045 │ │ ├── 045.out │ │ ├── 046 │ │ ├── 046.out │ │ ├── 047 │ │ ├── 047.out │ │ ├── 048 │ │ ├── 048.out │ │ ├── 049 │ │ ├── 049.out │ │ ├── 050 │ │ ├── 050.out │ │ ├── 051 │ │ ├── 051.out │ │ ├── 051.pc.out │ │ ├── 052 │ │ ├── 052.out │ │ ├── 053 │ │ ├── 053.out │ │ ├── 054 │ │ ├── 054.out │ │ ├── 055 │ │ ├── 055.out │ │ ├── 056 │ │ ├── 056.out │ │ ├── 057 │ │ ├── 057.out │ │ ├── 058 │ │ ├── 058.out │ │ ├── 059 │ │ ├── 059.out │ │ ├── 060 │ │ ├── 060.out │ │ ├── 061 │ │ ├── 061.out │ │ ├── 062 │ │ ├── 062.out │ │ ├── 063 │ │ ├── 063.out │ │ ├── 064 │ │ ├── 064.out │ │ ├── 065 │ │ ├── 065.out │ │ ├── 066 │ │ ├── 066.out │ │ ├── 067 │ │ ├── 067.out │ │ ├── 068 │ │ ├── 068.out │ │ ├── 069 │ │ ├── 069.out │ │ ├── 070 │ │ ├── 070.out │ │ ├── 071 │ │ ├── 071.out │ │ ├── 072 │ │ ├── 072.out │ │ ├── 073 │ │ ├── 073.out │ │ ├── 074 │ │ ├── 074.out │ │ ├── 075 │ │ ├── 075.out │ │ ├── 076 │ │ ├── 076.out │ │ ├── 077 │ │ ├── 077.out │ │ ├── 078 │ │ ├── 078.out │ │ ├── 079 │ │ ├── 079.out │ │ ├── 080 │ │ ├── 080.out │ │ ├── 081 │ │ ├── 081.out │ │ ├── 082 │ │ ├── 082.out │ │ ├── 083 │ │ ├── 083.out │ │ ├── 084 │ │ ├── 084.out │ │ ├── 085 │ │ ├── 085.out │ │ ├── 086 │ │ ├── 086.out │ │ ├── 087 │ │ ├── 087.out │ │ ├── 088 │ │ ├── 088.out │ │ ├── 089 │ │ ├── 089.out │ │ ├── 090 │ │ ├── 090.out │ │ ├── 091 │ │ ├── 091.out │ │ ├── 092 │ │ ├── 092.out │ │ ├── 093 │ │ ├── 093.out │ │ ├── 094 │ │ ├── 094.out │ │ ├── 095 │ │ ├── 095.out │ │ ├── 096 │ │ ├── 096.out │ │ ├── 097 │ │ ├── 097.out │ │ ├── 098 │ │ ├── 098.out │ │ ├── 099 │ │ ├── 099.out │ │ ├── 101.out │ │ ├── 102.out │ │ ├── 103.out │ │ ├── 104.out │ │ ├── 105.out │ │ ├── 107.out │ │ ├── 108.out │ │ ├── 109.out │ │ ├── 110.out │ │ ├── 111.out │ │ ├── 112.out │ │ ├── 113.out │ │ ├── 114.out │ │ ├── 115.out │ │ ├── 116.out │ │ ├── 117.out │ │ ├── 118.out │ │ ├── 119.out │ │ ├── 120.out │ │ ├── 121.out │ │ ├── 122.out │ │ ├── 123.out │ │ ├── 124.out │ │ ├── 128.out │ │ ├── 129.out │ │ ├── 130.out │ │ ├── 131.out │ │ ├── 132.out │ │ ├── 133.out │ │ ├── 134.out │ │ ├── 135.out │ │ ├── 136.out │ │ ├── 137.out │ │ ├── 138.out │ │ ├── 139.out │ │ ├── 140.out │ │ ├── 141.out │ │ ├── 142.out │ │ ├── 143.out │ │ ├── 144.out │ │ ├── 145.out │ │ ├── 146.out │ │ ├── 147.out │ │ ├── 148.out │ │ ├── 149.out │ │ ├── 150.out │ │ ├── 152.out │ │ ├── 154.out │ │ ├── 155.out │ │ ├── 156.out │ │ ├── 157.out │ │ ├── 158.out │ │ ├── 159.out │ │ ├── 160.out │ │ ├── 162.out │ │ ├── 170.out │ │ ├── 171.out │ │ ├── 172.out │ │ ├── COPYING │ │ ├── Makefile │ │ ├── README │ │ ├── check │ │ ├── common │ │ ├── common.config │ │ ├── common.filter │ │ ├── common.pattern │ │ ├── common.qemu │ │ ├── common.rc │ │ ├── group │ │ ├── iotests.py │ │ ├── nbd-fault-injector.py │ │ ├── qcow2.py │ │ ├── qed.py │ │ ├── sample_images │ │ │ ├── README │ │ │ ├── afl5.img.bz2 │ │ │ ├── afl9.vmdk.bz2 │ │ │ ├── d2v-zerofilled.vhd.bz2 │ │ │ ├── empty.bochs.bz2 │ │ │ ├── grub_mbr.raw.bz2 │ │ │ ├── hyperv2012r2-dynamic.vhd.bz2 │ │ │ ├── iotest-dirtylog-10G-4M.vhdx.bz2 │ │ │ ├── iotest-dynamic-1G.vhdx.bz2 │ │ │ ├── iotest-version3.vmdk.bz2 │ │ │ ├── parallels-v1.bz2 │ │ │ ├── parallels-v2.bz2 │ │ │ ├── simple-pattern.cloop.bz2 │ │ │ ├── test-disk2vhd.vhdx.bz2 │ │ │ └── virtualpc-dynamic.vhd.bz2 │ │ └── socket_scm_helper.c │ ├── qht-bench.c │ ├── qom-test.c │ ├── rcutorture.c │ ├── rocker │ │ ├── README │ │ ├── all │ │ ├── bridge │ │ ├── bridge-stp │ │ ├── bridge-vlan │ │ ├── bridge-vlan-stp │ │ ├── port │ │ └── tut.dot │ ├── rtas-test.c │ ├── rtc-test.c │ ├── rtl8139-test.c │ ├── spapr-phb-test.c │ ├── tcg │ │ ├── Makefile │ │ ├── README │ │ ├── alpha │ │ │ ├── Makefile │ │ │ ├── crt.s │ │ │ ├── hello-alpha.c │ │ │ ├── test-cond.c │ │ │ └── test-ovf.c │ │ ├── cris │ │ │ ├── .gdbinit │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── check_abs.c │ │ │ ├── check_addc.c │ │ │ ├── check_addcm.c │ │ │ ├── check_addcv17.s │ │ │ ├── check_addi.s │ │ │ ├── check_addiv32.s │ │ │ ├── check_addm.s │ │ │ ├── check_addo.c │ │ │ ├── check_addoq.c │ │ │ ├── check_addq.s │ │ │ ├── check_addr.s │ │ │ ├── check_addxc.s │ │ │ ├── check_addxm.s │ │ │ ├── check_addxr.s │ │ │ ├── check_andc.s │ │ │ ├── check_andm.s │ │ │ ├── check_andq.s │ │ │ ├── check_andr.s │ │ │ ├── check_asr.s │ │ │ ├── check_ba.s │ │ │ ├── check_bas.s │ │ │ ├── check_bcc.s │ │ │ ├── check_bound.c │ │ │ ├── check_boundc.s │ │ │ ├── check_boundr.s │ │ │ ├── check_btst.s │ │ │ ├── check_clearfv32.s │ │ │ ├── check_clrjmp1.s │ │ │ ├── check_cmp-2.s │ │ │ ├── check_cmpc.s │ │ │ ├── check_cmpm.s │ │ │ ├── check_cmpq.s │ │ │ ├── check_cmpr.s │ │ │ ├── check_cmpxc.s │ │ │ ├── check_cmpxm.s │ │ │ ├── check_dstep.s │ │ │ ├── check_ftag.c │ │ │ ├── check_gcctorture_pr28634-1.c │ │ │ ├── check_gcctorture_pr28634.c │ │ │ ├── check_glibc_kernelversion.c │ │ │ ├── check_hello.c │ │ │ ├── check_int64.c │ │ │ ├── check_jsr.s │ │ │ ├── check_lapc.s │ │ │ ├── check_lsl.s │ │ │ ├── check_lsr.s │ │ │ ├── check_lz.c │ │ │ ├── check_mapbrk.c │ │ │ ├── check_mcp.s │ │ │ ├── check_mmap1.c │ │ │ ├── check_mmap2.c │ │ │ ├── check_mmap3.c │ │ │ ├── check_movdelsr1.s │ │ │ ├── check_movecr.s │ │ │ ├── check_movei.s │ │ │ ├── check_movemr.s │ │ │ ├── check_movemrv32.s │ │ │ ├── check_moveq.c │ │ │ ├── check_mover.s │ │ │ ├── check_moverm.s │ │ │ ├── check_movmp.s │ │ │ ├── check_movpmv32.s │ │ │ ├── check_movpr.s │ │ │ ├── check_movprv32.s │ │ │ ├── check_movscr.s │ │ │ ├── check_movsm.s │ │ │ ├── check_movsr.s │ │ │ ├── check_movucr.s │ │ │ ├── check_movum.s │ │ │ ├── check_movur.s │ │ │ ├── check_mulv32.s │ │ │ ├── check_mulx.s │ │ │ ├── check_neg.s │ │ │ ├── check_not.s │ │ │ ├── check_openpf1.c │ │ │ ├── check_openpf2.c │ │ │ ├── check_openpf3.c │ │ │ ├── check_openpf5.c │ │ │ ├── check_orc.s │ │ │ ├── check_orm.s │ │ │ ├── check_orq.s │ │ │ ├── check_orr.s │ │ │ ├── check_ret.s │ │ │ ├── check_scc.s │ │ │ ├── check_settls1.c │ │ │ ├── check_sigalrm.c │ │ │ ├── check_stat1.c │ │ │ ├── check_stat2.c │ │ │ ├── check_stat3.c │ │ │ ├── check_stat4.c │ │ │ ├── check_subc.s │ │ │ ├── check_subm.s │ │ │ ├── check_subq.s │ │ │ ├── check_subr.s │ │ │ ├── check_swap.c │ │ │ ├── check_time2.c │ │ │ ├── check_xarith.s │ │ │ ├── crisutils.h │ │ │ ├── crt.s │ │ │ ├── sys.c │ │ │ ├── sys.h │ │ │ └── testutils.inc │ │ ├── hello-arm.c │ │ ├── hello-i386.c │ │ ├── hello-mips.c │ │ ├── linux-test.c │ │ ├── lm32 │ │ │ ├── Makefile │ │ │ ├── crt.S │ │ │ ├── helper.S │ │ │ ├── linker.ld │ │ │ ├── macros.inc │ │ │ ├── test_add.S │ │ │ ├── test_addi.S │ │ │ ├── test_and.S │ │ │ ├── test_andhi.S │ │ │ ├── test_andi.S │ │ │ ├── test_b.S │ │ │ ├── test_be.S │ │ │ ├── test_bg.S │ │ │ ├── test_bge.S │ │ │ ├── test_bgeu.S │ │ │ ├── test_bgu.S │ │ │ ├── test_bi.S │ │ │ ├── test_bne.S │ │ │ ├── test_break.S │ │ │ ├── test_bret.S │ │ │ ├── test_call.S │ │ │ ├── test_calli.S │ │ │ ├── test_cmpe.S │ │ │ ├── test_cmpei.S │ │ │ ├── test_cmpg.S │ │ │ ├── test_cmpge.S │ │ │ ├── test_cmpgei.S │ │ │ ├── test_cmpgeu.S │ │ │ ├── test_cmpgeui.S │ │ │ ├── test_cmpgi.S │ │ │ ├── test_cmpgu.S │ │ │ ├── test_cmpgui.S │ │ │ ├── test_cmpne.S │ │ │ ├── test_cmpnei.S │ │ │ ├── test_divu.S │ │ │ ├── test_eret.S │ │ │ ├── test_lb.S │ │ │ ├── test_lbu.S │ │ │ ├── test_lh.S │ │ │ ├── test_lhu.S │ │ │ ├── test_lw.S │ │ │ ├── test_modu.S │ │ │ ├── test_mul.S │ │ │ ├── test_muli.S │ │ │ ├── test_nor.S │ │ │ ├── test_nori.S │ │ │ ├── test_or.S │ │ │ ├── test_orhi.S │ │ │ ├── test_ori.S │ │ │ ├── test_ret.S │ │ │ ├── test_sb.S │ │ │ ├── test_scall.S │ │ │ ├── test_sextb.S │ │ │ ├── test_sexth.S │ │ │ ├── test_sh.S │ │ │ ├── test_sl.S │ │ │ ├── test_sli.S │ │ │ ├── test_sr.S │ │ │ ├── test_sri.S │ │ │ ├── test_sru.S │ │ │ ├── test_srui.S │ │ │ ├── test_sub.S │ │ │ ├── test_sw.S │ │ │ ├── test_xnor.S │ │ │ ├── test_xnori.S │ │ │ ├── test_xor.S │ │ │ └── test_xori.S │ │ ├── mips │ │ │ ├── mips32-dsp │ │ │ │ ├── Makefile │ │ │ │ ├── absq_s_ph.c │ │ │ │ ├── absq_s_w.c │ │ │ │ ├── addq_ph.c │ │ │ │ ├── addq_s_ph.c │ │ │ │ ├── addq_s_w.c │ │ │ │ ├── addsc.c │ │ │ │ ├── addu_qb.c │ │ │ │ ├── addu_s_qb.c │ │ │ │ ├── addwc.c │ │ │ │ ├── bitrev.c │ │ │ │ ├── bposge32.c │ │ │ │ ├── cmp_eq_ph.c │ │ │ │ ├── cmp_le_ph.c │ │ │ │ ├── cmp_lt_ph.c │ │ │ │ ├── cmpgu_eq_qb.c │ │ │ │ ├── cmpgu_le_qb.c │ │ │ │ ├── cmpgu_lt_qb.c │ │ │ │ ├── cmpu_eq_qb.c │ │ │ │ ├── cmpu_le_qb.c │ │ │ │ ├── cmpu_lt_qb.c │ │ │ │ ├── dpaq_s_w_ph.c │ │ │ │ ├── dpaq_sa_l_w.c │ │ │ │ ├── dpau_h_qbl.c │ │ │ │ ├── dpau_h_qbr.c │ │ │ │ ├── dpsq_s_w_ph.c │ │ │ │ ├── dpsq_sa_l_w.c │ │ │ │ ├── dpsu_h_qbl.c │ │ │ │ ├── dpsu_h_qbr.c │ │ │ │ ├── extp.c │ │ │ │ ├── extpdp.c │ │ │ │ ├── extpdpv.c │ │ │ │ ├── extpv.c │ │ │ │ ├── extr_r_w.c │ │ │ │ ├── extr_rs_w.c │ │ │ │ ├── extr_s_h.c │ │ │ │ ├── extr_w.c │ │ │ │ ├── extrv_r_w.c │ │ │ │ ├── extrv_rs_w.c │ │ │ │ ├── extrv_s_h.c │ │ │ │ ├── extrv_w.c │ │ │ │ ├── insv.c │ │ │ │ ├── lbux.c │ │ │ │ ├── lhx.c │ │ │ │ ├── lwx.c │ │ │ │ ├── madd.c │ │ │ │ ├── maddu.c │ │ │ │ ├── main.c │ │ │ │ ├── maq_s_w_phl.c │ │ │ │ ├── maq_s_w_phr.c │ │ │ │ ├── maq_sa_w_phl.c │ │ │ │ ├── maq_sa_w_phr.c │ │ │ │ ├── mfhi.c │ │ │ │ ├── mflo.c │ │ │ │ ├── modsub.c │ │ │ │ ├── msub.c │ │ │ │ ├── msubu.c │ │ │ │ ├── mthi.c │ │ │ │ ├── mthlip.c │ │ │ │ ├── mtlo.c │ │ │ │ ├── muleq_s_w_phl.c │ │ │ │ ├── muleq_s_w_phr.c │ │ │ │ ├── muleu_s_ph_qbl.c │ │ │ │ ├── muleu_s_ph_qbr.c │ │ │ │ ├── mulq_rs_ph.c │ │ │ │ ├── mult.c │ │ │ │ ├── multu.c │ │ │ │ ├── packrl_ph.c │ │ │ │ ├── pick_ph.c │ │ │ │ ├── pick_qb.c │ │ │ │ ├── preceq_w_phl.c │ │ │ │ ├── preceq_w_phr.c │ │ │ │ ├── precequ_ph_qbl.c │ │ │ │ ├── precequ_ph_qbla.c │ │ │ │ ├── precequ_ph_qbr.c │ │ │ │ ├── precequ_ph_qbra.c │ │ │ │ ├── preceu_ph_qbl.c │ │ │ │ ├── preceu_ph_qbla.c │ │ │ │ ├── preceu_ph_qbr.c │ │ │ │ ├── preceu_ph_qbra.c │ │ │ │ ├── precrq_ph_w.c │ │ │ │ ├── precrq_qb_ph.c │ │ │ │ ├── precrq_rs_ph_w.c │ │ │ │ ├── precrqu_s_qb_ph.c │ │ │ │ ├── raddu_w_qb.c │ │ │ │ ├── rddsp.c │ │ │ │ ├── repl_ph.c │ │ │ │ ├── repl_qb.c │ │ │ │ ├── replv_ph.c │ │ │ │ ├── replv_qb.c │ │ │ │ ├── shilo.c │ │ │ │ ├── shilov.c │ │ │ │ ├── shll_ph.c │ │ │ │ ├── shll_qb.c │ │ │ │ ├── shll_s_ph.c │ │ │ │ ├── shll_s_w.c │ │ │ │ ├── shllv_ph.c │ │ │ │ ├── shllv_qb.c │ │ │ │ ├── shllv_s_ph.c │ │ │ │ ├── shllv_s_w.c │ │ │ │ ├── shra_ph.c │ │ │ │ ├── shra_r_ph.c │ │ │ │ ├── shra_r_w.c │ │ │ │ ├── shrav_ph.c │ │ │ │ ├── shrav_r_ph.c │ │ │ │ ├── shrav_r_w.c │ │ │ │ ├── shrl_qb.c │ │ │ │ ├── shrlv_qb.c │ │ │ │ ├── subq_ph.c │ │ │ │ ├── subq_s_ph.c │ │ │ │ ├── subq_s_w.c │ │ │ │ ├── subu_qb.c │ │ │ │ ├── subu_s_qb.c │ │ │ │ └── wrdsp.c │ │ │ ├── mips32-dspr2 │ │ │ │ ├── Makefile │ │ │ │ ├── absq_s_qb.c │ │ │ │ ├── addqh_ph.c │ │ │ │ ├── addqh_r_ph.c │ │ │ │ ├── addqh_r_w.c │ │ │ │ ├── addqh_w.c │ │ │ │ ├── addu_ph.c │ │ │ │ ├── addu_s_ph.c │ │ │ │ ├── adduh_qb.c │ │ │ │ ├── adduh_r_qb.c │ │ │ │ ├── append.c │ │ │ │ ├── balign.c │ │ │ │ ├── cmpgdu_eq_qb.c │ │ │ │ ├── cmpgdu_le_qb.c │ │ │ │ ├── cmpgdu_lt_qb.c │ │ │ │ ├── dpa_w_ph.c │ │ │ │ ├── dpaqx_s_w_ph.c │ │ │ │ ├── dpaqx_sa_w_ph.c │ │ │ │ ├── dpax_w_ph.c │ │ │ │ ├── dps_w_ph.c │ │ │ │ ├── dpsqx_s_w_ph.c │ │ │ │ ├── dpsqx_sa_w_ph.c │ │ │ │ ├── dpsx_w_ph.c │ │ │ │ ├── mul_ph.c │ │ │ │ ├── mul_s_ph.c │ │ │ │ ├── mulq_rs_w.c │ │ │ │ ├── mulq_s_ph.c │ │ │ │ ├── mulq_s_w.c │ │ │ │ ├── mulsa_w_ph.c │ │ │ │ ├── mulsaq_s_w_ph.c │ │ │ │ ├── precr_qb_ph.c │ │ │ │ ├── precr_sra_ph_w.c │ │ │ │ ├── precr_sra_r_ph_w.c │ │ │ │ ├── prepend.c │ │ │ │ ├── shra_qb.c │ │ │ │ ├── shra_r_qb.c │ │ │ │ ├── shrav_qb.c │ │ │ │ ├── shrav_r_qb.c │ │ │ │ ├── shrl_ph.c │ │ │ │ ├── shrlv_ph.c │ │ │ │ ├── subqh_ph.c │ │ │ │ ├── subqh_r_ph.c │ │ │ │ ├── subqh_r_w.c │ │ │ │ ├── subqh_w.c │ │ │ │ ├── subu_ph.c │ │ │ │ ├── subu_s_ph.c │ │ │ │ ├── subuh_qb.c │ │ │ │ └── subuh_r_qb.c │ │ │ ├── mips64-dsp │ │ │ │ ├── Makefile │ │ │ │ ├── absq_s_ob.c │ │ │ │ ├── absq_s_ph.c │ │ │ │ ├── absq_s_pw.c │ │ │ │ ├── absq_s_qh.c │ │ │ │ ├── absq_s_w.c │ │ │ │ ├── addq_ph.c │ │ │ │ ├── addq_pw.c │ │ │ │ ├── addq_qh.c │ │ │ │ ├── addq_s_ph.c │ │ │ │ ├── addq_s_pw.c │ │ │ │ ├── addq_s_qh.c │ │ │ │ ├── addq_s_w.c │ │ │ │ ├── addsc.c │ │ │ │ ├── addu_ob.c │ │ │ │ ├── addu_qb.c │ │ │ │ ├── addu_s_ob.c │ │ │ │ ├── addu_s_qb.c │ │ │ │ ├── addwc.c │ │ │ │ ├── bitrev.c │ │ │ │ ├── bposge32.c │ │ │ │ ├── bposge64.c │ │ │ │ ├── cmp_eq_ph.c │ │ │ │ ├── cmp_eq_pw.c │ │ │ │ ├── cmp_eq_qh.c │ │ │ │ ├── cmp_le_ph.c │ │ │ │ ├── cmp_le_pw.c │ │ │ │ ├── cmp_le_qh.c │ │ │ │ ├── cmp_lt_ph.c │ │ │ │ ├── cmp_lt_pw.c │ │ │ │ ├── cmp_lt_qh.c │ │ │ │ ├── cmpgu_eq_ob.c │ │ │ │ ├── cmpgu_eq_qb.c │ │ │ │ ├── cmpgu_le_ob.c │ │ │ │ ├── cmpgu_le_qb.c │ │ │ │ ├── cmpgu_lt_ob.c │ │ │ │ ├── cmpgu_lt_qb.c │ │ │ │ ├── cmpu_eq_ob.c │ │ │ │ ├── cmpu_eq_qb.c │ │ │ │ ├── cmpu_le_ob.c │ │ │ │ ├── cmpu_le_qb.c │ │ │ │ ├── cmpu_lt_ob.c │ │ │ │ ├── cmpu_lt_qb.c │ │ │ │ ├── dappend.c │ │ │ │ ├── dextp.c │ │ │ │ ├── dextpdp.c │ │ │ │ ├── dextpdpv.c │ │ │ │ ├── dextpv.c │ │ │ │ ├── dextr_l.c │ │ │ │ ├── dextr_r_l.c │ │ │ │ ├── dextr_r_w.c │ │ │ │ ├── dextr_rs_l.c │ │ │ │ ├── dextr_rs_w.c │ │ │ │ ├── dextr_s_h.c │ │ │ │ ├── dextr_w.c │ │ │ │ ├── dextrv_l.c │ │ │ │ ├── dextrv_r_l.c │ │ │ │ ├── dextrv_r_w.c │ │ │ │ ├── dextrv_rs_l.c │ │ │ │ ├── dextrv_rs_w.c │ │ │ │ ├── dextrv_s_h.c │ │ │ │ ├── dextrv_w.c │ │ │ │ ├── dinsv.c │ │ │ │ ├── dmadd.c │ │ │ │ ├── dmaddu.c │ │ │ │ ├── dmsub.c │ │ │ │ ├── dmsubu.c │ │ │ │ ├── dmthlip.c │ │ │ │ ├── dpaq_s_w_ph.c │ │ │ │ ├── dpaq_s_w_qh.c │ │ │ │ ├── dpaq_sa_l_pw.c │ │ │ │ ├── dpaq_sa_l_w.c │ │ │ │ ├── dpau_h_obl.c │ │ │ │ ├── dpau_h_obr.c │ │ │ │ ├── dpau_h_qbl.c │ │ │ │ ├── dpau_h_qbr.c │ │ │ │ ├── dpsq_s_w_ph.c │ │ │ │ ├── dpsq_s_w_qh.c │ │ │ │ ├── dpsq_sa_l_pw.c │ │ │ │ ├── dpsq_sa_l_w.c │ │ │ │ ├── dpsu_h_obl.c │ │ │ │ ├── dpsu_h_obr.c │ │ │ │ ├── dpsu_h_qbl.c │ │ │ │ ├── dpsu_h_qbr.c │ │ │ │ ├── dshilo.c │ │ │ │ ├── dshilov.c │ │ │ │ ├── extp.c │ │ │ │ ├── extpdp.c │ │ │ │ ├── extpdpv.c │ │ │ │ ├── extpv.c │ │ │ │ ├── extr_r_w.c │ │ │ │ ├── extr_rs_w.c │ │ │ │ ├── extr_s_h.c │ │ │ │ ├── extr_w.c │ │ │ │ ├── extrv_r_w.c │ │ │ │ ├── extrv_rs_w.c │ │ │ │ ├── extrv_s_h.c │ │ │ │ ├── extrv_w.c │ │ │ │ ├── head.S │ │ │ │ ├── insv.c │ │ │ │ ├── io.h │ │ │ │ ├── lbux.c │ │ │ │ ├── ldx.c │ │ │ │ ├── lhx.c │ │ │ │ ├── lwx.c │ │ │ │ ├── madd.c │ │ │ │ ├── maddu.c │ │ │ │ ├── maq_s_l_pwl.c │ │ │ │ ├── maq_s_l_pwr.c │ │ │ │ ├── maq_s_w_phl.c │ │ │ │ ├── maq_s_w_phr.c │ │ │ │ ├── maq_s_w_qhll.c │ │ │ │ ├── maq_s_w_qhlr.c │ │ │ │ ├── maq_s_w_qhrl.c │ │ │ │ ├── maq_s_w_qhrr.c │ │ │ │ ├── maq_sa_w_phl.c │ │ │ │ ├── maq_sa_w_phr.c │ │ │ │ ├── maq_sa_w_qhll.c │ │ │ │ ├── maq_sa_w_qhlr.c │ │ │ │ ├── maq_sa_w_qhrl.c │ │ │ │ ├── maq_sa_w_qhrr.c │ │ │ │ ├── mfhi.c │ │ │ │ ├── mflo.c │ │ │ │ ├── mips_boot.lds │ │ │ │ ├── modsub.c │ │ │ │ ├── msub.c │ │ │ │ ├── msubu.c │ │ │ │ ├── mthi.c │ │ │ │ ├── mthlip.c │ │ │ │ ├── mtlo.c │ │ │ │ ├── muleq_s_pw_qhl.c │ │ │ │ ├── muleq_s_pw_qhr.c │ │ │ │ ├── muleq_s_w_phl.c │ │ │ │ ├── muleq_s_w_phr.c │ │ │ │ ├── muleu_s_ph_qbl.c │ │ │ │ ├── muleu_s_ph_qbr.c │ │ │ │ ├── muleu_s_qh_obl.c │ │ │ │ ├── muleu_s_qh_obr.c │ │ │ │ ├── mulq_rs_ph.c │ │ │ │ ├── mulq_rs_qh.c │ │ │ │ ├── mulsaq_s_l_pw.c │ │ │ │ ├── mulsaq_s_w_qh.c │ │ │ │ ├── mult.c │ │ │ │ ├── multu.c │ │ │ │ ├── packrl_ph.c │ │ │ │ ├── packrl_pw.c │ │ │ │ ├── pick_ob.c │ │ │ │ ├── pick_ph.c │ │ │ │ ├── pick_pw.c │ │ │ │ ├── pick_qb.c │ │ │ │ ├── pick_qh.c │ │ │ │ ├── preceq_l_pwl.c │ │ │ │ ├── preceq_l_pwr.c │ │ │ │ ├── preceq_pw_qhl.c │ │ │ │ ├── preceq_pw_qhla.c │ │ │ │ ├── preceq_pw_qhr.c │ │ │ │ ├── preceq_pw_qhra.c │ │ │ │ ├── preceq_w_phl.c │ │ │ │ ├── preceq_w_phr.c │ │ │ │ ├── precequ_ph_qbl.c │ │ │ │ ├── precequ_ph_qbla.c │ │ │ │ ├── precequ_ph_qbr.c │ │ │ │ ├── precequ_ph_qbra.c │ │ │ │ ├── precequ_qh_obl.c │ │ │ │ ├── precequ_qh_obla.c │ │ │ │ ├── precequ_qh_obr.c │ │ │ │ ├── precequ_qh_obra.c │ │ │ │ ├── preceu_ph_qbl.c │ │ │ │ ├── preceu_ph_qbla.c │ │ │ │ ├── preceu_ph_qbr.c │ │ │ │ ├── preceu_ph_qbra.c │ │ │ │ ├── preceu_qh_obl.c │ │ │ │ ├── preceu_qh_obla.c │ │ │ │ ├── preceu_qh_obr.c │ │ │ │ ├── preceu_qh_obra.c │ │ │ │ ├── precr_ob_qh.c │ │ │ │ ├── precr_sra_qh_pw.c │ │ │ │ ├── precr_sra_r_qh_pw.c │ │ │ │ ├── precrq_ob_qh.c │ │ │ │ ├── precrq_ph_w.c │ │ │ │ ├── precrq_pw_l.c │ │ │ │ ├── precrq_qb_ph.c │ │ │ │ ├── precrq_qh_pw.c │ │ │ │ ├── precrq_rs_ph_w.c │ │ │ │ ├── precrq_rs_qh_pw.c │ │ │ │ ├── precrqu_s_ob_qh.c │ │ │ │ ├── precrqu_s_qb_ph.c │ │ │ │ ├── prependd.c │ │ │ │ ├── prependw.c │ │ │ │ ├── printf.c │ │ │ │ ├── raddu_l_ob.c │ │ │ │ ├── raddu_w_qb.c │ │ │ │ ├── rddsp.c │ │ │ │ ├── repl_ob.c │ │ │ │ ├── repl_ph.c │ │ │ │ ├── repl_pw.c │ │ │ │ ├── repl_qb.c │ │ │ │ ├── repl_qh.c │ │ │ │ ├── replv_ob.c │ │ │ │ ├── replv_ph.c │ │ │ │ ├── replv_pw.c │ │ │ │ ├── replv_qb.c │ │ │ │ ├── shilo.c │ │ │ │ ├── shilov.c │ │ │ │ ├── shll_ob.c │ │ │ │ ├── shll_ph.c │ │ │ │ ├── shll_pw.c │ │ │ │ ├── shll_qb.c │ │ │ │ ├── shll_qh.c │ │ │ │ ├── shll_s_ph.c │ │ │ │ ├── shll_s_pw.c │ │ │ │ ├── shll_s_qh.c │ │ │ │ ├── shll_s_w.c │ │ │ │ ├── shllv_ob.c │ │ │ │ ├── shllv_ph.c │ │ │ │ ├── shllv_pw.c │ │ │ │ ├── shllv_qb.c │ │ │ │ ├── shllv_qh.c │ │ │ │ ├── shllv_s_ph.c │ │ │ │ ├── shllv_s_pw.c │ │ │ │ ├── shllv_s_qh.c │ │ │ │ ├── shllv_s_w.c │ │ │ │ ├── shra_ob.c │ │ │ │ ├── shra_ph.c │ │ │ │ ├── shra_pw.c │ │ │ │ ├── shra_qh.c │ │ │ │ ├── shra_r_ob.c │ │ │ │ ├── shra_r_ph.c │ │ │ │ ├── shra_r_pw.c │ │ │ │ ├── shra_r_qh.c │ │ │ │ ├── shra_r_w.c │ │ │ │ ├── shrav_ph.c │ │ │ │ ├── shrav_pw.c │ │ │ │ ├── shrav_qh.c │ │ │ │ ├── shrav_r_ph.c │ │ │ │ ├── shrav_r_pw.c │ │ │ │ ├── shrav_r_qh.c │ │ │ │ ├── shrav_r_w.c │ │ │ │ ├── shrl_ob.c │ │ │ │ ├── shrl_qb.c │ │ │ │ ├── shrl_qh.c │ │ │ │ ├── shrlv_ob.c │ │ │ │ ├── shrlv_qb.c │ │ │ │ ├── shrlv_qh.c │ │ │ │ ├── subq_ph.c │ │ │ │ ├── subq_pw.c │ │ │ │ ├── subq_qh.c │ │ │ │ ├── subq_s_ph.c │ │ │ │ ├── subq_s_pw.c │ │ │ │ ├── subq_s_qh.c │ │ │ │ ├── subq_s_w.c │ │ │ │ ├── subu_ob.c │ │ │ │ ├── subu_qb.c │ │ │ │ ├── subu_s_ob.c │ │ │ │ ├── subu_s_qb.c │ │ │ │ └── wrdsp.c │ │ │ └── mips64-dspr2 │ │ │ │ ├── .directory │ │ │ │ ├── Makefile │ │ │ │ ├── absq_s_qb.c │ │ │ │ ├── addqh_ph.c │ │ │ │ ├── addqh_r_ph.c │ │ │ │ ├── addqh_r_w.c │ │ │ │ ├── addqh_w.c │ │ │ │ ├── addu_ph.c │ │ │ │ ├── addu_qh.c │ │ │ │ ├── addu_s_ph.c │ │ │ │ ├── addu_s_qh.c │ │ │ │ ├── adduh_ob.c │ │ │ │ ├── adduh_qb.c │ │ │ │ ├── adduh_r_ob.c │ │ │ │ ├── adduh_r_qb.c │ │ │ │ ├── append.c │ │ │ │ ├── balign.c │ │ │ │ ├── cmpgdu_eq_ob.c │ │ │ │ ├── cmpgdu_eq_qb.c │ │ │ │ ├── cmpgdu_le_ob.c │ │ │ │ ├── cmpgdu_le_qb.c │ │ │ │ ├── cmpgdu_lt_ob.c │ │ │ │ ├── cmpgdu_lt_qb.c │ │ │ │ ├── dbalign.c │ │ │ │ ├── dpa_w_ph.c │ │ │ │ ├── dpa_w_qh.c │ │ │ │ ├── dpaqx_s_w_ph.c │ │ │ │ ├── dpaqx_sa_w_ph.c │ │ │ │ ├── dpax_w_ph.c │ │ │ │ ├── dps_w_ph.c │ │ │ │ ├── dps_w_qh.c │ │ │ │ ├── dpsqx_s_w_ph.c │ │ │ │ ├── dpsqx_sa_w_ph.c │ │ │ │ ├── dpsx_w_ph.c │ │ │ │ ├── head.S │ │ │ │ ├── io.h │ │ │ │ ├── mips_boot.lds │ │ │ │ ├── mul_ph.c │ │ │ │ ├── mul_s_ph.c │ │ │ │ ├── mulq_rs_w.c │ │ │ │ ├── mulq_s_ph.c │ │ │ │ ├── mulq_s_w.c │ │ │ │ ├── mulsa_w_ph.c │ │ │ │ ├── mulsaq_s_w_ph.c │ │ │ │ ├── precr_qb_ph.c │ │ │ │ ├── precr_sra_ph_w.c │ │ │ │ ├── precr_sra_r_ph_w.c │ │ │ │ ├── prepend.c │ │ │ │ ├── printf.c │ │ │ │ ├── shra_qb.c │ │ │ │ ├── shra_r_qb.c │ │ │ │ ├── shrav_ob.c │ │ │ │ ├── shrav_qb.c │ │ │ │ ├── shrav_r_ob.c │ │ │ │ ├── shrav_r_qb.c │ │ │ │ ├── shrl_ph.c │ │ │ │ ├── shrlv_ph.c │ │ │ │ ├── subqh_ph.c │ │ │ │ ├── subqh_r_ph.c │ │ │ │ ├── subqh_r_w.c │ │ │ │ ├── subqh_w.c │ │ │ │ ├── subu_ph.c │ │ │ │ ├── subu_qh.c │ │ │ │ ├── subu_s_ph.c │ │ │ │ ├── subu_s_qh.c │ │ │ │ ├── subuh_ob.c │ │ │ │ ├── subuh_qb.c │ │ │ │ ├── subuh_r_ob.c │ │ │ │ └── subuh_r_qb.c │ │ ├── openrisc │ │ │ ├── Makefile │ │ │ ├── test_add.c │ │ │ ├── test_addc.c │ │ │ ├── test_addi.c │ │ │ ├── test_addic.c │ │ │ ├── test_and_or.c │ │ │ ├── test_bf.c │ │ │ ├── test_bnf.c │ │ │ ├── test_div.c │ │ │ ├── test_divu.c │ │ │ ├── test_extx.c │ │ │ ├── test_fx.c │ │ │ ├── test_j.c │ │ │ ├── test_jal.c │ │ │ ├── test_lf_add.c │ │ │ ├── test_lf_div.c │ │ │ ├── test_lf_eqs.c │ │ │ ├── test_lf_ges.c │ │ │ ├── test_lf_gts.c │ │ │ ├── test_lf_les.c │ │ │ ├── test_lf_lts.c │ │ │ ├── test_lf_mul.c │ │ │ ├── test_lf_nes.c │ │ │ ├── test_lf_rem.c │ │ │ ├── test_lf_sub.c │ │ │ ├── test_logic.c │ │ │ ├── test_lx.c │ │ │ ├── test_movhi.c │ │ │ ├── test_mul.c │ │ │ ├── test_muli.c │ │ │ ├── test_mulu.c │ │ │ ├── test_sfeq.c │ │ │ ├── test_sfeqi.c │ │ │ ├── test_sfges.c │ │ │ ├── test_sfgesi.c │ │ │ ├── test_sfgeu.c │ │ │ ├── test_sfgeui.c │ │ │ ├── test_sfgts.c │ │ │ ├── test_sfgtsi.c │ │ │ ├── test_sfgtu.c │ │ │ ├── test_sfgtui.c │ │ │ ├── test_sfles.c │ │ │ ├── test_sflesi.c │ │ │ ├── test_sfleu.c │ │ │ ├── test_sfleui.c │ │ │ ├── test_sflts.c │ │ │ ├── test_sfltsi.c │ │ │ ├── test_sfltu.c │ │ │ ├── test_sfltui.c │ │ │ ├── test_sfne.c │ │ │ ├── test_sfnei.c │ │ │ └── test_sub.c │ │ ├── pi_10.com │ │ ├── runcom.c │ │ ├── sha1.c │ │ ├── test-arm-iwmmxt.s │ │ ├── test-i386-code16.S │ │ ├── test-i386-fprem.c │ │ ├── test-i386-muldiv.h │ │ ├── test-i386-shift.h │ │ ├── test-i386-ssse3.c │ │ ├── test-i386-vm86.S │ │ ├── test-i386.c │ │ ├── test-i386.h │ │ ├── test-mmap.c │ │ ├── test_path.c │ │ ├── testthread.c │ │ └── xtensa │ │ │ ├── Makefile │ │ │ ├── crt.S │ │ │ ├── linker.ld.S │ │ │ ├── macros.inc │ │ │ ├── test_b.S │ │ │ ├── test_bi.S │ │ │ ├── test_boolean.S │ │ │ ├── test_break.S │ │ │ ├── test_bz.S │ │ │ ├── test_cache.S │ │ │ ├── test_clamps.S │ │ │ ├── test_extui.S │ │ │ ├── test_fail.S │ │ │ ├── test_interrupt.S │ │ │ ├── test_loop.S │ │ │ ├── test_mac16.S │ │ │ ├── test_max.S │ │ │ ├── test_min.S │ │ │ ├── test_mmu.S │ │ │ ├── test_mul16.S │ │ │ ├── test_mul32.S │ │ │ ├── test_nsa.S │ │ │ ├── test_pipeline.S │ │ │ ├── test_quo.S │ │ │ ├── test_rem.S │ │ │ ├── test_rst0.S │ │ │ ├── test_s32c1i.S │ │ │ ├── test_sar.S │ │ │ ├── test_sext.S │ │ │ ├── test_shift.S │ │ │ ├── test_sr.S │ │ │ ├── test_timer.S │ │ │ ├── test_windowed.S │ │ │ └── vectors.S │ ├── tco-test.c │ ├── test-aio.c │ ├── test-arm-mptimer.c │ ├── test-base64.c │ ├── test-bitops.c │ ├── test-blockjob-txn.c │ ├── test-blockjob.c │ ├── test-bufferiszero.c │ ├── test-char.c │ ├── test-clone-visitor.c │ ├── test-coroutine.c │ ├── test-crypto-afsplit.c │ ├── test-crypto-block.c │ ├── test-crypto-cipher.c │ ├── test-crypto-hash.c │ ├── test-crypto-ivgen.c │ ├── test-crypto-pbkdf.c │ ├── test-crypto-secret.c │ ├── test-crypto-tlscredsx509.c │ ├── test-crypto-tlssession.c │ ├── test-crypto-xts.c │ ├── test-cutils.c │ ├── test-filter-mirror.c │ ├── test-filter-redirector.c │ ├── test-hbitmap.c │ ├── test-int128.c │ ├── test-io-channel-buffer.c │ ├── test-io-channel-command.c │ ├── test-io-channel-file.c │ ├── test-io-channel-socket.c │ ├── test-io-channel-tls.c │ ├── test-io-task.c │ ├── test-iov.c │ ├── test-logging.c │ ├── test-mul64.c │ ├── test-netfilter.c │ ├── test-opts-visitor.c │ ├── test-qdev-global-props.c │ ├── test-qdist.c │ ├── test-qemu-opts.c │ ├── test-qga.c │ ├── test-qht-par.c │ ├── test-qht.c │ ├── test-qmp-commands.c │ ├── test-qmp-event.c │ ├── test-qobject-input-strict.c │ ├── test-qobject-input-visitor.c │ ├── test-qobject-output-visitor.c │ ├── test-rcu-list.c │ ├── test-replication.c │ ├── test-string-input-visitor.c │ ├── test-string-output-visitor.c │ ├── test-thread-pool.c │ ├── test-throttle.c │ ├── test-timed-average.c │ ├── test-uuid.c │ ├── test-visitor-serialization.c │ ├── test-vmstate.c │ ├── test-write-threshold.c │ ├── test-x86-cpuid-compat.c │ ├── test-x86-cpuid.c │ ├── test-xbzrle.c │ ├── tmp105-test.c │ ├── tpci200-test.c │ ├── usb-hcd-ehci-test.c │ ├── usb-hcd-ohci-test.c │ ├── usb-hcd-uhci-test.c │ ├── usb-hcd-xhci-test.c │ ├── vhost-user-bridge.c │ ├── vhost-user-test.c │ ├── virtio-9p-test.c │ ├── virtio-balloon-test.c │ ├── virtio-blk-test.c │ ├── virtio-console-test.c │ ├── virtio-net-test.c │ ├── virtio-rng-test.c │ ├── virtio-scsi-test.c │ ├── virtio-serial-test.c │ ├── vmstate-static-checker-data │ │ ├── dump1.json │ │ └── dump2.json │ ├── vmxnet3-test.c │ └── wdt_ib700-test.c ├── thread-pool.c ├── thunk.c ├── tpm.c ├── trace-events ├── trace │ ├── Makefile.objs │ ├── control-internal.h │ ├── control-target.c │ ├── control.c │ ├── control.h │ ├── event-internal.h │ ├── ftrace.c │ ├── ftrace.h │ ├── mem-internal.h │ ├── mem.h │ ├── qmp.c │ ├── simple.c │ └── simple.h ├── translate-all.c ├── translate-all.h ├── translate-common.c ├── ui │ ├── Makefile.objs │ ├── cocoa.m │ ├── console-gl.c │ ├── console.c │ ├── curses.c │ ├── curses_keys.h │ ├── cursor.c │ ├── cursor_hidden.xpm │ ├── cursor_left_ptr.xpm │ ├── egl-context.c │ ├── egl-helpers.c │ ├── gtk-egl.c │ ├── gtk-gl-area.c │ ├── gtk.c │ ├── input-keymap.c │ ├── input-legacy.c │ ├── input-linux.c │ ├── input.c │ ├── keymaps.c │ ├── keymaps.h │ ├── qemu-pixman.c │ ├── qemu-x509.h │ ├── sdl.c │ ├── sdl2-2d.c │ ├── sdl2-gl.c │ ├── sdl2-input.c │ ├── sdl2-keymap.h │ ├── sdl2.c │ ├── sdl_keysym.h │ ├── sdl_zoom.c │ ├── sdl_zoom.h │ ├── sdl_zoom_template.h │ ├── shader.c │ ├── shader │ │ ├── texture-blit.frag │ │ └── texture-blit.vert │ ├── spice-core.c │ ├── spice-display.c │ ├── spice-input.c │ ├── trace-events │ ├── vgafont.h │ ├── vnc-auth-sasl.c │ ├── vnc-auth-sasl.h │ ├── vnc-auth-vencrypt.c │ ├── vnc-auth-vencrypt.h │ ├── vnc-enc-hextile-template.h │ ├── vnc-enc-hextile.c │ ├── vnc-enc-tight.c │ ├── vnc-enc-tight.h │ ├── vnc-enc-zlib.c │ ├── vnc-enc-zrle-template.c │ ├── vnc-enc-zrle.c │ ├── vnc-enc-zrle.h │ ├── vnc-enc-zywrle-template.c │ ├── vnc-enc-zywrle.h │ ├── vnc-jobs.c │ ├── vnc-jobs.h │ ├── vnc-palette.c │ ├── vnc-palette.h │ ├── vnc-ws.c │ ├── vnc-ws.h │ ├── vnc.c │ ├── vnc.h │ ├── vnc_keysym.h │ ├── x_keymap.c │ └── x_keymap.h ├── user-exec.c ├── util │ ├── Makefile.objs │ ├── acl.c │ ├── base64.c │ ├── bitmap.c │ ├── bitops.c │ ├── buffer.c │ ├── bufferiszero.c │ ├── compatfd.c │ ├── coroutine-gthread.c │ ├── coroutine-sigaltstack.c │ ├── coroutine-ucontext.c │ ├── coroutine-win32.c │ ├── crc32c.c │ ├── cutils.c │ ├── envlist.c │ ├── error.c │ ├── event_notifier-posix.c │ ├── event_notifier-win32.c │ ├── fifo8.c │ ├── getauxval.c │ ├── hbitmap.c │ ├── hexdump.c │ ├── host-utils.c │ ├── id.c │ ├── iov.c │ ├── log.c │ ├── memfd.c │ ├── mmap-alloc.c │ ├── module.c │ ├── notify.c │ ├── osdep.c │ ├── oslib-posix.c │ ├── oslib-win32.c │ ├── path.c │ ├── qdist.c │ ├── qemu-config.c │ ├── qemu-coroutine-io.c │ ├── qemu-coroutine-lock.c │ ├── qemu-coroutine-sleep.c │ ├── qemu-coroutine.c │ ├── qemu-error.c │ ├── qemu-openpty.c │ ├── qemu-option.c │ ├── qemu-progress.c │ ├── qemu-sockets.c │ ├── qemu-thread-posix.c │ ├── qemu-thread-win32.c │ ├── qemu-timer-common.c │ ├── qht.c │ ├── range.c │ ├── rcu.c │ ├── readline.c │ ├── throttle.c │ ├── timed-average.c │ ├── trace-events │ ├── unicode.c │ ├── uri.c │ └── uuid.c ├── version.rc ├── vl.c ├── vmos.h ├── vmos.h.bak ├── xen-common-stub.c ├── xen-common.c ├── xen-hvm-stub.c ├── xen-hvm.c └── xen-mapcache.c ├── Aurora-uio ├── Makefile ├── doit.sh ├── uio_aurora.c └── uio_user.c ├── Aurora-usb-sgx ├── .cproject ├── .project ├── .settings │ └── language.settings.xml ├── App │ ├── App.cpp │ └── App.h ├── Enclave │ ├── Enclave.config.xml │ ├── Enclave.cpp │ ├── Enclave.edl │ ├── Enclave.h │ ├── Enclave.lds │ ├── Enclave_debug.lds │ ├── Enclave_private.pem │ └── md5-fast.S ├── Makefile └── README.txt ├── IEEE-TIFS-2020 ├── Aurora-desktop.pptx ├── IEEEtran.cls ├── article.bib ├── article.tex ├── aurora-figs.vsdx └── figures │ ├── arch.pdf │ ├── mutual.pdf │ ├── ssh.pdf │ ├── ssl.pdf │ └── workflow.pdf ├── README.md ├── seabios-keyboard ├── .gitignore ├── COPYING ├── COPYING.LESSER ├── Makefile ├── README ├── docs │ ├── Build_overview.md │ ├── Contributing.md │ ├── Debugging.md │ ├── Developer_Documentation.md │ ├── Developer_links.md │ ├── Download.md │ ├── Execution_and_code_flow.md │ ├── Linking_overview.md │ ├── Mailinglist.md │ ├── Memory_Model.md │ ├── README │ ├── Releases.md │ ├── Runtime_config.md │ ├── SeaBIOS.md │ └── SeaVGABIOS.md ├── doit.sh ├── scripts │ ├── acpi_extract.py │ ├── acpi_extract_preprocess.py │ ├── buildrom.py │ ├── buildversion.py │ ├── checkrom.py │ ├── checkstack.py │ ├── checksum.py │ ├── encodeint.py │ ├── gen-offsets.sh │ ├── kconfig │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── POTFILES.in │ │ ├── check.sh │ │ ├── conf.c │ │ ├── confdata.c │ │ ├── expr.c │ │ ├── expr.h │ │ ├── gconf.c │ │ ├── gconf.glade │ │ ├── images.c │ │ ├── kxgettext.c │ │ ├── lex.zconf.c │ │ ├── list.h │ │ ├── lkc.h │ │ ├── lkc_proto.h │ │ ├── lxdialog │ │ │ ├── .gitignore │ │ │ ├── BIG.FAT.WARNING │ │ │ ├── check-lxdialog.sh │ │ │ ├── checklist.c │ │ │ ├── dialog.h │ │ │ ├── inputbox.c │ │ │ ├── menubox.c │ │ │ ├── textbox.c │ │ │ ├── util.c │ │ │ └── yesno.c │ │ ├── mconf.c │ │ ├── menu.c │ │ ├── merge_config.sh │ │ ├── nconf.c │ │ ├── nconf.gui.c │ │ ├── nconf.h │ │ ├── qconf.cc │ │ ├── qconf.h │ │ ├── streamline_config.pl │ │ ├── symbol.c │ │ ├── util.c │ │ ├── zconf.gperf │ │ ├── zconf.hash.c_shipped │ │ ├── zconf.l │ │ ├── zconf.lex.c_shipped │ │ ├── zconf.tab.c_shipped │ │ └── zconf.y │ ├── layoutrom.py │ ├── python23compat.py │ ├── readserial.py │ ├── tarball.sh │ ├── test-build.sh │ ├── transdump.py │ └── vgafixup.py ├── src │ ├── Kconfig │ ├── apm.c │ ├── asm-offsets.c │ ├── biosvar.h │ ├── block.c │ ├── block.h │ ├── bmp.c │ ├── boot.c │ ├── bootsplash.c │ ├── bregs.h │ ├── byteorder.h │ ├── cdrom.c │ ├── clock.c │ ├── code16gcc.s │ ├── config.h │ ├── cp437.c │ ├── cp437.h │ ├── disk.c │ ├── e820map.c │ ├── e820map.h │ ├── entryfuncs.S │ ├── farptr.h │ ├── font.c │ ├── fw │ │ ├── acpi-dsdt-cpu-hotplug.dsl │ │ ├── acpi-dsdt-dbug.dsl │ │ ├── acpi-dsdt-hpet.dsl │ │ ├── acpi-dsdt-isa.dsl │ │ ├── acpi-dsdt-pci-crs.dsl │ │ ├── acpi-dsdt.dsl │ │ ├── acpi-dsdt.hex │ │ ├── acpi.c │ │ ├── biostables.c │ │ ├── coreboot.c │ │ ├── csm.c │ │ ├── dev-pci.h │ │ ├── dev-piix.h │ │ ├── dev-q35.h │ │ ├── lzmadecode.c │ │ ├── lzmadecode.h │ │ ├── mptable.c │ │ ├── mtrr.c │ │ ├── multiboot.c │ │ ├── paravirt.c │ │ ├── paravirt.h │ │ ├── pciinit.c │ │ ├── pirtable.c │ │ ├── q35-acpi-dsdt.dsl │ │ ├── romfile_loader.c │ │ ├── romfile_loader.h │ │ ├── shadow.c │ │ ├── smbios.c │ │ ├── smm.c │ │ ├── smp.c │ │ ├── ssdt-misc.dsl │ │ ├── ssdt-misc.hex │ │ ├── ssdt-pcihp.dsl │ │ ├── ssdt-pcihp.hex │ │ ├── ssdt-proc.dsl │ │ ├── ssdt-proc.hex │ │ ├── supervisor │ │ │ ├── aead_aes256gcm_aesni.c │ │ │ ├── apic.c │ │ │ ├── boundary_check.c │ │ │ ├── clock.c │ │ │ ├── debug.c │ │ │ ├── include │ │ │ │ ├── ipxe │ │ │ │ │ └── pcnet32.h │ │ │ │ ├── kvm-unit-tests │ │ │ │ │ ├── apic-defs.h │ │ │ │ │ ├── apic.h │ │ │ │ │ └── msr.h │ │ │ │ ├── libsodium │ │ │ │ │ ├── sodium.h │ │ │ │ │ └── sodium │ │ │ │ │ │ ├── core.h │ │ │ │ │ │ ├── crypto_aead_aes256gcm.h │ │ │ │ │ │ ├── crypto_aead_chacha20poly1305.h │ │ │ │ │ │ ├── crypto_aead_xchacha20poly1305.h │ │ │ │ │ │ ├── crypto_auth.h │ │ │ │ │ │ ├── crypto_auth_hmacsha256.h │ │ │ │ │ │ ├── crypto_auth_hmacsha512.h │ │ │ │ │ │ ├── crypto_auth_hmacsha512256.h │ │ │ │ │ │ ├── crypto_box.h │ │ │ │ │ │ ├── crypto_box_curve25519xchacha20poly1305.h │ │ │ │ │ │ ├── crypto_box_curve25519xsalsa20poly1305.h │ │ │ │ │ │ ├── crypto_core_ed25519.h │ │ │ │ │ │ ├── crypto_core_hchacha20.h │ │ │ │ │ │ ├── crypto_core_hsalsa20.h │ │ │ │ │ │ ├── crypto_core_salsa20.h │ │ │ │ │ │ ├── crypto_core_salsa2012.h │ │ │ │ │ │ ├── crypto_core_salsa208.h │ │ │ │ │ │ ├── crypto_generichash.h │ │ │ │ │ │ ├── crypto_generichash_blake2b.h │ │ │ │ │ │ ├── crypto_hash.h │ │ │ │ │ │ ├── crypto_hash_sha256.h │ │ │ │ │ │ ├── crypto_hash_sha512.h │ │ │ │ │ │ ├── crypto_kdf.h │ │ │ │ │ │ ├── crypto_kdf_blake2b.h │ │ │ │ │ │ ├── crypto_kx.h │ │ │ │ │ │ ├── crypto_onetimeauth.h │ │ │ │ │ │ ├── crypto_onetimeauth_poly1305.h │ │ │ │ │ │ ├── crypto_pwhash.h │ │ │ │ │ │ ├── crypto_pwhash_argon2i.h │ │ │ │ │ │ ├── crypto_pwhash_argon2id.h │ │ │ │ │ │ ├── crypto_pwhash_scryptsalsa208sha256.h │ │ │ │ │ │ ├── crypto_scalarmult.h │ │ │ │ │ │ ├── crypto_scalarmult_curve25519.h │ │ │ │ │ │ ├── crypto_scalarmult_ed25519.h │ │ │ │ │ │ ├── crypto_secretbox.h │ │ │ │ │ │ ├── crypto_secretbox_xchacha20poly1305.h │ │ │ │ │ │ ├── crypto_secretbox_xsalsa20poly1305.h │ │ │ │ │ │ ├── crypto_secretstream_xchacha20poly1305.h │ │ │ │ │ │ ├── crypto_shorthash.h │ │ │ │ │ │ ├── crypto_shorthash_siphash24.h │ │ │ │ │ │ ├── crypto_sign.h │ │ │ │ │ │ ├── crypto_sign_ed25519.h │ │ │ │ │ │ ├── crypto_sign_edwards25519sha512batch.h │ │ │ │ │ │ ├── crypto_stream.h │ │ │ │ │ │ ├── crypto_stream_chacha20.h │ │ │ │ │ │ ├── crypto_stream_salsa20.h │ │ │ │ │ │ ├── crypto_stream_salsa2012.h │ │ │ │ │ │ ├── crypto_stream_salsa208.h │ │ │ │ │ │ ├── crypto_stream_xchacha20.h │ │ │ │ │ │ ├── crypto_stream_xsalsa20.h │ │ │ │ │ │ ├── crypto_verify_16.h │ │ │ │ │ │ ├── crypto_verify_32.h │ │ │ │ │ │ ├── crypto_verify_64.h │ │ │ │ │ │ ├── export.h │ │ │ │ │ │ ├── private │ │ │ │ │ │ ├── common.h │ │ │ │ │ │ ├── ed25519_ref10.h │ │ │ │ │ │ ├── ed25519_ref10_fe_25_5.h │ │ │ │ │ │ ├── ed25519_ref10_fe_51.h │ │ │ │ │ │ ├── implementations.h │ │ │ │ │ │ ├── mutex.h │ │ │ │ │ │ └── sse2_64_32.h │ │ │ │ │ │ ├── randombytes.h │ │ │ │ │ │ ├── randombytes_nativeclient.h │ │ │ │ │ │ ├── randombytes_salsa20_random.h │ │ │ │ │ │ ├── randombytes_sysrandom.h │ │ │ │ │ │ ├── runtime.h │ │ │ │ │ │ ├── utils.h │ │ │ │ │ │ ├── version.h │ │ │ │ │ │ └── version.h.in │ │ │ │ ├── linux │ │ │ │ │ ├── asm │ │ │ │ │ │ ├── Kbuild │ │ │ │ │ │ ├── a.out-core.h │ │ │ │ │ │ ├── acenv.h │ │ │ │ │ │ ├── acpi.h │ │ │ │ │ │ ├── agp.h │ │ │ │ │ │ ├── alternative-asm.h │ │ │ │ │ │ ├── alternative.h │ │ │ │ │ │ ├── amd_nb.h │ │ │ │ │ │ ├── apb_timer.h │ │ │ │ │ │ ├── apic.h │ │ │ │ │ │ ├── apic_flat_64.h │ │ │ │ │ │ ├── apicdef.h │ │ │ │ │ │ ├── apm.h │ │ │ │ │ │ ├── arch_hweight.h │ │ │ │ │ │ ├── archrandom.h │ │ │ │ │ │ ├── asm-offsets.h │ │ │ │ │ │ ├── asm-prototypes.h │ │ │ │ │ │ ├── asm.h │ │ │ │ │ │ ├── atomic.h │ │ │ │ │ │ ├── atomic64_32.h │ │ │ │ │ │ ├── atomic64_64.h │ │ │ │ │ │ ├── barrier.h │ │ │ │ │ │ ├── bios_ebda.h │ │ │ │ │ │ ├── bitops.h │ │ │ │ │ │ ├── boot.h │ │ │ │ │ │ ├── bootparam_utils.h │ │ │ │ │ │ ├── bug.h │ │ │ │ │ │ ├── bugs.h │ │ │ │ │ │ ├── cache.h │ │ │ │ │ │ ├── cacheflush.h │ │ │ │ │ │ ├── calgary.h │ │ │ │ │ │ ├── ce4100.h │ │ │ │ │ │ ├── checksum.h │ │ │ │ │ │ ├── checksum_32.h │ │ │ │ │ │ ├── checksum_64.h │ │ │ │ │ │ ├── clocksource.h │ │ │ │ │ │ ├── cmdline.h │ │ │ │ │ │ ├── cmpxchg.h │ │ │ │ │ │ ├── cmpxchg_32.h │ │ │ │ │ │ ├── cmpxchg_64.h │ │ │ │ │ │ ├── compat.h │ │ │ │ │ │ ├── cpu.h │ │ │ │ │ │ ├── cpu_device_id.h │ │ │ │ │ │ ├── cpufeature.h │ │ │ │ │ │ ├── cpufeatures.h │ │ │ │ │ │ ├── cpumask.h │ │ │ │ │ │ ├── crash.h │ │ │ │ │ │ ├── crypto │ │ │ │ │ │ │ ├── aes.h │ │ │ │ │ │ │ ├── camellia.h │ │ │ │ │ │ │ ├── glue_helper.h │ │ │ │ │ │ │ ├── serpent-avx.h │ │ │ │ │ │ │ ├── serpent-sse2.h │ │ │ │ │ │ │ └── twofish.h │ │ │ │ │ │ ├── current.h │ │ │ │ │ │ ├── debugreg.h │ │ │ │ │ │ ├── delay.h │ │ │ │ │ │ ├── desc.h │ │ │ │ │ │ ├── desc_defs.h │ │ │ │ │ │ ├── device.h │ │ │ │ │ │ ├── disabled-features.h │ │ │ │ │ │ ├── div64.h │ │ │ │ │ │ ├── dma-mapping.h │ │ │ │ │ │ ├── dma.h │ │ │ │ │ │ ├── dmi.h │ │ │ │ │ │ ├── dwarf2.h │ │ │ │ │ │ ├── e820.h │ │ │ │ │ │ ├── edac.h │ │ │ │ │ │ ├── efi.h │ │ │ │ │ │ ├── elf.h │ │ │ │ │ │ ├── emergency-restart.h │ │ │ │ │ │ ├── entry_arch.h │ │ │ │ │ │ ├── espfix.h │ │ │ │ │ │ ├── exec.h │ │ │ │ │ │ ├── export.h │ │ │ │ │ │ ├── extable.h │ │ │ │ │ │ ├── fb.h │ │ │ │ │ │ ├── fixmap.h │ │ │ │ │ │ ├── floppy.h │ │ │ │ │ │ ├── fpu │ │ │ │ │ │ │ ├── api.h │ │ │ │ │ │ │ ├── internal.h │ │ │ │ │ │ │ ├── regset.h │ │ │ │ │ │ │ ├── signal.h │ │ │ │ │ │ │ ├── types.h │ │ │ │ │ │ │ └── xstate.h │ │ │ │ │ │ ├── frame.h │ │ │ │ │ │ ├── ftrace.h │ │ │ │ │ │ ├── futex.h │ │ │ │ │ │ ├── gart.h │ │ │ │ │ │ ├── genapic.h │ │ │ │ │ │ ├── geode.h │ │ │ │ │ │ ├── hardirq.h │ │ │ │ │ │ ├── highmem.h │ │ │ │ │ │ ├── hpet.h │ │ │ │ │ │ ├── hugetlb.h │ │ │ │ │ │ ├── hw_breakpoint.h │ │ │ │ │ │ ├── hw_irq.h │ │ │ │ │ │ ├── hypertransport.h │ │ │ │ │ │ ├── hypervisor.h │ │ │ │ │ │ ├── i8259.h │ │ │ │ │ │ ├── ia32.h │ │ │ │ │ │ ├── ia32_unistd.h │ │ │ │ │ │ ├── imr.h │ │ │ │ │ │ ├── inat.h │ │ │ │ │ │ ├── inat_types.h │ │ │ │ │ │ ├── init.h │ │ │ │ │ │ ├── insn.h │ │ │ │ │ │ ├── inst.h │ │ │ │ │ │ ├── intel-family.h │ │ │ │ │ │ ├── intel-mid.h │ │ │ │ │ │ ├── intel_mid_vrtc.h │ │ │ │ │ │ ├── intel_pmc_ipc.h │ │ │ │ │ │ ├── intel_pt.h │ │ │ │ │ │ ├── intel_punit_ipc.h │ │ │ │ │ │ ├── intel_rdt.h │ │ │ │ │ │ ├── intel_rdt_common.h │ │ │ │ │ │ ├── intel_scu_ipc.h │ │ │ │ │ │ ├── intel_telemetry.h │ │ │ │ │ │ ├── io.h │ │ │ │ │ │ ├── io_apic.h │ │ │ │ │ │ ├── iomap.h │ │ │ │ │ │ ├── iommu.h │ │ │ │ │ │ ├── iommu_table.h │ │ │ │ │ │ ├── iosf_mbi.h │ │ │ │ │ │ ├── ipi.h │ │ │ │ │ │ ├── irq.h │ │ │ │ │ │ ├── irq_regs.h │ │ │ │ │ │ ├── irq_remapping.h │ │ │ │ │ │ ├── irq_vectors.h │ │ │ │ │ │ ├── irq_work.h │ │ │ │ │ │ ├── irqdomain.h │ │ │ │ │ │ ├── irqflags.h │ │ │ │ │ │ ├── ist.h │ │ │ │ │ │ ├── jump_label.h │ │ │ │ │ │ ├── kasan.h │ │ │ │ │ │ ├── kaslr.h │ │ │ │ │ │ ├── kbdleds.h │ │ │ │ │ │ ├── kdebug.h │ │ │ │ │ │ ├── kexec-bzimage64.h │ │ │ │ │ │ ├── kexec.h │ │ │ │ │ │ ├── kgdb.h │ │ │ │ │ │ ├── kmap_types.h │ │ │ │ │ │ ├── kmemcheck.h │ │ │ │ │ │ ├── kprobes.h │ │ │ │ │ │ ├── kvm_emulate.h │ │ │ │ │ │ ├── kvm_guest.h │ │ │ │ │ │ ├── kvm_host.h │ │ │ │ │ │ ├── kvm_page_track.h │ │ │ │ │ │ ├── kvm_para.h │ │ │ │ │ │ ├── kvmclock.h │ │ │ │ │ │ ├── lguest.h │ │ │ │ │ │ ├── lguest_hcall.h │ │ │ │ │ │ ├── linkage.h │ │ │ │ │ │ ├── livepatch.h │ │ │ │ │ │ ├── local.h │ │ │ │ │ │ ├── local64.h │ │ │ │ │ │ ├── mach_timer.h │ │ │ │ │ │ ├── mach_traps.h │ │ │ │ │ │ ├── math_emu.h │ │ │ │ │ │ ├── mc146818rtc.h │ │ │ │ │ │ ├── mce.h │ │ │ │ │ │ ├── microcode.h │ │ │ │ │ │ ├── microcode_amd.h │ │ │ │ │ │ ├── microcode_intel.h │ │ │ │ │ │ ├── misc.h │ │ │ │ │ │ ├── mmconfig.h │ │ │ │ │ │ ├── mmu.h │ │ │ │ │ │ ├── mmu_context.h │ │ │ │ │ │ ├── mmx.h │ │ │ │ │ │ ├── mmzone.h │ │ │ │ │ │ ├── mmzone_32.h │ │ │ │ │ │ ├── mmzone_64.h │ │ │ │ │ │ ├── module.h │ │ │ │ │ │ ├── mpspec.h │ │ │ │ │ │ ├── mpspec_def.h │ │ │ │ │ │ ├── mpx.h │ │ │ │ │ │ ├── mshyperv.h │ │ │ │ │ │ ├── msi.h │ │ │ │ │ │ ├── msidef.h │ │ │ │ │ │ ├── msr-index.h │ │ │ │ │ │ ├── msr-trace.h │ │ │ │ │ │ ├── msr.h │ │ │ │ │ │ ├── mtrr.h │ │ │ │ │ │ ├── mwait.h │ │ │ │ │ │ ├── nmi.h │ │ │ │ │ │ ├── nops.h │ │ │ │ │ │ ├── numa.h │ │ │ │ │ │ ├── numa_32.h │ │ │ │ │ │ ├── numachip │ │ │ │ │ │ │ ├── numachip.h │ │ │ │ │ │ │ └── numachip_csr.h │ │ │ │ │ │ ├── olpc.h │ │ │ │ │ │ ├── olpc_ofw.h │ │ │ │ │ │ ├── page.h │ │ │ │ │ │ ├── page_32.h │ │ │ │ │ │ ├── page_32_types.h │ │ │ │ │ │ ├── page_64.h │ │ │ │ │ │ ├── page_64_types.h │ │ │ │ │ │ ├── page_types.h │ │ │ │ │ │ ├── paravirt.h │ │ │ │ │ │ ├── paravirt_types.h │ │ │ │ │ │ ├── parport.h │ │ │ │ │ │ ├── pat.h │ │ │ │ │ │ ├── pci-direct.h │ │ │ │ │ │ ├── pci-functions.h │ │ │ │ │ │ ├── pci.h │ │ │ │ │ │ ├── pci_64.h │ │ │ │ │ │ ├── pci_x86.h │ │ │ │ │ │ ├── percpu.h │ │ │ │ │ │ ├── perf_event.h │ │ │ │ │ │ ├── perf_event_p4.h │ │ │ │ │ │ ├── pgalloc.h │ │ │ │ │ │ ├── pgtable-2level.h │ │ │ │ │ │ ├── pgtable-2level_types.h │ │ │ │ │ │ ├── pgtable-3level.h │ │ │ │ │ │ ├── pgtable-3level_types.h │ │ │ │ │ │ ├── pgtable.h │ │ │ │ │ │ ├── pgtable_32.h │ │ │ │ │ │ ├── pgtable_32_types.h │ │ │ │ │ │ ├── pgtable_64.h │ │ │ │ │ │ ├── pgtable_64_types.h │ │ │ │ │ │ ├── pgtable_types.h │ │ │ │ │ │ ├── pkeys.h │ │ │ │ │ │ ├── platform_sst_audio.h │ │ │ │ │ │ ├── pm-trace.h │ │ │ │ │ │ ├── pmc_core.h │ │ │ │ │ │ ├── pmem.h │ │ │ │ │ │ ├── posix_types.h │ │ │ │ │ │ ├── preempt.h │ │ │ │ │ │ ├── probe_roms.h │ │ │ │ │ │ ├── processor-cyrix.h │ │ │ │ │ │ ├── processor-flags.h │ │ │ │ │ │ ├── processor.h │ │ │ │ │ │ ├── prom.h │ │ │ │ │ │ ├── proto.h │ │ │ │ │ │ ├── ptrace.h │ │ │ │ │ │ ├── purgatory.h │ │ │ │ │ │ ├── pvclock-abi.h │ │ │ │ │ │ ├── pvclock.h │ │ │ │ │ │ ├── qrwlock.h │ │ │ │ │ │ ├── qspinlock.h │ │ │ │ │ │ ├── qspinlock_paravirt.h │ │ │ │ │ │ ├── realmode.h │ │ │ │ │ │ ├── reboot.h │ │ │ │ │ │ ├── reboot_fixups.h │ │ │ │ │ │ ├── required-features.h │ │ │ │ │ │ ├── rio.h │ │ │ │ │ │ ├── rmwcc.h │ │ │ │ │ │ ├── rwsem.h │ │ │ │ │ │ ├── seccomp.h │ │ │ │ │ │ ├── sections.h │ │ │ │ │ │ ├── segment.h │ │ │ │ │ │ ├── serial.h │ │ │ │ │ │ ├── setup.h │ │ │ │ │ │ ├── setup_arch.h │ │ │ │ │ │ ├── sgx.h │ │ │ │ │ │ ├── shmparam.h │ │ │ │ │ │ ├── sigcontext.h │ │ │ │ │ │ ├── sigframe.h │ │ │ │ │ │ ├── sighandling.h │ │ │ │ │ │ ├── signal.h │ │ │ │ │ │ ├── simd.h │ │ │ │ │ │ ├── smap.h │ │ │ │ │ │ ├── smp.h │ │ │ │ │ │ ├── sparsemem.h │ │ │ │ │ │ ├── special_insns.h │ │ │ │ │ │ ├── spinlock.h │ │ │ │ │ │ ├── spinlock_types.h │ │ │ │ │ │ ├── sta2x11.h │ │ │ │ │ │ ├── stackprotector.h │ │ │ │ │ │ ├── stacktrace.h │ │ │ │ │ │ ├── string.h │ │ │ │ │ │ ├── string_32.h │ │ │ │ │ │ ├── string_64.h │ │ │ │ │ │ ├── suspend.h │ │ │ │ │ │ ├── suspend_32.h │ │ │ │ │ │ ├── suspend_64.h │ │ │ │ │ │ ├── svm.h │ │ │ │ │ │ ├── swiotlb.h │ │ │ │ │ │ ├── switch_to.h │ │ │ │ │ │ ├── sync_bitops.h │ │ │ │ │ │ ├── sys_ia32.h │ │ │ │ │ │ ├── syscall.h │ │ │ │ │ │ ├── syscalls.h │ │ │ │ │ │ ├── sysfb.h │ │ │ │ │ │ ├── tce.h │ │ │ │ │ │ ├── text-patching.h │ │ │ │ │ │ ├── thread_info.h │ │ │ │ │ │ ├── time.h │ │ │ │ │ │ ├── timer.h │ │ │ │ │ │ ├── timex.h │ │ │ │ │ │ ├── tlb.h │ │ │ │ │ │ ├── tlbflush.h │ │ │ │ │ │ ├── topology.h │ │ │ │ │ │ ├── trace │ │ │ │ │ │ │ ├── exceptions.h │ │ │ │ │ │ │ ├── fpu.h │ │ │ │ │ │ │ ├── irq_vectors.h │ │ │ │ │ │ │ └── mpx.h │ │ │ │ │ │ ├── trace_clock.h │ │ │ │ │ │ ├── traps.h │ │ │ │ │ │ ├── tsc.h │ │ │ │ │ │ ├── uaccess.h │ │ │ │ │ │ ├── uaccess_32.h │ │ │ │ │ │ ├── uaccess_64.h │ │ │ │ │ │ ├── unaligned.h │ │ │ │ │ │ ├── unistd.h │ │ │ │ │ │ ├── unwind.h │ │ │ │ │ │ ├── uprobes.h │ │ │ │ │ │ ├── user.h │ │ │ │ │ │ ├── user32.h │ │ │ │ │ │ ├── user_32.h │ │ │ │ │ │ ├── user_64.h │ │ │ │ │ │ ├── uv │ │ │ │ │ │ │ ├── bios.h │ │ │ │ │ │ │ ├── uv.h │ │ │ │ │ │ │ ├── uv_bau.h │ │ │ │ │ │ │ ├── uv_hub.h │ │ │ │ │ │ │ ├── uv_irq.h │ │ │ │ │ │ │ └── uv_mmrs.h │ │ │ │ │ │ ├── vdso.h │ │ │ │ │ │ ├── vga.h │ │ │ │ │ │ ├── vgtod.h │ │ │ │ │ │ ├── virtext.h │ │ │ │ │ │ ├── vm86.h │ │ │ │ │ │ ├── vmx.h │ │ │ │ │ │ ├── vsyscall.h │ │ │ │ │ │ ├── vvar.h │ │ │ │ │ │ ├── word-at-a-time.h │ │ │ │ │ │ ├── x2apic.h │ │ │ │ │ │ ├── x86_init.h │ │ │ │ │ │ ├── xen │ │ │ │ │ │ │ ├── cpuid.h │ │ │ │ │ │ │ ├── events.h │ │ │ │ │ │ │ ├── hypercall.h │ │ │ │ │ │ │ ├── hypervisor.h │ │ │ │ │ │ │ ├── interface.h │ │ │ │ │ │ │ ├── interface_32.h │ │ │ │ │ │ │ ├── interface_64.h │ │ │ │ │ │ │ ├── page-coherent.h │ │ │ │ │ │ │ ├── page.h │ │ │ │ │ │ │ ├── pci.h │ │ │ │ │ │ │ ├── swiotlb-xen.h │ │ │ │ │ │ │ └── trace_types.h │ │ │ │ │ │ ├── xor.h │ │ │ │ │ │ ├── xor_32.h │ │ │ │ │ │ ├── xor_64.h │ │ │ │ │ │ └── xor_avx.h │ │ │ │ │ └── i8042-io.h │ │ │ │ ├── microbench.h │ │ │ │ └── smx.h │ │ │ ├── pcnet32.c │ │ │ ├── randombytes.c │ │ │ ├── rdrand.c │ │ │ ├── ring_buffer.c │ │ │ ├── rtc.c │ │ │ └── supervisor.c │ │ ├── xen.c │ │ └── xen.h │ ├── gen-defs.h │ ├── hw │ │ ├── ahci.c │ │ ├── ahci.h │ │ ├── ata.c │ │ ├── ata.h │ │ ├── blockcmd.c │ │ ├── blockcmd.h │ │ ├── dma.c │ │ ├── esp-scsi.c │ │ ├── esp-scsi.h │ │ ├── floppy.c │ │ ├── lsi-scsi.c │ │ ├── lsi-scsi.h │ │ ├── megasas.c │ │ ├── megasas.h │ │ ├── mpt-scsi.c │ │ ├── mpt-scsi.h │ │ ├── nvme-int.h │ │ ├── nvme.c │ │ ├── nvme.h │ │ ├── pci.c │ │ ├── pci.h │ │ ├── pci_ids.h │ │ ├── pci_regs.h │ │ ├── pcidevice.c │ │ ├── pcidevice.h │ │ ├── pic.c │ │ ├── pic.h │ │ ├── ps2port.c │ │ ├── ps2port.h │ │ ├── pvscsi.c │ │ ├── pvscsi.h │ │ ├── ramdisk.c │ │ ├── rtc.c │ │ ├── rtc.h │ │ ├── sdcard.c │ │ ├── serialio.c │ │ ├── serialio.h │ │ ├── timer.c │ │ ├── tpm_drivers.c │ │ ├── tpm_drivers.h │ │ ├── usb-ehci.c │ │ ├── usb-ehci.h │ │ ├── usb-hid.c │ │ ├── usb-hid.h │ │ ├── usb-hub.c │ │ ├── usb-hub.h │ │ ├── usb-msc.c │ │ ├── usb-msc.h │ │ ├── usb-ohci.c │ │ ├── usb-ohci.h │ │ ├── usb-uas.c │ │ ├── usb-uas.h │ │ ├── usb-uhci.c │ │ ├── usb-uhci.h │ │ ├── usb-xhci.c │ │ ├── usb-xhci.h │ │ ├── usb.c │ │ ├── usb.h │ │ ├── virtio-blk.c │ │ ├── virtio-blk.h │ │ ├── virtio-pci.c │ │ ├── virtio-pci.h │ │ ├── virtio-ring.c │ │ ├── virtio-ring.h │ │ ├── virtio-scsi.c │ │ └── virtio-scsi.h │ ├── jpeg.c │ ├── kbd.c │ ├── list.h │ ├── malloc.c │ ├── malloc.h │ ├── memmap.h │ ├── misc.c │ ├── mouse.c │ ├── optionroms.c │ ├── output.c │ ├── output.h │ ├── pcibios.c │ ├── pmm.c │ ├── pnpbios.c │ ├── post.c │ ├── resume.c │ ├── romfile.c │ ├── romfile.h │ ├── romlayout.S │ ├── sercon.c │ ├── serial.c │ ├── sha1.c │ ├── sha1.h │ ├── stacks.c │ ├── stacks.h │ ├── std │ │ ├── LegacyBios.h │ │ ├── acpi.h │ │ ├── bda.h │ │ ├── disk.h │ │ ├── mptable.h │ │ ├── multiboot.h │ │ ├── optionrom.h │ │ ├── pirtable.h │ │ ├── pmm.h │ │ ├── pnpbios.h │ │ ├── smbios.h │ │ ├── tcg.h │ │ ├── vbe.h │ │ └── vga.h │ ├── string.c │ ├── string.h │ ├── system.c │ ├── tcgbios.c │ ├── tcgbios.h │ ├── types.h │ ├── util.h │ ├── version.c │ ├── vgahooks.c │ ├── x86.c │ └── x86.h └── vgasrc │ ├── Kconfig │ ├── bochsvga.c │ ├── bochsvga.h │ ├── cbvga.c │ ├── clext.c │ ├── geodevga.c │ ├── geodevga.h │ ├── stdvga.c │ ├── stdvga.h │ ├── stdvgaio.c │ ├── stdvgamodes.c │ ├── swcursor.c │ ├── vbe.c │ ├── vgabios.c │ ├── vgabios.h │ ├── vgaentry.S │ ├── vgafb.c │ ├── vgafb.h │ ├── vgafonts.c │ ├── vgahw.h │ ├── vgainit.c │ ├── vgalayout.lds.S │ ├── vgautil.h │ └── vgaversion.c ├── seabios-network ├── .gitignore ├── COPYING ├── COPYING.LESSER ├── Makefile ├── README ├── docs │ ├── Build_overview.md │ ├── Contributing.md │ ├── Debugging.md │ ├── Developer_Documentation.md │ ├── Developer_links.md │ ├── Download.md │ ├── Execution_and_code_flow.md │ ├── Linking_overview.md │ ├── Mailinglist.md │ ├── Memory_Model.md │ ├── README │ ├── Releases.md │ ├── Runtime_config.md │ ├── SeaBIOS.md │ └── SeaVGABIOS.md ├── doit.sh ├── scripts │ ├── acpi_extract.py │ ├── acpi_extract_preprocess.py │ ├── buildrom.py │ ├── buildversion.py │ ├── checkrom.py │ ├── checkstack.py │ ├── checksum.py │ ├── encodeint.py │ ├── gen-offsets.sh │ ├── kconfig │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── POTFILES.in │ │ ├── check.sh │ │ ├── conf.c │ │ ├── confdata.c │ │ ├── expr.c │ │ ├── expr.h │ │ ├── gconf.c │ │ ├── gconf.glade │ │ ├── images.c │ │ ├── kxgettext.c │ │ ├── lex.zconf.c │ │ ├── list.h │ │ ├── lkc.h │ │ ├── lkc_proto.h │ │ ├── lxdialog │ │ │ ├── .gitignore │ │ │ ├── BIG.FAT.WARNING │ │ │ ├── check-lxdialog.sh │ │ │ ├── checklist.c │ │ │ ├── dialog.h │ │ │ ├── inputbox.c │ │ │ ├── menubox.c │ │ │ ├── textbox.c │ │ │ ├── util.c │ │ │ └── yesno.c │ │ ├── mconf.c │ │ ├── menu.c │ │ ├── merge_config.sh │ │ ├── nconf.c │ │ ├── nconf.gui.c │ │ ├── nconf.h │ │ ├── qconf.cc │ │ ├── qconf.h │ │ ├── streamline_config.pl │ │ ├── symbol.c │ │ ├── util.c │ │ ├── zconf.gperf │ │ ├── zconf.hash.c_shipped │ │ ├── zconf.l │ │ ├── zconf.lex.c_shipped │ │ ├── zconf.tab.c_shipped │ │ └── zconf.y │ ├── layoutrom.py │ ├── python23compat.py │ ├── readserial.py │ ├── tarball.sh │ ├── test-build.sh │ ├── transdump.py │ └── vgafixup.py ├── src │ ├── Kconfig │ ├── apm.c │ ├── asm-offsets.c │ ├── biosvar.h │ ├── block.c │ ├── block.h │ ├── bmp.c │ ├── boot.c │ ├── bootsplash.c │ ├── bregs.h │ ├── byteorder.h │ ├── cdrom.c │ ├── clock.c │ ├── code16gcc.s │ ├── config.h │ ├── cp437.c │ ├── cp437.h │ ├── disk.c │ ├── e820map.c │ ├── e820map.h │ ├── entryfuncs.S │ ├── farptr.h │ ├── font.c │ ├── fw │ │ ├── acpi-dsdt-cpu-hotplug.dsl │ │ ├── acpi-dsdt-dbug.dsl │ │ ├── acpi-dsdt-hpet.dsl │ │ ├── acpi-dsdt-isa.dsl │ │ ├── acpi-dsdt-pci-crs.dsl │ │ ├── acpi-dsdt.dsl │ │ ├── acpi-dsdt.hex │ │ ├── acpi.c │ │ ├── biostables.c │ │ ├── coreboot.c │ │ ├── csm.c │ │ ├── dev-pci.h │ │ ├── dev-piix.h │ │ ├── dev-q35.h │ │ ├── lzmadecode.c │ │ ├── lzmadecode.h │ │ ├── mptable.c │ │ ├── mtrr.c │ │ ├── multiboot.c │ │ ├── paravirt.c │ │ ├── paravirt.h │ │ ├── pciinit.c │ │ ├── pirtable.c │ │ ├── q35-acpi-dsdt.dsl │ │ ├── romfile_loader.c │ │ ├── romfile_loader.h │ │ ├── shadow.c │ │ ├── smbios.c │ │ ├── smm.c │ │ ├── smp.c │ │ ├── ssdt-misc.dsl │ │ ├── ssdt-misc.hex │ │ ├── ssdt-pcihp.dsl │ │ ├── ssdt-pcihp.hex │ │ ├── ssdt-proc.dsl │ │ ├── ssdt-proc.hex │ │ ├── supervisor │ │ │ ├── aead_aes256gcm_aesni.c │ │ │ ├── apic.c │ │ │ ├── boundary_check.c │ │ │ ├── clock.c │ │ │ ├── debug.c │ │ │ ├── include │ │ │ │ ├── ipxe │ │ │ │ │ └── pcnet32.h │ │ │ │ ├── kvm-unit-tests │ │ │ │ │ ├── apic-defs.h │ │ │ │ │ ├── apic.h │ │ │ │ │ └── msr.h │ │ │ │ ├── libsodium │ │ │ │ │ ├── sodium.h │ │ │ │ │ └── sodium │ │ │ │ │ │ ├── core.h │ │ │ │ │ │ ├── crypto_aead_aes256gcm.h │ │ │ │ │ │ ├── crypto_aead_chacha20poly1305.h │ │ │ │ │ │ ├── crypto_aead_xchacha20poly1305.h │ │ │ │ │ │ ├── crypto_auth.h │ │ │ │ │ │ ├── crypto_auth_hmacsha256.h │ │ │ │ │ │ ├── crypto_auth_hmacsha512.h │ │ │ │ │ │ ├── crypto_auth_hmacsha512256.h │ │ │ │ │ │ ├── crypto_box.h │ │ │ │ │ │ ├── crypto_box_curve25519xchacha20poly1305.h │ │ │ │ │ │ ├── crypto_box_curve25519xsalsa20poly1305.h │ │ │ │ │ │ ├── crypto_core_ed25519.h │ │ │ │ │ │ ├── crypto_core_hchacha20.h │ │ │ │ │ │ ├── crypto_core_hsalsa20.h │ │ │ │ │ │ ├── crypto_core_salsa20.h │ │ │ │ │ │ ├── crypto_core_salsa2012.h │ │ │ │ │ │ ├── crypto_core_salsa208.h │ │ │ │ │ │ ├── crypto_generichash.h │ │ │ │ │ │ ├── crypto_generichash_blake2b.h │ │ │ │ │ │ ├── crypto_hash.h │ │ │ │ │ │ ├── crypto_hash_sha256.h │ │ │ │ │ │ ├── crypto_hash_sha512.h │ │ │ │ │ │ ├── crypto_kdf.h │ │ │ │ │ │ ├── crypto_kdf_blake2b.h │ │ │ │ │ │ ├── crypto_kx.h │ │ │ │ │ │ ├── crypto_onetimeauth.h │ │ │ │ │ │ ├── crypto_onetimeauth_poly1305.h │ │ │ │ │ │ ├── crypto_pwhash.h │ │ │ │ │ │ ├── crypto_pwhash_argon2i.h │ │ │ │ │ │ ├── crypto_pwhash_argon2id.h │ │ │ │ │ │ ├── crypto_pwhash_scryptsalsa208sha256.h │ │ │ │ │ │ ├── crypto_scalarmult.h │ │ │ │ │ │ ├── crypto_scalarmult_curve25519.h │ │ │ │ │ │ ├── crypto_scalarmult_ed25519.h │ │ │ │ │ │ ├── crypto_secretbox.h │ │ │ │ │ │ ├── crypto_secretbox_xchacha20poly1305.h │ │ │ │ │ │ ├── crypto_secretbox_xsalsa20poly1305.h │ │ │ │ │ │ ├── crypto_secretstream_xchacha20poly1305.h │ │ │ │ │ │ ├── crypto_shorthash.h │ │ │ │ │ │ ├── crypto_shorthash_siphash24.h │ │ │ │ │ │ ├── crypto_sign.h │ │ │ │ │ │ ├── crypto_sign_ed25519.h │ │ │ │ │ │ ├── crypto_sign_edwards25519sha512batch.h │ │ │ │ │ │ ├── crypto_stream.h │ │ │ │ │ │ ├── crypto_stream_chacha20.h │ │ │ │ │ │ ├── crypto_stream_salsa20.h │ │ │ │ │ │ ├── crypto_stream_salsa2012.h │ │ │ │ │ │ ├── crypto_stream_salsa208.h │ │ │ │ │ │ ├── crypto_stream_xchacha20.h │ │ │ │ │ │ ├── crypto_stream_xsalsa20.h │ │ │ │ │ │ ├── crypto_verify_16.h │ │ │ │ │ │ ├── crypto_verify_32.h │ │ │ │ │ │ ├── crypto_verify_64.h │ │ │ │ │ │ ├── export.h │ │ │ │ │ │ ├── private │ │ │ │ │ │ ├── common.h │ │ │ │ │ │ ├── ed25519_ref10.h │ │ │ │ │ │ ├── ed25519_ref10_fe_25_5.h │ │ │ │ │ │ ├── ed25519_ref10_fe_51.h │ │ │ │ │ │ ├── implementations.h │ │ │ │ │ │ ├── mutex.h │ │ │ │ │ │ └── sse2_64_32.h │ │ │ │ │ │ ├── randombytes.h │ │ │ │ │ │ ├── randombytes_nativeclient.h │ │ │ │ │ │ ├── randombytes_salsa20_random.h │ │ │ │ │ │ ├── randombytes_sysrandom.h │ │ │ │ │ │ ├── runtime.h │ │ │ │ │ │ ├── utils.h │ │ │ │ │ │ ├── version.h │ │ │ │ │ │ └── version.h.in │ │ │ │ ├── linux │ │ │ │ │ ├── asm │ │ │ │ │ │ ├── Kbuild │ │ │ │ │ │ ├── a.out-core.h │ │ │ │ │ │ ├── acenv.h │ │ │ │ │ │ ├── acpi.h │ │ │ │ │ │ ├── agp.h │ │ │ │ │ │ ├── alternative-asm.h │ │ │ │ │ │ ├── alternative.h │ │ │ │ │ │ ├── amd_nb.h │ │ │ │ │ │ ├── apb_timer.h │ │ │ │ │ │ ├── apic.h │ │ │ │ │ │ ├── apic_flat_64.h │ │ │ │ │ │ ├── apicdef.h │ │ │ │ │ │ ├── apm.h │ │ │ │ │ │ ├── arch_hweight.h │ │ │ │ │ │ ├── archrandom.h │ │ │ │ │ │ ├── asm-offsets.h │ │ │ │ │ │ ├── asm-prototypes.h │ │ │ │ │ │ ├── asm.h │ │ │ │ │ │ ├── atomic.h │ │ │ │ │ │ ├── atomic64_32.h │ │ │ │ │ │ ├── atomic64_64.h │ │ │ │ │ │ ├── barrier.h │ │ │ │ │ │ ├── bios_ebda.h │ │ │ │ │ │ ├── bitops.h │ │ │ │ │ │ ├── boot.h │ │ │ │ │ │ ├── bootparam_utils.h │ │ │ │ │ │ ├── bug.h │ │ │ │ │ │ ├── bugs.h │ │ │ │ │ │ ├── cache.h │ │ │ │ │ │ ├── cacheflush.h │ │ │ │ │ │ ├── calgary.h │ │ │ │ │ │ ├── ce4100.h │ │ │ │ │ │ ├── checksum.h │ │ │ │ │ │ ├── checksum_32.h │ │ │ │ │ │ ├── checksum_64.h │ │ │ │ │ │ ├── clocksource.h │ │ │ │ │ │ ├── cmdline.h │ │ │ │ │ │ ├── cmpxchg.h │ │ │ │ │ │ ├── cmpxchg_32.h │ │ │ │ │ │ ├── cmpxchg_64.h │ │ │ │ │ │ ├── compat.h │ │ │ │ │ │ ├── cpu.h │ │ │ │ │ │ ├── cpu_device_id.h │ │ │ │ │ │ ├── cpufeature.h │ │ │ │ │ │ ├── cpufeatures.h │ │ │ │ │ │ ├── cpumask.h │ │ │ │ │ │ ├── crash.h │ │ │ │ │ │ ├── crypto │ │ │ │ │ │ │ ├── aes.h │ │ │ │ │ │ │ ├── camellia.h │ │ │ │ │ │ │ ├── glue_helper.h │ │ │ │ │ │ │ ├── serpent-avx.h │ │ │ │ │ │ │ ├── serpent-sse2.h │ │ │ │ │ │ │ └── twofish.h │ │ │ │ │ │ ├── current.h │ │ │ │ │ │ ├── debugreg.h │ │ │ │ │ │ ├── delay.h │ │ │ │ │ │ ├── desc.h │ │ │ │ │ │ ├── desc_defs.h │ │ │ │ │ │ ├── device.h │ │ │ │ │ │ ├── disabled-features.h │ │ │ │ │ │ ├── div64.h │ │ │ │ │ │ ├── dma-mapping.h │ │ │ │ │ │ ├── dma.h │ │ │ │ │ │ ├── dmi.h │ │ │ │ │ │ ├── dwarf2.h │ │ │ │ │ │ ├── e820.h │ │ │ │ │ │ ├── edac.h │ │ │ │ │ │ ├── efi.h │ │ │ │ │ │ ├── elf.h │ │ │ │ │ │ ├── emergency-restart.h │ │ │ │ │ │ ├── entry_arch.h │ │ │ │ │ │ ├── espfix.h │ │ │ │ │ │ ├── exec.h │ │ │ │ │ │ ├── export.h │ │ │ │ │ │ ├── extable.h │ │ │ │ │ │ ├── fb.h │ │ │ │ │ │ ├── fixmap.h │ │ │ │ │ │ ├── floppy.h │ │ │ │ │ │ ├── fpu │ │ │ │ │ │ │ ├── api.h │ │ │ │ │ │ │ ├── internal.h │ │ │ │ │ │ │ ├── regset.h │ │ │ │ │ │ │ ├── signal.h │ │ │ │ │ │ │ ├── types.h │ │ │ │ │ │ │ └── xstate.h │ │ │ │ │ │ ├── frame.h │ │ │ │ │ │ ├── ftrace.h │ │ │ │ │ │ ├── futex.h │ │ │ │ │ │ ├── gart.h │ │ │ │ │ │ ├── genapic.h │ │ │ │ │ │ ├── geode.h │ │ │ │ │ │ ├── hardirq.h │ │ │ │ │ │ ├── highmem.h │ │ │ │ │ │ ├── hpet.h │ │ │ │ │ │ ├── hugetlb.h │ │ │ │ │ │ ├── hw_breakpoint.h │ │ │ │ │ │ ├── hw_irq.h │ │ │ │ │ │ ├── hypertransport.h │ │ │ │ │ │ ├── hypervisor.h │ │ │ │ │ │ ├── i8259.h │ │ │ │ │ │ ├── ia32.h │ │ │ │ │ │ ├── ia32_unistd.h │ │ │ │ │ │ ├── imr.h │ │ │ │ │ │ ├── inat.h │ │ │ │ │ │ ├── inat_types.h │ │ │ │ │ │ ├── init.h │ │ │ │ │ │ ├── insn.h │ │ │ │ │ │ ├── inst.h │ │ │ │ │ │ ├── intel-family.h │ │ │ │ │ │ ├── intel-mid.h │ │ │ │ │ │ ├── intel_mid_vrtc.h │ │ │ │ │ │ ├── intel_pmc_ipc.h │ │ │ │ │ │ ├── intel_pt.h │ │ │ │ │ │ ├── intel_punit_ipc.h │ │ │ │ │ │ ├── intel_rdt.h │ │ │ │ │ │ ├── intel_rdt_common.h │ │ │ │ │ │ ├── intel_scu_ipc.h │ │ │ │ │ │ ├── intel_telemetry.h │ │ │ │ │ │ ├── io.h │ │ │ │ │ │ ├── io_apic.h │ │ │ │ │ │ ├── iomap.h │ │ │ │ │ │ ├── iommu.h │ │ │ │ │ │ ├── iommu_table.h │ │ │ │ │ │ ├── iosf_mbi.h │ │ │ │ │ │ ├── ipi.h │ │ │ │ │ │ ├── irq.h │ │ │ │ │ │ ├── irq_regs.h │ │ │ │ │ │ ├── irq_remapping.h │ │ │ │ │ │ ├── irq_vectors.h │ │ │ │ │ │ ├── irq_work.h │ │ │ │ │ │ ├── irqdomain.h │ │ │ │ │ │ ├── irqflags.h │ │ │ │ │ │ ├── ist.h │ │ │ │ │ │ ├── jump_label.h │ │ │ │ │ │ ├── kasan.h │ │ │ │ │ │ ├── kaslr.h │ │ │ │ │ │ ├── kbdleds.h │ │ │ │ │ │ ├── kdebug.h │ │ │ │ │ │ ├── kexec-bzimage64.h │ │ │ │ │ │ ├── kexec.h │ │ │ │ │ │ ├── kgdb.h │ │ │ │ │ │ ├── kmap_types.h │ │ │ │ │ │ ├── kmemcheck.h │ │ │ │ │ │ ├── kprobes.h │ │ │ │ │ │ ├── kvm_emulate.h │ │ │ │ │ │ ├── kvm_guest.h │ │ │ │ │ │ ├── kvm_host.h │ │ │ │ │ │ ├── kvm_page_track.h │ │ │ │ │ │ ├── kvm_para.h │ │ │ │ │ │ ├── kvmclock.h │ │ │ │ │ │ ├── lguest.h │ │ │ │ │ │ ├── lguest_hcall.h │ │ │ │ │ │ ├── linkage.h │ │ │ │ │ │ ├── livepatch.h │ │ │ │ │ │ ├── local.h │ │ │ │ │ │ ├── local64.h │ │ │ │ │ │ ├── mach_timer.h │ │ │ │ │ │ ├── mach_traps.h │ │ │ │ │ │ ├── math_emu.h │ │ │ │ │ │ ├── mc146818rtc.h │ │ │ │ │ │ ├── mce.h │ │ │ │ │ │ ├── microcode.h │ │ │ │ │ │ ├── microcode_amd.h │ │ │ │ │ │ ├── microcode_intel.h │ │ │ │ │ │ ├── misc.h │ │ │ │ │ │ ├── mmconfig.h │ │ │ │ │ │ ├── mmu.h │ │ │ │ │ │ ├── mmu_context.h │ │ │ │ │ │ ├── mmx.h │ │ │ │ │ │ ├── mmzone.h │ │ │ │ │ │ ├── mmzone_32.h │ │ │ │ │ │ ├── mmzone_64.h │ │ │ │ │ │ ├── module.h │ │ │ │ │ │ ├── mpspec.h │ │ │ │ │ │ ├── mpspec_def.h │ │ │ │ │ │ ├── mpx.h │ │ │ │ │ │ ├── mshyperv.h │ │ │ │ │ │ ├── msi.h │ │ │ │ │ │ ├── msidef.h │ │ │ │ │ │ ├── msr-index.h │ │ │ │ │ │ ├── msr-trace.h │ │ │ │ │ │ ├── msr.h │ │ │ │ │ │ ├── mtrr.h │ │ │ │ │ │ ├── mwait.h │ │ │ │ │ │ ├── nmi.h │ │ │ │ │ │ ├── nops.h │ │ │ │ │ │ ├── numa.h │ │ │ │ │ │ ├── numa_32.h │ │ │ │ │ │ ├── numachip │ │ │ │ │ │ │ ├── numachip.h │ │ │ │ │ │ │ └── numachip_csr.h │ │ │ │ │ │ ├── olpc.h │ │ │ │ │ │ ├── olpc_ofw.h │ │ │ │ │ │ ├── page.h │ │ │ │ │ │ ├── page_32.h │ │ │ │ │ │ ├── page_32_types.h │ │ │ │ │ │ ├── page_64.h │ │ │ │ │ │ ├── page_64_types.h │ │ │ │ │ │ ├── page_types.h │ │ │ │ │ │ ├── paravirt.h │ │ │ │ │ │ ├── paravirt_types.h │ │ │ │ │ │ ├── parport.h │ │ │ │ │ │ ├── pat.h │ │ │ │ │ │ ├── pci-direct.h │ │ │ │ │ │ ├── pci-functions.h │ │ │ │ │ │ ├── pci.h │ │ │ │ │ │ ├── pci_64.h │ │ │ │ │ │ ├── pci_x86.h │ │ │ │ │ │ ├── percpu.h │ │ │ │ │ │ ├── perf_event.h │ │ │ │ │ │ ├── perf_event_p4.h │ │ │ │ │ │ ├── pgalloc.h │ │ │ │ │ │ ├── pgtable-2level.h │ │ │ │ │ │ ├── pgtable-2level_types.h │ │ │ │ │ │ ├── pgtable-3level.h │ │ │ │ │ │ ├── pgtable-3level_types.h │ │ │ │ │ │ ├── pgtable.h │ │ │ │ │ │ ├── pgtable_32.h │ │ │ │ │ │ ├── pgtable_32_types.h │ │ │ │ │ │ ├── pgtable_64.h │ │ │ │ │ │ ├── pgtable_64_types.h │ │ │ │ │ │ ├── pgtable_types.h │ │ │ │ │ │ ├── pkeys.h │ │ │ │ │ │ ├── platform_sst_audio.h │ │ │ │ │ │ ├── pm-trace.h │ │ │ │ │ │ ├── pmc_core.h │ │ │ │ │ │ ├── pmem.h │ │ │ │ │ │ ├── posix_types.h │ │ │ │ │ │ ├── preempt.h │ │ │ │ │ │ ├── probe_roms.h │ │ │ │ │ │ ├── processor-cyrix.h │ │ │ │ │ │ ├── processor-flags.h │ │ │ │ │ │ ├── processor.h │ │ │ │ │ │ ├── prom.h │ │ │ │ │ │ ├── proto.h │ │ │ │ │ │ ├── ptrace.h │ │ │ │ │ │ ├── purgatory.h │ │ │ │ │ │ ├── pvclock-abi.h │ │ │ │ │ │ ├── pvclock.h │ │ │ │ │ │ ├── qrwlock.h │ │ │ │ │ │ ├── qspinlock.h │ │ │ │ │ │ ├── qspinlock_paravirt.h │ │ │ │ │ │ ├── realmode.h │ │ │ │ │ │ ├── reboot.h │ │ │ │ │ │ ├── reboot_fixups.h │ │ │ │ │ │ ├── required-features.h │ │ │ │ │ │ ├── rio.h │ │ │ │ │ │ ├── rmwcc.h │ │ │ │ │ │ ├── rwsem.h │ │ │ │ │ │ ├── seccomp.h │ │ │ │ │ │ ├── sections.h │ │ │ │ │ │ ├── segment.h │ │ │ │ │ │ ├── serial.h │ │ │ │ │ │ ├── setup.h │ │ │ │ │ │ ├── setup_arch.h │ │ │ │ │ │ ├── sgx.h │ │ │ │ │ │ ├── shmparam.h │ │ │ │ │ │ ├── sigcontext.h │ │ │ │ │ │ ├── sigframe.h │ │ │ │ │ │ ├── sighandling.h │ │ │ │ │ │ ├── signal.h │ │ │ │ │ │ ├── simd.h │ │ │ │ │ │ ├── smap.h │ │ │ │ │ │ ├── smp.h │ │ │ │ │ │ ├── sparsemem.h │ │ │ │ │ │ ├── special_insns.h │ │ │ │ │ │ ├── spinlock.h │ │ │ │ │ │ ├── spinlock_types.h │ │ │ │ │ │ ├── sta2x11.h │ │ │ │ │ │ ├── stackprotector.h │ │ │ │ │ │ ├── stacktrace.h │ │ │ │ │ │ ├── string.h │ │ │ │ │ │ ├── string_32.h │ │ │ │ │ │ ├── string_64.h │ │ │ │ │ │ ├── suspend.h │ │ │ │ │ │ ├── suspend_32.h │ │ │ │ │ │ ├── suspend_64.h │ │ │ │ │ │ ├── svm.h │ │ │ │ │ │ ├── swiotlb.h │ │ │ │ │ │ ├── switch_to.h │ │ │ │ │ │ ├── sync_bitops.h │ │ │ │ │ │ ├── sys_ia32.h │ │ │ │ │ │ ├── syscall.h │ │ │ │ │ │ ├── syscalls.h │ │ │ │ │ │ ├── sysfb.h │ │ │ │ │ │ ├── tce.h │ │ │ │ │ │ ├── text-patching.h │ │ │ │ │ │ ├── thread_info.h │ │ │ │ │ │ ├── time.h │ │ │ │ │ │ ├── timer.h │ │ │ │ │ │ ├── timex.h │ │ │ │ │ │ ├── tlb.h │ │ │ │ │ │ ├── tlbflush.h │ │ │ │ │ │ ├── topology.h │ │ │ │ │ │ ├── trace │ │ │ │ │ │ │ ├── exceptions.h │ │ │ │ │ │ │ ├── fpu.h │ │ │ │ │ │ │ ├── irq_vectors.h │ │ │ │ │ │ │ └── mpx.h │ │ │ │ │ │ ├── trace_clock.h │ │ │ │ │ │ ├── traps.h │ │ │ │ │ │ ├── tsc.h │ │ │ │ │ │ ├── uaccess.h │ │ │ │ │ │ ├── uaccess_32.h │ │ │ │ │ │ ├── uaccess_64.h │ │ │ │ │ │ ├── unaligned.h │ │ │ │ │ │ ├── unistd.h │ │ │ │ │ │ ├── unwind.h │ │ │ │ │ │ ├── uprobes.h │ │ │ │ │ │ ├── user.h │ │ │ │ │ │ ├── user32.h │ │ │ │ │ │ ├── user_32.h │ │ │ │ │ │ ├── user_64.h │ │ │ │ │ │ ├── uv │ │ │ │ │ │ │ ├── bios.h │ │ │ │ │ │ │ ├── uv.h │ │ │ │ │ │ │ ├── uv_bau.h │ │ │ │ │ │ │ ├── uv_hub.h │ │ │ │ │ │ │ ├── uv_irq.h │ │ │ │ │ │ │ └── uv_mmrs.h │ │ │ │ │ │ ├── vdso.h │ │ │ │ │ │ ├── vga.h │ │ │ │ │ │ ├── vgtod.h │ │ │ │ │ │ ├── virtext.h │ │ │ │ │ │ ├── vm86.h │ │ │ │ │ │ ├── vmx.h │ │ │ │ │ │ ├── vsyscall.h │ │ │ │ │ │ ├── vvar.h │ │ │ │ │ │ ├── word-at-a-time.h │ │ │ │ │ │ ├── x2apic.h │ │ │ │ │ │ ├── x86_init.h │ │ │ │ │ │ ├── xen │ │ │ │ │ │ │ ├── cpuid.h │ │ │ │ │ │ │ ├── events.h │ │ │ │ │ │ │ ├── hypercall.h │ │ │ │ │ │ │ ├── hypervisor.h │ │ │ │ │ │ │ ├── interface.h │ │ │ │ │ │ │ ├── interface_32.h │ │ │ │ │ │ │ ├── interface_64.h │ │ │ │ │ │ │ ├── page-coherent.h │ │ │ │ │ │ │ ├── page.h │ │ │ │ │ │ │ ├── pci.h │ │ │ │ │ │ │ ├── swiotlb-xen.h │ │ │ │ │ │ │ └── trace_types.h │ │ │ │ │ │ ├── xor.h │ │ │ │ │ │ ├── xor_32.h │ │ │ │ │ │ ├── xor_64.h │ │ │ │ │ │ └── xor_avx.h │ │ │ │ │ └── i8042-io.h │ │ │ │ ├── microbench.h │ │ │ │ └── smx.h │ │ │ ├── pcnet32.c │ │ │ ├── randombytes.c │ │ │ ├── rdrand.c │ │ │ ├── ring_buffer.c │ │ │ ├── rtc.c │ │ │ └── supervisor.c │ │ ├── xen.c │ │ └── xen.h │ ├── gen-defs.h │ ├── hw │ │ ├── ahci.c │ │ ├── ahci.h │ │ ├── ata.c │ │ ├── ata.h │ │ ├── blockcmd.c │ │ ├── blockcmd.h │ │ ├── dma.c │ │ ├── esp-scsi.c │ │ ├── esp-scsi.h │ │ ├── floppy.c │ │ ├── lsi-scsi.c │ │ ├── lsi-scsi.h │ │ ├── megasas.c │ │ ├── megasas.h │ │ ├── mpt-scsi.c │ │ ├── mpt-scsi.h │ │ ├── nvme-int.h │ │ ├── nvme.c │ │ ├── nvme.h │ │ ├── pci.c │ │ ├── pci.h │ │ ├── pci_ids.h │ │ ├── pci_regs.h │ │ ├── pcidevice.c │ │ ├── pcidevice.h │ │ ├── pic.c │ │ ├── pic.h │ │ ├── ps2port.c │ │ ├── ps2port.h │ │ ├── pvscsi.c │ │ ├── pvscsi.h │ │ ├── ramdisk.c │ │ ├── rtc.c │ │ ├── rtc.h │ │ ├── sdcard.c │ │ ├── serialio.c │ │ ├── serialio.h │ │ ├── timer.c │ │ ├── tpm_drivers.c │ │ ├── tpm_drivers.h │ │ ├── usb-ehci.c │ │ ├── usb-ehci.h │ │ ├── usb-hid.c │ │ ├── usb-hid.h │ │ ├── usb-hub.c │ │ ├── usb-hub.h │ │ ├── usb-msc.c │ │ ├── usb-msc.h │ │ ├── usb-ohci.c │ │ ├── usb-ohci.h │ │ ├── usb-uas.c │ │ ├── usb-uas.h │ │ ├── usb-uhci.c │ │ ├── usb-uhci.h │ │ ├── usb-xhci.c │ │ ├── usb-xhci.h │ │ ├── usb.c │ │ ├── usb.h │ │ ├── virtio-blk.c │ │ ├── virtio-blk.h │ │ ├── virtio-pci.c │ │ ├── virtio-pci.h │ │ ├── virtio-ring.c │ │ ├── virtio-ring.h │ │ ├── virtio-scsi.c │ │ └── virtio-scsi.h │ ├── jpeg.c │ ├── kbd.c │ ├── list.h │ ├── malloc.c │ ├── malloc.h │ ├── memmap.h │ ├── misc.c │ ├── mouse.c │ ├── optionroms.c │ ├── output.c │ ├── output.h │ ├── pcibios.c │ ├── pmm.c │ ├── pnpbios.c │ ├── post.c │ ├── resume.c │ ├── romfile.c │ ├── romfile.h │ ├── romlayout.S │ ├── sercon.c │ ├── serial.c │ ├── sha1.c │ ├── sha1.h │ ├── stacks.c │ ├── stacks.h │ ├── std │ │ ├── LegacyBios.h │ │ ├── acpi.h │ │ ├── bda.h │ │ ├── disk.h │ │ ├── mptable.h │ │ ├── multiboot.h │ │ ├── optionrom.h │ │ ├── pirtable.h │ │ ├── pmm.h │ │ ├── pnpbios.h │ │ ├── smbios.h │ │ ├── tcg.h │ │ ├── vbe.h │ │ └── vga.h │ ├── string.c │ ├── string.h │ ├── system.c │ ├── tcgbios.c │ ├── tcgbios.h │ ├── types.h │ ├── util.h │ ├── version.c │ ├── vgahooks.c │ ├── x86.c │ └── x86.h └── vgasrc │ ├── Kconfig │ ├── bochsvga.c │ ├── bochsvga.h │ ├── cbvga.c │ ├── clext.c │ ├── geodevga.c │ ├── geodevga.h │ ├── stdvga.c │ ├── stdvga.h │ ├── stdvgaio.c │ ├── stdvgamodes.c │ ├── swcursor.c │ ├── vbe.c │ ├── vgabios.c │ ├── vgabios.h │ ├── vgaentry.S │ ├── vgafb.c │ ├── vgafb.h │ ├── vgafonts.c │ ├── vgahw.h │ ├── vgainit.c │ ├── vgalayout.lds.S │ ├── vgautil.h │ └── vgaversion.c ├── seabios-storage ├── .gitignore ├── COPYING ├── COPYING.LESSER ├── Makefile ├── README ├── docs │ ├── Build_overview.md │ ├── Contributing.md │ ├── Debugging.md │ ├── Developer_Documentation.md │ ├── Developer_links.md │ ├── Download.md │ ├── Execution_and_code_flow.md │ ├── Linking_overview.md │ ├── Mailinglist.md │ ├── Memory_Model.md │ ├── README │ ├── Releases.md │ ├── Runtime_config.md │ ├── SeaBIOS.md │ └── SeaVGABIOS.md ├── doit.sh ├── rawio.c ├── scripts │ ├── acpi_extract.py │ ├── acpi_extract_preprocess.py │ ├── buildrom.py │ ├── buildversion.py │ ├── checkrom.py │ ├── checkstack.py │ ├── checksum.py │ ├── encodeint.py │ ├── gen-offsets.sh │ ├── kconfig │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── POTFILES.in │ │ ├── check.sh │ │ ├── conf.c │ │ ├── confdata.c │ │ ├── expr.c │ │ ├── expr.h │ │ ├── gconf.c │ │ ├── gconf.glade │ │ ├── images.c │ │ ├── kxgettext.c │ │ ├── lex.zconf.c │ │ ├── list.h │ │ ├── lkc.h │ │ ├── lkc_proto.h │ │ ├── lxdialog │ │ │ ├── .gitignore │ │ │ ├── BIG.FAT.WARNING │ │ │ ├── check-lxdialog.sh │ │ │ ├── checklist.c │ │ │ ├── dialog.h │ │ │ ├── inputbox.c │ │ │ ├── menubox.c │ │ │ ├── textbox.c │ │ │ ├── util.c │ │ │ └── yesno.c │ │ ├── mconf.c │ │ ├── menu.c │ │ ├── merge_config.sh │ │ ├── nconf.c │ │ ├── nconf.gui.c │ │ ├── nconf.h │ │ ├── qconf.cc │ │ ├── qconf.h │ │ ├── streamline_config.pl │ │ ├── symbol.c │ │ ├── util.c │ │ ├── zconf.gperf │ │ ├── zconf.hash.c_shipped │ │ ├── zconf.l │ │ ├── zconf.lex.c_shipped │ │ ├── zconf.tab.c_shipped │ │ └── zconf.y │ ├── layoutrom.py │ ├── python23compat.py │ ├── readserial.py │ ├── tarball.sh │ ├── test-build.sh │ ├── transdump.py │ └── vgafixup.py ├── serialio.c ├── src │ ├── Kconfig │ ├── apm.c │ ├── asm-offsets.c │ ├── biosvar.h │ ├── block.c │ ├── block.h │ ├── bmp.c │ ├── boot.c │ ├── bootsplash.c │ ├── bregs.h │ ├── byteorder.h │ ├── cdrom.c │ ├── clock.c │ ├── code16gcc.s │ ├── config.h │ ├── cp437.c │ ├── cp437.h │ ├── disk.c │ ├── e820map.c │ ├── e820map.h │ ├── entryfuncs.S │ ├── farptr.h │ ├── font.c │ ├── fw │ │ ├── acpi-dsdt-cpu-hotplug.dsl │ │ ├── acpi-dsdt-dbug.dsl │ │ ├── acpi-dsdt-hpet.dsl │ │ ├── acpi-dsdt-isa.dsl │ │ ├── acpi-dsdt-pci-crs.dsl │ │ ├── acpi-dsdt.dsl │ │ ├── acpi-dsdt.hex │ │ ├── acpi.c │ │ ├── biostables.c │ │ ├── coreboot.c │ │ ├── csm.c │ │ ├── dev-pci.h │ │ ├── dev-piix.h │ │ ├── dev-q35.h │ │ ├── lzmadecode.c │ │ ├── lzmadecode.h │ │ ├── mptable.c │ │ ├── mtrr.c │ │ ├── multiboot.c │ │ ├── paravirt.c │ │ ├── paravirt.h │ │ ├── pciinit.c │ │ ├── pirtable.c │ │ ├── q35-acpi-dsdt.dsl │ │ ├── romfile_loader.c │ │ ├── romfile_loader.h │ │ ├── shadow.c │ │ ├── smbios.c │ │ ├── smm.c │ │ ├── smp.c │ │ ├── ssdt-misc.dsl │ │ ├── ssdt-misc.hex │ │ ├── ssdt-pcihp.dsl │ │ ├── ssdt-pcihp.hex │ │ ├── ssdt-proc.dsl │ │ ├── ssdt-proc.hex │ │ ├── supervisor │ │ │ ├── aead_aes256gcm_aesni.c │ │ │ ├── apic.c │ │ │ ├── boundary_check.c │ │ │ ├── clock.c │ │ │ ├── debug.c │ │ │ ├── include │ │ │ │ ├── ipxe │ │ │ │ │ └── pcnet32.h │ │ │ │ ├── kvm-unit-tests │ │ │ │ │ ├── apic-defs.h │ │ │ │ │ ├── apic.h │ │ │ │ │ └── msr.h │ │ │ │ ├── libsodium │ │ │ │ │ ├── sodium.h │ │ │ │ │ └── sodium │ │ │ │ │ │ ├── core.h │ │ │ │ │ │ ├── crypto_aead_aes256gcm.h │ │ │ │ │ │ ├── crypto_aead_chacha20poly1305.h │ │ │ │ │ │ ├── crypto_aead_xchacha20poly1305.h │ │ │ │ │ │ ├── crypto_auth.h │ │ │ │ │ │ ├── crypto_auth_hmacsha256.h │ │ │ │ │ │ ├── crypto_auth_hmacsha512.h │ │ │ │ │ │ ├── crypto_auth_hmacsha512256.h │ │ │ │ │ │ ├── crypto_box.h │ │ │ │ │ │ ├── crypto_box_curve25519xchacha20poly1305.h │ │ │ │ │ │ ├── crypto_box_curve25519xsalsa20poly1305.h │ │ │ │ │ │ ├── crypto_core_ed25519.h │ │ │ │ │ │ ├── crypto_core_hchacha20.h │ │ │ │ │ │ ├── crypto_core_hsalsa20.h │ │ │ │ │ │ ├── crypto_core_salsa20.h │ │ │ │ │ │ ├── crypto_core_salsa2012.h │ │ │ │ │ │ ├── crypto_core_salsa208.h │ │ │ │ │ │ ├── crypto_generichash.h │ │ │ │ │ │ ├── crypto_generichash_blake2b.h │ │ │ │ │ │ ├── crypto_hash.h │ │ │ │ │ │ ├── crypto_hash_sha256.h │ │ │ │ │ │ ├── crypto_hash_sha512.h │ │ │ │ │ │ ├── crypto_kdf.h │ │ │ │ │ │ ├── crypto_kdf_blake2b.h │ │ │ │ │ │ ├── crypto_kx.h │ │ │ │ │ │ ├── crypto_onetimeauth.h │ │ │ │ │ │ ├── crypto_onetimeauth_poly1305.h │ │ │ │ │ │ ├── crypto_pwhash.h │ │ │ │ │ │ ├── crypto_pwhash_argon2i.h │ │ │ │ │ │ ├── crypto_pwhash_argon2id.h │ │ │ │ │ │ ├── crypto_pwhash_scryptsalsa208sha256.h │ │ │ │ │ │ ├── crypto_scalarmult.h │ │ │ │ │ │ ├── crypto_scalarmult_curve25519.h │ │ │ │ │ │ ├── crypto_scalarmult_ed25519.h │ │ │ │ │ │ ├── crypto_secretbox.h │ │ │ │ │ │ ├── crypto_secretbox_xchacha20poly1305.h │ │ │ │ │ │ ├── crypto_secretbox_xsalsa20poly1305.h │ │ │ │ │ │ ├── crypto_secretstream_xchacha20poly1305.h │ │ │ │ │ │ ├── crypto_shorthash.h │ │ │ │ │ │ ├── crypto_shorthash_siphash24.h │ │ │ │ │ │ ├── crypto_sign.h │ │ │ │ │ │ ├── crypto_sign_ed25519.h │ │ │ │ │ │ ├── crypto_sign_edwards25519sha512batch.h │ │ │ │ │ │ ├── crypto_stream.h │ │ │ │ │ │ ├── crypto_stream_chacha20.h │ │ │ │ │ │ ├── crypto_stream_salsa20.h │ │ │ │ │ │ ├── crypto_stream_salsa2012.h │ │ │ │ │ │ ├── crypto_stream_salsa208.h │ │ │ │ │ │ ├── crypto_stream_xchacha20.h │ │ │ │ │ │ ├── crypto_stream_xsalsa20.h │ │ │ │ │ │ ├── crypto_verify_16.h │ │ │ │ │ │ ├── crypto_verify_32.h │ │ │ │ │ │ ├── crypto_verify_64.h │ │ │ │ │ │ ├── export.h │ │ │ │ │ │ ├── private │ │ │ │ │ │ ├── common.h │ │ │ │ │ │ ├── ed25519_ref10.h │ │ │ │ │ │ ├── ed25519_ref10_fe_25_5.h │ │ │ │ │ │ ├── ed25519_ref10_fe_51.h │ │ │ │ │ │ ├── implementations.h │ │ │ │ │ │ ├── mutex.h │ │ │ │ │ │ └── sse2_64_32.h │ │ │ │ │ │ ├── randombytes.h │ │ │ │ │ │ ├── randombytes_nativeclient.h │ │ │ │ │ │ ├── randombytes_salsa20_random.h │ │ │ │ │ │ ├── randombytes_sysrandom.h │ │ │ │ │ │ ├── runtime.h │ │ │ │ │ │ ├── utils.h │ │ │ │ │ │ ├── version.h │ │ │ │ │ │ └── version.h.in │ │ │ │ ├── linux │ │ │ │ │ ├── asm │ │ │ │ │ │ ├── Kbuild │ │ │ │ │ │ ├── a.out-core.h │ │ │ │ │ │ ├── acenv.h │ │ │ │ │ │ ├── acpi.h │ │ │ │ │ │ ├── agp.h │ │ │ │ │ │ ├── alternative-asm.h │ │ │ │ │ │ ├── alternative.h │ │ │ │ │ │ ├── amd_nb.h │ │ │ │ │ │ ├── apb_timer.h │ │ │ │ │ │ ├── apic.h │ │ │ │ │ │ ├── apic_flat_64.h │ │ │ │ │ │ ├── apicdef.h │ │ │ │ │ │ ├── apm.h │ │ │ │ │ │ ├── arch_hweight.h │ │ │ │ │ │ ├── archrandom.h │ │ │ │ │ │ ├── asm-offsets.h │ │ │ │ │ │ ├── asm-prototypes.h │ │ │ │ │ │ ├── asm.h │ │ │ │ │ │ ├── atomic.h │ │ │ │ │ │ ├── atomic64_32.h │ │ │ │ │ │ ├── atomic64_64.h │ │ │ │ │ │ ├── barrier.h │ │ │ │ │ │ ├── bios_ebda.h │ │ │ │ │ │ ├── bitops.h │ │ │ │ │ │ ├── boot.h │ │ │ │ │ │ ├── bootparam_utils.h │ │ │ │ │ │ ├── bug.h │ │ │ │ │ │ ├── bugs.h │ │ │ │ │ │ ├── cache.h │ │ │ │ │ │ ├── cacheflush.h │ │ │ │ │ │ ├── calgary.h │ │ │ │ │ │ ├── ce4100.h │ │ │ │ │ │ ├── checksum.h │ │ │ │ │ │ ├── checksum_32.h │ │ │ │ │ │ ├── checksum_64.h │ │ │ │ │ │ ├── clocksource.h │ │ │ │ │ │ ├── cmdline.h │ │ │ │ │ │ ├── cmpxchg.h │ │ │ │ │ │ ├── cmpxchg_32.h │ │ │ │ │ │ ├── cmpxchg_64.h │ │ │ │ │ │ ├── compat.h │ │ │ │ │ │ ├── cpu.h │ │ │ │ │ │ ├── cpu_device_id.h │ │ │ │ │ │ ├── cpufeature.h │ │ │ │ │ │ ├── cpufeatures.h │ │ │ │ │ │ ├── cpumask.h │ │ │ │ │ │ ├── crash.h │ │ │ │ │ │ ├── crypto │ │ │ │ │ │ │ ├── aes.h │ │ │ │ │ │ │ ├── camellia.h │ │ │ │ │ │ │ ├── glue_helper.h │ │ │ │ │ │ │ ├── serpent-avx.h │ │ │ │ │ │ │ ├── serpent-sse2.h │ │ │ │ │ │ │ └── twofish.h │ │ │ │ │ │ ├── current.h │ │ │ │ │ │ ├── debugreg.h │ │ │ │ │ │ ├── delay.h │ │ │ │ │ │ ├── desc.h │ │ │ │ │ │ ├── desc_defs.h │ │ │ │ │ │ ├── device.h │ │ │ │ │ │ ├── disabled-features.h │ │ │ │ │ │ ├── div64.h │ │ │ │ │ │ ├── dma-mapping.h │ │ │ │ │ │ ├── dma.h │ │ │ │ │ │ ├── dmi.h │ │ │ │ │ │ ├── dwarf2.h │ │ │ │ │ │ ├── e820.h │ │ │ │ │ │ ├── edac.h │ │ │ │ │ │ ├── efi.h │ │ │ │ │ │ ├── elf.h │ │ │ │ │ │ ├── emergency-restart.h │ │ │ │ │ │ ├── entry_arch.h │ │ │ │ │ │ ├── espfix.h │ │ │ │ │ │ ├── exec.h │ │ │ │ │ │ ├── export.h │ │ │ │ │ │ ├── extable.h │ │ │ │ │ │ ├── fb.h │ │ │ │ │ │ ├── fixmap.h │ │ │ │ │ │ ├── floppy.h │ │ │ │ │ │ ├── fpu │ │ │ │ │ │ │ ├── api.h │ │ │ │ │ │ │ ├── internal.h │ │ │ │ │ │ │ ├── regset.h │ │ │ │ │ │ │ ├── signal.h │ │ │ │ │ │ │ ├── types.h │ │ │ │ │ │ │ └── xstate.h │ │ │ │ │ │ ├── frame.h │ │ │ │ │ │ ├── ftrace.h │ │ │ │ │ │ ├── futex.h │ │ │ │ │ │ ├── gart.h │ │ │ │ │ │ ├── genapic.h │ │ │ │ │ │ ├── geode.h │ │ │ │ │ │ ├── hardirq.h │ │ │ │ │ │ ├── highmem.h │ │ │ │ │ │ ├── hpet.h │ │ │ │ │ │ ├── hugetlb.h │ │ │ │ │ │ ├── hw_breakpoint.h │ │ │ │ │ │ ├── hw_irq.h │ │ │ │ │ │ ├── hypertransport.h │ │ │ │ │ │ ├── hypervisor.h │ │ │ │ │ │ ├── i8259.h │ │ │ │ │ │ ├── ia32.h │ │ │ │ │ │ ├── ia32_unistd.h │ │ │ │ │ │ ├── imr.h │ │ │ │ │ │ ├── inat.h │ │ │ │ │ │ ├── inat_types.h │ │ │ │ │ │ ├── init.h │ │ │ │ │ │ ├── insn.h │ │ │ │ │ │ ├── inst.h │ │ │ │ │ │ ├── intel-family.h │ │ │ │ │ │ ├── intel-mid.h │ │ │ │ │ │ ├── intel_mid_vrtc.h │ │ │ │ │ │ ├── intel_pmc_ipc.h │ │ │ │ │ │ ├── intel_pt.h │ │ │ │ │ │ ├── intel_punit_ipc.h │ │ │ │ │ │ ├── intel_rdt.h │ │ │ │ │ │ ├── intel_rdt_common.h │ │ │ │ │ │ ├── intel_scu_ipc.h │ │ │ │ │ │ ├── intel_telemetry.h │ │ │ │ │ │ ├── io.h │ │ │ │ │ │ ├── io_apic.h │ │ │ │ │ │ ├── iomap.h │ │ │ │ │ │ ├── iommu.h │ │ │ │ │ │ ├── iommu_table.h │ │ │ │ │ │ ├── iosf_mbi.h │ │ │ │ │ │ ├── ipi.h │ │ │ │ │ │ ├── irq.h │ │ │ │ │ │ ├── irq_regs.h │ │ │ │ │ │ ├── irq_remapping.h │ │ │ │ │ │ ├── irq_vectors.h │ │ │ │ │ │ ├── irq_work.h │ │ │ │ │ │ ├── irqdomain.h │ │ │ │ │ │ ├── irqflags.h │ │ │ │ │ │ ├── ist.h │ │ │ │ │ │ ├── jump_label.h │ │ │ │ │ │ ├── kasan.h │ │ │ │ │ │ ├── kaslr.h │ │ │ │ │ │ ├── kbdleds.h │ │ │ │ │ │ ├── kdebug.h │ │ │ │ │ │ ├── kexec-bzimage64.h │ │ │ │ │ │ ├── kexec.h │ │ │ │ │ │ ├── kgdb.h │ │ │ │ │ │ ├── kmap_types.h │ │ │ │ │ │ ├── kmemcheck.h │ │ │ │ │ │ ├── kprobes.h │ │ │ │ │ │ ├── kvm_emulate.h │ │ │ │ │ │ ├── kvm_guest.h │ │ │ │ │ │ ├── kvm_host.h │ │ │ │ │ │ ├── kvm_page_track.h │ │ │ │ │ │ ├── kvm_para.h │ │ │ │ │ │ ├── kvmclock.h │ │ │ │ │ │ ├── lguest.h │ │ │ │ │ │ ├── lguest_hcall.h │ │ │ │ │ │ ├── linkage.h │ │ │ │ │ │ ├── livepatch.h │ │ │ │ │ │ ├── local.h │ │ │ │ │ │ ├── local64.h │ │ │ │ │ │ ├── mach_timer.h │ │ │ │ │ │ ├── mach_traps.h │ │ │ │ │ │ ├── math_emu.h │ │ │ │ │ │ ├── mc146818rtc.h │ │ │ │ │ │ ├── mce.h │ │ │ │ │ │ ├── microcode.h │ │ │ │ │ │ ├── microcode_amd.h │ │ │ │ │ │ ├── microcode_intel.h │ │ │ │ │ │ ├── misc.h │ │ │ │ │ │ ├── mmconfig.h │ │ │ │ │ │ ├── mmu.h │ │ │ │ │ │ ├── mmu_context.h │ │ │ │ │ │ ├── mmx.h │ │ │ │ │ │ ├── mmzone.h │ │ │ │ │ │ ├── mmzone_32.h │ │ │ │ │ │ ├── mmzone_64.h │ │ │ │ │ │ ├── module.h │ │ │ │ │ │ ├── mpspec.h │ │ │ │ │ │ ├── mpspec_def.h │ │ │ │ │ │ ├── mpx.h │ │ │ │ │ │ ├── mshyperv.h │ │ │ │ │ │ ├── msi.h │ │ │ │ │ │ ├── msidef.h │ │ │ │ │ │ ├── msr-index.h │ │ │ │ │ │ ├── msr-trace.h │ │ │ │ │ │ ├── msr.h │ │ │ │ │ │ ├── mtrr.h │ │ │ │ │ │ ├── mwait.h │ │ │ │ │ │ ├── nmi.h │ │ │ │ │ │ ├── nops.h │ │ │ │ │ │ ├── numa.h │ │ │ │ │ │ ├── numa_32.h │ │ │ │ │ │ ├── numachip │ │ │ │ │ │ │ ├── numachip.h │ │ │ │ │ │ │ └── numachip_csr.h │ │ │ │ │ │ ├── olpc.h │ │ │ │ │ │ ├── olpc_ofw.h │ │ │ │ │ │ ├── page.h │ │ │ │ │ │ ├── page_32.h │ │ │ │ │ │ ├── page_32_types.h │ │ │ │ │ │ ├── page_64.h │ │ │ │ │ │ ├── page_64_types.h │ │ │ │ │ │ ├── page_types.h │ │ │ │ │ │ ├── paravirt.h │ │ │ │ │ │ ├── paravirt_types.h │ │ │ │ │ │ ├── parport.h │ │ │ │ │ │ ├── pat.h │ │ │ │ │ │ ├── pci-direct.h │ │ │ │ │ │ ├── pci-functions.h │ │ │ │ │ │ ├── pci.h │ │ │ │ │ │ ├── pci_64.h │ │ │ │ │ │ ├── pci_x86.h │ │ │ │ │ │ ├── percpu.h │ │ │ │ │ │ ├── perf_event.h │ │ │ │ │ │ ├── perf_event_p4.h │ │ │ │ │ │ ├── pgalloc.h │ │ │ │ │ │ ├── pgtable-2level.h │ │ │ │ │ │ ├── pgtable-2level_types.h │ │ │ │ │ │ ├── pgtable-3level.h │ │ │ │ │ │ ├── pgtable-3level_types.h │ │ │ │ │ │ ├── pgtable.h │ │ │ │ │ │ ├── pgtable_32.h │ │ │ │ │ │ ├── pgtable_32_types.h │ │ │ │ │ │ ├── pgtable_64.h │ │ │ │ │ │ ├── pgtable_64_types.h │ │ │ │ │ │ ├── pgtable_types.h │ │ │ │ │ │ ├── pkeys.h │ │ │ │ │ │ ├── platform_sst_audio.h │ │ │ │ │ │ ├── pm-trace.h │ │ │ │ │ │ ├── pmc_core.h │ │ │ │ │ │ ├── pmem.h │ │ │ │ │ │ ├── posix_types.h │ │ │ │ │ │ ├── preempt.h │ │ │ │ │ │ ├── probe_roms.h │ │ │ │ │ │ ├── processor-cyrix.h │ │ │ │ │ │ ├── processor-flags.h │ │ │ │ │ │ ├── processor.h │ │ │ │ │ │ ├── prom.h │ │ │ │ │ │ ├── proto.h │ │ │ │ │ │ ├── ptrace.h │ │ │ │ │ │ ├── purgatory.h │ │ │ │ │ │ ├── pvclock-abi.h │ │ │ │ │ │ ├── pvclock.h │ │ │ │ │ │ ├── qrwlock.h │ │ │ │ │ │ ├── qspinlock.h │ │ │ │ │ │ ├── qspinlock_paravirt.h │ │ │ │ │ │ ├── realmode.h │ │ │ │ │ │ ├── reboot.h │ │ │ │ │ │ ├── reboot_fixups.h │ │ │ │ │ │ ├── required-features.h │ │ │ │ │ │ ├── rio.h │ │ │ │ │ │ ├── rmwcc.h │ │ │ │ │ │ ├── rwsem.h │ │ │ │ │ │ ├── seccomp.h │ │ │ │ │ │ ├── sections.h │ │ │ │ │ │ ├── segment.h │ │ │ │ │ │ ├── serial.h │ │ │ │ │ │ ├── setup.h │ │ │ │ │ │ ├── setup_arch.h │ │ │ │ │ │ ├── sgx.h │ │ │ │ │ │ ├── shmparam.h │ │ │ │ │ │ ├── sigcontext.h │ │ │ │ │ │ ├── sigframe.h │ │ │ │ │ │ ├── sighandling.h │ │ │ │ │ │ ├── signal.h │ │ │ │ │ │ ├── simd.h │ │ │ │ │ │ ├── smap.h │ │ │ │ │ │ ├── smp.h │ │ │ │ │ │ ├── sparsemem.h │ │ │ │ │ │ ├── special_insns.h │ │ │ │ │ │ ├── spinlock.h │ │ │ │ │ │ ├── spinlock_types.h │ │ │ │ │ │ ├── sta2x11.h │ │ │ │ │ │ ├── stackprotector.h │ │ │ │ │ │ ├── stacktrace.h │ │ │ │ │ │ ├── string.h │ │ │ │ │ │ ├── string_32.h │ │ │ │ │ │ ├── string_64.h │ │ │ │ │ │ ├── suspend.h │ │ │ │ │ │ ├── suspend_32.h │ │ │ │ │ │ ├── suspend_64.h │ │ │ │ │ │ ├── svm.h │ │ │ │ │ │ ├── swiotlb.h │ │ │ │ │ │ ├── switch_to.h │ │ │ │ │ │ ├── sync_bitops.h │ │ │ │ │ │ ├── sys_ia32.h │ │ │ │ │ │ ├── syscall.h │ │ │ │ │ │ ├── syscalls.h │ │ │ │ │ │ ├── sysfb.h │ │ │ │ │ │ ├── tce.h │ │ │ │ │ │ ├── text-patching.h │ │ │ │ │ │ ├── thread_info.h │ │ │ │ │ │ ├── time.h │ │ │ │ │ │ ├── timer.h │ │ │ │ │ │ ├── timex.h │ │ │ │ │ │ ├── tlb.h │ │ │ │ │ │ ├── tlbflush.h │ │ │ │ │ │ ├── topology.h │ │ │ │ │ │ ├── trace │ │ │ │ │ │ │ ├── exceptions.h │ │ │ │ │ │ │ ├── fpu.h │ │ │ │ │ │ │ ├── irq_vectors.h │ │ │ │ │ │ │ └── mpx.h │ │ │ │ │ │ ├── trace_clock.h │ │ │ │ │ │ ├── traps.h │ │ │ │ │ │ ├── tsc.h │ │ │ │ │ │ ├── uaccess.h │ │ │ │ │ │ ├── uaccess_32.h │ │ │ │ │ │ ├── uaccess_64.h │ │ │ │ │ │ ├── unaligned.h │ │ │ │ │ │ ├── unistd.h │ │ │ │ │ │ ├── unwind.h │ │ │ │ │ │ ├── uprobes.h │ │ │ │ │ │ ├── user.h │ │ │ │ │ │ ├── user32.h │ │ │ │ │ │ ├── user_32.h │ │ │ │ │ │ ├── user_64.h │ │ │ │ │ │ ├── uv │ │ │ │ │ │ │ ├── bios.h │ │ │ │ │ │ │ ├── uv.h │ │ │ │ │ │ │ ├── uv_bau.h │ │ │ │ │ │ │ ├── uv_hub.h │ │ │ │ │ │ │ ├── uv_irq.h │ │ │ │ │ │ │ └── uv_mmrs.h │ │ │ │ │ │ ├── vdso.h │ │ │ │ │ │ ├── vga.h │ │ │ │ │ │ ├── vgtod.h │ │ │ │ │ │ ├── virtext.h │ │ │ │ │ │ ├── vm86.h │ │ │ │ │ │ ├── vmx.h │ │ │ │ │ │ ├── vsyscall.h │ │ │ │ │ │ ├── vvar.h │ │ │ │ │ │ ├── word-at-a-time.h │ │ │ │ │ │ ├── x2apic.h │ │ │ │ │ │ ├── x86_init.h │ │ │ │ │ │ ├── xen │ │ │ │ │ │ │ ├── cpuid.h │ │ │ │ │ │ │ ├── events.h │ │ │ │ │ │ │ ├── hypercall.h │ │ │ │ │ │ │ ├── hypervisor.h │ │ │ │ │ │ │ ├── interface.h │ │ │ │ │ │ │ ├── interface_32.h │ │ │ │ │ │ │ ├── interface_64.h │ │ │ │ │ │ │ ├── page-coherent.h │ │ │ │ │ │ │ ├── page.h │ │ │ │ │ │ │ ├── pci.h │ │ │ │ │ │ │ ├── swiotlb-xen.h │ │ │ │ │ │ │ └── trace_types.h │ │ │ │ │ │ ├── xor.h │ │ │ │ │ │ ├── xor_32.h │ │ │ │ │ │ ├── xor_64.h │ │ │ │ │ │ └── xor_avx.h │ │ │ │ │ └── i8042-io.h │ │ │ │ ├── microbench.h │ │ │ │ └── smx.h │ │ │ ├── md5-fast.S │ │ │ ├── md5.c │ │ │ ├── pcnet32.c │ │ │ ├── randombytes.c │ │ │ ├── rdrand.c │ │ │ ├── ring_buffer.c │ │ │ ├── rtc.c │ │ │ └── supervisor.c │ │ ├── xen.c │ │ └── xen.h │ ├── gen-defs.h │ ├── hw │ │ ├── ahci.c │ │ ├── ahci.h │ │ ├── ata.c │ │ ├── ata.h │ │ ├── blockcmd.c │ │ ├── blockcmd.h │ │ ├── dma.c │ │ ├── esp-scsi.c │ │ ├── esp-scsi.h │ │ ├── floppy.c │ │ ├── lsi-scsi.c │ │ ├── lsi-scsi.h │ │ ├── megasas.c │ │ ├── megasas.h │ │ ├── mpt-scsi.c │ │ ├── mpt-scsi.h │ │ ├── nvme-int.h │ │ ├── nvme.c │ │ ├── nvme.h │ │ ├── pci.c │ │ ├── pci.h │ │ ├── pci_ids.h │ │ ├── pci_regs.h │ │ ├── pcidevice.c │ │ ├── pcidevice.h │ │ ├── pic.c │ │ ├── pic.h │ │ ├── ps2port.c │ │ ├── ps2port.h │ │ ├── pvscsi.c │ │ ├── pvscsi.h │ │ ├── ramdisk.c │ │ ├── rtc.c │ │ ├── rtc.h │ │ ├── sdcard.c │ │ ├── serialio.c │ │ ├── serialio.h │ │ ├── timer.c │ │ ├── tpm_drivers.c │ │ ├── tpm_drivers.h │ │ ├── usb-ehci.c │ │ ├── usb-ehci.h │ │ ├── usb-hid.c │ │ ├── usb-hid.h │ │ ├── usb-hub.c │ │ ├── usb-hub.h │ │ ├── usb-msc.c │ │ ├── usb-msc.h │ │ ├── usb-ohci.c │ │ ├── usb-ohci.h │ │ ├── usb-uas.c │ │ ├── usb-uas.h │ │ ├── usb-uhci.c │ │ ├── usb-uhci.h │ │ ├── usb-xhci.c │ │ ├── usb-xhci.h │ │ ├── usb.c │ │ ├── usb.h │ │ ├── virtio-blk.c │ │ ├── virtio-blk.h │ │ ├── virtio-pci.c │ │ ├── virtio-pci.h │ │ ├── virtio-ring.c │ │ ├── virtio-ring.h │ │ ├── virtio-scsi.c │ │ └── virtio-scsi.h │ ├── jpeg.c │ ├── kbd.c │ ├── list.h │ ├── malloc.c │ ├── malloc.h │ ├── memmap.h │ ├── misc.c │ ├── mouse.c │ ├── optionroms.c │ ├── output.c │ ├── output.h │ ├── pcibios.c │ ├── pmm.c │ ├── pnpbios.c │ ├── post.c │ ├── resume.c │ ├── romfile.c │ ├── romfile.h │ ├── romlayout.S │ ├── sercon.c │ ├── serial.c │ ├── sha1.c │ ├── sha1.h │ ├── stacks.c │ ├── stacks.h │ ├── std │ │ ├── LegacyBios.h │ │ ├── acpi.h │ │ ├── bda.h │ │ ├── disk.h │ │ ├── mptable.h │ │ ├── multiboot.h │ │ ├── optionrom.h │ │ ├── pirtable.h │ │ ├── pmm.h │ │ ├── pnpbios.h │ │ ├── smbios.h │ │ ├── tcg.h │ │ ├── vbe.h │ │ └── vga.h │ ├── string.c │ ├── string.h │ ├── system.c │ ├── tcgbios.c │ ├── tcgbios.h │ ├── types.h │ ├── util.h │ ├── version.c │ ├── vgahooks.c │ ├── x86.c │ └── x86.h └── vgasrc │ ├── Kconfig │ ├── bochsvga.c │ ├── bochsvga.h │ ├── cbvga.c │ ├── clext.c │ ├── geodevga.c │ ├── geodevga.h │ ├── stdvga.c │ ├── stdvga.h │ ├── stdvgaio.c │ ├── stdvgamodes.c │ ├── swcursor.c │ ├── vbe.c │ ├── vgabios.c │ ├── vgabios.h │ ├── vgaentry.S │ ├── vgafb.c │ ├── vgafb.h │ ├── vgafonts.c │ ├── vgahw.h │ ├── vgainit.c │ ├── vgalayout.lds.S │ ├── vgautil.h │ └── vgaversion.c └── seabios-usb ├── .gitignore ├── COPYING ├── COPYING.LESSER ├── Makefile ├── README ├── docs ├── Build_overview.md ├── Contributing.md ├── Debugging.md ├── Developer_Documentation.md ├── Developer_links.md ├── Download.md ├── Execution_and_code_flow.md ├── Linking_overview.md ├── Mailinglist.md ├── Memory_Model.md ├── README ├── Releases.md ├── Runtime_config.md ├── SeaBIOS.md └── SeaVGABIOS.md ├── doit.sh ├── scripts ├── acpi_extract.py ├── acpi_extract_preprocess.py ├── buildrom.py ├── buildversion.py ├── checkrom.py ├── checkstack.py ├── checksum.py ├── encodeint.py ├── gen-offsets.sh ├── kconfig │ ├── .gitignore │ ├── Makefile │ ├── POTFILES.in │ ├── check.sh │ ├── conf.c │ ├── confdata.c │ ├── expr.c │ ├── expr.h │ ├── gconf.c │ ├── gconf.glade │ ├── images.c │ ├── kxgettext.c │ ├── lex.zconf.c │ ├── list.h │ ├── lkc.h │ ├── lkc_proto.h │ ├── lxdialog │ │ ├── .gitignore │ │ ├── BIG.FAT.WARNING │ │ ├── check-lxdialog.sh │ │ ├── checklist.c │ │ ├── dialog.h │ │ ├── inputbox.c │ │ ├── menubox.c │ │ ├── textbox.c │ │ ├── util.c │ │ └── yesno.c │ ├── mconf.c │ ├── menu.c │ ├── merge_config.sh │ ├── nconf.c │ ├── nconf.gui.c │ ├── nconf.h │ ├── qconf.cc │ ├── qconf.h │ ├── streamline_config.pl │ ├── symbol.c │ ├── util.c │ ├── zconf.gperf │ ├── zconf.hash.c_shipped │ ├── zconf.l │ ├── zconf.lex.c_shipped │ ├── zconf.tab.c_shipped │ └── zconf.y ├── layoutrom.py ├── python23compat.py ├── readserial.py ├── tarball.sh ├── test-build.sh ├── transdump.py └── vgafixup.py ├── src ├── Kconfig ├── apm.c ├── asm-offsets.c ├── biosvar.h ├── block.c ├── block.h ├── bmp.c ├── boot.c ├── bootsplash.c ├── bregs.h ├── byteorder.h ├── cdrom.c ├── clock.c ├── code16gcc.s ├── config.h ├── cp437.c ├── cp437.h ├── disk.c ├── e820map.c ├── e820map.h ├── entryfuncs.S ├── farptr.h ├── font.c ├── fw │ ├── acpi-dsdt-cpu-hotplug.dsl │ ├── acpi-dsdt-dbug.dsl │ ├── acpi-dsdt-hpet.dsl │ ├── acpi-dsdt-isa.dsl │ ├── acpi-dsdt-pci-crs.dsl │ ├── acpi-dsdt.dsl │ ├── acpi-dsdt.hex │ ├── acpi.c │ ├── biostables.c │ ├── coreboot.c │ ├── csm.c │ ├── dev-pci.h │ ├── dev-piix.h │ ├── dev-q35.h │ ├── lzmadecode.c │ ├── lzmadecode.h │ ├── mptable.c │ ├── mtrr.c │ ├── multiboot.c │ ├── paravirt.c │ ├── paravirt.h │ ├── pciinit.c │ ├── pirtable.c │ ├── q35-acpi-dsdt.dsl │ ├── romfile_loader.c │ ├── romfile_loader.h │ ├── shadow.c │ ├── smbios.c │ ├── smm.c │ ├── smp.c │ ├── ssdt-misc.dsl │ ├── ssdt-misc.hex │ ├── ssdt-pcihp.dsl │ ├── ssdt-pcihp.hex │ ├── ssdt-proc.dsl │ ├── ssdt-proc.hex │ ├── supervisor │ │ ├── aead_aes256gcm_aesni.c │ │ ├── apic.c │ │ ├── boundary_check.c │ │ ├── clock.c │ │ ├── debug.c │ │ ├── include │ │ │ ├── ipxe │ │ │ │ └── pcnet32.h │ │ │ ├── kvm-unit-tests │ │ │ │ ├── apic-defs.h │ │ │ │ ├── apic.h │ │ │ │ └── msr.h │ │ │ ├── libsodium │ │ │ │ ├── sodium.h │ │ │ │ └── sodium │ │ │ │ │ ├── core.h │ │ │ │ │ ├── crypto_aead_aes256gcm.h │ │ │ │ │ ├── crypto_aead_chacha20poly1305.h │ │ │ │ │ ├── crypto_aead_xchacha20poly1305.h │ │ │ │ │ ├── crypto_auth.h │ │ │ │ │ ├── crypto_auth_hmacsha256.h │ │ │ │ │ ├── crypto_auth_hmacsha512.h │ │ │ │ │ ├── crypto_auth_hmacsha512256.h │ │ │ │ │ ├── crypto_box.h │ │ │ │ │ ├── crypto_box_curve25519xchacha20poly1305.h │ │ │ │ │ ├── crypto_box_curve25519xsalsa20poly1305.h │ │ │ │ │ ├── crypto_core_ed25519.h │ │ │ │ │ ├── crypto_core_hchacha20.h │ │ │ │ │ ├── crypto_core_hsalsa20.h │ │ │ │ │ ├── crypto_core_salsa20.h │ │ │ │ │ ├── crypto_core_salsa2012.h │ │ │ │ │ ├── crypto_core_salsa208.h │ │ │ │ │ ├── crypto_generichash.h │ │ │ │ │ ├── crypto_generichash_blake2b.h │ │ │ │ │ ├── crypto_hash.h │ │ │ │ │ ├── crypto_hash_sha256.h │ │ │ │ │ ├── crypto_hash_sha512.h │ │ │ │ │ ├── crypto_kdf.h │ │ │ │ │ ├── crypto_kdf_blake2b.h │ │ │ │ │ ├── crypto_kx.h │ │ │ │ │ ├── crypto_onetimeauth.h │ │ │ │ │ ├── crypto_onetimeauth_poly1305.h │ │ │ │ │ ├── crypto_pwhash.h │ │ │ │ │ ├── crypto_pwhash_argon2i.h │ │ │ │ │ ├── crypto_pwhash_argon2id.h │ │ │ │ │ ├── crypto_pwhash_scryptsalsa208sha256.h │ │ │ │ │ ├── crypto_scalarmult.h │ │ │ │ │ ├── crypto_scalarmult_curve25519.h │ │ │ │ │ ├── crypto_scalarmult_ed25519.h │ │ │ │ │ ├── crypto_secretbox.h │ │ │ │ │ ├── crypto_secretbox_xchacha20poly1305.h │ │ │ │ │ ├── crypto_secretbox_xsalsa20poly1305.h │ │ │ │ │ ├── crypto_secretstream_xchacha20poly1305.h │ │ │ │ │ ├── crypto_shorthash.h │ │ │ │ │ ├── crypto_shorthash_siphash24.h │ │ │ │ │ ├── crypto_sign.h │ │ │ │ │ ├── crypto_sign_ed25519.h │ │ │ │ │ ├── crypto_sign_edwards25519sha512batch.h │ │ │ │ │ ├── crypto_stream.h │ │ │ │ │ ├── crypto_stream_chacha20.h │ │ │ │ │ ├── crypto_stream_salsa20.h │ │ │ │ │ ├── crypto_stream_salsa2012.h │ │ │ │ │ ├── crypto_stream_salsa208.h │ │ │ │ │ ├── crypto_stream_xchacha20.h │ │ │ │ │ ├── crypto_stream_xsalsa20.h │ │ │ │ │ ├── crypto_verify_16.h │ │ │ │ │ ├── crypto_verify_32.h │ │ │ │ │ ├── crypto_verify_64.h │ │ │ │ │ ├── export.h │ │ │ │ │ ├── private │ │ │ │ │ ├── common.h │ │ │ │ │ ├── ed25519_ref10.h │ │ │ │ │ ├── ed25519_ref10_fe_25_5.h │ │ │ │ │ ├── ed25519_ref10_fe_51.h │ │ │ │ │ ├── implementations.h │ │ │ │ │ ├── mutex.h │ │ │ │ │ └── sse2_64_32.h │ │ │ │ │ ├── randombytes.h │ │ │ │ │ ├── randombytes_nativeclient.h │ │ │ │ │ ├── randombytes_salsa20_random.h │ │ │ │ │ ├── randombytes_sysrandom.h │ │ │ │ │ ├── runtime.h │ │ │ │ │ ├── utils.h │ │ │ │ │ ├── version.h │ │ │ │ │ └── version.h.in │ │ │ ├── linux │ │ │ │ ├── asm │ │ │ │ │ ├── Kbuild │ │ │ │ │ ├── a.out-core.h │ │ │ │ │ ├── acenv.h │ │ │ │ │ ├── acpi.h │ │ │ │ │ ├── agp.h │ │ │ │ │ ├── alternative-asm.h │ │ │ │ │ ├── alternative.h │ │ │ │ │ ├── amd_nb.h │ │ │ │ │ ├── apb_timer.h │ │ │ │ │ ├── apic.h │ │ │ │ │ ├── apic_flat_64.h │ │ │ │ │ ├── apicdef.h │ │ │ │ │ ├── apm.h │ │ │ │ │ ├── arch_hweight.h │ │ │ │ │ ├── archrandom.h │ │ │ │ │ ├── asm-offsets.h │ │ │ │ │ ├── asm-prototypes.h │ │ │ │ │ ├── asm.h │ │ │ │ │ ├── atomic.h │ │ │ │ │ ├── atomic64_32.h │ │ │ │ │ ├── atomic64_64.h │ │ │ │ │ ├── barrier.h │ │ │ │ │ ├── bios_ebda.h │ │ │ │ │ ├── bitops.h │ │ │ │ │ ├── boot.h │ │ │ │ │ ├── bootparam_utils.h │ │ │ │ │ ├── bug.h │ │ │ │ │ ├── bugs.h │ │ │ │ │ ├── cache.h │ │ │ │ │ ├── cacheflush.h │ │ │ │ │ ├── calgary.h │ │ │ │ │ ├── ce4100.h │ │ │ │ │ ├── checksum.h │ │ │ │ │ ├── checksum_32.h │ │ │ │ │ ├── checksum_64.h │ │ │ │ │ ├── clocksource.h │ │ │ │ │ ├── cmdline.h │ │ │ │ │ ├── cmpxchg.h │ │ │ │ │ ├── cmpxchg_32.h │ │ │ │ │ ├── cmpxchg_64.h │ │ │ │ │ ├── compat.h │ │ │ │ │ ├── cpu.h │ │ │ │ │ ├── cpu_device_id.h │ │ │ │ │ ├── cpufeature.h │ │ │ │ │ ├── cpufeatures.h │ │ │ │ │ ├── cpumask.h │ │ │ │ │ ├── crash.h │ │ │ │ │ ├── crypto │ │ │ │ │ │ ├── aes.h │ │ │ │ │ │ ├── camellia.h │ │ │ │ │ │ ├── glue_helper.h │ │ │ │ │ │ ├── serpent-avx.h │ │ │ │ │ │ ├── serpent-sse2.h │ │ │ │ │ │ └── twofish.h │ │ │ │ │ ├── current.h │ │ │ │ │ ├── debugreg.h │ │ │ │ │ ├── delay.h │ │ │ │ │ ├── desc.h │ │ │ │ │ ├── desc_defs.h │ │ │ │ │ ├── device.h │ │ │ │ │ ├── disabled-features.h │ │ │ │ │ ├── div64.h │ │ │ │ │ ├── dma-mapping.h │ │ │ │ │ ├── dma.h │ │ │ │ │ ├── dmi.h │ │ │ │ │ ├── dwarf2.h │ │ │ │ │ ├── e820.h │ │ │ │ │ ├── edac.h │ │ │ │ │ ├── efi.h │ │ │ │ │ ├── elf.h │ │ │ │ │ ├── emergency-restart.h │ │ │ │ │ ├── entry_arch.h │ │ │ │ │ ├── espfix.h │ │ │ │ │ ├── exec.h │ │ │ │ │ ├── export.h │ │ │ │ │ ├── extable.h │ │ │ │ │ ├── fb.h │ │ │ │ │ ├── fixmap.h │ │ │ │ │ ├── floppy.h │ │ │ │ │ ├── fpu │ │ │ │ │ │ ├── api.h │ │ │ │ │ │ ├── internal.h │ │ │ │ │ │ ├── regset.h │ │ │ │ │ │ ├── signal.h │ │ │ │ │ │ ├── types.h │ │ │ │ │ │ └── xstate.h │ │ │ │ │ ├── frame.h │ │ │ │ │ ├── ftrace.h │ │ │ │ │ ├── futex.h │ │ │ │ │ ├── gart.h │ │ │ │ │ ├── genapic.h │ │ │ │ │ ├── geode.h │ │ │ │ │ ├── hardirq.h │ │ │ │ │ ├── highmem.h │ │ │ │ │ ├── hpet.h │ │ │ │ │ ├── hugetlb.h │ │ │ │ │ ├── hw_breakpoint.h │ │ │ │ │ ├── hw_irq.h │ │ │ │ │ ├── hypertransport.h │ │ │ │ │ ├── hypervisor.h │ │ │ │ │ ├── i8259.h │ │ │ │ │ ├── ia32.h │ │ │ │ │ ├── ia32_unistd.h │ │ │ │ │ ├── imr.h │ │ │ │ │ ├── inat.h │ │ │ │ │ ├── inat_types.h │ │ │ │ │ ├── init.h │ │ │ │ │ ├── insn.h │ │ │ │ │ ├── inst.h │ │ │ │ │ ├── intel-family.h │ │ │ │ │ ├── intel-mid.h │ │ │ │ │ ├── intel_mid_vrtc.h │ │ │ │ │ ├── intel_pmc_ipc.h │ │ │ │ │ ├── intel_pt.h │ │ │ │ │ ├── intel_punit_ipc.h │ │ │ │ │ ├── intel_rdt.h │ │ │ │ │ ├── intel_rdt_common.h │ │ │ │ │ ├── intel_scu_ipc.h │ │ │ │ │ ├── intel_telemetry.h │ │ │ │ │ ├── io.h │ │ │ │ │ ├── io_apic.h │ │ │ │ │ ├── iomap.h │ │ │ │ │ ├── iommu.h │ │ │ │ │ ├── iommu_table.h │ │ │ │ │ ├── iosf_mbi.h │ │ │ │ │ ├── ipi.h │ │ │ │ │ ├── irq.h │ │ │ │ │ ├── irq_regs.h │ │ │ │ │ ├── irq_remapping.h │ │ │ │ │ ├── irq_vectors.h │ │ │ │ │ ├── irq_work.h │ │ │ │ │ ├── irqdomain.h │ │ │ │ │ ├── irqflags.h │ │ │ │ │ ├── ist.h │ │ │ │ │ ├── jump_label.h │ │ │ │ │ ├── kasan.h │ │ │ │ │ ├── kaslr.h │ │ │ │ │ ├── kbdleds.h │ │ │ │ │ ├── kdebug.h │ │ │ │ │ ├── kexec-bzimage64.h │ │ │ │ │ ├── kexec.h │ │ │ │ │ ├── kgdb.h │ │ │ │ │ ├── kmap_types.h │ │ │ │ │ ├── kmemcheck.h │ │ │ │ │ ├── kprobes.h │ │ │ │ │ ├── kvm_emulate.h │ │ │ │ │ ├── kvm_guest.h │ │ │ │ │ ├── kvm_host.h │ │ │ │ │ ├── kvm_page_track.h │ │ │ │ │ ├── kvm_para.h │ │ │ │ │ ├── kvmclock.h │ │ │ │ │ ├── lguest.h │ │ │ │ │ ├── lguest_hcall.h │ │ │ │ │ ├── linkage.h │ │ │ │ │ ├── livepatch.h │ │ │ │ │ ├── local.h │ │ │ │ │ ├── local64.h │ │ │ │ │ ├── mach_timer.h │ │ │ │ │ ├── mach_traps.h │ │ │ │ │ ├── math_emu.h │ │ │ │ │ ├── mc146818rtc.h │ │ │ │ │ ├── mce.h │ │ │ │ │ ├── microcode.h │ │ │ │ │ ├── microcode_amd.h │ │ │ │ │ ├── microcode_intel.h │ │ │ │ │ ├── misc.h │ │ │ │ │ ├── mmconfig.h │ │ │ │ │ ├── mmu.h │ │ │ │ │ ├── mmu_context.h │ │ │ │ │ ├── mmx.h │ │ │ │ │ ├── mmzone.h │ │ │ │ │ ├── mmzone_32.h │ │ │ │ │ ├── mmzone_64.h │ │ │ │ │ ├── module.h │ │ │ │ │ ├── mpspec.h │ │ │ │ │ ├── mpspec_def.h │ │ │ │ │ ├── mpx.h │ │ │ │ │ ├── mshyperv.h │ │ │ │ │ ├── msi.h │ │ │ │ │ ├── msidef.h │ │ │ │ │ ├── msr-index.h │ │ │ │ │ ├── msr-trace.h │ │ │ │ │ ├── msr.h │ │ │ │ │ ├── mtrr.h │ │ │ │ │ ├── mwait.h │ │ │ │ │ ├── nmi.h │ │ │ │ │ ├── nops.h │ │ │ │ │ ├── numa.h │ │ │ │ │ ├── numa_32.h │ │ │ │ │ ├── numachip │ │ │ │ │ │ ├── numachip.h │ │ │ │ │ │ └── numachip_csr.h │ │ │ │ │ ├── olpc.h │ │ │ │ │ ├── olpc_ofw.h │ │ │ │ │ ├── page.h │ │ │ │ │ ├── page_32.h │ │ │ │ │ ├── page_32_types.h │ │ │ │ │ ├── page_64.h │ │ │ │ │ ├── page_64_types.h │ │ │ │ │ ├── page_types.h │ │ │ │ │ ├── paravirt.h │ │ │ │ │ ├── paravirt_types.h │ │ │ │ │ ├── parport.h │ │ │ │ │ ├── pat.h │ │ │ │ │ ├── pci-direct.h │ │ │ │ │ ├── pci-functions.h │ │ │ │ │ ├── pci.h │ │ │ │ │ ├── pci_64.h │ │ │ │ │ ├── pci_x86.h │ │ │ │ │ ├── percpu.h │ │ │ │ │ ├── perf_event.h │ │ │ │ │ ├── perf_event_p4.h │ │ │ │ │ ├── pgalloc.h │ │ │ │ │ ├── pgtable-2level.h │ │ │ │ │ ├── pgtable-2level_types.h │ │ │ │ │ ├── pgtable-3level.h │ │ │ │ │ ├── pgtable-3level_types.h │ │ │ │ │ ├── pgtable.h │ │ │ │ │ ├── pgtable_32.h │ │ │ │ │ ├── pgtable_32_types.h │ │ │ │ │ ├── pgtable_64.h │ │ │ │ │ ├── pgtable_64_types.h │ │ │ │ │ ├── pgtable_types.h │ │ │ │ │ ├── pkeys.h │ │ │ │ │ ├── platform_sst_audio.h │ │ │ │ │ ├── pm-trace.h │ │ │ │ │ ├── pmc_core.h │ │ │ │ │ ├── pmem.h │ │ │ │ │ ├── posix_types.h │ │ │ │ │ ├── preempt.h │ │ │ │ │ ├── probe_roms.h │ │ │ │ │ ├── processor-cyrix.h │ │ │ │ │ ├── processor-flags.h │ │ │ │ │ ├── processor.h │ │ │ │ │ ├── prom.h │ │ │ │ │ ├── proto.h │ │ │ │ │ ├── ptrace.h │ │ │ │ │ ├── purgatory.h │ │ │ │ │ ├── pvclock-abi.h │ │ │ │ │ ├── pvclock.h │ │ │ │ │ ├── qrwlock.h │ │ │ │ │ ├── qspinlock.h │ │ │ │ │ ├── qspinlock_paravirt.h │ │ │ │ │ ├── realmode.h │ │ │ │ │ ├── reboot.h │ │ │ │ │ ├── reboot_fixups.h │ │ │ │ │ ├── required-features.h │ │ │ │ │ ├── rio.h │ │ │ │ │ ├── rmwcc.h │ │ │ │ │ ├── rwsem.h │ │ │ │ │ ├── seccomp.h │ │ │ │ │ ├── sections.h │ │ │ │ │ ├── segment.h │ │ │ │ │ ├── serial.h │ │ │ │ │ ├── setup.h │ │ │ │ │ ├── setup_arch.h │ │ │ │ │ ├── sgx.h │ │ │ │ │ ├── shmparam.h │ │ │ │ │ ├── sigcontext.h │ │ │ │ │ ├── sigframe.h │ │ │ │ │ ├── sighandling.h │ │ │ │ │ ├── signal.h │ │ │ │ │ ├── simd.h │ │ │ │ │ ├── smap.h │ │ │ │ │ ├── smp.h │ │ │ │ │ ├── sparsemem.h │ │ │ │ │ ├── special_insns.h │ │ │ │ │ ├── spinlock.h │ │ │ │ │ ├── spinlock_types.h │ │ │ │ │ ├── sta2x11.h │ │ │ │ │ ├── stackprotector.h │ │ │ │ │ ├── stacktrace.h │ │ │ │ │ ├── string.h │ │ │ │ │ ├── string_32.h │ │ │ │ │ ├── string_64.h │ │ │ │ │ ├── suspend.h │ │ │ │ │ ├── suspend_32.h │ │ │ │ │ ├── suspend_64.h │ │ │ │ │ ├── svm.h │ │ │ │ │ ├── swiotlb.h │ │ │ │ │ ├── switch_to.h │ │ │ │ │ ├── sync_bitops.h │ │ │ │ │ ├── sys_ia32.h │ │ │ │ │ ├── syscall.h │ │ │ │ │ ├── syscalls.h │ │ │ │ │ ├── sysfb.h │ │ │ │ │ ├── tce.h │ │ │ │ │ ├── text-patching.h │ │ │ │ │ ├── thread_info.h │ │ │ │ │ ├── time.h │ │ │ │ │ ├── timer.h │ │ │ │ │ ├── timex.h │ │ │ │ │ ├── tlb.h │ │ │ │ │ ├── tlbflush.h │ │ │ │ │ ├── topology.h │ │ │ │ │ ├── trace │ │ │ │ │ │ ├── exceptions.h │ │ │ │ │ │ ├── fpu.h │ │ │ │ │ │ ├── irq_vectors.h │ │ │ │ │ │ └── mpx.h │ │ │ │ │ ├── trace_clock.h │ │ │ │ │ ├── traps.h │ │ │ │ │ ├── tsc.h │ │ │ │ │ ├── uaccess.h │ │ │ │ │ ├── uaccess_32.h │ │ │ │ │ ├── uaccess_64.h │ │ │ │ │ ├── unaligned.h │ │ │ │ │ ├── unistd.h │ │ │ │ │ ├── unwind.h │ │ │ │ │ ├── uprobes.h │ │ │ │ │ ├── user.h │ │ │ │ │ ├── user32.h │ │ │ │ │ ├── user_32.h │ │ │ │ │ ├── user_64.h │ │ │ │ │ ├── uv │ │ │ │ │ │ ├── bios.h │ │ │ │ │ │ ├── uv.h │ │ │ │ │ │ ├── uv_bau.h │ │ │ │ │ │ ├── uv_hub.h │ │ │ │ │ │ ├── uv_irq.h │ │ │ │ │ │ └── uv_mmrs.h │ │ │ │ │ ├── vdso.h │ │ │ │ │ ├── vga.h │ │ │ │ │ ├── vgtod.h │ │ │ │ │ ├── virtext.h │ │ │ │ │ ├── vm86.h │ │ │ │ │ ├── vmx.h │ │ │ │ │ ├── vsyscall.h │ │ │ │ │ ├── vvar.h │ │ │ │ │ ├── word-at-a-time.h │ │ │ │ │ ├── x2apic.h │ │ │ │ │ ├── x86_init.h │ │ │ │ │ ├── xen │ │ │ │ │ │ ├── cpuid.h │ │ │ │ │ │ ├── events.h │ │ │ │ │ │ ├── hypercall.h │ │ │ │ │ │ ├── hypervisor.h │ │ │ │ │ │ ├── interface.h │ │ │ │ │ │ ├── interface_32.h │ │ │ │ │ │ ├── interface_64.h │ │ │ │ │ │ ├── page-coherent.h │ │ │ │ │ │ ├── page.h │ │ │ │ │ │ ├── pci.h │ │ │ │ │ │ ├── swiotlb-xen.h │ │ │ │ │ │ └── trace_types.h │ │ │ │ │ ├── xor.h │ │ │ │ │ ├── xor_32.h │ │ │ │ │ ├── xor_64.h │ │ │ │ │ └── xor_avx.h │ │ │ │ └── i8042-io.h │ │ │ ├── microbench.h │ │ │ └── smx.h │ │ ├── pcnet32.c │ │ ├── randombytes.c │ │ ├── rdrand.c │ │ ├── ring_buffer.c │ │ ├── rtc.c │ │ └── supervisor.c │ ├── xen.c │ └── xen.h ├── gen-defs.h ├── hw │ ├── ahci.c │ ├── ahci.h │ ├── ata.c │ ├── ata.h │ ├── blockcmd.c │ ├── blockcmd.h │ ├── dma.c │ ├── esp-scsi.c │ ├── esp-scsi.h │ ├── floppy.c │ ├── lsi-scsi.c │ ├── lsi-scsi.h │ ├── megasas.c │ ├── megasas.h │ ├── mpt-scsi.c │ ├── mpt-scsi.h │ ├── nvme-int.h │ ├── nvme.c │ ├── nvme.h │ ├── pci.c │ ├── pci.h │ ├── pci_ids.h │ ├── pci_regs.h │ ├── pcidevice.c │ ├── pcidevice.h │ ├── pic.c │ ├── pic.h │ ├── ps2port.c │ ├── ps2port.h │ ├── pvscsi.c │ ├── pvscsi.h │ ├── ramdisk.c │ ├── rtc.c │ ├── rtc.h │ ├── sdcard.c │ ├── serialio.c │ ├── serialio.h │ ├── timer.c │ ├── tpm_drivers.c │ ├── tpm_drivers.h │ ├── usb-ehci.c │ ├── usb-ehci.h │ ├── usb-hid.c │ ├── usb-hid.h │ ├── usb-hub.c │ ├── usb-hub.h │ ├── usb-msc.c │ ├── usb-msc.h │ ├── usb-ohci.c │ ├── usb-ohci.h │ ├── usb-uas.c │ ├── usb-uas.h │ ├── usb-uhci.c │ ├── usb-uhci.h │ ├── usb-xhci.c │ ├── usb-xhci.h │ ├── usb.c │ ├── usb.h │ ├── virtio-blk.c │ ├── virtio-blk.h │ ├── virtio-pci.c │ ├── virtio-pci.h │ ├── virtio-ring.c │ ├── virtio-ring.h │ ├── virtio-scsi.c │ └── virtio-scsi.h ├── jpeg.c ├── kbd.c ├── list.h ├── malloc.c ├── malloc.h ├── memmap.h ├── misc.c ├── mouse.c ├── optionroms.c ├── output.c ├── output.h ├── pcibios.c ├── pmm.c ├── pnpbios.c ├── post.c ├── resume.c ├── romfile.c ├── romfile.h ├── romlayout.S ├── sercon.c ├── serial.c ├── sha1.c ├── sha1.h ├── stacks.c ├── stacks.h ├── std │ ├── LegacyBios.h │ ├── acpi.h │ ├── bda.h │ ├── disk.h │ ├── mptable.h │ ├── multiboot.h │ ├── optionrom.h │ ├── pirtable.h │ ├── pmm.h │ ├── pnpbios.h │ ├── smbios.h │ ├── tcg.h │ ├── vbe.h │ └── vga.h ├── string.c ├── string.h ├── system.c ├── tcgbios.c ├── tcgbios.h ├── types.h ├── util.h ├── version.c ├── vgahooks.c ├── x86.c └── x86.h └── vgasrc ├── Kconfig ├── bochsvga.c ├── bochsvga.h ├── cbvga.c ├── clext.c ├── geodevga.c ├── geodevga.h ├── stdvga.c ├── stdvga.h ├── stdvgaio.c ├── stdvgamodes.c ├── swcursor.c ├── vbe.c ├── vgabios.c ├── vgabios.h ├── vgaentry.S ├── vgafb.c ├── vgafb.h ├── vgafonts.c ├── vgahw.h ├── vgainit.c ├── vgalayout.lds.S ├── vgautil.h └── vgaversion.c /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/.gitignore -------------------------------------------------------------------------------- /Aurora-lwip-sgx/App/App.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-lwip-sgx/App/App.cpp -------------------------------------------------------------------------------- /Aurora-lwip-sgx/App/App.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-lwip-sgx/App/App.h -------------------------------------------------------------------------------- /Aurora-lwip-sgx/App/lwip/FILES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-lwip-sgx/App/lwip/FILES -------------------------------------------------------------------------------- /Aurora-lwip-sgx/App/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-lwip-sgx/App/test.cpp -------------------------------------------------------------------------------- /Aurora-lwip-sgx/App/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-lwip-sgx/App/utils.cpp -------------------------------------------------------------------------------- /Aurora-lwip-sgx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-lwip-sgx/Makefile -------------------------------------------------------------------------------- /Aurora-lwip-sgx/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-lwip-sgx/README.txt -------------------------------------------------------------------------------- /Aurora-openssh-sgx/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-openssh-sgx/.cproject -------------------------------------------------------------------------------- /Aurora-openssh-sgx/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-openssh-sgx/.project -------------------------------------------------------------------------------- /Aurora-openssh-sgx/App/App.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-openssh-sgx/App/App.cpp -------------------------------------------------------------------------------- /Aurora-openssh-sgx/App/App.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-openssh-sgx/App/App.h -------------------------------------------------------------------------------- /Aurora-openssh-sgx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-openssh-sgx/Makefile -------------------------------------------------------------------------------- /Aurora-openssh-sgx/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-openssh-sgx/README.txt -------------------------------------------------------------------------------- /Aurora-qemu-sgx/.dir-locals.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/.dir-locals.el -------------------------------------------------------------------------------- /Aurora-qemu-sgx/.exrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/.exrc -------------------------------------------------------------------------------- /Aurora-qemu-sgx/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/.gitignore -------------------------------------------------------------------------------- /Aurora-qemu-sgx/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/.gitmodules -------------------------------------------------------------------------------- /Aurora-qemu-sgx/.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/.mailmap -------------------------------------------------------------------------------- /Aurora-qemu-sgx/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/.travis.yml -------------------------------------------------------------------------------- /Aurora-qemu-sgx/CODING_STYLE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/CODING_STYLE -------------------------------------------------------------------------------- /Aurora-qemu-sgx/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/COPYING -------------------------------------------------------------------------------- /Aurora-qemu-sgx/COPYING.LIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/COPYING.LIB -------------------------------------------------------------------------------- /Aurora-qemu-sgx/Changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/Changelog -------------------------------------------------------------------------------- /Aurora-qemu-sgx/HACKING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/HACKING -------------------------------------------------------------------------------- /Aurora-qemu-sgx/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/LICENSE -------------------------------------------------------------------------------- /Aurora-qemu-sgx/MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/MAINTAINERS -------------------------------------------------------------------------------- /Aurora-qemu-sgx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/Makefile -------------------------------------------------------------------------------- /Aurora-qemu-sgx/Makefile.objs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/Makefile.objs -------------------------------------------------------------------------------- /Aurora-qemu-sgx/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/README -------------------------------------------------------------------------------- /Aurora-qemu-sgx/VERSION: -------------------------------------------------------------------------------- 1 | 2.7.92 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/accel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/accel.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/aio-posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/aio-posix.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/aio-win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/aio-win32.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/arch_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/arch_init.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/async.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/async.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/audio/audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/audio/audio.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/audio/audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/audio/audio.h -------------------------------------------------------------------------------- /Aurora-qemu-sgx/audio/mixeng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/audio/mixeng.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/audio/mixeng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/audio/mixeng.h -------------------------------------------------------------------------------- /Aurora-qemu-sgx/backends/rng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/backends/rng.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/backends/tpm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/backends/tpm.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/balloon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/balloon.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/block.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/block.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/block/backup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/block/backup.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/block/bochs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/block/bochs.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/block/cloop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/block/cloop.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/block/commit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/block/commit.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/block/crypto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/block/crypto.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/block/curl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/block/curl.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/block/dmg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/block/dmg.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/block/dmg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/block/dmg.h -------------------------------------------------------------------------------- /Aurora-qemu-sgx/block/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/block/io.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/block/iscsi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/block/iscsi.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/block/mirror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/block/mirror.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/block/nbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/block/nbd.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/block/nfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/block/nfs.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/block/null.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/block/null.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/block/qapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/block/qapi.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/block/qcow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/block/qcow.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/block/qcow2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/block/qcow2.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/block/qcow2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/block/qcow2.h -------------------------------------------------------------------------------- /Aurora-qemu-sgx/block/qed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/block/qed.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/block/qed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/block/qed.h -------------------------------------------------------------------------------- /Aurora-qemu-sgx/block/quorum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/block/quorum.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/block/rbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/block/rbd.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/block/ssh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/block/ssh.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/block/stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/block/stream.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/block/vdi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/block/vdi.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/block/vhdx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/block/vhdx.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/block/vhdx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/block/vhdx.h -------------------------------------------------------------------------------- /Aurora-qemu-sgx/block/vmdk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/block/vmdk.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/block/vpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/block/vpc.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/block/vvfat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/block/vvfat.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/blockdev-nbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/blockdev-nbd.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/blockdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/blockdev.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/blockjob.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/blockjob.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/bootdevice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/bootdevice.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/bt-host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/bt-host.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/bt-vhci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/bt-vhci.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/configure -------------------------------------------------------------------------------- /Aurora-qemu-sgx/cpu-exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/cpu-exec.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/cpus-common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/cpus-common.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/cpus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/cpus.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/cputlb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/cputlb.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/crypto/aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/crypto/aes.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/crypto/block.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/crypto/block.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/crypto/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/crypto/hash.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/crypto/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/crypto/init.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/crypto/ivgen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/crypto/ivgen.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/crypto/pbkdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/crypto/pbkdf.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/crypto/xts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/crypto/xts.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/default-configs/aarch64-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for aarch64-linux-user 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/default-configs/alpha-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for alpha-linux-user 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/default-configs/arm-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for arm-linux-user 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/default-configs/armeb-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for armeb-linux-user 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/default-configs/cris-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for cris-linux-user 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/default-configs/i386-bsd-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for i386-bsd-user 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/default-configs/i386-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for i386-linux-user 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/default-configs/m68k-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for m68k-linux-user 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/default-configs/mips-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for mips-linux-user 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/default-configs/mips64-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for mips64-linux-user 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/default-configs/mips64el-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for mips64el-linux-user 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/default-configs/mipsel-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for mipsel-linux-user 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/default-configs/mipsn32-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for mipsn32-linux-user 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/default-configs/or32-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for or32-linux-user 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/default-configs/s390x-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for s390x-linux-user 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/default-configs/sh4-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for sh4-linux-user 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/default-configs/sh4eb-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for sh4eb-linux-user 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/default-configs/sparc-bsd-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for sparc-bsd-user 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/default-configs/sparc-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for sparc-linux-user 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/default-configs/sparc64-bsd-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for sparc64-bsd-user 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/default-configs/sparc64-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for sparc64-linux-user 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/default-configs/tilegx-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for tilegx-linux-user 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/default-configs/tricore-softmmu.mak: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/default-configs/x86_64-bsd-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for x86_64-bsd-user 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/default-configs/x86_64-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for x86_64-linux-user 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/device_tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/device_tree.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/disas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/disas.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/disas/alpha.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/disas/alpha.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/disas/arm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/disas/arm.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/disas/cris.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/disas/cris.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/disas/i386.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/disas/i386.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/disas/ia64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/disas/ia64.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/disas/lm32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/disas/lm32.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/disas/m68k.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/disas/m68k.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/disas/mips.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/disas/mips.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/disas/moxie.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/disas/moxie.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/disas/ppc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/disas/ppc.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/disas/s390.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/disas/s390.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/disas/sh4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/disas/sh4.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/disas/sparc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/disas/sparc.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/disas/tci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/disas/tci.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/dma-helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/dma-helpers.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/docs/ccid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/docs/ccid.txt -------------------------------------------------------------------------------- /Aurora-qemu-sgx/docs/pcie.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/docs/pcie.txt -------------------------------------------------------------------------------- /Aurora-qemu-sgx/docs/rcu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/docs/rcu.txt -------------------------------------------------------------------------------- /Aurora-qemu-sgx/docs/rdma.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/docs/rdma.txt -------------------------------------------------------------------------------- /Aurora-qemu-sgx/docs/usb2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/docs/usb2.txt -------------------------------------------------------------------------------- /Aurora-qemu-sgx/dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/dump.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/exec.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/gdbstub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/gdbstub.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hmp.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hmp.h -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/9pfs/9p.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hw/9pfs/9p.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/9pfs/9p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hw/9pfs/9p.h -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/9pfs/cofs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hw/9pfs/cofs.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/9pfs/coth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hw/9pfs/coth.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/9pfs/coth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hw/9pfs/coth.h -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/acpi/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hw/acpi/core.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/acpi/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hw/acpi/cpu.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/acpi/ich9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hw/acpi/ich9.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/acpi/ipmi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hw/acpi/ipmi.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/acpi/tco.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hw/acpi/tco.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/adc/Makefile.objs: -------------------------------------------------------------------------------- 1 | obj-$(CONFIG_STM32F2XX_ADC) += stm32f2xx_adc.o 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/alpha/Makefile.objs: -------------------------------------------------------------------------------- 1 | obj-y += dp264.o pci.o typhoon.o 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/alpha/pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hw/alpha/pci.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/arm/boot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hw/arm/boot.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/arm/digic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hw/arm/digic.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/arm/kzm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hw/arm/kzm.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/arm/omap1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hw/arm/omap1.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/arm/omap2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hw/arm/omap2.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/arm/palm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hw/arm/palm.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/arm/raspi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hw/arm/raspi.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/arm/spitz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hw/arm/spitz.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/arm/tosa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hw/arm/tosa.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/arm/virt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hw/arm/virt.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/arm/z2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hw/arm/z2.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/audio/gus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hw/audio/gus.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/block/dataplane/Makefile.objs: -------------------------------------------------------------------------------- 1 | obj-y += virtio-blk.o 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/block/ecc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hw/block/ecc.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/block/fdc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hw/block/fdc.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/bt/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hw/bt/core.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/bt/hci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hw/bt/hci.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/bt/hid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hw/bt/hid.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/bt/l2cap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hw/bt/l2cap.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/bt/sdp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hw/bt/sdp.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/char/escc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hw/char/escc.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/core/bus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hw/core/bus.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/core/irq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hw/core/irq.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/core/nmi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hw/core/nmi.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/core/qdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hw/core/qdev.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/cpu/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hw/cpu/core.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/cris/boot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hw/cris/boot.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/cris/boot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hw/cris/boot.h -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/dma/i8257.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hw/dma/i8257.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/dma/pl080.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hw/dma/pl080.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/dma/pl330.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hw/dma/pl330.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/i2c/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hw/i2c/core.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/i2c/smbus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hw/i2c/smbus.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/i386/pc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hw/i386/pc.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/ide/ahci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hw/ide/ahci.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/ide/atapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hw/ide/atapi.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/ide/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hw/ide/core.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/ide/ich.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hw/ide/ich.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/ide/isa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hw/ide/isa.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/ide/macio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hw/ide/macio.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/ide/mmio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hw/ide/mmio.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/ide/pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hw/ide/pci.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/ide/piix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hw/ide/piix.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/ide/qdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hw/ide/qdev.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/ide/via.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hw/ide/via.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/input/adb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hw/input/adb.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/input/hid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hw/input/hid.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/input/ps2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hw/input/ps2.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/intc/apic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hw/intc/apic.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/intc/intc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hw/intc/intc.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/intc/xics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hw/intc/xics.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/ipmi/ipmi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hw/ipmi/ipmi.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/isa/apm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hw/isa/apm.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/isa/piix4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hw/isa/piix4.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/lm32/lm32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hw/lm32/lm32.h -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/mips/addr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hw/mips/addr.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/mips/cps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hw/mips/cps.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/misc/cbus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hw/misc/cbus.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/misc/edu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hw/misc/edu.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/misc/sga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hw/misc/sga.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/net/e1000.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hw/net/e1000.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/net/lance.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hw/net/lance.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/net/pcnet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hw/net/pcnet.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/net/pcnet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hw/net/pcnet.h -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/net/xgmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hw/net/xgmac.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/pci/msi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hw/pci/msi.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/pci/msix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hw/pci/msix.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/pci/pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hw/pci/pci.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/pci/pcie.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hw/pci/pcie.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/pci/shpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hw/pci/shpc.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/ppc/e500.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hw/ppc/e500.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/ppc/e500.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hw/ppc/e500.h -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/ppc/fdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hw/ppc/fdt.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/ppc/mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hw/ppc/mac.h -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/ppc/pnv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hw/ppc/pnv.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/ppc/ppc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hw/ppc/ppc.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/ppc/prep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hw/ppc/prep.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/ppc/spapr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hw/ppc/spapr.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/s390x/css.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hw/s390x/css.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/s390x/ipl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hw/s390x/ipl.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/s390x/ipl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hw/s390x/ipl.h -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/scsi/esp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hw/scsi/esp.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/scsi/mfi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hw/scsi/mfi.h -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/scsi/mpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hw/scsi/mpi.h -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/scsi/srp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hw/scsi/srp.h -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/sd/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hw/sd/core.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/sd/pl181.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hw/sd/pl181.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/sd/sd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hw/sd/sd.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/sd/sdhci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hw/sd/sdhci.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/sd/ssi-sd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hw/sd/ssi-sd.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/sh4/r2d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hw/sh4/r2d.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/sh4/shix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hw/sh4/shix.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/sparc/Makefile.objs: -------------------------------------------------------------------------------- 1 | obj-y += sun4m.o leon3.o 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/sparc64/Makefile.objs: -------------------------------------------------------------------------------- 1 | obj-y += sun4u.o 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/ssi/pl022.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hw/ssi/pl022.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/ssi/ssi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hw/ssi/ssi.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/tricore/Makefile.objs: -------------------------------------------------------------------------------- 1 | obj-y += tricore_testboard.o 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/usb/bus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hw/usb/bus.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/usb/ccid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hw/usb/ccid.h -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/usb/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hw/usb/core.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/usb/desc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hw/usb/desc.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/usb/desc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hw/usb/desc.h -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/usb/host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hw/usb/host.h -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/usb/libhw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hw/usb/libhw.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/vfio/pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hw/vfio/pci.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/hw/vfio/pci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/hw/vfio/pci.h -------------------------------------------------------------------------------- /Aurora-qemu-sgx/include/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/include/elf.h -------------------------------------------------------------------------------- /Aurora-qemu-sgx/include/standard-headers/linux/if_ether.h: -------------------------------------------------------------------------------- 1 | #define ETH_ALEN 6 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/io/channel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/io/channel.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/io/task.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/io/task.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/iohandler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/iohandler.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/ioport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/ioport.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/iothread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/iothread.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/kvm-all.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/kvm-all.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/kvm-stub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/kvm-stub.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/linux-headers/asm-arm/kvm_para.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/linux-headers/asm-arm64/kvm_para.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/linux-headers/asm-x86/hyperv.h: -------------------------------------------------------------------------------- 1 | #include "standard-headers/asm-x86/hyperv.h" 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/linux-headers/linux/virtio_config.h: -------------------------------------------------------------------------------- 1 | #include "standard-headers/linux/virtio_config.h" 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/linux-headers/linux/virtio_ring.h: -------------------------------------------------------------------------------- 1 | #include "standard-headers/linux/virtio_ring.h" 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/linux-user/mips64/target_structs.h: -------------------------------------------------------------------------------- 1 | #include "../mips/target_structs.h" 2 | 3 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/linux-user/mips64/termbits.h: -------------------------------------------------------------------------------- 1 | #include "../mips/termbits.h" 2 | 3 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/linux-user/sparc64/target_cpu.h: -------------------------------------------------------------------------------- 1 | #include "../sparc/target_cpu.h" 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/linux-user/x86_64/target_cpu.h: -------------------------------------------------------------------------------- 1 | #include "../i386/target_cpu.h" 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/main-loop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/main-loop.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/memory.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/migration/fd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/migration/fd.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/monitor.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/nbd/client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/nbd/client.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/nbd/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/nbd/common.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/nbd/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/nbd/server.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/net/checksum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/net/checksum.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/net/clients.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/net/clients.h -------------------------------------------------------------------------------- /Aurora-qemu-sgx/net/colo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/net/colo.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/net/colo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/net/colo.h -------------------------------------------------------------------------------- /Aurora-qemu-sgx/net/dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/net/dump.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/net/eth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/net/eth.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/net/filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/net/filter.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/net/hub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/net/hub.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/net/hub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/net/hub.h -------------------------------------------------------------------------------- /Aurora-qemu-sgx/net/l2tpv3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/net/l2tpv3.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/net/net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/net/net.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/net/netmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/net/netmap.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/net/queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/net/queue.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/net/slirp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/net/slirp.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/net/socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/net/socket.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/net/tap-aix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/net/tap-aix.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/net/tap-bsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/net/tap-bsd.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/net/tap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/net/tap.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/net/tap_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/net/tap_int.h -------------------------------------------------------------------------------- /Aurora-qemu-sgx/net/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/net/util.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/net/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/net/util.h -------------------------------------------------------------------------------- /Aurora-qemu-sgx/net/vde.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/net/vde.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/numa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/numa.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/os-posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/os-posix.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/os-win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/os-win32.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/page_cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/page_cache.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/pc-bios/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/pc-bios/README -------------------------------------------------------------------------------- /Aurora-qemu-sgx/pc-bios/keymaps/nl-be: -------------------------------------------------------------------------------- 1 | # Dutch (Belgium) 2 | map 0x813 3 | include common 4 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/pc-bios/optionrom/code16gcc.h: -------------------------------------------------------------------------------- 1 | asm( 2 | ".code16gcc\n" 3 | ); 4 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/po/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/po/Makefile -------------------------------------------------------------------------------- /Aurora-qemu-sgx/po/bg.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/po/bg.po -------------------------------------------------------------------------------- /Aurora-qemu-sgx/po/de_DE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/po/de_DE.po -------------------------------------------------------------------------------- /Aurora-qemu-sgx/po/fr_FR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/po/fr_FR.po -------------------------------------------------------------------------------- /Aurora-qemu-sgx/po/hu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/po/hu.po -------------------------------------------------------------------------------- /Aurora-qemu-sgx/po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/po/it.po -------------------------------------------------------------------------------- /Aurora-qemu-sgx/po/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/po/messages.po -------------------------------------------------------------------------------- /Aurora-qemu-sgx/po/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/po/tr.po -------------------------------------------------------------------------------- /Aurora-qemu-sgx/po/zh_CN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/po/zh_CN.po -------------------------------------------------------------------------------- /Aurora-qemu-sgx/qdev-monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/qdev-monitor.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/qemu-char.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/qemu-char.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/qemu-doc.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/qemu-doc.texi -------------------------------------------------------------------------------- /Aurora-qemu-sgx/qemu-ga.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/qemu-ga.texi -------------------------------------------------------------------------------- /Aurora-qemu-sgx/qemu-img.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/qemu-img.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/qemu-img.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/qemu-img.texi -------------------------------------------------------------------------------- /Aurora-qemu-sgx/qemu-io-cmds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/qemu-io-cmds.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/qemu-io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/qemu-io.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/qemu-nbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/qemu-nbd.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/qemu-nbd.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/qemu-nbd.texi -------------------------------------------------------------------------------- /Aurora-qemu-sgx/qemu-options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/qemu-options.h -------------------------------------------------------------------------------- /Aurora-qemu-sgx/qemu-seccomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/qemu-seccomp.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/qemu-tech.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/qemu-tech.texi -------------------------------------------------------------------------------- /Aurora-qemu-sgx/qemu-timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/qemu-timer.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/qemu.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/qemu.nsi -------------------------------------------------------------------------------- /Aurora-qemu-sgx/qemu.sasl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/qemu.sasl -------------------------------------------------------------------------------- /Aurora-qemu-sgx/qga/channel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/qga/channel.h -------------------------------------------------------------------------------- /Aurora-qemu-sgx/qga/commands.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/qga/commands.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/qga/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/qga/main.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/qmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/qmp.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/qobject/qint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/qobject/qint.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/qom/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/qom/cpu.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/qom/object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/qom/object.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/qtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/qtest.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/replication.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/replication.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/replication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/replication.h -------------------------------------------------------------------------------- /Aurora-qemu-sgx/roms/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/roms/Makefile -------------------------------------------------------------------------------- /Aurora-qemu-sgx/rules.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/rules.mak -------------------------------------------------------------------------------- /Aurora-qemu-sgx/scripts/hxtool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/scripts/hxtool -------------------------------------------------------------------------------- /Aurora-qemu-sgx/scripts/qmp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/slirp/bootp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/slirp/bootp.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/slirp/bootp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/slirp/bootp.h -------------------------------------------------------------------------------- /Aurora-qemu-sgx/slirp/cksum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/slirp/cksum.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/slirp/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/slirp/debug.h -------------------------------------------------------------------------------- /Aurora-qemu-sgx/slirp/dhcpv6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/slirp/dhcpv6.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/slirp/dhcpv6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/slirp/dhcpv6.h -------------------------------------------------------------------------------- /Aurora-qemu-sgx/slirp/if.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/slirp/if.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/slirp/if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/slirp/if.h -------------------------------------------------------------------------------- /Aurora-qemu-sgx/slirp/ip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/slirp/ip.h -------------------------------------------------------------------------------- /Aurora-qemu-sgx/slirp/ip6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/slirp/ip6.h -------------------------------------------------------------------------------- /Aurora-qemu-sgx/slirp/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/slirp/main.h -------------------------------------------------------------------------------- /Aurora-qemu-sgx/slirp/mbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/slirp/mbuf.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/slirp/mbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/slirp/mbuf.h -------------------------------------------------------------------------------- /Aurora-qemu-sgx/slirp/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/slirp/misc.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/slirp/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/slirp/misc.h -------------------------------------------------------------------------------- /Aurora-qemu-sgx/slirp/sbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/slirp/sbuf.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/slirp/sbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/slirp/sbuf.h -------------------------------------------------------------------------------- /Aurora-qemu-sgx/slirp/slirp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/slirp/slirp.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/slirp/slirp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/slirp/slirp.h -------------------------------------------------------------------------------- /Aurora-qemu-sgx/slirp/socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/slirp/socket.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/slirp/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/slirp/socket.h -------------------------------------------------------------------------------- /Aurora-qemu-sgx/slirp/tcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/slirp/tcp.h -------------------------------------------------------------------------------- /Aurora-qemu-sgx/slirp/tcpip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/slirp/tcpip.h -------------------------------------------------------------------------------- /Aurora-qemu-sgx/slirp/tftp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/slirp/tftp.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/slirp/tftp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/slirp/tftp.h -------------------------------------------------------------------------------- /Aurora-qemu-sgx/slirp/udp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/slirp/udp.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/slirp/udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/slirp/udp.h -------------------------------------------------------------------------------- /Aurora-qemu-sgx/slirp/udp6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/slirp/udp6.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/stubs/cpus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/stubs/cpus.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/stubs/dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/stubs/dump.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/stubs/get-fd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/stubs/get-fd.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/stubs/ipmi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/stubs/ipmi.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/stubs/kvm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/stubs/kvm.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/stubs/qtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/stubs/qtest.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/stubs/replay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/stubs/replay.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/stubs/reset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/stubs/reset.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/stubs/slirp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/stubs/slirp.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/stubs/sysbus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/stubs/sysbus.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/stubs/uuid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/stubs/uuid.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/stubs/vhost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/stubs/vhost.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/target-lm32/TODO: -------------------------------------------------------------------------------- 1 | * linux-user emulation 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/target-moxie/machine.h: -------------------------------------------------------------------------------- 1 | extern const VMStateDescription vmstate_moxie_cpu; 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tcg-runtime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/tcg-runtime.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tcg/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/tcg/LICENSE -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tcg/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/tcg/README -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tcg/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/tcg/TODO -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tcg/optimize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/tcg/optimize.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tcg/tcg-op.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/tcg/tcg-op.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tcg/tcg-op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/tcg/tcg-op.h -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tcg/tcg-opc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/tcg/tcg-opc.h -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tcg/tcg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/tcg/tcg.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tcg/tcg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/tcg/tcg.h -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tcg/tci/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/tcg/tci/README -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/tci.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/acpi-test-data/pc/FACS: -------------------------------------------------------------------------------- 1 | sstv`  -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/acpi-test-data/q35/FACS: -------------------------------------------------------------------------------- 1 | sstv`  -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/image-fuzzer/qcow2/__init__.py: -------------------------------------------------------------------------------- 1 | from layout import create_image 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/migration/guestperf/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/alternate-any.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/alternate-any.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/alternate-array.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/alternate-array.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/alternate-base.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/alternate-base.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/alternate-clash.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/alternate-clash.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/alternate-conflict-dict.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/alternate-conflict-dict.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/alternate-conflict-string.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/alternate-conflict-string.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/alternate-empty.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/alternate-empty.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/alternate-nested.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/alternate-nested.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/alternate-unknown.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/alternate-unknown.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/args-alternate.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/args-alternate.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/args-any.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/args-any.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/args-array-empty.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/args-array-empty.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/args-array-unknown.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/args-array-unknown.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/args-bad-boxed.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/args-bad-boxed.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/args-boxed-anon.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/args-boxed-anon.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/args-boxed-empty.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/args-boxed-empty.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/args-boxed-string.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/args-boxed-string.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/args-int.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/args-int.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/args-invalid.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/args-invalid.json: -------------------------------------------------------------------------------- 1 | { 'command': 'foo', 2 | 'data': false } 3 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/args-invalid.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/args-member-array-bad.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/args-member-array-bad.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/args-member-case.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/args-member-case.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/args-member-unknown.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/args-member-unknown.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/args-name-clash.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/args-name-clash.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/args-union.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/args-union.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/args-unknown.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/args-unknown.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/bad-base.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/bad-base.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/bad-data.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/bad-data.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/bad-ident.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/bad-ident.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/bad-type-bool.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/bad-type-bool.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/bad-type-dict.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/bad-type-dict.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/bad-type-int.err: -------------------------------------------------------------------------------- 1 | tests/qapi-schema/bad-type-int.json:3:13: Stray "1" 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/bad-type-int.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/bad-type-int.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/base-cycle-direct.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/base-cycle-direct.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/base-cycle-indirect.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/base-cycle-indirect.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/command-int.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/command-int.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/comments.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/comments.exit: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/double-data.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/double-data.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/double-type.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/double-type.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/duplicate-key.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/duplicate-key.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/empty.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/empty.exit: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/empty.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/enum-bad-name.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/enum-bad-name.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/enum-bad-prefix.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/enum-bad-prefix.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/enum-clash-member.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/enum-clash-member.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/enum-dict-member.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/enum-dict-member.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/enum-int-member.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/enum-int-member.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/enum-member-case.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/enum-member-case.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/enum-missing-data.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/enum-missing-data.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/enum-wrong-data.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/enum-wrong-data.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/escape-outside-string.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/escape-outside-string.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/escape-too-big.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/escape-too-big.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/escape-too-short.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/escape-too-short.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/event-boxed-empty.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/event-boxed-empty.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/event-case.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/event-case.exit: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/event-nest-struct.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/event-nest-struct.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/flat-union-array-branch.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/flat-union-array-branch.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/flat-union-bad-base.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/flat-union-bad-base.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/flat-union-bad-discriminator.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/flat-union-bad-discriminator.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/flat-union-base-any.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/flat-union-base-any.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/flat-union-base-union.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/flat-union-base-union.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/flat-union-clash-member.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/flat-union-clash-member.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/flat-union-empty.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/flat-union-empty.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/flat-union-incomplete-branch.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/flat-union-incomplete-branch.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/flat-union-inline.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/flat-union-inline.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/flat-union-int-branch.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/flat-union-int-branch.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/flat-union-invalid-branch-key.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/flat-union-invalid-branch-key.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/flat-union-invalid-discriminator.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/flat-union-invalid-discriminator.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/flat-union-no-base.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/flat-union-no-base.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/flat-union-optional-discriminator.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/flat-union-optional-discriminator.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/flat-union-string-discriminator.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/flat-union-string-discriminator.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/funny-char.err: -------------------------------------------------------------------------------- 1 | tests/qapi-schema/funny-char.json:2:36: Stray ";" 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/funny-char.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/funny-char.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/ident-with-escape.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/ident-with-escape.exit: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/include-before-err.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/include-before-err.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/include-cycle.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/include-cycle.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/include-format-err.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/include-format-err.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/include-nested-err.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/include-nested-err.json: -------------------------------------------------------------------------------- 1 | { 'include': 'missing-colon.json' } 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/include-nested-err.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/include-no-file.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/include-no-file.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/include-non-file.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/include-non-file.json: -------------------------------------------------------------------------------- 1 | { 'include': {} } 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/include-non-file.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/include-relpath.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/include-relpath.exit: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/include-repetition.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/include-repetition.exit: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/include-self-cycle.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/include-self-cycle.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/include-simple.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/include-simple.exit: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/indented-expr.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/indented-expr.exit: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/leading-comma-list.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/leading-comma-list.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/leading-comma-object.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/leading-comma-object.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/missing-colon.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/missing-colon.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/missing-comma-list.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/missing-comma-list.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/missing-comma-object.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/missing-comma-object.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/missing-type.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/missing-type.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/nested-struct-data.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/nested-struct-data.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/non-objects.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/non-objects.json: -------------------------------------------------------------------------------- 1 | 'string' 2 | [ ] 3 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/non-objects.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/qapi-schema-test.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/qapi-schema-test.exit: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/quoted-structural-chars.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/quoted-structural-chars.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/redefined-builtin.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/redefined-builtin.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/redefined-command.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/redefined-command.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/redefined-event.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/redefined-event.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/redefined-type.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/redefined-type.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/reserved-command-q.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/reserved-command-q.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/reserved-enum-q.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/reserved-enum-q.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/reserved-member-has.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/reserved-member-has.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/reserved-member-q.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/reserved-member-q.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/reserved-member-u.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/reserved-member-u.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/reserved-member-underscore.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/reserved-member-underscore.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/reserved-type-kind.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/reserved-type-kind.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/reserved-type-list.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/reserved-type-list.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/returns-alternate.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/returns-alternate.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/returns-array-bad.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/returns-array-bad.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/returns-dict.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/returns-dict.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/returns-unknown.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/returns-unknown.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/returns-whitelist.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/returns-whitelist.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/struct-base-clash-deep.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/struct-base-clash-deep.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/struct-base-clash.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/struct-base-clash.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/struct-data-invalid.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/struct-data-invalid.json: -------------------------------------------------------------------------------- 1 | { 'struct': 'foo', 2 | 'data': false } 3 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/struct-data-invalid.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/struct-member-invalid.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/struct-member-invalid.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/trailing-comma-list.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/trailing-comma-list.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/trailing-comma-object.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/trailing-comma-object.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/type-bypass-bad-gen.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/type-bypass-bad-gen.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/unclosed-list.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/unclosed-list.json: -------------------------------------------------------------------------------- 1 | { 'key': [ 'value' } 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/unclosed-list.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/unclosed-object.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/unclosed-object.json: -------------------------------------------------------------------------------- 1 | { 'key': [ 'value' ] 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/unclosed-object.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/unclosed-string.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/unclosed-string.json: -------------------------------------------------------------------------------- 1 | { 'text': 'lorem ips 2 | } 3 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/unclosed-string.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/unicode-str.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/unicode-str.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/union-base-no-discriminator.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/union-base-no-discriminator.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/union-branch-case.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/union-branch-case.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/union-clash-branches.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/union-clash-branches.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/union-empty.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/union-empty.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/union-invalid-base.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/union-invalid-base.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/union-optional-branch.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/union-optional-branch.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/union-unknown.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/union-unknown.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/unknown-escape.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/unknown-escape.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/unknown-expr-key.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/qapi-schema/unknown-expr-key.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tests/tcg/mips/mips64-dspr2/.directory: -------------------------------------------------------------------------------- 1 | [Dolphin] 2 | Timestamp=2012,8,3,16,41,52 3 | -------------------------------------------------------------------------------- /Aurora-qemu-sgx/thread-pool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/thread-pool.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/thunk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/thunk.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/tpm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/tpm.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/trace-events: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/trace-events -------------------------------------------------------------------------------- /Aurora-qemu-sgx/trace/ftrace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/trace/ftrace.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/trace/ftrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/trace/ftrace.h -------------------------------------------------------------------------------- /Aurora-qemu-sgx/trace/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/trace/mem.h -------------------------------------------------------------------------------- /Aurora-qemu-sgx/trace/qmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/trace/qmp.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/trace/simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/trace/simple.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/trace/simple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/trace/simple.h -------------------------------------------------------------------------------- /Aurora-qemu-sgx/ui/cocoa.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/ui/cocoa.m -------------------------------------------------------------------------------- /Aurora-qemu-sgx/ui/console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/ui/console.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/ui/curses.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/ui/curses.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/ui/cursor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/ui/cursor.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/ui/gtk-egl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/ui/gtk-egl.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/ui/gtk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/ui/gtk.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/ui/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/ui/input.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/ui/keymaps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/ui/keymaps.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/ui/sdl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/ui/sdl.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/ui/sdl2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/ui/sdl2.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/ui/shader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/ui/shader.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/ui/vnc-ws.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/ui/vnc-ws.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/ui/vnc-ws.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/ui/vnc-ws.h -------------------------------------------------------------------------------- /Aurora-qemu-sgx/ui/vnc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/ui/vnc.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/ui/vnc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/ui/vnc.h -------------------------------------------------------------------------------- /Aurora-qemu-sgx/user-exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/user-exec.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/util/acl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/util/acl.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/util/id.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/util/id.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/util/iov.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/util/iov.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/util/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/util/log.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/util/path.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/util/path.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/util/qht.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/util/qht.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/util/rcu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/util/rcu.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/util/uri.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/util/uri.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/util/uuid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/util/uuid.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/version.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/version.rc -------------------------------------------------------------------------------- /Aurora-qemu-sgx/vl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/vl.c -------------------------------------------------------------------------------- /Aurora-qemu-sgx/vmos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/vmos.h -------------------------------------------------------------------------------- /Aurora-qemu-sgx/vmos.h.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/vmos.h.bak -------------------------------------------------------------------------------- /Aurora-qemu-sgx/xen-hvm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-qemu-sgx/xen-hvm.c -------------------------------------------------------------------------------- /Aurora-uio/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-uio/Makefile -------------------------------------------------------------------------------- /Aurora-uio/doit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-uio/doit.sh -------------------------------------------------------------------------------- /Aurora-uio/uio_aurora.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-uio/uio_aurora.c -------------------------------------------------------------------------------- /Aurora-uio/uio_user.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-uio/uio_user.c -------------------------------------------------------------------------------- /Aurora-usb-sgx/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-usb-sgx/.cproject -------------------------------------------------------------------------------- /Aurora-usb-sgx/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-usb-sgx/.project -------------------------------------------------------------------------------- /Aurora-usb-sgx/App/App.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-usb-sgx/App/App.cpp -------------------------------------------------------------------------------- /Aurora-usb-sgx/App/App.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-usb-sgx/App/App.h -------------------------------------------------------------------------------- /Aurora-usb-sgx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-usb-sgx/Makefile -------------------------------------------------------------------------------- /Aurora-usb-sgx/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/Aurora-usb-sgx/README.txt -------------------------------------------------------------------------------- /IEEE-TIFS-2020/IEEEtran.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/IEEE-TIFS-2020/IEEEtran.cls -------------------------------------------------------------------------------- /IEEE-TIFS-2020/article.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/IEEE-TIFS-2020/article.bib -------------------------------------------------------------------------------- /IEEE-TIFS-2020/article.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/IEEE-TIFS-2020/article.tex -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/README.md -------------------------------------------------------------------------------- /seabios-keyboard/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-keyboard/.gitignore -------------------------------------------------------------------------------- /seabios-keyboard/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-keyboard/COPYING -------------------------------------------------------------------------------- /seabios-keyboard/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-keyboard/Makefile -------------------------------------------------------------------------------- /seabios-keyboard/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-keyboard/README -------------------------------------------------------------------------------- /seabios-keyboard/doit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-keyboard/doit.sh -------------------------------------------------------------------------------- /seabios-keyboard/scripts/kconfig/lxdialog/.gitignore: -------------------------------------------------------------------------------- 1 | # 2 | # Generated files 3 | # 4 | lxdialog 5 | -------------------------------------------------------------------------------- /seabios-keyboard/src/apm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-keyboard/src/apm.c -------------------------------------------------------------------------------- /seabios-keyboard/src/bmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-keyboard/src/bmp.c -------------------------------------------------------------------------------- /seabios-keyboard/src/boot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-keyboard/src/boot.c -------------------------------------------------------------------------------- /seabios-keyboard/src/code16gcc.s: -------------------------------------------------------------------------------- 1 | .code16gcc 2 | -------------------------------------------------------------------------------- /seabios-keyboard/src/disk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-keyboard/src/disk.c -------------------------------------------------------------------------------- /seabios-keyboard/src/font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-keyboard/src/font.c -------------------------------------------------------------------------------- /seabios-keyboard/src/fw/supervisor/include/linux/asm/exec.h: -------------------------------------------------------------------------------- 1 | /* define arch_align_stack() here */ 2 | -------------------------------------------------------------------------------- /seabios-keyboard/src/fw/supervisor/include/linux/asm/genapic.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /seabios-keyboard/src/fw/supervisor/include/linux/asm/local64.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /seabios-keyboard/src/jpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-keyboard/src/jpeg.c -------------------------------------------------------------------------------- /seabios-keyboard/src/kbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-keyboard/src/kbd.c -------------------------------------------------------------------------------- /seabios-keyboard/src/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-keyboard/src/list.h -------------------------------------------------------------------------------- /seabios-keyboard/src/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-keyboard/src/misc.c -------------------------------------------------------------------------------- /seabios-keyboard/src/pmm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-keyboard/src/pmm.c -------------------------------------------------------------------------------- /seabios-keyboard/src/post.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-keyboard/src/post.c -------------------------------------------------------------------------------- /seabios-keyboard/src/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-keyboard/src/sha1.c -------------------------------------------------------------------------------- /seabios-keyboard/src/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-keyboard/src/sha1.h -------------------------------------------------------------------------------- /seabios-keyboard/src/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-keyboard/src/util.h -------------------------------------------------------------------------------- /seabios-keyboard/src/x86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-keyboard/src/x86.c -------------------------------------------------------------------------------- /seabios-keyboard/src/x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-keyboard/src/x86.h -------------------------------------------------------------------------------- /seabios-network/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-network/.gitignore -------------------------------------------------------------------------------- /seabios-network/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-network/COPYING -------------------------------------------------------------------------------- /seabios-network/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-network/Makefile -------------------------------------------------------------------------------- /seabios-network/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-network/README -------------------------------------------------------------------------------- /seabios-network/docs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-network/docs/README -------------------------------------------------------------------------------- /seabios-network/doit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-network/doit.sh -------------------------------------------------------------------------------- /seabios-network/scripts/kconfig/lxdialog/.gitignore: -------------------------------------------------------------------------------- 1 | # 2 | # Generated files 3 | # 4 | lxdialog 5 | -------------------------------------------------------------------------------- /seabios-network/src/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-network/src/Kconfig -------------------------------------------------------------------------------- /seabios-network/src/apm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-network/src/apm.c -------------------------------------------------------------------------------- /seabios-network/src/block.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-network/src/block.c -------------------------------------------------------------------------------- /seabios-network/src/block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-network/src/block.h -------------------------------------------------------------------------------- /seabios-network/src/bmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-network/src/bmp.c -------------------------------------------------------------------------------- /seabios-network/src/boot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-network/src/boot.c -------------------------------------------------------------------------------- /seabios-network/src/bregs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-network/src/bregs.h -------------------------------------------------------------------------------- /seabios-network/src/cdrom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-network/src/cdrom.c -------------------------------------------------------------------------------- /seabios-network/src/clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-network/src/clock.c -------------------------------------------------------------------------------- /seabios-network/src/code16gcc.s: -------------------------------------------------------------------------------- 1 | .code16gcc 2 | -------------------------------------------------------------------------------- /seabios-network/src/cp437.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-network/src/cp437.c -------------------------------------------------------------------------------- /seabios-network/src/cp437.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-network/src/cp437.h -------------------------------------------------------------------------------- /seabios-network/src/disk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-network/src/disk.c -------------------------------------------------------------------------------- /seabios-network/src/font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-network/src/font.c -------------------------------------------------------------------------------- /seabios-network/src/fw/supervisor/include/linux/asm/exec.h: -------------------------------------------------------------------------------- 1 | /* define arch_align_stack() here */ 2 | -------------------------------------------------------------------------------- /seabios-network/src/fw/supervisor/include/linux/asm/genapic.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /seabios-network/src/fw/supervisor/include/linux/asm/local64.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /seabios-network/src/jpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-network/src/jpeg.c -------------------------------------------------------------------------------- /seabios-network/src/kbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-network/src/kbd.c -------------------------------------------------------------------------------- /seabios-network/src/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-network/src/list.h -------------------------------------------------------------------------------- /seabios-network/src/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-network/src/misc.c -------------------------------------------------------------------------------- /seabios-network/src/mouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-network/src/mouse.c -------------------------------------------------------------------------------- /seabios-network/src/pmm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-network/src/pmm.c -------------------------------------------------------------------------------- /seabios-network/src/post.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-network/src/post.c -------------------------------------------------------------------------------- /seabios-network/src/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-network/src/sha1.c -------------------------------------------------------------------------------- /seabios-network/src/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-network/src/sha1.h -------------------------------------------------------------------------------- /seabios-network/src/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-network/src/types.h -------------------------------------------------------------------------------- /seabios-network/src/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-network/src/util.h -------------------------------------------------------------------------------- /seabios-network/src/x86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-network/src/x86.c -------------------------------------------------------------------------------- /seabios-network/src/x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-network/src/x86.h -------------------------------------------------------------------------------- /seabios-storage/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-storage/.gitignore -------------------------------------------------------------------------------- /seabios-storage/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-storage/COPYING -------------------------------------------------------------------------------- /seabios-storage/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-storage/Makefile -------------------------------------------------------------------------------- /seabios-storage/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-storage/README -------------------------------------------------------------------------------- /seabios-storage/docs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-storage/docs/README -------------------------------------------------------------------------------- /seabios-storage/doit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-storage/doit.sh -------------------------------------------------------------------------------- /seabios-storage/rawio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-storage/rawio.c -------------------------------------------------------------------------------- /seabios-storage/scripts/kconfig/lxdialog/.gitignore: -------------------------------------------------------------------------------- 1 | # 2 | # Generated files 3 | # 4 | lxdialog 5 | -------------------------------------------------------------------------------- /seabios-storage/serialio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-storage/serialio.c -------------------------------------------------------------------------------- /seabios-storage/src/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-storage/src/Kconfig -------------------------------------------------------------------------------- /seabios-storage/src/apm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-storage/src/apm.c -------------------------------------------------------------------------------- /seabios-storage/src/block.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-storage/src/block.c -------------------------------------------------------------------------------- /seabios-storage/src/block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-storage/src/block.h -------------------------------------------------------------------------------- /seabios-storage/src/bmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-storage/src/bmp.c -------------------------------------------------------------------------------- /seabios-storage/src/boot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-storage/src/boot.c -------------------------------------------------------------------------------- /seabios-storage/src/bregs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-storage/src/bregs.h -------------------------------------------------------------------------------- /seabios-storage/src/cdrom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-storage/src/cdrom.c -------------------------------------------------------------------------------- /seabios-storage/src/clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-storage/src/clock.c -------------------------------------------------------------------------------- /seabios-storage/src/code16gcc.s: -------------------------------------------------------------------------------- 1 | .code16gcc 2 | -------------------------------------------------------------------------------- /seabios-storage/src/cp437.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-storage/src/cp437.c -------------------------------------------------------------------------------- /seabios-storage/src/cp437.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-storage/src/cp437.h -------------------------------------------------------------------------------- /seabios-storage/src/disk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-storage/src/disk.c -------------------------------------------------------------------------------- /seabios-storage/src/font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-storage/src/font.c -------------------------------------------------------------------------------- /seabios-storage/src/fw/supervisor/include/linux/asm/exec.h: -------------------------------------------------------------------------------- 1 | /* define arch_align_stack() here */ 2 | -------------------------------------------------------------------------------- /seabios-storage/src/fw/supervisor/include/linux/asm/genapic.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /seabios-storage/src/fw/supervisor/include/linux/asm/local64.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /seabios-storage/src/jpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-storage/src/jpeg.c -------------------------------------------------------------------------------- /seabios-storage/src/kbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-storage/src/kbd.c -------------------------------------------------------------------------------- /seabios-storage/src/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-storage/src/list.h -------------------------------------------------------------------------------- /seabios-storage/src/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-storage/src/misc.c -------------------------------------------------------------------------------- /seabios-storage/src/mouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-storage/src/mouse.c -------------------------------------------------------------------------------- /seabios-storage/src/pmm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-storage/src/pmm.c -------------------------------------------------------------------------------- /seabios-storage/src/post.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-storage/src/post.c -------------------------------------------------------------------------------- /seabios-storage/src/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-storage/src/sha1.c -------------------------------------------------------------------------------- /seabios-storage/src/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-storage/src/sha1.h -------------------------------------------------------------------------------- /seabios-storage/src/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-storage/src/types.h -------------------------------------------------------------------------------- /seabios-storage/src/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-storage/src/util.h -------------------------------------------------------------------------------- /seabios-storage/src/x86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-storage/src/x86.c -------------------------------------------------------------------------------- /seabios-storage/src/x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-storage/src/x86.h -------------------------------------------------------------------------------- /seabios-usb/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-usb/.gitignore -------------------------------------------------------------------------------- /seabios-usb/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-usb/COPYING -------------------------------------------------------------------------------- /seabios-usb/COPYING.LESSER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-usb/COPYING.LESSER -------------------------------------------------------------------------------- /seabios-usb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-usb/Makefile -------------------------------------------------------------------------------- /seabios-usb/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-usb/README -------------------------------------------------------------------------------- /seabios-usb/docs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-usb/docs/README -------------------------------------------------------------------------------- /seabios-usb/docs/SeaBIOS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-usb/docs/SeaBIOS.md -------------------------------------------------------------------------------- /seabios-usb/doit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-usb/doit.sh -------------------------------------------------------------------------------- /seabios-usb/scripts/kconfig/lxdialog/.gitignore: -------------------------------------------------------------------------------- 1 | # 2 | # Generated files 3 | # 4 | lxdialog 5 | -------------------------------------------------------------------------------- /seabios-usb/src/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-usb/src/Kconfig -------------------------------------------------------------------------------- /seabios-usb/src/apm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-usb/src/apm.c -------------------------------------------------------------------------------- /seabios-usb/src/biosvar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-usb/src/biosvar.h -------------------------------------------------------------------------------- /seabios-usb/src/block.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-usb/src/block.c -------------------------------------------------------------------------------- /seabios-usb/src/block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-usb/src/block.h -------------------------------------------------------------------------------- /seabios-usb/src/bmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-usb/src/bmp.c -------------------------------------------------------------------------------- /seabios-usb/src/boot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-usb/src/boot.c -------------------------------------------------------------------------------- /seabios-usb/src/bregs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-usb/src/bregs.h -------------------------------------------------------------------------------- /seabios-usb/src/byteorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-usb/src/byteorder.h -------------------------------------------------------------------------------- /seabios-usb/src/cdrom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-usb/src/cdrom.c -------------------------------------------------------------------------------- /seabios-usb/src/clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-usb/src/clock.c -------------------------------------------------------------------------------- /seabios-usb/src/code16gcc.s: -------------------------------------------------------------------------------- 1 | .code16gcc 2 | -------------------------------------------------------------------------------- /seabios-usb/src/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-usb/src/config.h -------------------------------------------------------------------------------- /seabios-usb/src/cp437.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-usb/src/cp437.c -------------------------------------------------------------------------------- /seabios-usb/src/cp437.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-usb/src/cp437.h -------------------------------------------------------------------------------- /seabios-usb/src/disk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-usb/src/disk.c -------------------------------------------------------------------------------- /seabios-usb/src/e820map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-usb/src/e820map.c -------------------------------------------------------------------------------- /seabios-usb/src/e820map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-usb/src/e820map.h -------------------------------------------------------------------------------- /seabios-usb/src/farptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-usb/src/farptr.h -------------------------------------------------------------------------------- /seabios-usb/src/font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-usb/src/font.c -------------------------------------------------------------------------------- /seabios-usb/src/fw/acpi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-usb/src/fw/acpi.c -------------------------------------------------------------------------------- /seabios-usb/src/fw/csm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-usb/src/fw/csm.c -------------------------------------------------------------------------------- /seabios-usb/src/fw/mtrr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-usb/src/fw/mtrr.c -------------------------------------------------------------------------------- /seabios-usb/src/fw/shadow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-usb/src/fw/shadow.c -------------------------------------------------------------------------------- /seabios-usb/src/fw/smbios.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-usb/src/fw/smbios.c -------------------------------------------------------------------------------- /seabios-usb/src/fw/smm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-usb/src/fw/smm.c -------------------------------------------------------------------------------- /seabios-usb/src/fw/smp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-usb/src/fw/smp.c -------------------------------------------------------------------------------- /seabios-usb/src/fw/supervisor/include/linux/asm/asm-offsets.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /seabios-usb/src/fw/supervisor/include/linux/asm/exec.h: -------------------------------------------------------------------------------- 1 | /* define arch_align_stack() here */ 2 | -------------------------------------------------------------------------------- /seabios-usb/src/fw/supervisor/include/linux/asm/genapic.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /seabios-usb/src/fw/supervisor/include/linux/asm/local64.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /seabios-usb/src/fw/xen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-usb/src/fw/xen.c -------------------------------------------------------------------------------- /seabios-usb/src/fw/xen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-usb/src/fw/xen.h -------------------------------------------------------------------------------- /seabios-usb/src/gen-defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-usb/src/gen-defs.h -------------------------------------------------------------------------------- /seabios-usb/src/hw/ahci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-usb/src/hw/ahci.c -------------------------------------------------------------------------------- /seabios-usb/src/hw/ahci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-usb/src/hw/ahci.h -------------------------------------------------------------------------------- /seabios-usb/src/hw/ata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-usb/src/hw/ata.c -------------------------------------------------------------------------------- /seabios-usb/src/hw/ata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-usb/src/hw/ata.h -------------------------------------------------------------------------------- /seabios-usb/src/hw/dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-usb/src/hw/dma.c -------------------------------------------------------------------------------- /seabios-usb/src/hw/floppy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-usb/src/hw/floppy.c -------------------------------------------------------------------------------- /seabios-usb/src/hw/nvme.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-usb/src/hw/nvme.c -------------------------------------------------------------------------------- /seabios-usb/src/hw/nvme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-usb/src/hw/nvme.h -------------------------------------------------------------------------------- /seabios-usb/src/hw/pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-usb/src/hw/pci.c -------------------------------------------------------------------------------- /seabios-usb/src/hw/pci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-usb/src/hw/pci.h -------------------------------------------------------------------------------- /seabios-usb/src/hw/pic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-usb/src/hw/pic.c -------------------------------------------------------------------------------- /seabios-usb/src/hw/pic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-usb/src/hw/pic.h -------------------------------------------------------------------------------- /seabios-usb/src/hw/pvscsi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-usb/src/hw/pvscsi.c -------------------------------------------------------------------------------- /seabios-usb/src/hw/pvscsi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-usb/src/hw/pvscsi.h -------------------------------------------------------------------------------- /seabios-usb/src/hw/rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-usb/src/hw/rtc.c -------------------------------------------------------------------------------- /seabios-usb/src/hw/rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-usb/src/hw/rtc.h -------------------------------------------------------------------------------- /seabios-usb/src/hw/sdcard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-usb/src/hw/sdcard.c -------------------------------------------------------------------------------- /seabios-usb/src/hw/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-usb/src/hw/timer.c -------------------------------------------------------------------------------- /seabios-usb/src/hw/usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-usb/src/hw/usb.c -------------------------------------------------------------------------------- /seabios-usb/src/hw/usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-usb/src/hw/usb.h -------------------------------------------------------------------------------- /seabios-usb/src/jpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-usb/src/jpeg.c -------------------------------------------------------------------------------- /seabios-usb/src/kbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-usb/src/kbd.c -------------------------------------------------------------------------------- /seabios-usb/src/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-usb/src/list.h -------------------------------------------------------------------------------- /seabios-usb/src/malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-usb/src/malloc.c -------------------------------------------------------------------------------- /seabios-usb/src/malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-usb/src/malloc.h -------------------------------------------------------------------------------- /seabios-usb/src/memmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-usb/src/memmap.h -------------------------------------------------------------------------------- /seabios-usb/src/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-usb/src/misc.c -------------------------------------------------------------------------------- /seabios-usb/src/mouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-usb/src/mouse.c -------------------------------------------------------------------------------- /seabios-usb/src/output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-usb/src/output.c -------------------------------------------------------------------------------- /seabios-usb/src/output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-usb/src/output.h -------------------------------------------------------------------------------- /seabios-usb/src/pcibios.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-usb/src/pcibios.c -------------------------------------------------------------------------------- /seabios-usb/src/pmm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-usb/src/pmm.c -------------------------------------------------------------------------------- /seabios-usb/src/pnpbios.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-usb/src/pnpbios.c -------------------------------------------------------------------------------- /seabios-usb/src/post.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-usb/src/post.c -------------------------------------------------------------------------------- /seabios-usb/src/resume.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-usb/src/resume.c -------------------------------------------------------------------------------- /seabios-usb/src/romfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-usb/src/romfile.c -------------------------------------------------------------------------------- /seabios-usb/src/romfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-usb/src/romfile.h -------------------------------------------------------------------------------- /seabios-usb/src/romlayout.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-usb/src/romlayout.S -------------------------------------------------------------------------------- /seabios-usb/src/sercon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-usb/src/sercon.c -------------------------------------------------------------------------------- /seabios-usb/src/serial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-usb/src/serial.c -------------------------------------------------------------------------------- /seabios-usb/src/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-usb/src/sha1.c -------------------------------------------------------------------------------- /seabios-usb/src/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-usb/src/sha1.h -------------------------------------------------------------------------------- /seabios-usb/src/stacks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-usb/src/stacks.c -------------------------------------------------------------------------------- /seabios-usb/src/stacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-usb/src/stacks.h -------------------------------------------------------------------------------- /seabios-usb/src/std/acpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-usb/src/std/acpi.h -------------------------------------------------------------------------------- /seabios-usb/src/std/bda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-usb/src/std/bda.h -------------------------------------------------------------------------------- /seabios-usb/src/std/disk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-usb/src/std/disk.h -------------------------------------------------------------------------------- /seabios-usb/src/std/pmm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-usb/src/std/pmm.h -------------------------------------------------------------------------------- /seabios-usb/src/std/tcg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-usb/src/std/tcg.h -------------------------------------------------------------------------------- /seabios-usb/src/std/vbe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-usb/src/std/vbe.h -------------------------------------------------------------------------------- /seabios-usb/src/std/vga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-usb/src/std/vga.h -------------------------------------------------------------------------------- /seabios-usb/src/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-usb/src/string.c -------------------------------------------------------------------------------- /seabios-usb/src/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-usb/src/string.h -------------------------------------------------------------------------------- /seabios-usb/src/system.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-usb/src/system.c -------------------------------------------------------------------------------- /seabios-usb/src/tcgbios.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-usb/src/tcgbios.c -------------------------------------------------------------------------------- /seabios-usb/src/tcgbios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-usb/src/tcgbios.h -------------------------------------------------------------------------------- /seabios-usb/src/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-usb/src/types.h -------------------------------------------------------------------------------- /seabios-usb/src/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-usb/src/util.h -------------------------------------------------------------------------------- /seabios-usb/src/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-usb/src/version.c -------------------------------------------------------------------------------- /seabios-usb/src/vgahooks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-usb/src/vgahooks.c -------------------------------------------------------------------------------- /seabios-usb/src/x86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-usb/src/x86.c -------------------------------------------------------------------------------- /seabios-usb/src/x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-usb/src/x86.h -------------------------------------------------------------------------------- /seabios-usb/vgasrc/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-usb/vgasrc/Kconfig -------------------------------------------------------------------------------- /seabios-usb/vgasrc/cbvga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-usb/vgasrc/cbvga.c -------------------------------------------------------------------------------- /seabios-usb/vgasrc/clext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-usb/vgasrc/clext.c -------------------------------------------------------------------------------- /seabios-usb/vgasrc/stdvga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-usb/vgasrc/stdvga.c -------------------------------------------------------------------------------- /seabios-usb/vgasrc/stdvga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-usb/vgasrc/stdvga.h -------------------------------------------------------------------------------- /seabios-usb/vgasrc/vbe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-usb/vgasrc/vbe.c -------------------------------------------------------------------------------- /seabios-usb/vgasrc/vgafb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-usb/vgasrc/vgafb.c -------------------------------------------------------------------------------- /seabios-usb/vgasrc/vgafb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-usb/vgasrc/vgafb.h -------------------------------------------------------------------------------- /seabios-usb/vgasrc/vgahw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxul/Aurora/HEAD/seabios-usb/vgasrc/vgahw.h --------------------------------------------------------------------------------