Index: head/sys/amd64/amd64/efirt.c =================================================================== --- head/sys/amd64/amd64/efirt.c (nonexistent) +++ head/sys/amd64/amd64/efirt.c (revision 306097) @@ -0,0 +1,595 @@ +/*- + * Copyright (c) 2004 Marcel Moolenaar + * Copyright (c) 2001 Doug Rabson + * Copyright (c) 2016 The FreeBSD Foundation + * All rights reserved. + * + * Portions of this software were developed by Konstantin Belousov + * under sponsorship from the FreeBSD Foundation. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS + * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + * SUCH DAMAGE. + */ + +#include +__FBSDID("$FreeBSD$"); + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +static struct efi_systbl *efi_systbl; +static struct efi_cfgtbl *efi_cfgtbl; +static struct efi_rt *efi_runtime; + +static int efi_status2err[25] = { + 0, /* EFI_SUCCESS */ + ENOEXEC, /* EFI_LOAD_ERROR */ + EINVAL, /* EFI_INVALID_PARAMETER */ + ENOSYS, /* EFI_UNSUPPORTED */ + EMSGSIZE, /* EFI_BAD_BUFFER_SIZE */ + EOVERFLOW, /* EFI_BUFFER_TOO_SMALL */ + EBUSY, /* EFI_NOT_READY */ + EIO, /* EFI_DEVICE_ERROR */ + EROFS, /* EFI_WRITE_PROTECTED */ + EAGAIN, /* EFI_OUT_OF_RESOURCES */ + EIO, /* EFI_VOLUME_CORRUPTED */ + ENOSPC, /* EFI_VOLUME_FULL */ + ENXIO, /* EFI_NO_MEDIA */ + ESTALE, /* EFI_MEDIA_CHANGED */ + ENOENT, /* EFI_NOT_FOUND */ + EACCES, /* EFI_ACCESS_DENIED */ + ETIMEDOUT, /* EFI_NO_RESPONSE */ + EADDRNOTAVAIL, /* EFI_NO_MAPPING */ + ETIMEDOUT, /* EFI_TIMEOUT */ + EDOOFUS, /* EFI_NOT_STARTED */ + EALREADY, /* EFI_ALREADY_STARTED */ + ECANCELED, /* EFI_ABORTED */ + EPROTO, /* EFI_ICMP_ERROR */ + EPROTO, /* EFI_TFTP_ERROR */ + EPROTO /* EFI_PROTOCOL_ERROR */ +}; + +static int +efi_status_to_errno(efi_status status) +{ + u_long code; + + code = status & 0x3ffffffffffffffful; + return (code < nitems(efi_status2err) ? efi_status2err[code] : EDOOFUS); +} + +static struct mtx efi_lock; +static pml4_entry_t *efi_pml4; +static vm_object_t obj_1t1_pt; +static vm_page_t efi_pml4_page; + +static void +efi_destroy_1t1_map(void) +{ + vm_page_t m; + + if (obj_1t1_pt != NULL) { + VM_OBJECT_RLOCK(obj_1t1_pt); + TAILQ_FOREACH(m, &obj_1t1_pt->memq, listq) + m->wire_count = 0; + atomic_subtract_int(&vm_cnt.v_wire_count, + obj_1t1_pt->resident_page_count); + VM_OBJECT_RUNLOCK(obj_1t1_pt); + vm_object_deallocate(obj_1t1_pt); + } + + obj_1t1_pt = NULL; + efi_pml4 = NULL; + efi_pml4_page = NULL; +} + +static vm_page_t +efi_1t1_page(vm_pindex_t idx) +{ + + return (vm_page_grab(obj_1t1_pt, idx, VM_ALLOC_NOBUSY | + VM_ALLOC_WIRED | VM_ALLOC_ZERO)); +} + +static pt_entry_t * +efi_1t1_pte(vm_offset_t va) +{ + pml4_entry_t *pml4e; + pdp_entry_t *pdpe; + pd_entry_t *pde; + pt_entry_t *pte; + vm_page_t m; + vm_pindex_t pml4_idx, pdp_idx, pd_idx; + vm_paddr_t mphys; + + pml4_idx = pmap_pml4e_index(va); + pml4e = &efi_pml4[pml4_idx]; + if (*pml4e == 0) { + m = efi_1t1_page(1 + pml4_idx); + mphys = VM_PAGE_TO_PHYS(m); + *pml4e = mphys | X86_PG_RW | X86_PG_V; + } else { + mphys = *pml4e & ~PAGE_MASK; + } + + pdpe = (pdp_entry_t *)PHYS_TO_DMAP(mphys); + pdp_idx = pmap_pdpe_index(va); + pdpe += pdp_idx; + if (*pdpe == 0) { + m = efi_1t1_page(1 + NPML4EPG + (pml4_idx + 1) * (pdp_idx + 1)); + mphys = VM_PAGE_TO_PHYS(m); + *pdpe = mphys | X86_PG_RW | X86_PG_V; + } else { + mphys = *pdpe & ~PAGE_MASK; + } + + pde = (pd_entry_t *)PHYS_TO_DMAP(mphys); + pd_idx = pmap_pde_index(va); + pde += pd_idx; + if (*pde == 0) { + m = efi_1t1_page(1 + NPML4EPG + NPML4EPG * NPDPEPG + + (pml4_idx + 1) * (pdp_idx + 1) * (pd_idx + 1)); + mphys = VM_PAGE_TO_PHYS(m); + *pde = mphys | X86_PG_RW | X86_PG_V; + } else { + mphys = *pde & ~PAGE_MASK; + } + + pte = (pt_entry_t *)PHYS_TO_DMAP(mphys); + pte += pmap_pte_index(va); + KASSERT(*pte == 0, ("va %#jx *pt %#jx", va, *pte)); + + return (pte); +} + +static bool +efi_create_1t1_map(struct efi_md *map, int ndesc, int descsz) +{ + struct efi_md *p; + pt_entry_t *pte; + vm_offset_t va; + uint64_t idx; + int bits, i, mode; + + obj_1t1_pt = vm_pager_allocate(OBJT_PHYS, NULL, 1 + NPML4EPG + + NPML4EPG * NPDPEPG + NPML4EPG * NPDPEPG * NPDEPG, + VM_PROT_ALL, 0, NULL); + VM_OBJECT_WLOCK(obj_1t1_pt); + efi_pml4_page = efi_1t1_page(0); + VM_OBJECT_WUNLOCK(obj_1t1_pt); + efi_pml4 = (pml4_entry_t *)PHYS_TO_DMAP(VM_PAGE_TO_PHYS(efi_pml4_page)); + pmap_pinit_pml4(efi_pml4_page); + + for (i = 0, p = map; i < ndesc; i++, p = efi_next_descriptor(p, + descsz)) { + if ((p->md_attr & EFI_MD_ATTR_RT) == 0) + continue; + if (p->md_virt != NULL) { + if (bootverbose) + printf("EFI Runtime entry %d is mapped\n", i); + goto fail; + } + if ((p->md_phys & EFI_PAGE_MASK) != 0) { + if (bootverbose) + printf("EFI Runtime entry %d is not aligned\n", + i); + goto fail; + } + if (p->md_phys + p->md_pages * EFI_PAGE_SIZE < p->md_phys || + p->md_phys + p->md_pages * EFI_PAGE_SIZE >= + VM_MAXUSER_ADDRESS) { + printf("EFI Runtime entry %d is not in mappable for RT:" + "base %#016jx %#jx pages\n", + i, (uintmax_t)p->md_phys, + (uintmax_t)p->md_pages); + goto fail; + } + if ((p->md_attr & EFI_MD_ATTR_WB) != 0) + mode = VM_MEMATTR_WRITE_BACK; + else if ((p->md_attr & EFI_MD_ATTR_WT) != 0) + mode = VM_MEMATTR_WRITE_THROUGH; + else if ((p->md_attr & EFI_MD_ATTR_WC) != 0) + mode = VM_MEMATTR_WRITE_COMBINING; + else if ((p->md_attr & EFI_MD_ATTR_WP) != 0) + mode = VM_MEMATTR_WRITE_PROTECTED; + else if ((p->md_attr & EFI_MD_ATTR_UC) != 0) + mode = VM_MEMATTR_UNCACHEABLE; + else { + if (bootverbose) + printf("EFI Runtime entry %d mapping " + "attributes unsupported\n", i); + mode = VM_MEMATTR_UNCACHEABLE; + } + bits = pmap_cache_bits(kernel_pmap, mode, FALSE) | X86_PG_RW | + X86_PG_V; + VM_OBJECT_WLOCK(obj_1t1_pt); + for (va = p->md_phys, idx = 0; idx < p->md_pages; idx++, + va += PAGE_SIZE) { + pte = efi_1t1_pte(va); + pte_store(pte, va | bits); + } + VM_OBJECT_WUNLOCK(obj_1t1_pt); + } + + return (true); + +fail: + efi_destroy_1t1_map(); + return (false); +} + +/* + * Create an environment for the EFI runtime code call. The most + * important part is creating the required 1:1 physical->virtual + * mappings for the runtime segments. To do that, we manually create + * page table which unmap userspace but gives correct kernel mapping. + * The 1:1 mappings for runtime segments usually occupy low 4G of the + * physical address map. + * + * The 1:1 mappings were chosen over the SetVirtualAddressMap() EFI RT + * service, because there are some BIOSes which fail to correctly + * relocate itself on the call, requiring both 1:1 and virtual + * mapping. As result, we must provide 1:1 mapping anyway, so no + * reason to bother with the virtual map, and no need to add a + * complexity into loader. + * + * The fpu_kern_enter() call allows firmware to use FPU, as mandated + * by the specification. In particular, CR0.TS bit is cleared. Also + * it enters critical section, giving us neccessary protection against + * context switch. + * + * There is no need to disable interrupts around the change of %cr3, + * the kernel mappings are correct, while we only grabbed the + * userspace portion of VA. Interrupts handlers must not access + * userspace. Having interrupts enabled fixes the issue with + * firmware/SMM long operation, which would negatively affect IPIs, + * esp. TLB shootdown requests. + */ +static int +efi_enter(void) +{ + pmap_t curpmap; + int error; + + if (efi_runtime == NULL) + return (ENXIO); + curpmap = PCPU_GET(curpmap); + PMAP_LOCK(curpmap); + mtx_lock(&efi_lock); + error = fpu_kern_enter(curthread, NULL, FPU_KERN_NOCTX); + if (error != 0) { + PMAP_UNLOCK(curpmap); + return (error); + } + load_cr3(VM_PAGE_TO_PHYS(efi_pml4_page) | (pmap_pcid_enabled ? + curpmap->pm_pcids[PCPU_GET(cpuid)].pm_pcid : 0)); + /* + * If PCID is enabled, the clear CR3_PCID_SAVE bit in the loaded %cr3 + * causes TLB invalidation. + */ + if (!pmap_pcid_enabled) + invltlb(); + return (0); +} + +static void +efi_leave(void) +{ + pmap_t curpmap; + + curpmap = PCPU_GET(curpmap); + load_cr3(curpmap->pm_cr3 | (pmap_pcid_enabled ? + curpmap->pm_pcids[PCPU_GET(cpuid)].pm_pcid : 0)); + if (!pmap_pcid_enabled) + invltlb(); + + fpu_kern_leave(curthread, NULL); + mtx_unlock(&efi_lock); + PMAP_UNLOCK(curpmap); +} + +static int +efi_init(void) +{ + struct efi_map_header *efihdr; + struct efi_md *map; + caddr_t kmdp; + size_t efisz; + + mtx_init(&efi_lock, "efi", NULL, MTX_DEF); + + if (efi_systbl_phys == 0) { + if (bootverbose) + printf("EFI systbl not available\n"); + return (ENXIO); + } + efi_systbl = (struct efi_systbl *)PHYS_TO_DMAP(efi_systbl_phys); + if (efi_systbl->st_hdr.th_sig != EFI_SYSTBL_SIG) { + efi_systbl = NULL; + if (bootverbose) + printf("EFI systbl signature invalid\n"); + return (ENXIO); + } + efi_cfgtbl = (efi_systbl->st_cfgtbl == 0) ? NULL : + (struct efi_cfgtbl *)efi_systbl->st_cfgtbl; + if (efi_cfgtbl == NULL) { + if (bootverbose) + printf("EFI config table is not present\n"); + } + + kmdp = preload_search_by_type("elf kernel"); + if (kmdp == NULL) + kmdp = preload_search_by_type("elf64 kernel"); + efihdr = (struct efi_map_header *)preload_search_info(kmdp, + MODINFO_METADATA | MODINFOMD_EFI_MAP); + if (efihdr == NULL) { + if (bootverbose) + printf("EFI map is not present\n"); + return (ENXIO); + } + efisz = (sizeof(struct efi_map_header) + 0xf) & ~0xf; + map = (struct efi_md *)((uint8_t *)efihdr + efisz); + if (efihdr->descriptor_size == 0) + return (ENOMEM); + + if (!efi_create_1t1_map(map, efihdr->memory_size / + efihdr->descriptor_size, efihdr->descriptor_size)) { + if (bootverbose) + printf("EFI cannot create runtime map\n"); + return (ENOMEM); + } + + efi_runtime = (efi_systbl->st_rt == 0) ? NULL : + (struct efi_rt *)efi_systbl->st_rt; + if (efi_runtime == NULL) { + if (bootverbose) + printf("EFI runtime services table is not present\n"); + efi_destroy_1t1_map(); + return (ENXIO); + } + + return (0); +} + +static void +efi_uninit(void) +{ + + efi_destroy_1t1_map(); + + efi_systbl = NULL; + efi_cfgtbl = NULL; + efi_runtime = NULL; + + mtx_destroy(&efi_lock); +} + +int +efi_get_table(struct uuid *uuid, void *ptr) +{ + struct efi_cfgtbl *ct; + u_long count; + + if (efi_cfgtbl == NULL) + return (ENXIO); + count = efi_systbl->st_entries; + ct = efi_cfgtbl; + while (count--) { + if (!bcmp(&ct->ct_uuid, uuid, sizeof(*uuid))) { + ptr = (void *)PHYS_TO_DMAP(ct->ct_data); + return (0); + } + ct++; + } + return (ENOENT); +} + +int +efi_get_time_locked(struct efi_tm *tm) +{ + efi_status status; + int error; + + mtx_assert(&resettodr_lock, MA_OWNED); + error = efi_enter(); + if (error != 0) + return (error); + status = efi_runtime->rt_gettime(tm, NULL); + efi_leave(); + error = efi_status_to_errno(status); + return (error); +} + +int +efi_get_time(struct efi_tm *tm) +{ + int error; + + if (efi_runtime == NULL) + return (ENXIO); + mtx_lock(&resettodr_lock); + error = efi_get_time_locked(tm); + mtx_unlock(&resettodr_lock); + return (error); +} + +int +efi_reset_system(void) +{ + int error; + + error = efi_enter(); + if (error != 0) + return (error); + efi_runtime->rt_reset(EFI_RESET_WARM, 0, 0, NULL); + efi_leave(); + return (EIO); +} + +int +efi_set_time_locked(struct efi_tm *tm) +{ + efi_status status; + int error; + + mtx_assert(&resettodr_lock, MA_OWNED); + error = efi_enter(); + if (error != 0) + return (error); + status = efi_runtime->rt_settime(tm); + efi_leave(); + error = efi_status_to_errno(status); + return (error); +} + +int +efi_set_time(struct efi_tm *tm) +{ + int error; + + if (efi_runtime == NULL) + return (ENXIO); + mtx_lock(&resettodr_lock); + error = efi_set_time_locked(tm); + mtx_unlock(&resettodr_lock); + return (error); +} + +int +efi_var_get(efi_char *name, struct uuid *vendor, uint32_t *attrib, + size_t *datasize, void *data) +{ + efi_status status; + int error; + + error = efi_enter(); + if (error != 0) + return (error); + status = efi_runtime->rt_getvar(name, vendor, attrib, datasize, data); + efi_leave(); + error = efi_status_to_errno(status); + return (error); +} + +int +efi_var_nextname(size_t *namesize, efi_char *name, struct uuid *vendor) +{ + efi_status status; + int error; + + error = efi_enter(); + if (error != 0) + return (error); + status = efi_runtime->rt_scanvar(namesize, name, vendor); + efi_leave(); + error = efi_status_to_errno(status); + return (error); +} + +int +efi_var_set(efi_char *name, struct uuid *vendor, uint32_t attrib, + size_t datasize, void *data) +{ + efi_status status; + int error; + + error = efi_enter(); + if (error != 0) + return (error); + status = efi_runtime->rt_setvar(name, vendor, attrib, datasize, data); + efi_leave(); + error = efi_status_to_errno(status); + return (error); +} + +static int +efirt_modevents(module_t m, int event, void *arg __unused) +{ + + switch (event) { + case MOD_LOAD: + return (efi_init()); + break; + + case MOD_UNLOAD: + efi_uninit(); + return (0); + + case MOD_SHUTDOWN: + return (0); + + default: + return (EOPNOTSUPP); + } +} + +static moduledata_t efirt_moddata = { + .name = "efirt", + .evhand = efirt_modevents, + .priv = NULL, +}; +DECLARE_MODULE(efirt, efirt_moddata, SI_SUB_VM_CONF, SI_ORDER_ANY); +MODULE_VERSION(efirt, 1); + +/* XXX debug stuff */ +static int +efi_time_sysctl_handler(SYSCTL_HANDLER_ARGS) +{ + struct efi_tm tm; + int error, val; + + val = 0; + error = sysctl_handle_int(oidp, &val, 0, req); + if (error != 0 || req->newptr == NULL) + return (error); + error = efi_get_time(&tm); + if (error == 0) { + uprintf("EFI reports: Year %d Month %d Day %d Hour %d Min %d " + "Sec %d\n", tm.tm_year, tm.tm_mon, tm.tm_mday, tm.tm_hour, + tm.tm_min, tm.tm_sec); + } + return (error); +} + +SYSCTL_PROC(_debug, OID_AUTO, efi_time, CTLTYPE_INT | CTLFLAG_RW, NULL, 0, + efi_time_sysctl_handler, "I", ""); Property changes on: head/sys/amd64/amd64/efirt.c ___________________________________________________________________ Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Added: svn:mergeinfo ## -0,0 +0,19 ## Merged /projects/lldb-r201577/sys/ia64/ia64/efi.c:r262185-262527 Merged /projects/zfsd/head/sys/ia64/ia64/efi.c:r266519,269993 Merged /projects/clang380-import/sys/ia64/ia64/efi.c:r293006,293013 Merged /user/ngie/bsnmp_cleanup/sys/ia64/ia64/efi.c:r295193 Merged /user/ngie/stable-10-fix-LINT-NOINET/sys/ia64/ia64/efi.c:r293623-293724 Merged /projects/elftoolchain/sys/ia64/ia64/efi.c:r260880 Merged /stable/11/sys/ia64/ia64/efi.c:r303691,304208,304945,304947,304949-304951,305225-305226,305271,305910,305912,305914 Merged /head/sys/ia64/ia64/efi.c:r256280,256291,256293-256294,256299,256302,256304,256308,256321-256323,256325,256327-256328,256330-256331,256333-256335,256338,256341,256343,256345,256347-256348,256350,256362,256365,256385,256389,256391,256423,256425,256430,256440,256446,256448,256450,256459,256467,256470,256477,256489,256492,256498-256502,256504,256510,256512,256514,256533,256537,256539-256544,256546-256549,256551-256553,256555-256557,256561,256570-256571,256581,256594,256603,256606-256607,256610,256612-256614,256628,256637-256638,256640,256642-256643,256645-256647,256650,256657-256658,256661,256666,256670,256672,256678,256680,256682,256687,256689-256692,256694-256695,256705,256707-256711,256713-256718,256720-256722,256724,256735,256743-256746,256748,256750,256752-256753,256760-256771,256773-256779,256782,256788,256790,256792-256793,256798-256801,256803-256804,256806,256808-256809,256812-256818,256822,256826-256828,256830,256832-256833,256835-256836,256838-256839,256842-256843,256845-256848,256855,256859-256862,256864-256865,256868,256870-256871,256873,256875,256878,256880,256885,256887-256889,256893,256895,256898-256901,256911-256912,256914-256915,256919-256920,256925-256926,256931-256932,256934-256943,256945,256948-256951,256953,256955-256956,256959-256961,256963,256966-256969,256971-256975,256977-256978,256994-256995,256999,257005-257007,257015-257018,257029,257036-257038,257051,257054-257055,257057,257059-257062,257064-257066,257069-257072,257075,257077-257079,257084,257092-257093,257095-257100,257105,257109,257111,257114-257118,257127,257129-257130,257132,257138-257139,257142-257152,257155,257157-257159,257161-257162,257164-257165,257167-257172,257175,257178,257180,257182-257183,257186,257189-257191,257193,257195-257203,257206-257207,257209-257210,257214-257217,257221-257222,257228,257230-257231,257233-257235,257240,257248,257251,257258,257265-257266,257268,257272,257274,257276-257282,257287-257288,257291,257293,257295,257297-257300,257302,257304-257308,257315,257329,257332,257334-257338,257340-257345,257347,257349-257350,257359,257361,257364,257368-257370,257376-257384,257388,257390,257393,257399-257400,257402-257403,257407-257411,257413-257414,257416-257419,257421-257423,257429,257435,257440,257447,257452-257454,257469,257472,257475-257478,257480,257482-257487,257489-257490,257501,257504-257505,257511-257512,257515-257516,257518-257519,257532,257534,257539,257541-257543,257549,257555-257557,257561,257574,257582-257583,257592,257594-257595,257598,257600,257603-257604,257619-257620,257631,257633,257637-257639,257641,257643,257647-257650,257654,257656-257657,257660-257661,257667-257670,257672-257673,257676,257678-257680,257686,257694-257695,257701-257702,257705,257712,257729-257730,257732,257734,257736,257738-257740,257743,257745-257749,257751,257754-257757,257767,257769-257770,257772,257774-257775,257777,257779-257785,257787-257796,257800-257801,257803-257808,257811,257817-257821,257823-257831,257838,257841-257854,257856,257858-257860,257862-257864,257869-257870,257872-257874,257876-257877,257883,257888,257892,257896,257898-257904,257910,257913-257916,257920,257924,257929-257930,257932-257933,257936-257942,257945-257946,257955,257957-257958,257965,257985,257987,257991-257993,257995-257996,258000-258003,258005,258014,258016-258017,258020-258021,258024-258025,258027-258029,258036,258039,258041-258047,258050-258052,258054,258056-258057,258063-258066,258069,258071,258075-258082,258084,258086,258088,258094-258098,258101,258113-258115,258119,258122,258128,258132,258135,258137-258138,258143,258148-258150,258152-258157,258162,258164,258167-258170,258173,258176-258179,258181,258185,258187,258195-258197,258199-258202,258204-258207,258209-258211,258220-258221,258224,258226-258228,258232-258233,258235,258240,258243-258247,258250-258251,258254,258256-258257,258259,258262-258272,258274-258276,258281,258283,258285-258287,258289-258291,258294,258297-258299,258305,258307-258311,258314,258316-258321,258330-258332,258336-258338,258340,258342,258345,258347-258348,258350-258360,258362-258367,258387-258388,258390,258392-258393,258397,258399-258401,258406-258407,258410-258412,258418,258425,258427-258433,258436,258439,258441,258445,258448,258458,258469,258471,258475-258480,258489,258492,258494-258495,258497,258501,258503-258504,258507,258527,258530,258533,258535,258537,258545-258547,258549,258551-258553,258569-258570,258573-258574,258578-258582,258587-258592,258594,258597,258602,258605,258609,258614-258615,258617-258619,258622,258625,258628-258634,258638,258641-258643,258647-258648,258651,258658-258662,258664,258668-258669,258673,258675,258677-258679,258683,258689-258694,258696-258699,258702,258704-258705,258708-258709,258711-258717,258720,258722,258727-258728,258731-258733,258737,258739-258746,258748,258757-258758,258765,258770,258776,258778-258780,258785-258787,258789-258790,258793-258794,258796-258800,258802,258805-258807,258817,258819-258820,258826,258828,258830,258840,258845,258847,258851,258853-258855,258857,258859-258860,258869,258871,258873,258879,258884,258892-258893,258897,258901-258902,258904,258909,258914,258919,258921,258924,258927-258928,258930-258931,258941,258943,258950,258956,259003,259005,259007,259010,259013-259014,259016-259017,259019,259022-259023,259029-259039,259042-259044,259046-259049,259052-259054,259056-259058,259060,259071-259072,259079,259081-259085,259088-259090,259092,259094-259095,259099-259104,259107-259111,259113,259115,259117-259118,259121-259122,259125-259127,259129-259134,259140,259143-259145,259148,259150,259152,259156,259168-259169,259176,259178-259180,259182-259183,259191-259197,259199,259202-259203,259205,259208-259213,259219-259222,259232,259240,259244-259248,259261,259265-259267,259270,259274-259276,259284,259286-259287,259302,259330-259331,259339,259362,259382,259393-259395,259400,259407,259411,259413,259417,259421,259424-259430,259436-259438,259441,259462,259464,259468-259470,259472-259474,259476-259478,259480-259482,259484,259490,259493,259498,259502,259513-259514,259516-259518,259520-259522,259525-259529,259531-259532,259535,259537,259542-259547,259549-259550,259555,259558,259562,259564-259566,259569-259574,259576,259586-259589,259597-259598,259609,259612,259615,259626,259632-259635,259638,259640-259641,259645,259649-259651,259655,259657,259659,259662-259663,259666-259668,259674-259675,259677,259679-259681,259684-259686,259696,259699,259702,259708-259720,259724,259727-259730,259732-259733,259735-259737,259739-259740,259743-259744,259749-259750,259756,259761-259767,259771-259777,259779-259782,259792,259801,259808,259811-259813,259816,259823,259825-259828,259830,259833,259838-259846,259850,259854-259855,259860,259863,259868-259870,259872-259877,259879-259882,259884-259888,259892-259893,259896-259897,259902,259906,259908,259910,259913,259915-259916,259920-259922,259924-259929,259936-259937,259939-259940,259942-259944,259946,259950-259951,259953,259955,259959,259961,259973,259978,259997-259998,260003,260009,260014-260017,260019-260020,260023,260025-260026,260028,260031,260036,260038-260059,260061,260063-260064,260066-260070,260076,260079,260083,260086-260089,260092-260093,260095,260097,260099,260102-260106,260110-260113,260118,260121,260124-260125,260132,260138,260141-260142,260145,260150-260151,260156-260157,260160-260161,260163,260165-260167,260175,260180-260181,260183-260185,260187-260189,260204-260207,260210,260217,260219-260220,260222,260225,260228-260229,260232-260239,260243,260245-260247,260255,260257-260258,260260-260262,260267,260281-260283,260285,260288,260290,260292,260294-260295,260310-260311,260315,260320,260322-260323,260326-260328,260331-260334,260336,260340,260355,260358,260361,260367,260369,260371-260375,260377,260379-260383,260388-260390,260397,260401,260403,260407,260410,260415,260429,260440-260441,260444-260447,260449-260450,260457,260459-260460,260463,260466,260469,260481,260483-260486,260488,260490-260491,260493-260494,260496,260505-260506,260508-260509,260521-260526,260531-260532,260534-260536,260540-260542,260547,260549-260550,260553,260556-260557,260559,260563,260566-260567,260571,260576-260577,260581-260584,260586,260588-260589,260594-260597,260600,260605,260607,260610,260619,260621,260632-260637,260648,260653-260655,260666,260688,260691,260695-260696,260701-260704,260706,260713,260717,260752,260772,260782,260791,260793,260796,260800-260802,260808,260811-260812,260814,260830-260831,260833,260835-260836,260847,260863,260866,260871-260872,260883-260890,260893-260894,260899-260900,260903-260904,260910-260911,260913-260914,260921,260926,260934,260942,260949,260953,260972-260973,260976-260977,260986-260987,260996,260999-261001,261003-261005,261024,261027-261030,261032-261033,261037-261042,261068,261072,261074-261075,261080-261081,261083-261086,261089,261091-261092,261094-261095,261117-261118,261121-261134,261137-261138,261140-261141,261146-261147,261149-261151,261160-261173,261175,261178,261189,261192-261200,261211-261212,261214-261217,261220,261224,261227-261230,261233-261234,261242-261243,261247,261252,261257-261258,261260-261263,261267-261271,261279,261283-261284,261290-261291,261294,261296,261299-261302,261304-261305,261309,261315,261318-261322,261330,261336-261340,261342-261343,261345,261351-261355,261357-261358,261393-261398,261400-261401,261403-261424,261432,261435-261440,261442,261444-261447,261449,261453,261459,261479,261487,261491,261493-261497,261499-261501,261503-261507,261511-261518,261520-261522,261524-261531,261533-261538,261541-261544,261546-261547,261549-261553,261558,261562-261568,261570,261572,261577,261582-261586,261589-261593,261595-261599,261601,261603-261604,261606-261611,261613-261618,261620-261621,261627,261638-261643,261646-261651,261655-261657,261663,261668,261676-261677,261680-261690,261698,261701-261702,261708,261710-261715,261719,261722-261725,261742,261747-261768,261773-261774,261778,261780-261781,261783,261785-261786,261789-261791,261795-261797,261799-261801,261803-261805,261808,261811,261814-261819,261823-261827,261832-261838,261841-261848,261855,261858-261859,261861,261863,261867,261872,261875,261882-261885,261890-261905,261907-261908,261911,261913-261922,261931-261932,261934,261937-261940,261944-261947,261955-261960,261962,261977-261978,261981-261983,261987,261991,261994,262000,262005-262006,262011,262020,262027-262030,262036,262121,262123,262125,262128-262129,262133,262135-262136,262139-262140,262142-262144,262162,262184,262186,262194,262209,262220,262233,262236,262242-262244,262247,262250-262252,262273-262274,262277-262278,262280-262281,262294,262296,262303,262309-262311,262324-262334,262337-262338,262340-262341,262343-262345,262347,262351,262353-262355,262393-262394,262398-262401,262408-262411,262413,262417-262420,262424-262427,262439-262442,262447,262451,262454-262456,262461-262465,262467,262471-262472,262477-262478,262480,262482-262484,262487-262488,262494-262495,262499,262501-262502,262505-262507,262509,262513,262522-262523,262525-262526,262528,262530-262534,262539-262540,262542-262543,262547-262555,262559,262565,262568,262571-262572,262574-262575,262577,262581,262583-262585,262587,262591-262593,262596-262601,262603,262606-262611,262613-262615,262624-262627,262645-262647,262655,262657,262661,262663-262666,262669-262670,262676,262682,262689-262690,262694-262697,262708-262712,262714,262719,262725-262726,262728,262730,262732-262733,262736,262741,262744,262746-262748,262750,262752,262754-262755,262760,262763,262767,262769-262771,262775,262781-262782,262785,262789,262795,262799,262805-262806,262809-262810,262812,262814,262819,262822,262837,262847,262862,262864-262865,262867-262868,262870,262872,262877,262880,262884-262886,262890-262891,262894-262905,262908-262910,262912,262914,262916,262918-262921,262924-262925,262929-262930,262932,262935-262936,262940-262942,262945,262948-262950,262952-262955,262957-262962,262966,262972,262975,262979-262980,262982,262984-262987,262989-262991,262995,262997,262999,263005,263021,263030,263033-263036,263041,263048-263049,263052,263054,263056-263057,263059,263062,263079-263085,263087,263089-263092,263094-263096,263105-263107,263109,263113-263118,263120-263121,263123-263124,263129-263131,263133-263137,263139-263141,263144-263150,263153-263155,263159-263161,263169,263172-263175,263180-263181,263183-263193,263195,263199,263203-263204,263207,263210-263211,263217,263220-263222,263226-263227,263230-263234,263236-263239,263242-263246,263248-263254,263257,263259,263264-263265,263267,263271,263275-263278,263280,263287-263292,263297,263301-263306,263310-263313,263317,263320,263322-263323,263329,263331-263332,263336,263345-263346,263348-263349,263351-263353,263356,263362,263373,263380,263385,263388,263412,263423-263432,263434-263435,263445-263446,263451,263457-263460,263464,263468,263471,263475,263479,263497-263498,263530,263631-263632,263637-263638,263649-263650,263658,263664,263676,263678-263679,263686,263690-263694,263698,263704,263710-263712,263738,263740,263742-263745,263749,263752-263753,263755,263758,263768,263772,263774-263775,263777-263780,263795,263810-263812,263814-263815,263822,263826,263833,263842,263846-263847,263859,263863,263872-263873,263878-263879,263881,263885,263889-263892,263901,263910,263912-263914,263918-263919,263921-263926,263928,263933-263937,263948-263949,263952,263957,263966,263968-263969,263971,263978-263979,263981-263983,263985-263986,263989-263990,263998,264007-264013,264016-264031,264038-264039,264041,264046,264048-264052,264054-264059,264062,264065,264067-264068,264073,264077-264078,264082-264084,264086-264088,264090-264092,264094-264097,264099-264103,264105,264107,264109-264110,264114-264115,264119-264120,264122,264124-264133,264135,264137-264138,264142,264145-264146,264149-264151,264153,264160-264164,264173-264174,264177,264179-264183,264189-264191,264193-264194,264197,264203-264208,264212-264213,264215,264218-264220,264229-264230,264235,264238,264241-264244,264248,264251,264257-264259,264261-264264,264269,264274-264283,264291,264293-264297,264302,264304,264307-264308,264310-264311,264313-264321,264324,264327,264340-264351,264353-264356,264361-264364,264367,264384-264386,264388-264389,264391-264392,264394,264400,264403-264408,264410,264412-264422,264428,264434-264436,264448,264453,264460-264461,264465,264467-264469,264471,264479-264482,264486,264488-264489,264494,264498-264501,264504,264507,264509,264514-264518,264520,264524-264540,264542,264544-264545,264549-264550,264552,264565,264573,264582,264585,264600-264601,264604-264605,264608-264610,264617,264620-264621,264628,264630-264631,264646,264648,264650-264651,264653,264655-264656,264669-264672,264679,264681-264682,264686,264689,264691,264694,264696-264698,264701-264705,264709,264721,264725,264731,264737-264742,264749,264765-264766,264768-264770,264772,264781,264794-264795,264800-264803,264822,264825-264828,264831-264832,264834-264838,264840-264842,264845-264846,264849-264853,264856-264861,264863-264865,264867,264876-264881,264883-264889,264891-264892,264905,264907-264909,264912,264915-264918,264921-264923,264927,264933-264935,264963-264966,264968,264970,264972,264975,264977-264979,264981-264985,264988,264990,264992,264994-264995,264999,265002-265004,265012-265017,265020,265023-265025,265028,265035-265036,265038,265042,265046,265054,265057-265059,265062-265063,265072,265085,265090,265092,265094,265096-265102,265107,265111,265114,265148-265150,265152,265154-265157,265159,265162-265165,265170-265171,265191,265193-265194,265197,265201,265203,265206-265208,265211,265214,265218,265229-265230,265232,265236-265242,265244,265248-265256,265260-265264,265267,265269-265270,265275-265276,265285,265287,265289,265308,265310,265318,265320-265321,265323,265329,265331,265333,265336,265358-265360,265362-265366,265371,265376,265385-265386,265391-265392,265395,265397-265398,265402-265403,265407,265411,265418,265424,265427,265440-265442,265444-265447,265454-265456,265458,265462-265465,265467-265468,265473,265477,265484-265485,265534-265535,265539,265546,265555,265578,265583,265585,265590,265593-265595,265599,265601-265603,265605,265607,265624,265629-265631,265680-265681,265689-265691,265694,265703,265705,265709,265712-265713,265716,265719,265732,265739,265766,265776-265780,265783-265784,265798,265806,265811,265815,265817,265821-265822,265824-265825,265829,265836,265840,265842-265843,265845,265847,265850,265852-265853,265861-265864,265867,265870-265872,265876,265883,265886-265887,265900,265909,265913-265915,265923,265925-265927,265931,265941-265943,265948,265950-265951,265978,265995,266006-266007,266010-266012,266053,266074,266083,266091-266092,266103-266104,266107-266109,266111,266114,266116,266120-266121,266125,266136,266138-266143,266145,266147,266149-266150,266166,266169,266171,266174,266176-266177,266179-266180,266193,266195,266206,266208-266209,266225,266238,266248,266261,266263,266267,266270,266281,266285,266291,266293,266296-266297,266310,266319-266320,266322-266323,266335-266336,266351,266390,266394,266396,266399,266411,266416-266418,266420,266424,266426,266444-266445,266448,266463-266466,266468,266471-266473,266475-266476,266479,266483-266484,266490-266491,266494-266495,266497,266505,266509-266514,266520,266524,266527-266529,266533-266535,266538,266540-266542,266550-266556,266565-266566,266571-266573,266587-266588,266595-266597,266605-266606,266609,266615,266618-266621,266626-266627,266630,266633,266639,266641-266642,266647,266650-266651,266664,266671,266674-266675,266708-266709,266721,266724-266725,266728,266731,266735-266736,266738,266744,266746,266757,266760,266765,266771-266772,266774-266775,266777-266778,266780,266782,266792-266793,266798-266800,266803,266808,266813-266814,266820-266822,266826-266828,266833,266835-266836,266838-266839,266841-266842,266846-266848,266851-266852,266856-266857,266859-266863,266866,266878-266880,266895,266901-266903,266907-266908,266910,266915,266922-266924,266930-266931,266933-266935,266937-266938,266941-266944,266950-266951,266955,266959-266960,266969,266971,266981,266990,267004,267007,267009,267011-267012,267021,267029,267035,267038,267041,267044,267051,267060,267062,267066-267067,267078-267079,267082,267089-267090,267097-267099,267101,267105,267109,267118-267120,267123-267124,267126-267127,267129-267133,267141,267145-267146,267148,267153,267160,267162,267169,267172-267174,267176,267178-267179,267181,267183-267185,267191,267194,267196,267210-267213,267216,267221,267223,267226-267228,267232,267239-267240,267248,267252-267256,267260-267261,267264-267265,267276,267278,267290-267292,267294,267298,267300-267301,267306,267310-267311,267313,267319-267321,267324,267326-267327,267329-267331,267335-267338,267342,267351,267355-267360,267362,267366,267368,267372-267374,267376,267378,267385-267387,267390-267392,267395,267400,267423,267426,267429,267436-267439,267441,267451,267464,267473,267478-267479,267481-267483,267485-267486,267490-267493,267496-267500,267506,267511-267516,267519-267524,267537,267544,267547,267551,267554,267558-267559,267564,267572,267574,267577-267578,267582,267591,267597,267599-267601,267603,267606,267608-267618,267622-267627,267629-267630,267632,267634,267636-267641,267643,267647-267648,267651,267661-267664,267669-267674,267680,267682,267688-267689,267692-267693,267703-267706,267712,267719,267745,267756-267757,267759,267761,267766-267768,267785,267800-267801,267811-267812,267814-267815,267833-267834,267838-267839,267851-267852,267854,267858-267859,267865-267867,267869,267871-267873,267875,267877,267883-267884,267886-267887,267896-267897,267905-267906,267909,267912,267915,267918-267921,267929,267933-267934,267937,267939-267942,267949,267952,267955,267959-267961,267963,267965-267968,267970,267973,267978,267981-267982,267984-267987,267992-267993,268000-268003,268005-268006,268008,268012,268014,268017-268018,268022,268024-268025,268045,268049-268050,268059,268066,268071-268072,268074-268075,268078-268080,268082-268090,268095-268097,268103,268114-268116,268123,268125-268126,268128,268130,268134-268138,268156,268158-268160,268169,268172,268175,268178,268182,268185,268187,268193,268196,268202-268205,268209,268211-268212,268215,268224,268227,268230-268232,268236,268238,268240,268246,268254,268256,268264-268266,268268,268272-268273,268275-268276,268280,268283-268284,268286-268293,268295,268298-268300,268302-268303,268306-268309,268314-268316,268326-268328,268330,268336-268342,268350,268353-268354,268356-268357,268361-268365,268369-268370,268373,268376,268381,268383-268385,268387-268388,268391-268393,268395,268398,268401-268402,268407,268418-268421,268427-268429,268436-268437,268445-268447,268450,268457,268460,268463-268464,268466-268467,268469-268476,268480-268481,268487-268488,268490,268492-268493,268495,268502,268505,268507,268514,268521,268524-268527,268531-268532,268534,268536-268538,268540-268541,268544,268565,268569-268570,268576,268581-268585,268587-268591,268593,268597,268601,268605-268617,268620-268621,268624-268625,268631-268640,268642-268644,268646,268660,268671,268701,268706,268711-268713,268715,268720,268722,268725-268728,268735,268745-268751,268763-268767,268771-268772,268774,268776-268777,268780,268787,268795-268796,268798-268799,268801-268802,268806-268808,268811-268812,268817,268825,268827,268834-268836,268838-268840,268842-268843,268854-268855,268857-268861,268863-268867,268877-268878,268880,268883,268888-268890,268893,268895,268898,268921-268922,268924,268926,268928-268931,268945,268947-268949,268954,268957,268960,268971,268973-268975,268977,268979,268981-268983,268985-268986,268989,268993-268994,268997-268999,269001,269008,269015-269016,269020-269021,269023,269027,269029,269032,269036,269042-269043,269050-269054,269058,269074-269077,269079-269081,269086,269088-269089,269091-269094,269097-269098,269100,269106,269108-269109,269115-269118,269122-269128,269134,269137-269139,269143,269149,269159-269161,269180,269183-269194,269197,269204-269217,269221-269222,269228-269230,269233,269239-269240,269242,269244,269278,269281-269282,269289-269293,269302-269303,269306,269314,269316-269318,269326,269337-269339,269341,269347,269351-269355,269362-269366,269368,269376,269387,269390,269392-269396,269403-269405,269407-269411,269413-269414,269423-269425,269428,269430-269431,269433,269436-269438,269440-269442,269444-269445,269448,269450,269457,269460,269466,269469-269472,269475,269481,269485,269487-269488,269492,269497,269502,269522,269524-269525,269527-269528,269533-269534,269537,269543,269565-269567,269569,269575-269576,269578,269583,269585,269587,269594,269596-269598,269601,269603-269609,269611,269613,269615,269620,269622,269627,269631,269634,269636,269642-269644,269646,269653,269656,269662,269669,269674,269682,269685,269688,269695,269698,269700-269701,269708-269709,269727-269728,269731,269740,269743-269746,269750,269758-269759,269769-269771,269775-269777,269779-269780,269783,269788,269791,269806,269809-269811,269815,269822,269833,269838-269840,269842,269844,269851-269854,269858-269859,269865,269867,269871,269873,269875,269882,269884,269888,269896,269899,269901-269904,269906-269909,269945,269948,269950,269952-269954,269956,269962-269964,269973-269974,269976-269978,269983-269985,269989,269998,270004-270005,270010-270011,270019,270022-270025,270027-270028,270038,270062,270064-270065,270068-270069,270096,270098,270101,270114-270119,270129,270131-270135,270142,270144-270146,270151-270153,270155-270156,270160,270162,270165,270176,270179-270180,270183,270189-270192,270199-270200,270202-270204,270207,270209-270210,270212,270215-270216,270222,270225,270228-270232,270234,270239,270247-270249,270251,270253,270256,270259-270260,270265,270268-270269,270271-270273,270275-270276,270278-270283,270287-270290,270293,270299-270301,270303-270304,270311,270320-270322,270324,270326-270327,270329,270331-270332,270336,270338,270340-270343,270345,270348-270349,270382-270384,270387-270388,270390-270392,270399,270402,270404-270406,270411-270413,270416-270418,270423,270431-270434,270436-270437,270443,270445-270446,270448,270454-270455,270457,270485,270504-270507,270510,270512-270513,270516,270519,270521-270522,270571-270572,270587,270589,270613,270618,270620,270643,270647-270648,270650,270653,270657,270659-270661,270666-270669,270672-270677,270679,270689,270691,270698,270702,270705-270708,270710,270720-270722,270728,270750,270754,270757,270759,270780-270783,270785-270786,270795,270797-270798,270802-270803,270821-270823,270825-270826,270828-270830,270832-270833,270836,270844-270845,270847,270850,270855,270857-270859,270861,270863,270872,270879,270882,270885,270893,270912,270927-270928,270930-270935,270945,270947-270948,270953-270961,270973,270976,270989,270991-270993,271000,271007-271008,271014,271017-271018,271025-271030,271043,271045-271050,271053-271055,271057,271073,271076-271078,271082-271084,271094,271097-271102,271108,271119,271124,271133,271137,271140-271141,271143,271145-271147,271149,271151,271156-271157,271159,271163,271167-271169,271180,271187,271190,271192,271196-271197,271199,271201-271202,271204,271206-271209,271218-271222,271226-271228,271230,271241,271250,271253,271255-271256,271258-271259,271261,271282-271287,271299,271307-271311,271313,271315-271317,271319-271321,271328,271331,271336,271338,271349-271354,271358,271360,271362,271365-271366,271381-271382,271385,271389,271393-271395,271397-271398,271401,271403,271405,271407-271411,271422,271424,271429,271432-271434,271436-271437,271439,271443,271445-271452,271457-271459,271463-271468,271475,271480,271482-271483,271485,271487,271490-271493,271495-271496,271503,271505-271507,271524,271526-271528,271532,271534-271536,271539,271543,271545-271546,271549-271550,271552-271553,271560,271563,271567,271571,271577-271579,271586,271588-271589,271591,271594-271595,271597,271601,271603-271604,271606-271607,271609-271610,271614,271616-271617,271624,271628,271630,271635,271643-271645,271647-271649,271651,271663-271665,271670,271672-271674,271676-271680,271682,271684,271688-271689,271692,271695-271696,271700,271702,271705,271711,271716-271722,271726-271728,271731,271743,271745,271747,271754,271756,271758-271759,271761-271762,271781,271784-271785,271787-271789,271794,271796-271797,271802,271819,271834,271839,271845,271847,271854,271864,271868-271869,271871-271876,271879,271881-271882,271888-271893,271895,271899-271900,271906-271907,271909-271910,271913,271917-271919,271921,271924,271926-271927,271930-271931,271934,271936,271940-271942,271945-271946,271949,271951,271953-271954,271957-271959,271965,271970-271972,271974-271975,271977-271978,271980,271982,271990,271992,272000,272007,272022-272023,272025,272027-272028,272033,272036-272037,272040,272043-272044,272046,272049,272051-272053,272055-272057,272059,272069-272072,272076,272081,272083-272084,272086-272087,272102-272103,272105-272107,272109,272111,272127,272130,272132,272135,272137-272143,272153,272159,272161,272165,272168,272171,272173-272174,272176,272181-272183,272190,272193,272197-272198,272209,272217,272223-272224,272243,272245,272247-272248,272250,272252-272256,272258-272259,272263,272270,272273-272274,272278,272280-272282,272284,272288-272291,272294,272296,272300,272305,272308,272315,272323-272326,272328-272331,272333-272334,272343,272347-272349,272355-272356,272358-272359,272363,272377-272379,272383-272387,272389,272393-272395,272398-272399,272401-272406,272408-272411,272414,272416,272422,272441,272443-272446,272449,272455,272457-272458,272469-272471,272474-272475,272479-272481,272483-272485,272487,272490-272492,272502-272507,272509-272512,272519,272523,272527-272528,272533-272534,272536-272538,272547-272548,272550-272555,272562,272566-272567,272569,272571,272573-272575,272578-272579,272583-272584,272595,272597-272599,272601-272602,272605-272606,272613,272649-272650,272655,272658-272659,272666,272668,272670-272671,272678-272679,272683,272701,272706,272708,272710,272713,272715,272717-272721,272729-272735,272737-272744,272746-272751,272756-272757,272761-272763,272765,272769-272772,272777-272789,272796-272797,272799-272801,272805-272807,272809-272810,272812,272814-272815,272822,272830,272833,272836,272838-272839,272841-272845,272848,272878,272884-272886,272889-272891,272893,272897,272901-272903,272905-272911,272914-272915,272917,272931-272932,272935-272939,272943,272947,272949-272950,272952,272958,272962-272963,272974,272976,272978-272980,273003-273006,273008,273010-273012,273014-273015,273017-273026,273029,273034,273038,273040,273045-273048,273050-273051,273053,273060-273064,273066-273068,273072-273073,273075,273081,273087-273091,273093,273096,273102,273107-273108,273112,273114,273118,273121,273123-273124,273127,273129-273132,273135,273143-273144,273146,273158-273160,273163-273164,273168,273178,273181,273186,273201,273204,273209-273212,273214,273216,273218-273219,273235-273236,273243,273247-273248,273252,273256-273259,273261,273263-273264,273267,273273,273279-273285,273287-273288,273293,273298,273301,273328-273332,273337-273338,273342,273351-273353,273356,273359-273360,273370-273371,273375-273378,273381-273382,273389-273391,273393,273395-273397,273402,273405,273407,273410,273423,273434,273445,273448,273452,273455,273457,273459,273464-273468,273470,273480,273482,273486,273488-273489,273498,273507,273514-273517,273520-273530,273533-273541,273543-273544,273546,273548,273551,273561,273566,273569,273572,273574,273577-273579,273583-273585,273587,273590-273593,273598-273599,273602,273606-273607,273610,273613,273615,273619,273627-273628,273634-273635,273640-273641,273644,273647,273653,273666,273683,273687,273690,273693,273701,273703-273704,273706,273708,273710-273711,273718,273727-273728,273730-273731,273733,273737-273740,273744,273747-273750,273752-273754,273756,273760,273762,273766,273768-273774,273778-273780,273782-273788,273791,273793,273796-273797,273799-273800,273803,273809-273810,273813,273816,273820-273822,273834,273837,273848-273857,273861-273863,273866-273867,273871,273873,273876,273896,273902,273904,273911,273913-273914,273917-273918,273920,273922,273925-273929,273932-273938,273942-273943,273945-273952,273955,273962-273967,273969,273973,273985-273986,273988-273989,273991-273992,273995,273999,274011,274016-274017,274020-274023,274031,274033,274036,274038,274040,274045,274049-274055,274057,274060-274063,274065-274068,274072-274081,274083-274084,274088,274090-274092,274095,274100,274116-274117,274119-274121,274123-274124,274142-274146,274154,274159,274163-274164,274172,274188-274189,274192-274193,274203,274205-274206,274209,274215,274218,274223,274226-274228,274230,274246,274248-274249,274251,274253-274254,274267,274270,274276-274278,274286,274289,274294,274303-274304,274308-274310,274316,274322,274325,274328,274330,274333,274337,274343,274347,274349,274351,274364-274366,274370,274376-274379,274383,274398,274402,274407,274409-274416,274418,274434-274435,274437-274439,274442,274451-274456,274458,274460-274462,274465-274467,274473-274475,274477-274478,274483-274484,274487,274489-274490,274495-274496,274501-274503,274523,274532,274537-274538,274542,274545,274549,274555-274556,274559,274569,274571-274582,274587,274592-274593,274595-274605,274607,274618-274619,274621,274626-274630,274632-274633,274636,274638-274639,274641-274644,274653,274663,274670-274671,274673-274675,274681,274703,274708-274709,274711,274720,274722-274724,274727,274737-274738,274741-274742,274744,274750,274756,274766,274784-274786,274789-274792,274795-274797,274804-274806,274816-274822,274839-274841,274843,274845-274847,274851-274854,274856-274859,274878,274884,274898,274900,274918,274922,274924,274926,274931,274933,274936-274937,274940-274941,274954,274960,274962,274964-274965,274967,274976,274988,275003,275009,275011,275020,275032-275033,275035,275045-275046,275058,275060,275071,275098,275101,275109-275110,275112,275118,275120-275121,275123-275124,275137,275140,275162-275163,275170,275199,275205-275209,275256,275260,275264,275298,275321-275322,275328,275330,275335-275337,275347,275358-275359,275365-275366,275368,275374,275376,275378,275380,275385-275386,275390,275392-275394,275399,275401,275403-275405,275412,275415-275416,275418,275420,275435,275437-275438,275446-275447,275452,275455,275458-275459,275461,275473-275478,275481-275483,275503,275510,275512-275513,275515,275518-275524,275530-275531,275539,275552-275554,275557,275560-275564,275567-275568,275574-275576,275579,275581-275584,275588-275589,275593-275595,275599,275605-275606,275612,275614-275620,275622,275624,275633,275636-275639,275645-275646,275651,275653,275656-275660,275665-275666,275680-275683,275686-275687,275692,275698,275709,275721,275727,275729,275733-275740,275743-275748,275752-275753,275755-275756,275759-275760,275765,275768,275772,275779-275782,275790-275791,275800,275805-275806,275808,275811-275812,275816-275817,275819-275821,275829,275833,275838,275842,275846-275847,275850-275852,275857,275864-275871,275874,275897,275903,275905-275908,275918,275920,275922-275923,275925,275930,275940-275944,275946,275949-275954,275958-275963,275965,275967,276003-276004,276007-276009,276012-276013,276016,276019,276021,276026-276027,276029,276037,276045-276047,276049,276052-276053,276063,276065-276066,276069,276071,276079,276087,276095,276098,276101,276106,276123,276127,276141,276145-276146,276148,276161-276162,276165-276166,276168,276174,276176,276187,276190-276194,276196-276198,276200,276202-276204,276206,276212-276213,276215,276218,276221,276226,276228-276229,276238-276240,276247,276249-276250,276282,276296-276299,276303-276304,276306,276309,276313-276314,276318-276323,276333-276336,276340,276344-276347,276350-276351,276359,276377,276383,276392,276394-276397,276400,276402,276404,276407,276412,276417,276419,276426,276428,276430,276432,276439,276444-276446,276450,276462,276469-276470,276472,276480,276483,276485,276489,276491,276495,276498,276508-276509,276511-276512,276517-276519,276521-276523,276525,276532,276534,276539,276550,276564,276570-276571,276574,276577,276589-276590,276596-276599,276605,276607,276611-276612,276626-276627,276630,276632,276636,276638,276642,276644-276645,276654,276666,276669,276671,276681,276695,276699,276702-276704,276714,276717,276723-276724,276728-276729,276749,276751,276758,276763-276766,276771,276774-276775,276795,276798-276799,276801,276803-276806,276808,276814-276815,276820,276822-276823,276825,276827-276828,276831-276835,276839-276840,276842,276844,276846-276848,276861,276863,276867,276879-276880,276883,276891-276893,276898,276901-276902,276904,276906-276907,276913-276914,276948-276949,276952,276959,276962,276981-276983,276985,277023,277025-277028,277030-277034,277037-277038,277042-277044,277046-277051,277053,277055,277057,277082,277084-277085,277088,277096,277098-277102,277126,277128,277130,277132,277135-277136,277143,277147,277149,277151,277158,277168-277172,277175,277177,277179,277185,277199,277202,277205-277208,277211-277212,277215-277219,277225-277227,277229-277230,277233-277237,277239,277245-277247,277258-277259,277262,277265,277270,277272,277274,277278,277291,277295,277300-277301,277305-277307,277309-277310,277318,277321-277322,277328,277333,277337,277340,277346-277352,277354-277355,277357-277360,277365,277372,277380,277385,277390-277391,277396,277416-277419,277424,277433,277440,277450,277452-277454,277458,277460,277463-277467,277469-277481,277485,277487-277488,277492,277501,277503-277504,277512-277516,277523,277527,277529,277531-277533,277536,277541,277555,277568,277579,277594,277606,277608-277610,277626-277627,277629,277637,277642-277647,277649-277650,277652,277655-277656,277659,277663,277666,277674-277678,277685-277687,277693,277695,277706,277709-277710,277712-277714,277717,277725-277728,277730-277736,277738-277741,277743,277758-277759,277764,277788,277792-277796,277799,277802,277806,277811,277814-277815,277826-277829,277834,277836-277839,277841,277853-277855,277862,277868-277869,277877,277883-277895,277898-277899,277901,277903,277907,277914-277915,277917,277920-277922,277925-277927,277936,277938-277939,277944,277948-277949,277951-277953,277957-277959,277962,277969-277970,277972,277974,277988-277989,278000-278001,278004,278010,278016,278031-278032,278034,278037-278038,278040,278047,278053,278061,278070-278071,278074,278098-278099,278101,278103,278105,278111,278114,278118-278119,278135-278137,278145-278148,278151-278154,278159-278161,278166-278167,278172-278173,278182,278192-278193,278202,278204,278206,278209,278212-278213,278220-278222,278228,278233-278234,278237,278239,278248-278251,278254-278255,278257,278268,278282,278292,278297,278300,278302-278303,278311,278313-278314,278316,278320-278323,278325,278327,278335-278340,278342,278348,278352,278354,278360,278362,278364,278370-278372,278374,278379,278398,278402,278433,278438,278449,278458-278462,278464-278470,278472,278474-278477,278483,278485,278488-278493,278500,278502-278503,278518-278519,278521,278523,278526,278530,278532,278551,278582,278584,278586,278594,278598,278600,278603,278605-278607,278618-278619,278621-278623,278625,278627,278633,278636,278640,278653,278655,278658,278672,278681-278682,278697,278704,278706,278728,278739,278742,278751,278760-278761,278767,278770,278776,278790-278791,278794-278795,278802-278803,278806,278810,278817-278819,278826-278828,278830-278844,278848-278850,278856-278858,278860,278865-278866,278868,278870-278871,278874,278888-278889,278891,278902,278905,278915,278924-278926,278932-278933,278937-278942,278963-278964,278970,278976,278983-278984,279016-279017,279033,279037,279046-279048,279050,279076-279078,279080-279081,279083-279084,279089,279091-279092,279094-279098,279114,279117,279121,279123,279125-279128,279139,279141-279147,279172-279183,279186,279197-279198,279205-279206,279209-279210,279215,279219-279220,279223,279225,279227-279233,279235-279236,279239-279246,279248-279251,279253,279256-279257,279261,279266,279268,279270,279275-279278,279281-279284,279297,279301,279307,279310-279312,279314-279318,279320-279321,279324,279326,279330,279336,279338,279346,279351,279359-279362,279364,279366-279368,279375,279385,279390,279393,279395-279396,279398,279400-279401,279410-279411,279413,279421-279440,279444,279489,279491,279493,279531,279534,279536,279538,279540,279543-279544,279551,279554,279559,279563-279564,279567-279568,279570-279571,279573,279584,279587-279591,279593,279597-279600,279624,279642,279651-279652,279654,279657-279658,279673,279675-279676,279683-279684,279691,279695,279698,279700-279702,279706,279720,279722-279726,279728-279730,279735,279738,279756-279758,279760,279764,279766,279773,279776,279779,279802,279806-279808,279810-279813,279815-279816,279819,279821,279824-279827,279837,279841-279843,279845-279846,279850-279851,279854,279856,279858-279860,279862-279865,279867,279869,279875,279886,279892,279894,279896,279901-279903,279910,279913-279916,279919-279920,279925,279927,279929,279931,279935-279936,279941,279945,279949-279955,279957,279959-279960,279963,279965,279967-279969,279975-279977,279979-279980,279987,279996,280004,280017,280026,280037,280040-280044,280047,280090,280121,280125-280126,280130,280133-280134,280154,280160-280164,280166,280169,280172,280177-280180,280182-280183,280187,280191,280194-280197,280204,280206,280208,280210-280211,280221-280222,280228,280230-280232,280234-280236,280238,280249,280252-280254,280262-280264,280278-280279,280286,280293,280297,280299,280301,280307-280308,280310-280311,280321-280323,280325,280330-280331,280336,280342,280345,280347,280351,280357,280360,280371,280374-280380,280382-280385,280387-280388,280393,280402-280404,280429-280435,280439-280440,280447,280451,280459,280463,280475,280495,280572-280574,280597-280598,280630,280634,280640,280642,280685-280688,280700,280702,280709,280713-280714,280716,280721,280725,280756-280758,280760,280763-280765,280767-280768,280772,280775,280780-280782,280786,280792-280793,280797,280805,280807-280808,280814,280816,280818-280819,280822,280830,280834,280840,280845-280846,280848-280850,280858,280861,280864,280866,280870,280878-280879,280881-280882,280884,280893-280895,280904,280914-280916,280919-280926,280928-280931,280933-280939,280949-280950,280953-280957,280959,280962,280968,280974-280976,280980-280981,280983,280988,280990-280991,280998-280999,281002-281003,281005-281006,281009,281011,281015-281016,281026-281027,281039,281053,281058-281060,281070-281071,281073-281074,281077,281081-281082,281084,281086,281094,281107-281109,281112-281113,281116-281117,281120-281121,281136,281138,281145-281146,281159-281160,281162-281167,281169-281171,281176-281182,281199-281200,281202,281206,281209,281216,281225,281234,281236,281254,281265-281266,281271-281272,281275,281280-281283,281285,281307-281311,281316,281320,281324,281331,281335,281337,281354-281356,281358-281362,281367,281371-281372,281380-281381,281383,281387,281391-281404,281406-281412,281440-281441,281451,281462,281470,281475,281483,281495,281499-281500,281502,281524,281529,281531-281532,281536-281537,281540,281542,281544,281548-281550,281558-281559,281561-281563,281581-281582,281591-281593,281599,281601,281605,281611-281612,281616-281618,281626,281628,281630,281655,281666-281667,281670,281674,281677,281689,281696,281698,281700-281701,281703-281704,281712,281723,281726,281728,281734-281736,281738,281745,281751-281752,281756,281762-281769,281772-281773,281775,281777,281780-281783,281785,281787,281789,281795,281800,281809,281812,281820,281823,281825,281828,281832,281838,281840,281857,281860,281870-281873,281875,281877,281879,281881,281883-281884,281887,281915-281916,281918,281920,281923-281924,281928-281930,281932,281941,281944,281946,281956,281959-281960,281962,281966-281967,281984,281987,282017,282023-282025,282041-282042,282054,282056-282057,282059,282061-282063,282067,282071-282076,282084-282089,282092,282097,282104,282106,282109,282112,282115-282116,282119-282122,282125-282128,282130-282131,282133-282138,282144,282148,282152,282201,282205-282206,282208-282209,282211-282213,282215,282236,282238,282241,282244-282245,282247,282254,282257,282259,282261,282266,282269,282273,282277,282281,282284,282287,282289-282291,282293,282296,282299-282301,282304,282312,282328,282331,282335-282336,282339,282341,282344-282345,282351,282364,282407-282408,282415-282419,282424,282429,282434-282436,282443,282465,282469,282473,282475,282482,282485,282500,282505,282516,282519-282520,282524-282533,282536,282550-282552,282558,282560,282563,282565,282567,282571,282574,282577-282578,282594-282595,282608,282613,282632,282641,282643,282645-282646,282650-282652,282658,282660-282661,282679-282681,282683,282685-282687,282690,282693,282697-282700,282706,282708-282709,282712-282713,282716,282718-282721,282727,282730-282731,282739-282741,282743,282747,282766,282772,282784-282785,282787-282799,282805,282809-282810,282817,282821,282857,282863,282865-282866,282880-282881,282885,282888,282897-282905,282908,282914,282916,282921-282922,282932,282940-282942,282944,282948,282965,282967,282978,282996-282998,283000-283001,283007-283009,283013-283014,283018,283023,283025,283032-283033,283035,283048-283051,283053,283056,283061-283064,283066-283067,283069,283075,283092-283093,283101-283106,283110,283114-283115,283117,283119,283121,283123,283126,283128,283141,283144,283146-283147,283149,283153,283162-283163,283168,283170,283245,283252,283254-283257,283261,283264-283266,283268-283269,283271-283274,283278,283281-283282,283285-283286,283288,283290,283293,283295,283298-283299,283301-283302,283307-283308,283313,283320,283330,283357,283364,283369-283386,283388-283403,283405-283408,283410-283425,283427-283456,283459-283468,283470-283476,283478-283480,283482-283484,283486-283498,283502,283506,283514-283515,283524-283525,283542,283544,283546-283547,283562,283569,283573-283578,283580,283593,283599-283602,283604,283612-283613,283618,283622,283624,283629-283630,283635,283645,283647-283648,283650,283654,283657-283658,283661-283662,283664-283666,283673-283674,283679-283681,283691-283692,283695,283735,283745,283753,283784-283786,283795,283801,283806,283808-283811,283813-283820,283832,283836,283840-283843,283845,283858,283863-283864,283869-283870,283889,283891,283893-283897,283913,283919-283920,283922-283924,283929,283933,283936,283939,283959,283961-283962,283966,283968,283973,283975,283988,283991-283992,284000,284007,284010-284013,284022-284025,284032,284044,284046,284049,284051,284102,284104-284107,284110-284114,284117-284130,284133,284135,284137,284139-284140,284148-284149,284151,284157,284159,284163,284165-284167,284174-284175,284179-284180,284192,284207,284222,284229,284237,284245,284247-284250,284254,284260,284264,284269-284270,284277,284280,284283,284289-284290,284296-284297,284301,284303-284304,284306,284308-284309,284323-284326,284329,284331-284333,284335,284346,284348,284351-284355,284377-284378,284383-284386,284392-284393,284405,284408-284409,284416,284423,284425-284428,284436,284445,284447,284470,284477,284495,284512-284513,284515,284526-284528,284531,284539-284542,284547,284551-284552,284567,284578,284582,284589,284591,284593-284594,284596,284600-284601,284604,284607-284609,284611-284612,284617,284622,284626-284627,284630,284636,284639-284641,284644,284646,284649,284654-284656,284658,284660,284672,284676,284681-284683,284688,284691,284697-284698,284709,284712,284717-284719,284722,284724,284727-284728,284730,284739,284741,284743,284746-284749,284765,284777,284779-284780,284792,284808,284811-284812,284814,284858,284863-284864,284872-284873,284875,284877,284882-284884,284887,284889,284893,284895-284897,284913-284916,284918-284921,284927-284931,284933,284941-284942,284956,284965,284968-284969,284984,284988,284996,285005-285006,285010-285011,285020-285021,285028-285030,285037,285039,285041-285042,285046,285050-285051,285053,285059,285064,285066-285067,285086,285088-285089,285100,285104,285113,285118,285133-285134,285136-285138,285140-285141,285146-285147,285154-285158,285169-285170,285173,285188,285190,285204,285217-285221,285225-285226,285229-285231,285237,285240,285246,285248,285251-285253,285256,285260-285261,285269,285279,285282,285284,285318,285325,285329,285339-285340,285384,285394-285396,285398,285401,285403,285405-285406,285408-285409,285411-285415,285418,285420,285424,285426-285428,285430,285433-285435,285440-285444,285457,285459,285481-285483,285510,285512-285513,285522,285527-285529,285531,285543,285552-285554,285557,285590-285592,285594,285600,285621,285623,285628,285630,285638-285639,285642-285644,285648,285651,285657-285658,285663-285664,285667,285669,285671-285676,285678-285679,285684,285701,285710,285715,285719-285720,285722,285730,285732-285733,285735,285742,285767-285768,285773,285775-285776,285782-285783,285785,285792,285796,285798,285815-285816,285837-285844,285847,285858-285859,285869-285870,285873,285875,285877-285879,285881-285882,285886-285889,285891,285909,285912-285914,285925,285932,285935,285938,285944-285948,285958,285960,285972-285973,285975,285984-285985,285989,285996-285997,285999,286010,286017,286024,286043,286045-286047,286066,286074,286086,286090,286092,286102,286106-286107,286118,286131,286139-286140,286142,286150-286152,286154-286158,286162-286163,286167,286169,286173,286177,286196-286204,286206,286208,286210-286211,286215,286217-286218,286223,286226,286228,286234,286237-286238,286243,286256,286258-286260,286265,286281,286283,286285,286288-286289,286293,286304,286317,286320-286321,286328,286330-286331,286338,286341,286344-286345,286353,286358,286360-286361,286367-286370,286375,286378,286380-286383,286385,286388-286389,286395,286400,286402,286404-286406,286409,286414,286417-286419,286423,286429,286447-286448,286451,286456,286461-286462,286469,286490-286491,286503-286506,286510,286512-286516,286519,286539,286541,286543,286545,286547,286549,286551,286554,286556,286561-286562,286569-286570,286574-286576,286578-286579,286582,286587,286589,286591,286593,286595-286596,286598,286600-286601,286603,286605,286613,286615,286617,286621-286623,286625-286626,286628,286641,286647,286649,286652,286655,286660,286667,286677,286683,286686,286689,286699-286702,286705,286708,286710,286712,286719-286720,286723,286733,286737,286762-286764,286766-286767,286770,286773-286778,286780-286781,286784-286785,286790,286798-286799,286802,286805-286809,286811,286814,286816,286822,286827,286829-286834,286836-286838,286848-286849,286857,286860,286862,286867-286868,286873,286886-286888,286890-286894,286910,286913-286914,286926,286933,286937-286940,286942-286944,286947,286951,286962-286967,286970-286971,286974-286975,286981-286983,286985-286986,286991,286993,286999,287004-287005,287009,287012,287020-287021,287025,287033-287034,287081,287093-287095,287097-287100,287103,287107,287109,287112,287117,287119-287121,287123,287125,287138,287143,287148,287151-287153,287155,287178-287179,287182-287183,287208,287216,287220-287221,287234-287238,287247,287264-287265,287280-287284,287289,287292-287294,287299-287300,287309-287310,287317,287319-287321,287324,287327,287330,287335-287337,287340,287345,287349,287354-287355,287357-287358,287360-287361,287366,287368-287369,287372,287374,287376,287378-287386,287389-287390,287395-287397,287400,287402-287406,287413-287414,287420-287422,287429,287432-287433,287436-287437,287440,287442,287444-287445,287448,287453-287459,287465,287468,287473,287475,287479,287483,287485,287489,287493-287494,287497,287499-287500,287520,287522,287528,287534-287535,287537-287538,287541,287563-287564,287567,287574-287576,287579-287581,287590-287592,287595,287599,287607-287611,287613-287621,287633-287635,287649-287654,287664,287669-287671,287673-287675,287683,287685-287698,287701-287707,287711-287712,287714-287715,287717-287721,287724-287726,287728,287744-287745,287747-287748,287753-287754,287756-287758,287760,287764-287768,287770-287772,287774-287775,287778,287783-287785,287799,287803,287806-287807,287816,287818-287819,287821,287823,287825,287827-287828,287830-287831,287833,287842-287843,287855,287860,287864,287866,287868,287870,287875,287880,287886,287912-287913,287917-287918,287920-287921,287927,287930,287933-287935,287937,287940,287944,287951,287955-287957,287964,287967-287968,287978-287983,287986,287988,287991-287994,287997-287998,288000-288001,288006,288020-288021,288025,288031-288033,288043-288044,288057,288059,288061,288064,288067-288068,288070-288071,288075,288081,288083,288091-288092,288099,288104,288110-288111,288116,288120,288138,288143,288146,288148,288153-288154,288158,288160,288165-288166,288170,288175,288179-288180,288198-288201,288204,288208,288211,288213-288217,288220-288221,288224,288229-288230,288233,288238-288239,288246-288249,288258-288262,288264,288266-288267,288271-288273,288276,288278,288281,288295,288298,288303-288306,288309-288310,288330,288335-288337,288339-288341,288345,288347-288348,288358-288359,288361-288372,288374,288380-288381,288390-288391,288405-288406,288419-288420,288423-288424,288427,288429-288430,288446-288450,288452,288454-288456,288458,288470,288477,288486,288488,288490,288522,288524,288528-288529,288575,288579,288600,288625-288626,288653,288678,288826,288829,288832,288834,288902-288903,288905-288907,288910,288914,288944,288949-288950,288952-288953,288959-288963,288981,288984,288993-288994,288997,289001,289017,289026,289028-289031,289038,289041,289055,289058,289060,289063,289065,289067,289080,289083-289084,289091,289093,289095,289097-289098,289102,289104-289105,289109-289111,289113,289118,289136,289138,289146,289151-289158,289180,289186,289190-289192,289194-289195,289199,289203,289205-289209,289219,289225,289229,289231-289234,289238,289240,289255,289257-289259,289265-289266,289271-289274,289280-289281,289286,289289,289293,289295,289297,289299-289300,289305,289307,289309,289313,289315-289316,289321-289322,289324,289332,289337,289340-289349,289360-289362,289374-289375,289378-289379,289393,289396-289397,289407,289419-289422,289425,289430,289441,289445-289446,289450-289453,289469,289477,289480,289487-289488,289496-289497,289499-289500,289527-289528,289531,289536,289538-289546,289560,289562-289563,289570,289577,289592,289596-289598,289600-289602,289604-289605,289607-289620,289622,289626,289634-289637,289643,289645-289654,289656-289658,289660-289661,289664,289669,289676-289677,289681,289687,289693,289702,289704,289719,289726-289727,289732-289733,289736,289739,289743,289746,289755,289760,289764,289768-289769,289774-289777,289783,289790,289793-289794,289797,289812,289817,289819,289822-289824,289837-289838,289842-289843,289852,289855,289863,289866-289867,289870-289875,289877-289879,289881-289882,289886,289888,289890,289895-289897,289899,289901-289913,289916,289930-289933,289937,289939-289940,289942,289979-289980,289982-289983,290003-290004,290006-290008,290018,290020-290021,290023-290024,290028,290042,290047,290054,290073,290083-290084,290087,290102,290104,290110,290116,290118,290121-290122,290129-290132,290138-290140,290143-290144,290147,290153,290158-290161,290163-290164,290169-290170,290173-290174,290177-290182,290184,290188,290190-290191,290195,290229-290232,290236,290251,290253,290255,290259-290260,290262,290264-290268,290270,290275,290316,290320,290326,290329,290336-290337,290367,290370,290374,290387,290399-290401,290404-290406,290408,290412,290414-290416,290426,290428-290429,290431,290435,290437,290440-290442,290444,290450-290452,290458,290462,290466,290468,290480,290489,290492,290504,290506-290507,290515,290521,290532,290537-290540,290542,290548-290550,290560-290561,290563,290566-290567,290571-290573,290601,290615,290639,290641,290645-290647,290650,290659-290660,290662,290665,290670-290674,290678-290689,290693,290708-290710,290725,290728-290729,290742-290743,290810-290813,290820,290830,290843-290851,290855-290856,290860,290868-290871,290903,290905,290907-290909,290911-290915,290917,290920,290922,290929-290930,290946,290948,290959,290970,290978,290980-290981,290993-290994,291000-291001,291004,291012-291014,291016-291017,291022,291024,291026,291028-291035,291038,291047,291061,291067-291072,291078,291080-291081,291084-291085,291088,291091-291092,291097,291099,291114,291117,291120-291121,291125-291126,291132,291137-291138,291140-291141,291143-291147,291149-291150,291155-291164,291166-291169,291172,291180-291181,291188,291197-291199,291207,291209,291221,291225-291226,291238,291260-291261,291263,291265-291266,291280,291296,291301,291306,291329-291331,291338-291340,291342,291348-291349,291358-291359,291362-291365,291367,291369,291375-291377,291379-291380,291383,291390-291398,291408,291410,291432,291434,291436,291446,291453,291459-291461,291481,291488,291527,291534-291536,291545,291569-291570,291576,291578-291579,291582,291584-291588,291590,291605,291610-291611,291615,291637-291638,291641,291651,291653-291654,291657-291659,291671,291677-291680,291682,291684,291690-291691,291693-291694,291699-291700,291703,291705-291706,291716,291724,291727,291730,291741-291743,291746-291747,291752-291753,291766,291770,291793,291821,291826,291832-291839,291843,291845-291849,291862,291868,291872,291876,291891-291892,291896,291904,291908,291911,291919,291922-291928,291931-291932,291936,291938-291939,291941-291942,291947-291948,291950,291953-291954,291957,291978-291985,292000,292003-292005,292007-292013,292031-292032,292034,292038,292041-292042,292044,292046-292048,292050-292053,292055,292057-292060,292066,292069,292074,292086,292088,292090,292092-292093,292106,292121-292123,292128-292130,292135,292153,292206,292212,292216,292218,292226-292229,292234,292249-292250,292254,292258,292262-292263,292266,292277,292289-292290,292313,292316-292319,292323-292324,292327-292328,292330,292332,292337-292338,292355,292360,292366,292384,292394,292408-292411,292413,292419,292432-292435,292441-292446,292454-292455,292485,292489,292491-292493,292495-292497,292500-292501,292504,292507-292510,292513-292515,292517-292518,292522-292523,292527,292530-292533,292537-292539,292541-292546,292550,292552-292554,292558,292563,292569-292570,292573,292578,292581-292585,292595,292601-292608,292610,292620-292621,292638-292641,292647,292650-292651,292653-292654,292658,292661,292665,292669-292670,292674,292676,292682,292690,292697,292705,292710,292715,292719,292725,292733-292734,292739,292741,292743,292745,292749,292751-292752,292757,292759,292764-292765,292813-292816,292818-292820,292822,292829,292834-292838,292840,292846-292847,292849,292859,292861,292872,292877-292878,292884,292888,292890-292892,292894,292896,292899,292914,292943,292946-292950,292953,292957,292960-292961,292983,292989,292996,292999-293001,293014-293015,293028-293029,293032-293034,293037,293042-293043,293045-293049,293053,293055,293059,293061,293063-293065,293073,293105,293165,293173,293188,293190,293192,293221,293229,293231,293233-293234,293244-293245,293268-293269,293271,293274,293281,293305,293312,293331-293332,293334,293338,293340,293342-293343,293346,293349-293350,293357,293370,293379,293390,293414,293422-293423,293434,293436-293438,293440-293444,293452,293454,293458-293461,293469,293491,293612-293613,293617,293621-293622,293627,293653,293658-293659,293677,293679,293683,293704-293705,293708,293715,293719-293722,293724,293730-293734,293740,293745,293748-293758,293761-293770,293772-293775,293781,293783,293792,293796,293805-293815,293817-293819,293821,293825,293828,293830-293831,293833,293835,293851,293854-293856,293858,293860,293868-293871,293873-293875,293877-293878,293880,293887-293892,293895,293899-293902,293905,293913,293977,294027,294029,294032,294040-294042,294048,294057-294060,294062,294068,294072-294073,294075-294081,294091-294094,294102-294103,294123,294125-294128,294137,294183,294191,294196,294200-294201,294233-294235,294237,294249-294257,294259,294265,294284,294291,294309-294314,294317-294320,294322,294324-294326,294328,294330,294332-294333,294335-294336,294347,294358,294362,294366-294367,294370-294373,294407,294414,294452,294463-294464,294466-294467,294469-294470,294493-294498,294504,294506-294507,294514-294515,294520,294526,294530,294548-294549,294553-294554,294556-294557,294563,294565,294567,294578,294594-294598,294620-294621,294625,294652-294653,294655,294669,294684,294688,294694-294695,294700-294703,294705,294732,294734-294735,294749,294753,294765-294769,294773,294788,294794-294795,294797,294799,294801,294803,294805,294807,294809,294811,294813,294815,294817,294820,294832,294840,294847,294854,294860-294863,294873,294876-294878,294884,294886,294891-294894,294899-294900,294909,294915,294922-294926,294933,294935-294936,294949,294952-294953,294957,294965,294967-294968,294973,294995,295006,295012,295017,295021-295022,295026-295027,295029-295030,295032,295047,295051,295069-295070,295072,295074-295075,295077,295079,295093-295094,295116-295119,295121,295125,295133-295134,295139,295147,295159,295161,295174,295186,295202,295209,295234,295273,295276-295277,295295-295309,295320,295323-295324,295341,295345,295352,295356-295357,295384-295385,295391,295407-295408,295416-295419,295455,295463,295465,295467,295471,295477,295486-295489,295495-295497,295532-295533,295535-295536,295549,295562,295568,295574-295576,295578-295580,295583-295584,295588,295603-295606,295608,295616,295618,295632,295636-295637,295649,295651,295665,295668,295670-295672,295675,295677-295678,295708-295710,295717,295729-295730,295732,295737,295740-295749,295768,295771-295773,295792-295794,295800,295805,295810-295811,295822-295823,295830,295836,295844,295856,295861,295875-295877,295900-295901,295906,295914,295916,295918-295919,295923-295925,295928-295930,295944,295958,295964,295966-295967,295969,295976-295977,295980,295994-295995,295998,296000-296002,296009,296012,296014,296020-296022,296024-296025,296028,296063,296071,296076,296083-296089,296095,296122,296148,296178,296180-296181,296184,296187-296188,296252-296253,296278,296285-296286,296289-296291,296293,296296-296297,296299-296300,296305,296319-296320,296322,296342,296348,296379-296381,296388,296392,296394,296416,296419,296428,296449,296467,296470,296472-296473,296479,296501-296502,296510,296512,296514,296516,296519,296521,296523-296526,296528,296530,296533,296535,296537,296539,296541-296543,296546,296554,296557,296563,296567,296575,296579,296585,296593-296595,296610,296613,296615,296617,296623,296633-296634,296643,296651-296657,296673-296674,296707,296766,296769,296776,296799,296807,296816,296819,296899,296902,296908-296910,296914,296919,296922,296926,296932,296934,296956,296984,296987-296988,297023,297037,297039,297049,297051-297052,297060-297063,297070,297072,297137,297139,297142-297143,297147-297151,297155-297161,297172,297176-297183,297187,297196,297200-297203,297206,297212,297219-297221,297229,297232,297243,297255-297256,297265,297282,297296-297298,297308-297309,297311,297323-297326,297330,297334-297335,297337,297358,297360,297363-297364,297367,297370,297374,297386-297387,297391,297397-297398,297420-297422,297444,297456,297475-297476,297479,297484,297488,297507-297509,297513,297519-297522,297525,297527,297535,297557,297571,297618,297626,297634-297637,297672-297673,297678,297685,297688,297695-297696,297709,297741,297746,297751,297763,297771,297781,297791,297796,297800-297805,297807-297812,297815,297817-297818,297820,297827,297832,297836-297838,297841,297846,297848,297854,297856-297859,297867-297869,297871,297873,297884,297908,297912-297913,297915,297921,297925-297926,297931-297933,297942,297947,297963,297966-297968,297984-297986,297991,297999,298004-298005,298008,298012-298014,298017,298022,298024,298030-298031,298038-298043,298072,298088,298101,298103,298105-298106,298111-298112,298114,298131,298156,298173,298176,298192,298196,298212,298224,298259-298260,298270,298279-298280,298294-298295,298301,298303-298304,298311-298312,298318-298319,298328,298333-298334,298336-298340,298355,298366,298368,298370,298372,298377,298379-298380,298385,298402,298408,298420,298424,298439,298446,298448-298452,298458,298462-298464,298472-298473,298482-298484,298495-298496,298507,298516,298518-298525,298530,298551,298556,298561-298566,298568-298572,298574-298575,298584-298585,298589,298591,298597,298609,298613-298618,298620,298640,298644,298655-298656,298660,298664-298665,298668-298672,298676-298680,298683,298688-298690,298693-298696,298698,298703,298730-298732,298734-298737,298744,298750,298753,298755,298758-298759,298769,298771-298772,298783,298787,298809,298817,298819,298829,298831,298839,298842,298844-298845,298864,298868,298874,298881-298883,298885,298887-298888,298890-298891,298893,298898,298901,298904,298921-298922,298931,298950,298977,298981-298984,298987-298989,298996,299004,299015,299035,299060,299077,299085,299087,299089,299114-299115,299121,299162-299163,299196,299201,299205,299211,299213,299226,299234,299238,299242,299249-299254,299263,299265-299272,299274-299276,299310,299315,299318-299340,299344-299348,299350,299371,299373,299375,299377,299387,299401-299408,299410-299413,299460-299461,299465-299466,299484,299489-299491,299494-299496,299502-299508,299510-299511,299513-299515,299517-299518,299524-299525,299529,299539,299559,299573,299576-299581,299585,299589,299591-299612,299654-299655,299657,299659,299666-299672,299681,299691,299694,299699,299701,299710-299712,299718-299724,299726-299734,299736,299738,299753,299759-299767,299769-299770,299774,299778,299783,299802-299803,299805-299808,299810-299811,299814-299817,299829,299831-299834,299839-299841,299843-299844,299865-299869,299872-299873,299879-299880,299888-299890,299892-299894,299896-299909,299911-299927,299938,299940,299945-299949,299951-299953,299955,299957,299971,299977,299986,299988,299991,300002,300005,300007-300011,300024,300027,300030,300052,300058,300072,300082-300084,300089-300090,300100-300102,300105,300107-300108,300111-300112,300120-300124,300126-300127,300129-300135,300142,300145,300157,300167,300169,300177,300179-300180,300217-300218,300220,300222-300224,300231,300240,300253,300258-300260,300277,300280,300282,300293,300296,300301,300304-300305,300307,300319,300322,300327,300332-300333,300340-300341,300356,300359-300360,300364-300365,300376,300378,300385-300389,300395,300397,300411-300416,300420,300428-300432,300442,300455,300478-300481,300486-300487,300489,300501,300505,300508,300531,300547,300564-300565,300567-300574,300576,300596,300605-300610,300620-300622,300624-300625,300632-300633,300635-300636,300638,300642-300655,300660,300662,300664-300667,300670,300683-300684,300691-300692,300705-300706,300708,300714,300739,300747,300756,300758,300775,300779,300781,300783-300784,300792-300793,300809,300825,300827,300830-300832,300834,300836,300840-300842,300844-300849,300851,300856-300858,300861-300862,300867,300870,300874,300884,300890-300893,300931-300932,300934,300936-300939,300941-300942,300945,300947,300949,300953,300956,300959,300965,300967,300970,300972-300973,300981,300983,300985,300987-300989,300992-300994,300998,301007,301009,301015,301017-301022,301039,301053,301061,301065,301067,301069,301075-301076,301090,301101-301103,301105-301106,301109,301113,301115,301122,301125,301127,301130,301138-301139,301162,301180,301203,301206,301210,301212,301235,301237,301247,301273,301275,301278-301279,301291-301293,301295-301297,301300,301308-301309,301404,301406,301414,301427,301448,301457,301460,301465,301483-301484,301487-301488,301495,301513,301522,301532,301544-301545,301549-301550,301570,301574,301580,301582-301584,301588,301592,301596,301604-301605,301607,301683,301704,301707-301708,301710,301724,301737,301745,301749,301752,301758,301760,301764,301773,301775,301800,301842,301851,301853,301870-301871,301873-301874,301877,301928-301929,301956-301957,301959-301960,301962-301964,301966-301969,301974,302013-302014,302019-302020,302031,302036,302063,302075-302076,302080,302091,302123,302125,302139,302141,302151,302171,302174-302175,302179,302181,302196,302206,302210,302213,302221-302222,302236,302265,302278,302294,302296,302305-302306,302317,302326-302327,302330,302335-302336,302338,302346,302362-302365,302371,302373,302379,302382,302384,302402,302459-302460,302476,302482-302484,302486-302497,302499,302504,302507-302508,302510-302511,302515-302518,302520,302529-302531,302534,302541-302542,302550-302553,302558,302567,302573,302580,302605,302614,302622,302626,302635,302666-302668,302673,302770-302772,302778,302797,302824,302826-302827,302834-302840,302845,302855-302857,302861,302893,302899-302900,302902,302908,302911,302919,302921,302932-302933,302936,302943-302944,302946-302947,302957,302973,302999-303001,303003-303004,303009-303011,303013-303014,303031,303059,303074,303076,303084,303086,303088,303090,303101,303109-303110,303142,303147,303151,303155,303160,303208,303210-303211,303217,303225,303244,303266,303287,303338,303393,303399-303400,303423-303426,303429,303437,303461,303494,303503,303510,303514,303516,303530,303536,303551,303553-303554,303561,303564-303565,303573,303576,303638,303663,303676,303702,303704-303706,303710,303713,303715,303720,303737-303738,303760,303763,303765-303766,303773,303782,303791,303794-303795,303799-303800,303804,303806,303830,303855,303869-303870,303889,303891-303894,303897,303913-303914,303916,303919,303929-303935,303937,303942,303964,303971,303982,304008-304009,304011-304012,304018,304033-304034,304040,304055,304075,304149,304152,304162,304174,304184,304202,304227-304229,304231-304232,304238,304247-304249,304251,304286,304342,304440,304476,304487,304520-304521,304571,304597,304601,304607-304608,304629,304637,304641,304652,304674,304693-304694,304698,304703,304721,304747,304751,304755,304779-304782,304802,304808-304812,304819,304825,304874,304911,304928,304931,304953,304959,304964,304969,304989,305012,305023-305024,305033,305041,305077,305085-305086,305090,305123,305129,305133,305140,305144,305154,305170,305177,305219,305241,305269,305284,305344-305345,305356-305357,305360,305365,305388-305389,305406,305409,305412-305413,305421-305422,305430,305469,305536,305590,305679,305744,305939 Merged /projects/mpsutil/sys/ia64/ia64/efi.c:r286179-290100 Merged /projects/clang-sparc64/sys/ia64/ia64/efi.c:r262258-262612 Merged /user/ngie/more-tests2/sys/ia64/ia64/efi.c:r288935-288940,288942-289179,289223-289224,289226-289227,289230,289236,289325,289437,289440,289484-289486,290904 Merged /projects/release-arm-redux/sys/ia64/ia64/efi.c:r278203,278595-278597,278610,280643-280650,280652,280655,282539-282546,282548,282553-282557,282564,282566,282570,282573,282587-282593,282596-282607,282615-282616,282624-282629,282631,282633,282635-282640,282642,282647-282648,282653-282654,282656-282657,282659,282662-282667,282682,282691 Merged /stable/10/usr.bin/head/sys/ia64/ia64/efi.c:r265256 Merged /user/ngie/more-tests/sys/ia64/ia64/efi.c:r281427-281428,281430,281432,281450,281460,281464-281465,281485,281489-281491,281515,281519,281589,281593-281597,281619,284388,288316,288321-288327,288422,288476,288478-288481,288483,288578,288650-288651,288655-288656,288659-288661,288663,288673-288676,288680,288828,288930-288931 Merged /projects/pf/head/sys/ia64/ia64/efi.c:r263908 Merged /projects/building-blocks/sys/ia64/ia64/efi.c:r275142-275143,275306-275307,275556,275558,277445,277670,277673 Merged /user/ngie/stable-10-libnv/sys/ia64/ia64/efi.c:r292587-292857,293093,303608 Merged /projects/netbsd-tests-update-12/sys/ia64/ia64/efi.c:r304237 Merged /user/ngie/socket-tests/sys/ia64/ia64/efi.c:r293882-293885,294103,294117,294119-294120 Index: head/sys/amd64/conf/NOTES =================================================================== --- head/sys/amd64/conf/NOTES (revision 306096) +++ head/sys/amd64/conf/NOTES (revision 306097) @@ -1,686 +1,689 @@ # # NOTES -- Lines that can be cut/pasted into kernel and hints configs. # # This file contains machine dependent kernel configuration notes. For # machine independent notes, look in /sys/conf/NOTES. # # $FreeBSD$ # # # We want LINT to cover profiling as well. profile 2 # # Enable the kernel DTrace hooks which are required to load the DTrace # kernel modules. # options KDTRACE_HOOKS # DTrace core # NOTE: introduces CDDL-licensed components into the kernel #device dtrace # DTrace modules #device dtrace_profile #device dtrace_sdt #device dtrace_fbt #device dtrace_systrace #device dtrace_prototype #device dtnfscl #device dtmalloc # Alternatively include all the DTrace modules #device dtraceall ##################################################################### # SMP OPTIONS: # # Notes: # # IPI_PREEMPTION instructs the kernel to preempt threads running on other # CPUS if needed. Relies on the PREEMPTION option # Optional: options IPI_PREEMPTION device atpic # Optional legacy pic support device mptable # Optional MPSPEC mptable support # # Watchdog routines. # options MP_WATCHDOG # Debugging options. # options COUNT_XINVLTLB_HITS # Counters for TLB events options COUNT_IPIS # Per-CPU IPI interrupt counters ##################################################################### # CPU OPTIONS # # You must specify at least one CPU (the one you intend to run on); # deleting the specification for CPUs you don't need to use may make # parts of the system run faster. # cpu HAMMER # aka K8, aka Opteron & Athlon64 # # Options for CPU features. # ##################################################################### # NETWORKING OPTIONS # # DEVICE_POLLING adds support for mixed interrupt-polling handling # of network device drivers, which has significant benefits in terms # of robustness to overloads and responsivity, as well as permitting # accurate scheduling of the CPU time between kernel network processing # and other activities. The drawback is a moderate (up to 1/HZ seconds) # potential increase in response times. # It is strongly recommended to use HZ=1000 or 2000 with DEVICE_POLLING # to achieve smoother behaviour. # Additionally, you can enable/disable polling at runtime with help of # the ifconfig(8) utility, and select the CPU fraction reserved to # userland with the sysctl variable kern.polling.user_frac # (default 50, range 0..100). # # Not all device drivers support this mode of operation at the time of # this writing. See polling(4) for more details. options DEVICE_POLLING # BPF_JITTER adds support for BPF just-in-time compiler. options BPF_JITTER # OpenFabrics Enterprise Distribution (Infiniband). options OFED options OFED_DEBUG_INIT # Sockets Direct Protocol options SDP options SDP_DEBUG # IP over Infiniband options IPOIB options IPOIB_DEBUG options IPOIB_CM ##################################################################### # CLOCK OPTIONS # Provide read/write access to the memory in the clock chip. device nvram # Access to rtc cmos via /dev/nvram ##################################################################### # MISCELLANEOUS DEVICES AND OPTIONS device speaker #Play IBM BASIC-style noises out your speaker hint.speaker.0.at="isa" hint.speaker.0.port="0x61" device gzip #Exec gzipped a.out's. REQUIRES COMPAT_AOUT! ##################################################################### # HARDWARE BUS CONFIGURATION # # ISA bus # device isa # # Options for `isa': # # AUTO_EOI_1 enables the `automatic EOI' feature for the master 8259A # interrupt controller. This saves about 0.7-1.25 usec for each interrupt. # This option breaks suspend/resume on some portables. # # AUTO_EOI_2 enables the `automatic EOI' feature for the slave 8259A # interrupt controller. This saves about 0.7-1.25 usec for each interrupt. # Automatic EOI is documented not to work for for the slave with the # original i8259A, but it works for some clones and some integrated # versions. # # MAXMEM specifies the amount of RAM on the machine; if this is not # specified, FreeBSD will first read the amount of memory from the CMOS # RAM, so the amount of memory will initially be limited to 64MB or 16MB # depending on the BIOS. If the BIOS reports 64MB, a memory probe will # then attempt to detect the installed amount of RAM. If this probe # fails to detect >64MB RAM you will have to use the MAXMEM option. # The amount is in kilobytes, so for a machine with 128MB of RAM, it would # be 131072 (128 * 1024). # # BROKEN_KEYBOARD_RESET disables the use of the keyboard controller to # reset the CPU for reboot. This is needed on some systems with broken # keyboard controllers. options AUTO_EOI_1 #options AUTO_EOI_2 options MAXMEM=(128*1024) #options BROKEN_KEYBOARD_RESET # # AGP GART support device agp # # AGP debugging. # options AGP_DEBUG ##################################################################### # HARDWARE DEVICE CONFIGURATION # To include support for VGA VESA video modes options VESA # Turn on extra debugging checks and output for VESA support. options VESA_DEBUG device dpms # DPMS suspend & resume via VESA BIOS # x86 real mode BIOS emulator, required by atkbdc/dpms/vesa options X86BIOS # # Optional devices: # # PS/2 mouse device psm hint.psm.0.at="atkbdc" hint.psm.0.irq="12" # Options for psm: options PSM_HOOKRESUME #hook the system resume event, useful #for some laptops options PSM_RESETAFTERSUSPEND #reset the device at the resume event # The keyboard controller; it controls the keyboard and the PS/2 mouse. device atkbdc hint.atkbdc.0.at="isa" hint.atkbdc.0.port="0x060" # The AT keyboard device atkbd hint.atkbd.0.at="atkbdc" hint.atkbd.0.irq="1" # Options for atkbd: options ATKBD_DFLT_KEYMAP # specify the built-in keymap makeoptions ATKBD_DFLT_KEYMAP=fr.dvorak # `flags' for atkbd: # 0x01 Force detection of keyboard, else we always assume a keyboard # 0x02 Don't reset keyboard, useful for some newer ThinkPads # 0x03 Force detection and avoid reset, might help with certain # dockingstations # 0x04 Old-style (XT) keyboard support, useful for older ThinkPads # Video card driver for VGA adapters. device vga hint.vga.0.at="isa" # Options for vga: # Try the following option if the mouse pointer is not drawn correctly # or font does not seem to be loaded properly. May cause flicker on # some systems. options VGA_ALT_SEQACCESS # If you can dispense with some vga driver features, you may want to # use the following options to save some memory. #options VGA_NO_FONT_LOADING # don't save/load font #options VGA_NO_MODE_CHANGE # don't change video modes # Older video cards may require this option for proper operation. options VGA_SLOW_IOACCESS # do byte-wide i/o's to TS and GDC regs # The following option probably won't work with the LCD displays. options VGA_WIDTH90 # support 90 column modes # Debugging. options VGA_DEBUG # vt(4) drivers. device vt_vga # VGA device vt_efifb # EFI framebuffer # Linear framebuffer driver for S3 VESA 1.2 cards. Works on top of VESA. device s3pci # 3Dfx Voodoo Graphics, Voodoo II /dev/3dfx CDEV support. This will create # the /dev/3dfx0 device to work with glide implementations. This should get # linked to /dev/3dfx and /dev/voodoo. Note that this is not the same as # the tdfx DRI module from XFree86 and is completely unrelated. # # To enable Linuxulator support, one must also include COMPAT_LINUX in the # config as well. The other option is to load both as modules. device tdfx # Enable 3Dfx Voodoo support #XXX#device tdfx_linux # Enable Linuxulator support # # ACPI support using the Intel ACPI Component Architecture reference # implementation. # # ACPI_DEBUG enables the use of the debug.acpi.level and debug.acpi.layer # kernel environment variables to select initial debugging levels for the # Intel ACPICA code. (Note that the Intel code must also have USE_DEBUGGER # defined when it is built). device acpi options ACPI_DEBUG # The cpufreq(4) driver provides support for non-ACPI CPU frequency control device cpufreq # Direct Rendering modules for 3D acceleration. device drm # DRM core module required by DRM drivers device i915drm # Intel i830 through i915 device mach64drm # ATI Rage Pro, Rage Mobility P/M, Rage XL device mgadrm # AGP Matrox G200, G400, G450, G550 device r128drm # ATI Rage 128 device radeondrm # ATI Radeon device savagedrm # S3 Savage3D, Savage4 device sisdrm # SiS 300/305, 540, 630 device tdfxdrm # 3dfx Voodoo 3/4/5 and Banshee device viadrm # VIA options DRM_DEBUG # Include debug printfs (slow) # # Network interfaces: # # bxe: Broadcom NetXtreme II (BCM5771X/BCM578XX) PCIe 10Gb Ethernet # adapters. # ed: Western Digital and SMC 80xx; Novell NE1000 and NE2000; 3Com 3C503 # HP PC Lan+, various PC Card devices # (requires miibus) # ipw: Intel PRO/Wireless 2100 IEEE 802.11 adapter # Requires the ipw firmware module # iwi: Intel PRO/Wireless 2200BG/2225BG/2915ABG IEEE 802.11 adapters # Requires the iwi firmware module # iwn: Intel Wireless WiFi Link 1000/105/135/2000/4965/5000/6000/6050 abgn # 802.11 network adapters # Requires the iwn firmware module # ixl: Intel XL710 40Gbe PCIE Ethernet # ixlv: Intel XL710 40Gbe VF PCIE Ethernet # mlx4ib: Mellanox ConnectX HCA InfiniBand # mlxen: Mellanox ConnectX HCA Ethernet # mthca: Mellanox HCA InfiniBand # nfe: nVidia nForce MCP on-board Ethernet Networking (BSD open source) # sfxge: Solarflare SFC9000 family 10Gb Ethernet adapters # vmx: VMware VMXNET3 Ethernet (BSD open source) # wpi: Intel 3945ABG Wireless LAN controller # Requires the wpi firmware module device bxe # Broadcom NetXtreme II BCM5771X/BCM578XX 10GbE device ed # NE[12]000, SMC Ultra, 3c503, DS8390 cards options ED_3C503 options ED_HPP options ED_SIC device ipw # Intel 2100 wireless NICs. device iwi # Intel 2200BG/2225BG/2915ABG wireless NICs. device iwn # Intel 4965/1000/5000/6000 wireless NICs. device ixl # Intel XL710 40Gbe PCIE Ethernet device ixlv # Intel XL710 40Gbe VF PCIE Ethernet device mlx4ib # Mellanox ConnectX HCA InfiniBand device mlxen # Mellanox ConnectX HCA Ethernet device mthca # Mellanox HCA InfiniBand device nfe # nVidia nForce MCP on-board Ethernet device sfxge # Solarflare SFC9000 10Gb Ethernet device vmx # VMware VMXNET3 Ethernet device wpi # Intel 3945ABG wireless NICs. # IEEE 802.11 adapter firmware modules # Intel PRO/Wireless 2100 firmware: # ipwfw: BSS/IBSS/monitor mode firmware # ipwbssfw: BSS mode firmware # ipwibssfw: IBSS mode firmware # ipwmonitorfw: Monitor mode firmware # Intel PRO/Wireless 2200BG/2225BG/2915ABG firmware: # iwifw: BSS/IBSS/monitor mode firmware # iwibssfw: BSS mode firmware # iwiibssfw: IBSS mode firmware # iwimonitorfw: Monitor mode firmware # Intel Wireless WiFi Link 4965/1000/5000/6000 series firmware: # iwnfw: Single module to support all devices # iwn1000fw: Specific module for the 1000 only # iwn105fw: Specific module for the 105 only # iwn135fw: Specific module for the 135 only # iwn2000fw: Specific module for the 2000 only # iwn2030fw: Specific module for the 2030 only # iwn4965fw: Specific module for the 4965 only # iwn5000fw: Specific module for the 5000 only # iwn5150fw: Specific module for the 5150 only # iwn6000fw: Specific module for the 6000 only # iwn6000g2afw: Specific module for the 6000g2a only # iwn6000g2bfw: Specific module for the 6000g2b only # iwn6050fw: Specific module for the 6050 only # wpifw: Intel 3945ABG Wireless LAN Controller firmware device iwifw device iwibssfw device iwiibssfw device iwimonitorfw device ipwfw device ipwbssfw device ipwibssfw device ipwmonitorfw device iwnfw device iwn1000fw device iwn105fw device iwn135fw device iwn2000fw device iwn2030fw device iwn4965fw device iwn5000fw device iwn5150fw device iwn6000fw device iwn6000g2afw device iwn6000g2bfw device iwn6050fw device wpifw # Intel Non-Transparent Bridge (NTB) hardware device ntb_hw # Hardware Abstraction Layer for the NTB device if_ntb # Simulated ethernet device using the NTB # #XXX this stores pointers in a 32bit field that is defined by the hardware #device pst # # Areca 11xx and 12xx series of SATA II RAID controllers. # CAM is required. # device arcmsr # Areca SATA II RAID # # 3ware 9000 series PATA/SATA RAID controller driver and options. # The driver is implemented as a SIM, and so, needs the CAM infrastructure. # options TWA_DEBUG # 0-10; 10 prints the most messages. options TWA_FLASH_FIRMWARE # firmware image bundled when defined. device twa # 3ware 9000 series PATA/SATA RAID # # SCSI host adapters: # # ncv: NCR 53C500 based SCSI host adapters. # nsp: Workbit Ninja SCSI-3 based PC Card SCSI host adapters. # stg: TMC 18C30, 18C50 based SCSI host adapters. device ncv device nsp device stg # # Adaptec FSA RAID controllers, including integrated DELL controllers, # the Dell PERC 2/QC and the HP NetRAID-4M device aac device aacp # SCSI Passthrough interface (optional, CAM required) # # Adaptec by PMC RAID controllers, Series 6/7/8 and upcoming families device aacraid # Container interface, CAM required # # Highpoint RocketRAID 27xx. device hpt27xx # # Highpoint RocketRAID 182x. device hptmv # # Highpoint DC7280 and R750. device hptnr # # Highpoint RocketRAID. Supports RR172x, RR222x, RR2240, RR232x, RR2340, # RR2210, RR174x, RR2522, RR231x, RR230x. device hptrr # # Highpoint RocketRaid 3xxx series SATA RAID device hptiop # # IBM (now Adaptec) ServeRAID controllers device ips # # Intel C600 (Patsburg) integrated SAS controller device isci options ISCI_LOGGING # enable debugging in isci HAL # # NVM Express (NVMe) support device nvme # base NVMe driver device nvd # expose NVMe namespaces as disks, depends on nvme # # PMC-Sierra SAS/SATA controller device pmspcv # # SafeNet crypto driver: can be moved to the MI NOTES as soon as # it's tested on a big-endian machine # device safe # SafeNet 1141 options SAFE_DEBUG # enable debugging support: hw.safe.debug options SAFE_RNDTEST # enable rndtest support # # VirtIO support # # The virtio entry provides a generic bus for use by the device drivers. # It must be combined with an interface that communicates with the host. # Multiple such interfaces are defined by the VirtIO specification. FreeBSD # only has support for PCI. Therefore, virtio_pci must be statically # compiled in or loaded as a module for the device drivers to function. # device virtio # Generic VirtIO bus (required) device virtio_pci # VirtIO PCI Interface device vtnet # VirtIO Ethernet device device virtio_blk # VirtIO Block device device virtio_scsi # VirtIO SCSI device device virtio_balloon # VirtIO Memory Balloon device device virtio_random # VirtIO Entropy device device virtio_console # VirtIO Console device # Microsoft Hyper-V enhancement support device hyperv # HyperV drivers # Xen HVM Guest Optimizations options XENHVM # Xen HVM kernel infrastructure device xenpci # Xen HVM Hypervisor services driver ##################################################################### # # Miscellaneous hardware: # # ipmi: Intelligent Platform Management Interface # pbio: Parallel (8255 PPI) basic I/O (mode 0) port (e.g. Advantech PCL-724) # smbios: DMI/SMBIOS entry point # vpd: Vital Product Data kernel interface # asmc: Apple System Management Controller # si: Specialix International SI/XIO or SX intelligent serial card # tpm: Trusted Platform Module # Notes on the Specialix SI/XIO driver: # The host card is memory, not IO mapped. # The Rev 1 host cards use a 64K chunk, on a 32K boundary. # The Rev 2 host cards use a 32K chunk, on a 32K boundary. # The cards can use an IRQ of 11, 12 or 15. device ipmi device pbio hint.pbio.0.at="isa" hint.pbio.0.port="0x360" device smbios device vpd device asmc device tpm device padlock_rng # VIA Padlock RNG device rdrand_rng # Intel Bull Mountain RNG device aesni # AES-NI OpenCrypto module device ioat # Intel I/OAT DMA engine # # Laptop/Notebook options: # # # I2C Bus # # # Hardware watchdog timers: # # ichwd: Intel ICH watchdog timer # amdsbwd: AMD SB7xx watchdog timer # viawd: VIA south bridge watchdog timer # wbwd: Winbond watchdog timer # device ichwd device amdsbwd device viawd device wbwd # # Temperature sensors: # # coretemp: on-die sensor on Intel Core and newer CPUs # amdtemp: on-die sensor on AMD K8/K10/K11 CPUs # device coretemp device amdtemp # # CPU control pseudo-device. Provides access to MSRs, CPUID info and # microcode update feature. # device cpuctl # # System Management Bus (SMB) # options ENABLE_ALART # Control alarm on Intel intpm driver # # Number of initial kernel page table pages used for early bootstrap. # This number should include enough pages to map the kernel and any # modules or other data loaded with the kernel by the loader. Each # page table page maps 2MB. # options NKPT=31 +# EFI Runtime Services support (not functional yet). +options EFIRT + ##################################################################### # ABI Emulation #XXX keep these here for now and reactivate when support for emulating #XXX these 32 bit binaries is added. # Enable 32-bit runtime support for FreeBSD/i386 binaries. options COMPAT_FREEBSD32 # Enable iBCS2 runtime support for SCO and ISC binaries #XXX#options IBCS2 # Emulate spx device for client side of SVR3 local X interface #XXX#options SPX_HACK # Enable 32-bit runtime support for CloudABI binaries. options COMPAT_CLOUDABI32 # Enable 64-bit runtime support for CloudABI binaries. options COMPAT_CLOUDABI64 # Enable Linux ABI emulation #XXX#options COMPAT_LINUX # Enable 32-bit Linux ABI emulation (requires COMPAT_43 and COMPAT_FREEBSD32) options COMPAT_LINUX32 # Enable the linux-like proc filesystem support (requires COMPAT_LINUX32 # and PSEUDOFS) options LINPROCFS #Enable the linux-like sys filesystem support (requires COMPAT_LINUX32 # and PSEUDOFS) options LINSYSFS # # SysVR4 ABI emulation # # The svr4 ABI emulator can be statically compiled into the kernel or loaded as # a KLD module. # The STREAMS network emulation code can also be compiled statically or as a # module. If loaded as a module, it must be loaded before the svr4 module # (the /usr/sbin/svr4 script does this for you). If compiling statically, # the `streams' device must be configured into any kernel which also # specifies COMPAT_SVR4. It is possible to have a statically-configured # STREAMS device and a dynamically loadable svr4 emulator; the /usr/sbin/svr4 # script understands that it doesn't need to load the `streams' module under # those circumstances. # Caveat: At this time, `options KTRACE' is required for the svr4 emulator # (whether static or dynamic). # #XXX#options COMPAT_SVR4 # build emulator statically #XXX#options DEBUG_SVR4 # enable verbose debugging #XXX#device streams # STREAMS network driver (required for svr4). ##################################################################### # VM OPTIONS # KSTACK_PAGES is the number of memory pages to assign to the kernel # stack of each thread. options KSTACK_PAGES=5 # Enable detailed accounting by the PV entry allocator. options PV_STATS ##################################################################### # More undocumented options for linting. # Note that documenting these are not considered an affront. options FB_INSTALL_CDEV # install a CDEV entry in /dev options KBDIO_DEBUG=2 options KBD_MAXRETRY=4 options KBD_MAXWAIT=6 options KBD_RESETDELAY=201 options PSM_DEBUG=1 options TIMER_FREQ=((14318182+6)/12) options VM_KMEM_SIZE options VM_KMEM_SIZE_MAX options VM_KMEM_SIZE_SCALE # Enable NDIS binary driver support options NDISAPI device ndis Index: head/sys/amd64/include/efi.h =================================================================== --- head/sys/amd64/include/efi.h (revision 306096) +++ head/sys/amd64/include/efi.h (revision 306097) @@ -1,42 +1,59 @@ /*- * Copyright (c) 2016 The FreeBSD Foundation * All rights reserved. * * This software was developed by Konstantin Belousov * under sponsorship from the FreeBSD Foundation. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * $FreeBSD$ */ #ifndef __AMD64_INCLUDE_EFI_H_ #define __AMD64_INCLUDE_EFI_H_ /* * XXX: from gcc 6.2 manual: * Note, the ms_abi attribute for Microsoft Windows 64-bit targets * currently requires the -maccumulate-outgoing-args option. */ #define EFIABI_ATTR __attribute__((ms_abi)) +#ifdef _KERNEL +struct uuid; +struct efi_tm; + +int efi_get_table(struct uuid *uuid, void *ptr); +int efi_get_time(struct efi_tm *tm); +int efi_get_time_locked(struct efi_tm *tm); +int efi_reset_system(void); +int efi_set_time(struct efi_tm *tm); +int efi_set_time_locked(struct efi_tm *tm); +int efi_var_get(uint16_t *name, struct uuid *vendor, uint32_t *attrib, + size_t *datasize, void *data); +int efi_var_nextname(size_t *namesize, uint16_t *name, struct uuid *vendor); +int efi_var_set(uint16_t *name, struct uuid *vendor, uint32_t attrib, + size_t datasize, void *data); +#endif + #endif /* __AMD64_INCLUDE_EFI_H_ */ Index: head/sys/conf/files.amd64 =================================================================== --- head/sys/conf/files.amd64 (revision 306096) +++ head/sys/conf/files.amd64 (revision 306097) @@ -1,670 +1,671 @@ # This file tells config what files go into building a kernel, # files marked standard are always included. # # $FreeBSD$ # # The long compile-with and dependency lines are required because of # limitations in config: backslash-newline doesn't work in strings, and # dependency lines other than the first are silently ignored. # # cloudabi32_vdso.o optional compat_cloudabi32 \ dependency "$S/contrib/cloudabi/cloudabi_vdso_i686_on_64bit.S" \ compile-with "${CC} -x assembler-with-cpp -m32 -shared -nostdinc -nostdlib -Wl,-T$S/compat/cloudabi/cloudabi_vdso.lds $S/contrib/cloudabi/cloudabi_vdso_i686_on_64bit.S -o ${.TARGET}" \ no-obj no-implicit-rule \ clean "cloudabi32_vdso.o" # cloudabi32_vdso_blob.o optional compat_cloudabi32 \ dependency "cloudabi32_vdso.o" \ compile-with "${OBJCOPY} --input-target binary --output-target elf64-x86-64-freebsd --binary-architecture i386 cloudabi32_vdso.o ${.TARGET}" \ no-implicit-rule \ clean "cloudabi32_vdso_blob.o" # cloudabi64_vdso.o optional compat_cloudabi64 \ dependency "$S/contrib/cloudabi/cloudabi_vdso_x86_64.S" \ compile-with "${CC} -x assembler-with-cpp -shared -nostdinc -nostdlib -Wl,-T$S/compat/cloudabi/cloudabi_vdso.lds $S/contrib/cloudabi/cloudabi_vdso_x86_64.S -o ${.TARGET}" \ no-obj no-implicit-rule \ clean "cloudabi64_vdso.o" # cloudabi64_vdso_blob.o optional compat_cloudabi64 \ dependency "cloudabi64_vdso.o" \ compile-with "${OBJCOPY} --input-target binary --output-target elf64-x86-64-freebsd --binary-architecture i386 cloudabi64_vdso.o ${.TARGET}" \ no-implicit-rule \ clean "cloudabi64_vdso_blob.o" # linux32_genassym.o optional compat_linux32 \ dependency "$S/amd64/linux32/linux32_genassym.c" \ compile-with "${CC} ${CFLAGS:N-fno-common} -c ${.IMPSRC}" \ no-obj no-implicit-rule \ clean "linux32_genassym.o" # linux32_assym.h optional compat_linux32 \ dependency "$S/kern/genassym.sh linux32_genassym.o" \ compile-with "sh $S/kern/genassym.sh linux32_genassym.o > ${.TARGET}" \ no-obj no-implicit-rule before-depend \ clean "linux32_assym.h" # linux32_locore.o optional compat_linux32 \ dependency "linux32_assym.h $S/amd64/linux32/linux32_locore.s" \ compile-with "${CC} -x assembler-with-cpp -DLOCORE -m32 -shared -s -pipe -I. -I$S -Werror -Wall -fno-common -nostdinc -nostdlib -Wl,-T$S/amd64/linux32/linux32_vdso.lds.s -Wl,-soname=linux32_vdso.so,--eh-frame-hdr,-fPIC,-warn-common ${.IMPSRC} -o ${.TARGET}" \ no-obj no-implicit-rule \ clean "linux32_locore.o" # linux32_vdso.so optional compat_linux32 \ dependency "linux32_locore.o" \ compile-with "${OBJCOPY} --input-target binary --output-target elf64-x86-64-freebsd --binary-architecture i386 linux32_locore.o ${.TARGET}" \ no-implicit-rule \ clean "linux32_vdso.so" # ia32_genassym.o standard \ dependency "$S/compat/ia32/ia32_genassym.c" \ compile-with "${CC} ${CFLAGS:N-fno-common} -c ${.IMPSRC}" \ no-obj no-implicit-rule \ clean "ia32_genassym.o" # ia32_assym.h standard \ dependency "$S/kern/genassym.sh ia32_genassym.o" \ compile-with "env NM='${NM}' NMFLAGS='${NMFLAGS}' sh $S/kern/genassym.sh ia32_genassym.o > ${.TARGET}" \ no-obj no-implicit-rule before-depend \ clean "ia32_assym.h" # font.h optional sc_dflt_font \ compile-with "uudecode < /usr/share/syscons/fonts/${SC_DFLT_FONT}-8x16.fnt && file2c 'static u_char dflt_font_16[16*256] = {' '};' < ${SC_DFLT_FONT}-8x16 > font.h && uudecode < /usr/share/syscons/fonts/${SC_DFLT_FONT}-8x14.fnt && file2c 'static u_char dflt_font_14[14*256] = {' '};' < ${SC_DFLT_FONT}-8x14 >> font.h && uudecode < /usr/share/syscons/fonts/${SC_DFLT_FONT}-8x8.fnt && file2c 'static u_char dflt_font_8[8*256] = {' '};' < ${SC_DFLT_FONT}-8x8 >> font.h" \ no-obj no-implicit-rule before-depend \ clean "font.h ${SC_DFLT_FONT}-8x14 ${SC_DFLT_FONT}-8x16 ${SC_DFLT_FONT}-8x8" # atkbdmap.h optional atkbd_dflt_keymap \ compile-with "kbdcontrol -P ${S:S/sys$/share/}/vt/keymaps -P ${S:S/sys$/share/}/syscons/keymaps -L ${ATKBD_DFLT_KEYMAP} | sed -e 's/^static keymap_t.* = /static keymap_t key_map = /' -e 's/^static accentmap_t.* = /static accentmap_t accent_map = /' > atkbdmap.h" \ no-obj no-implicit-rule before-depend \ clean "atkbdmap.h" # ukbdmap.h optional ukbd_dflt_keymap \ compile-with "kbdcontrol -P ${S:S/sys$/share/}/vt/keymaps -P ${S:S/sys$/share/}/syscons/keymaps -L ${UKBD_DFLT_KEYMAP} | sed -e 's/^static keymap_t.* = /static keymap_t key_map = /' -e 's/^static accentmap_t.* = /static accentmap_t accent_map = /' > ukbdmap.h" \ no-obj no-implicit-rule before-depend \ clean "ukbdmap.h" # hpt27xx_lib.o optional hpt27xx \ dependency "$S/dev/hpt27xx/amd64-elf.hpt27xx_lib.o.uu" \ compile-with "uudecode < $S/dev/hpt27xx/amd64-elf.hpt27xx_lib.o.uu" \ no-implicit-rule # hptmvraid.o optional hptmv \ dependency "$S/dev/hptmv/amd64-elf.raid.o.uu" \ compile-with "uudecode < $S/dev/hptmv/amd64-elf.raid.o.uu" \ no-implicit-rule # hptnr_lib.o optional hptnr \ dependency "$S/dev/hptnr/amd64-elf.hptnr_lib.o.uu" \ compile-with "uudecode < $S/dev/hptnr/amd64-elf.hptnr_lib.o.uu" \ no-implicit-rule # hptrr_lib.o optional hptrr \ dependency "$S/dev/hptrr/amd64-elf.hptrr_lib.o.uu" \ compile-with "uudecode < $S/dev/hptrr/amd64-elf.hptrr_lib.o.uu" \ no-implicit-rule # amd64/acpica/acpi_machdep.c optional acpi acpi_wakecode.o optional acpi \ dependency "$S/amd64/acpica/acpi_wakecode.S assym.s" \ compile-with "${NORMAL_S}" \ no-obj no-implicit-rule before-depend \ clean "acpi_wakecode.o" acpi_wakecode.bin optional acpi \ dependency "acpi_wakecode.o" \ compile-with "${OBJCOPY} -S -O binary acpi_wakecode.o ${.TARGET}" \ no-obj no-implicit-rule before-depend \ clean "acpi_wakecode.bin" acpi_wakecode.h optional acpi \ dependency "acpi_wakecode.bin" \ compile-with "file2c -sx 'static char wakecode[] = {' '};' < acpi_wakecode.bin > ${.TARGET}" \ no-obj no-implicit-rule before-depend \ clean "acpi_wakecode.h" acpi_wakedata.h optional acpi \ dependency "acpi_wakecode.o" \ compile-with '${NM} -n --defined-only acpi_wakecode.o | while read offset dummy what; do echo "#define $${what} 0x$${offset}"; done > ${.TARGET}' \ no-obj no-implicit-rule before-depend \ clean "acpi_wakedata.h" # amd64/amd64/amd64_mem.c optional mem #amd64/amd64/apic_vector.S standard amd64/amd64/atomic.c standard amd64/amd64/bios.c standard amd64/amd64/bpf_jit_machdep.c optional bpf_jitter amd64/amd64/cpu_switch.S standard amd64/amd64/db_disasm.c optional ddb amd64/amd64/db_interface.c optional ddb amd64/amd64/db_trace.c optional ddb +amd64/amd64/efirt.c optional efirt amd64/amd64/elf_machdep.c standard amd64/amd64/exception.S standard amd64/amd64/fpu.c standard amd64/amd64/gdb_machdep.c optional gdb amd64/amd64/in_cksum.c optional inet | inet6 amd64/amd64/initcpu.c standard amd64/amd64/io.c optional io amd64/amd64/locore.S standard no-obj amd64/amd64/xen-locore.S optional xenhvm amd64/amd64/machdep.c standard amd64/amd64/mem.c optional mem amd64/amd64/minidump_machdep.c standard amd64/amd64/mp_machdep.c optional smp amd64/amd64/mpboot.S optional smp amd64/amd64/pmap.c standard amd64/amd64/prof_machdep.c optional profiling-routine amd64/amd64/ptrace_machdep.c standard amd64/amd64/sigtramp.S standard amd64/amd64/support.S standard amd64/amd64/sys_machdep.c standard amd64/amd64/trap.c standard amd64/amd64/uio_machdep.c standard amd64/amd64/uma_machdep.c standard amd64/amd64/vm_machdep.c standard amd64/cloudabi32/cloudabi32_sysvec.c optional compat_cloudabi32 amd64/cloudabi64/cloudabi64_sysvec.c optional compat_cloudabi64 amd64/pci/pci_cfgreg.c optional pci cddl/contrib/opensolaris/common/atomic/amd64/opensolaris_atomic.S optional zfs | dtrace compile-with "${ZFS_S}" cddl/dev/dtrace/amd64/dtrace_asm.S optional dtrace compile-with "${DTRACE_S}" cddl/dev/dtrace/amd64/dtrace_subr.c optional dtrace compile-with "${DTRACE_C}" cddl/dev/fbt/x86/fbt_isa.c optional dtrace_fbt | dtraceall compile-with "${FBT_C}" cddl/dev/dtrace/x86/dis_tables.c optional dtrace_fbt | dtraceall compile-with "${DTRACE_C}" cddl/dev/dtrace/x86/instr_size.c optional dtrace_fbt | dtraceall compile-with "${DTRACE_C}" crypto/aesni/aeskeys_amd64.S optional aesni crypto/aesni/aesni.c optional aesni aesni_ghash.o optional aesni \ dependency "$S/crypto/aesni/aesni_ghash.c" \ compile-with "${CC} -c ${CFLAGS:C/^-O2$/-O3/:N-nostdinc} ${WERROR} ${NO_WCAST_QUAL} ${PROF} -mmmx -msse -msse4 -maes -mpclmul ${.IMPSRC}" \ no-implicit-rule \ clean "aesni_ghash.o" aesni_wrap.o optional aesni \ dependency "$S/crypto/aesni/aesni_wrap.c" \ compile-with "${CC} -c ${CFLAGS:C/^-O2$/-O3/:N-nostdinc} ${WERROR} ${NO_WCAST_QUAL} ${PROF} -mmmx -msse -msse4 -maes ${.IMPSRC}" \ no-implicit-rule \ clean "aesni_wrap.o" crypto/blowfish/bf_enc.c optional crypto | ipsec crypto/des/des_enc.c optional crypto | ipsec | netsmb crypto/via/padlock.c optional padlock crypto/via/padlock_cipher.c optional padlock crypto/via/padlock_hash.c optional padlock dev/acpica/acpi_if.m standard dev/acpica/acpi_hpet.c optional acpi dev/acpi_support/acpi_wmi_if.m standard dev/agp/agp_amd64.c optional agp dev/agp/agp_i810.c optional agp dev/agp/agp_via.c optional agp dev/amdsbwd/amdsbwd.c optional amdsbwd dev/amdtemp/amdtemp.c optional amdtemp dev/arcmsr/arcmsr.c optional arcmsr pci dev/asmc/asmc.c optional asmc isa dev/atkbdc/atkbd.c optional atkbd atkbdc dev/atkbdc/atkbd_atkbdc.c optional atkbd atkbdc dev/atkbdc/atkbdc.c optional atkbdc dev/atkbdc/atkbdc_isa.c optional atkbdc isa dev/atkbdc/atkbdc_subr.c optional atkbdc dev/atkbdc/psm.c optional psm atkbdc dev/bxe/bxe.c optional bxe pci dev/bxe/bxe_stats.c optional bxe pci dev/bxe/bxe_debug.c optional bxe pci dev/bxe/ecore_sp.c optional bxe pci dev/bxe/bxe_elink.c optional bxe pci dev/bxe/57710_init_values.c optional bxe pci dev/bxe/57711_init_values.c optional bxe pci dev/bxe/57712_init_values.c optional bxe pci dev/coretemp/coretemp.c optional coretemp dev/cpuctl/cpuctl.c optional cpuctl dev/dpms/dpms.c optional dpms # There are no systems with isa slots, so all ed isa entries should go.. dev/ed/if_ed_3c503.c optional ed isa ed_3c503 dev/ed/if_ed_isa.c optional ed isa dev/ed/if_ed_wd80x3.c optional ed isa dev/ed/if_ed_hpp.c optional ed isa ed_hpp dev/ed/if_ed_sic.c optional ed isa ed_sic dev/fb/fb.c optional fb | vga dev/fb/s3_pci.c optional s3pci dev/fb/vesa.c optional vga vesa dev/fb/vga.c optional vga dev/ichwd/ichwd.c optional ichwd dev/if_ndis/if_ndis.c optional ndis dev/if_ndis/if_ndis_pccard.c optional ndis pccard dev/if_ndis/if_ndis_pci.c optional ndis cardbus | ndis pci dev/if_ndis/if_ndis_usb.c optional ndis usb dev/io/iodev.c optional io dev/ioat/ioat.c optional ioat pci dev/ioat/ioat_test.c optional ioat pci dev/ipmi/ipmi.c optional ipmi dev/ipmi/ipmi_acpi.c optional ipmi acpi dev/ipmi/ipmi_isa.c optional ipmi isa dev/ipmi/ipmi_kcs.c optional ipmi dev/ipmi/ipmi_smic.c optional ipmi dev/ipmi/ipmi_smbus.c optional ipmi smbus dev/ipmi/ipmi_smbios.c optional ipmi dev/ipmi/ipmi_ssif.c optional ipmi smbus dev/ipmi/ipmi_pci.c optional ipmi pci dev/ipmi/ipmi_linux.c optional ipmi compat_linux32 dev/ixl/if_ixl.c optional ixl pci \ compile-with "${NORMAL_C} -I$S/dev/ixl" dev/ixl/ixl_pf_main.c optional ixl pci \ compile-with "${NORMAL_C} -I$S/dev/ixl" dev/ixl/ixl_pf_qmgr.c optional ixl pci \ compile-with "${NORMAL_C} -I$S/dev/ixl" dev/ixl/ixl_pf_iov.c optional ixl pci \ compile-with "${NORMAL_C} -I$S/dev/ixl" dev/ixl/if_ixlv.c optional ixlv pci \ compile-with "${NORMAL_C} -I$S/dev/ixl" dev/ixl/ixlvc.c optional ixlv pci \ compile-with "${NORMAL_C} -I$S/dev/ixl" dev/ixl/ixl_txrx.c optional ixl pci | ixlv pci \ compile-with "${NORMAL_C} -I$S/dev/ixl" dev/ixl/i40e_osdep.c optional ixl pci | ixlv pci \ compile-with "${NORMAL_C} -I$S/dev/ixl" dev/ixl/i40e_lan_hmc.c optional ixl pci | ixlv pci \ compile-with "${NORMAL_C} -I$S/dev/ixl" dev/ixl/i40e_hmc.c optional ixl pci | ixlv pci \ compile-with "${NORMAL_C} -I$S/dev/ixl" dev/ixl/i40e_common.c optional ixl pci | ixlv pci \ compile-with "${NORMAL_C} -I$S/dev/ixl" dev/ixl/i40e_nvm.c optional ixl pci | ixlv pci \ compile-with "${NORMAL_C} -I$S/dev/ixl" dev/ixl/i40e_adminq.c optional ixl pci | ixlv pci \ compile-with "${NORMAL_C} -I$S/dev/ixl" dev/fdc/fdc.c optional fdc dev/fdc/fdc_acpi.c optional fdc dev/fdc/fdc_isa.c optional fdc isa dev/fdc/fdc_pccard.c optional fdc pccard dev/hpt27xx/hpt27xx_os_bsd.c optional hpt27xx dev/hpt27xx/hpt27xx_osm_bsd.c optional hpt27xx dev/hpt27xx/hpt27xx_config.c optional hpt27xx dev/hptmv/entry.c optional hptmv dev/hptmv/mv.c optional hptmv dev/hptmv/gui_lib.c optional hptmv dev/hptmv/hptproc.c optional hptmv dev/hptmv/ioctl.c optional hptmv dev/hptnr/hptnr_os_bsd.c optional hptnr dev/hptnr/hptnr_osm_bsd.c optional hptnr dev/hptnr/hptnr_config.c optional hptnr dev/hptrr/hptrr_os_bsd.c optional hptrr dev/hptrr/hptrr_osm_bsd.c optional hptrr dev/hptrr/hptrr_config.c optional hptrr dev/hwpmc/hwpmc_amd.c optional hwpmc dev/hwpmc/hwpmc_intel.c optional hwpmc dev/hwpmc/hwpmc_core.c optional hwpmc dev/hwpmc/hwpmc_uncore.c optional hwpmc dev/hwpmc/hwpmc_piv.c optional hwpmc dev/hwpmc/hwpmc_tsc.c optional hwpmc dev/hwpmc/hwpmc_x86.c optional hwpmc dev/hyperv/netvsc/hv_net_vsc.c optional hyperv dev/hyperv/netvsc/hv_netvsc_drv_freebsd.c optional hyperv dev/hyperv/netvsc/hv_rndis_filter.c optional hyperv dev/hyperv/stordisengage/hv_ata_pci_disengage.c optional hyperv dev/hyperv/storvsc/hv_storvsc_drv_freebsd.c optional hyperv dev/hyperv/utilities/hv_heartbeat.c optional hyperv dev/hyperv/utilities/hv_kvp.c optional hyperv dev/hyperv/utilities/hv_shutdown.c optional hyperv dev/hyperv/utilities/hv_timesync.c optional hyperv dev/hyperv/utilities/hv_util.c optional hyperv dev/hyperv/vmbus/hyperv.c optional hyperv dev/hyperv/vmbus/hyperv_busdma.c optional hyperv dev/hyperv/vmbus/vmbus.c optional hyperv dev/hyperv/vmbus/vmbus_br.c optional hyperv dev/hyperv/vmbus/vmbus_chan.c optional hyperv dev/hyperv/vmbus/vmbus_et.c optional hyperv dev/hyperv/vmbus/vmbus_if.m optional hyperv dev/hyperv/vmbus/vmbus_xact.c optional hyperv dev/hyperv/vmbus/amd64/hyperv_machdep.c optional hyperv dev/hyperv/vmbus/amd64/vmbus_vector.S optional hyperv dev/nfe/if_nfe.c optional nfe pci dev/ntb/if_ntb/if_ntb.c optional if_ntb dev/ntb/ntb_transport.c optional if_ntb dev/ntb/ntb.c optional if_ntb | ntb_hw dev/ntb/ntb_if.m optional if_ntb | ntb_hw dev/ntb/ntb_hw/ntb_hw.c optional ntb_hw dev/nvd/nvd.c optional nvd nvme dev/nvme/nvme.c optional nvme dev/nvme/nvme_ctrlr.c optional nvme dev/nvme/nvme_ctrlr_cmd.c optional nvme dev/nvme/nvme_ns.c optional nvme dev/nvme/nvme_ns_cmd.c optional nvme dev/nvme/nvme_qpair.c optional nvme dev/nvme/nvme_sim.c optional nvme scbus !nvd dev/nvme/nvme_sysctl.c optional nvme dev/nvme/nvme_test.c optional nvme dev/nvme/nvme_util.c optional nvme dev/nvram/nvram.c optional nvram isa dev/random/ivy.c optional rdrand_rng dev/random/nehemiah.c optional padlock_rng dev/qlxge/qls_dbg.c optional qlxge pci dev/qlxge/qls_dump.c optional qlxge pci dev/qlxge/qls_hw.c optional qlxge pci dev/qlxge/qls_ioctl.c optional qlxge pci dev/qlxge/qls_isr.c optional qlxge pci dev/qlxge/qls_os.c optional qlxge pci dev/qlxgb/qla_dbg.c optional qlxgb pci dev/qlxgb/qla_hw.c optional qlxgb pci dev/qlxgb/qla_ioctl.c optional qlxgb pci dev/qlxgb/qla_isr.c optional qlxgb pci dev/qlxgb/qla_misc.c optional qlxgb pci dev/qlxgb/qla_os.c optional qlxgb pci dev/qlxgbe/ql_dbg.c optional qlxgbe pci dev/qlxgbe/ql_hw.c optional qlxgbe pci dev/qlxgbe/ql_ioctl.c optional qlxgbe pci dev/qlxgbe/ql_isr.c optional qlxgbe pci dev/qlxgbe/ql_misc.c optional qlxgbe pci dev/qlxgbe/ql_os.c optional qlxgbe pci dev/qlxgbe/ql_reset.c optional qlxgbe pci dev/sfxge/common/ef10_ev.c optional sfxge pci dev/sfxge/common/ef10_filter.c optional sfxge pci dev/sfxge/common/ef10_intr.c optional sfxge pci dev/sfxge/common/ef10_mac.c optional sfxge pci dev/sfxge/common/ef10_mcdi.c optional sfxge pci dev/sfxge/common/ef10_nic.c optional sfxge pci dev/sfxge/common/ef10_nvram.c optional sfxge pci dev/sfxge/common/ef10_phy.c optional sfxge pci dev/sfxge/common/ef10_rx.c optional sfxge pci dev/sfxge/common/ef10_tx.c optional sfxge pci dev/sfxge/common/ef10_vpd.c optional sfxge pci dev/sfxge/common/efx_bootcfg.c optional sfxge pci dev/sfxge/common/efx_crc32.c optional sfxge pci dev/sfxge/common/efx_ev.c optional sfxge pci dev/sfxge/common/efx_filter.c optional sfxge pci dev/sfxge/common/efx_hash.c optional sfxge pci dev/sfxge/common/efx_intr.c optional sfxge pci dev/sfxge/common/efx_lic.c optional sfxge pci dev/sfxge/common/efx_mac.c optional sfxge pci dev/sfxge/common/efx_mcdi.c optional sfxge pci dev/sfxge/common/efx_mon.c optional sfxge pci dev/sfxge/common/efx_nic.c optional sfxge pci dev/sfxge/common/efx_nvram.c optional sfxge pci dev/sfxge/common/efx_phy.c optional sfxge pci dev/sfxge/common/efx_port.c optional sfxge pci dev/sfxge/common/efx_rx.c optional sfxge pci dev/sfxge/common/efx_sram.c optional sfxge pci dev/sfxge/common/efx_tx.c optional sfxge pci dev/sfxge/common/efx_vpd.c optional sfxge pci dev/sfxge/common/efx_wol.c optional sfxge pci dev/sfxge/common/hunt_nic.c optional sfxge pci dev/sfxge/common/hunt_phy.c optional sfxge pci dev/sfxge/common/mcdi_mon.c optional sfxge pci dev/sfxge/common/medford_nic.c optional sfxge pci dev/sfxge/common/siena_mac.c optional sfxge pci dev/sfxge/common/siena_mcdi.c optional sfxge pci dev/sfxge/common/siena_nic.c optional sfxge pci dev/sfxge/common/siena_nvram.c optional sfxge pci dev/sfxge/common/siena_phy.c optional sfxge pci dev/sfxge/common/siena_sram.c optional sfxge pci dev/sfxge/common/siena_vpd.c optional sfxge pci dev/sfxge/sfxge.c optional sfxge pci dev/sfxge/sfxge_dma.c optional sfxge pci dev/sfxge/sfxge_ev.c optional sfxge pci dev/sfxge/sfxge_intr.c optional sfxge pci dev/sfxge/sfxge_mcdi.c optional sfxge pci dev/sfxge/sfxge_nvram.c optional sfxge pci dev/sfxge/sfxge_port.c optional sfxge pci dev/sfxge/sfxge_rx.c optional sfxge pci dev/sfxge/sfxge_tx.c optional sfxge pci dev/sio/sio.c optional sio dev/sio/sio_isa.c optional sio isa dev/sio/sio_pccard.c optional sio pccard dev/sio/sio_pci.c optional sio pci dev/sio/sio_puc.c optional sio puc dev/speaker/spkr.c optional speaker dev/syscons/apm/apm_saver.c optional apm_saver apm dev/syscons/scterm-teken.c optional sc dev/syscons/scvesactl.c optional sc vga vesa dev/syscons/scvgarndr.c optional sc vga dev/syscons/scvtb.c optional sc dev/tpm/tpm.c optional tpm dev/tpm/tpm_acpi.c optional tpm acpi dev/tpm/tpm_isa.c optional tpm isa dev/uart/uart_cpu_x86.c optional uart dev/viawd/viawd.c optional viawd dev/vmware/vmxnet3/if_vmx.c optional vmx dev/wbwd/wbwd.c optional wbwd dev/wpi/if_wpi.c optional wpi dev/xen/pci/xen_acpi_pci.c optional xenhvm dev/xen/pci/xen_pci.c optional xenhvm dev/isci/isci.c optional isci dev/isci/isci_controller.c optional isci dev/isci/isci_domain.c optional isci dev/isci/isci_interrupt.c optional isci dev/isci/isci_io_request.c optional isci dev/isci/isci_logger.c optional isci dev/isci/isci_oem_parameters.c optional isci dev/isci/isci_remote_device.c optional isci dev/isci/isci_sysctl.c optional isci dev/isci/isci_task_request.c optional isci dev/isci/isci_timer.c optional isci dev/isci/scil/sati.c optional isci dev/isci/scil/sati_abort_task_set.c optional isci dev/isci/scil/sati_atapi.c optional isci dev/isci/scil/sati_device.c optional isci dev/isci/scil/sati_inquiry.c optional isci dev/isci/scil/sati_log_sense.c optional isci dev/isci/scil/sati_lun_reset.c optional isci dev/isci/scil/sati_mode_pages.c optional isci dev/isci/scil/sati_mode_select.c optional isci dev/isci/scil/sati_mode_sense.c optional isci dev/isci/scil/sati_mode_sense_10.c optional isci dev/isci/scil/sati_mode_sense_6.c optional isci dev/isci/scil/sati_move.c optional isci dev/isci/scil/sati_passthrough.c optional isci dev/isci/scil/sati_read.c optional isci dev/isci/scil/sati_read_buffer.c optional isci dev/isci/scil/sati_read_capacity.c optional isci dev/isci/scil/sati_reassign_blocks.c optional isci dev/isci/scil/sati_report_luns.c optional isci dev/isci/scil/sati_request_sense.c optional isci dev/isci/scil/sati_start_stop_unit.c optional isci dev/isci/scil/sati_synchronize_cache.c optional isci dev/isci/scil/sati_test_unit_ready.c optional isci dev/isci/scil/sati_unmap.c optional isci dev/isci/scil/sati_util.c optional isci dev/isci/scil/sati_verify.c optional isci dev/isci/scil/sati_write.c optional isci dev/isci/scil/sati_write_and_verify.c optional isci dev/isci/scil/sati_write_buffer.c optional isci dev/isci/scil/sati_write_long.c optional isci dev/isci/scil/sci_abstract_list.c optional isci dev/isci/scil/sci_base_controller.c optional isci dev/isci/scil/sci_base_domain.c optional isci dev/isci/scil/sci_base_iterator.c optional isci dev/isci/scil/sci_base_library.c optional isci dev/isci/scil/sci_base_logger.c optional isci dev/isci/scil/sci_base_memory_descriptor_list.c optional isci dev/isci/scil/sci_base_memory_descriptor_list_decorator.c optional isci dev/isci/scil/sci_base_object.c optional isci dev/isci/scil/sci_base_observer.c optional isci dev/isci/scil/sci_base_phy.c optional isci dev/isci/scil/sci_base_port.c optional isci dev/isci/scil/sci_base_remote_device.c optional isci dev/isci/scil/sci_base_request.c optional isci dev/isci/scil/sci_base_state_machine.c optional isci dev/isci/scil/sci_base_state_machine_logger.c optional isci dev/isci/scil/sci_base_state_machine_observer.c optional isci dev/isci/scil/sci_base_subject.c optional isci dev/isci/scil/sci_util.c optional isci dev/isci/scil/scic_sds_controller.c optional isci dev/isci/scil/scic_sds_library.c optional isci dev/isci/scil/scic_sds_pci.c optional isci dev/isci/scil/scic_sds_phy.c optional isci dev/isci/scil/scic_sds_port.c optional isci dev/isci/scil/scic_sds_port_configuration_agent.c optional isci dev/isci/scil/scic_sds_remote_device.c optional isci dev/isci/scil/scic_sds_remote_node_context.c optional isci dev/isci/scil/scic_sds_remote_node_table.c optional isci dev/isci/scil/scic_sds_request.c optional isci dev/isci/scil/scic_sds_sgpio.c optional isci dev/isci/scil/scic_sds_smp_remote_device.c optional isci dev/isci/scil/scic_sds_smp_request.c optional isci dev/isci/scil/scic_sds_ssp_request.c optional isci dev/isci/scil/scic_sds_stp_packet_request.c optional isci dev/isci/scil/scic_sds_stp_remote_device.c optional isci dev/isci/scil/scic_sds_stp_request.c optional isci dev/isci/scil/scic_sds_unsolicited_frame_control.c optional isci dev/isci/scil/scif_sas_controller.c optional isci dev/isci/scil/scif_sas_controller_state_handlers.c optional isci dev/isci/scil/scif_sas_controller_states.c optional isci dev/isci/scil/scif_sas_domain.c optional isci dev/isci/scil/scif_sas_domain_state_handlers.c optional isci dev/isci/scil/scif_sas_domain_states.c optional isci dev/isci/scil/scif_sas_high_priority_request_queue.c optional isci dev/isci/scil/scif_sas_internal_io_request.c optional isci dev/isci/scil/scif_sas_io_request.c optional isci dev/isci/scil/scif_sas_io_request_state_handlers.c optional isci dev/isci/scil/scif_sas_io_request_states.c optional isci dev/isci/scil/scif_sas_library.c optional isci dev/isci/scil/scif_sas_remote_device.c optional isci dev/isci/scil/scif_sas_remote_device_ready_substate_handlers.c optional isci dev/isci/scil/scif_sas_remote_device_ready_substates.c optional isci dev/isci/scil/scif_sas_remote_device_starting_substate_handlers.c optional isci dev/isci/scil/scif_sas_remote_device_starting_substates.c optional isci dev/isci/scil/scif_sas_remote_device_state_handlers.c optional isci dev/isci/scil/scif_sas_remote_device_states.c optional isci dev/isci/scil/scif_sas_request.c optional isci dev/isci/scil/scif_sas_smp_activity_clear_affiliation.c optional isci dev/isci/scil/scif_sas_smp_io_request.c optional isci dev/isci/scil/scif_sas_smp_phy.c optional isci dev/isci/scil/scif_sas_smp_remote_device.c optional isci dev/isci/scil/scif_sas_stp_io_request.c optional isci dev/isci/scil/scif_sas_stp_remote_device.c optional isci dev/isci/scil/scif_sas_stp_task_request.c optional isci dev/isci/scil/scif_sas_task_request.c optional isci dev/isci/scil/scif_sas_task_request_state_handlers.c optional isci dev/isci/scil/scif_sas_task_request_states.c optional isci dev/isci/scil/scif_sas_timer.c optional isci isa/syscons_isa.c optional sc isa/vga_isa.c optional vga kern/kern_clocksource.c standard kern/link_elf_obj.c standard # # IA32 binary support # #amd64/ia32/ia32_exception.S optional compat_freebsd32 amd64/ia32/ia32_reg.c optional compat_freebsd32 amd64/ia32/ia32_signal.c optional compat_freebsd32 amd64/ia32/ia32_sigtramp.S optional compat_freebsd32 amd64/ia32/ia32_syscall.c optional compat_freebsd32 amd64/ia32/ia32_misc.c optional compat_freebsd32 compat/ia32/ia32_sysvec.c optional compat_freebsd32 compat/linprocfs/linprocfs.c optional linprocfs compat/linsysfs/linsysfs.c optional linsysfs # # Linux/i386 binary support # amd64/linux32/linux32_dummy.c optional compat_linux32 amd64/linux32/linux32_machdep.c optional compat_linux32 amd64/linux32/linux32_support.s optional compat_linux32 \ dependency "linux32_assym.h" amd64/linux32/linux32_sysent.c optional compat_linux32 amd64/linux32/linux32_sysvec.c optional compat_linux32 compat/linux/linux_emul.c optional compat_linux32 compat/linux/linux_file.c optional compat_linux32 compat/linux/linux_fork.c optional compat_linux32 compat/linux/linux_futex.c optional compat_linux32 compat/linux/linux_getcwd.c optional compat_linux32 compat/linux/linux_ioctl.c optional compat_linux32 compat/linux/linux_ipc.c optional compat_linux32 compat/linux/linux_mib.c optional compat_linux32 compat/linux/linux_misc.c optional compat_linux32 compat/linux/linux_mmap.c optional compat_linux32 compat/linux/linux_signal.c optional compat_linux32 compat/linux/linux_socket.c optional compat_linux32 compat/linux/linux_stats.c optional compat_linux32 compat/linux/linux_sysctl.c optional compat_linux32 compat/linux/linux_time.c optional compat_linux32 compat/linux/linux_timer.c optional compat_linux32 compat/linux/linux_uid16.c optional compat_linux32 compat/linux/linux_util.c optional compat_linux32 compat/linux/linux_vdso.c optional compat_linux32 compat/linux/linux_common.c optional compat_linux32 compat/linux/linux_event.c optional compat_linux32 compat/linux/linux.c optional compat_linux32 dev/amr/amr_linux.c optional compat_linux32 amr dev/mfi/mfi_linux.c optional compat_linux32 mfi # # Windows NDIS driver support # compat/ndis/kern_ndis.c optional ndisapi pci compat/ndis/kern_windrv.c optional ndisapi pci compat/ndis/subr_hal.c optional ndisapi pci compat/ndis/subr_ndis.c optional ndisapi pci compat/ndis/subr_ntoskrnl.c optional ndisapi pci compat/ndis/subr_pe.c optional ndisapi pci compat/ndis/subr_usbd.c optional ndisapi pci compat/ndis/winx64_wrap.S optional ndisapi pci # libkern/memmove.c standard libkern/memset.c standard # # x86 real mode BIOS emulator, required by dpms/pci/vesa # compat/x86bios/x86bios.c optional x86bios | dpms | pci | vesa contrib/x86emu/x86emu.c optional x86bios | dpms | pci | vesa # # bvm console # dev/bvm/bvm_console.c optional bvmconsole dev/bvm/bvm_dbg.c optional bvmdebug # # x86 shared code between IA32, AMD64 and PC98 architectures # x86/acpica/OsdEnvironment.c optional acpi x86/acpica/acpi_apm.c optional acpi x86/acpica/acpi_wakeup.c optional acpi x86/acpica/madt.c optional acpi x86/acpica/srat.c optional acpi x86/bios/smbios.c optional smbios x86/bios/vpd.c optional vpd x86/cpufreq/powernow.c optional cpufreq x86/cpufreq/est.c optional cpufreq x86/cpufreq/hwpstate.c optional cpufreq x86/cpufreq/p4tcc.c optional cpufreq x86/iommu/busdma_dmar.c optional acpi acpi_dmar pci x86/iommu/intel_ctx.c optional acpi acpi_dmar pci x86/iommu/intel_drv.c optional acpi acpi_dmar pci x86/iommu/intel_fault.c optional acpi acpi_dmar pci x86/iommu/intel_gas.c optional acpi acpi_dmar pci x86/iommu/intel_idpgtbl.c optional acpi acpi_dmar pci x86/iommu/intel_intrmap.c optional acpi acpi_dmar pci x86/iommu/intel_qi.c optional acpi acpi_dmar pci x86/iommu/intel_quirks.c optional acpi acpi_dmar pci x86/iommu/intel_utils.c optional acpi acpi_dmar pci x86/isa/atpic.c optional atpic isa x86/isa/atrtc.c standard x86/isa/clock.c standard x86/isa/elcr.c optional atpic isa | mptable x86/isa/isa.c standard x86/isa/isa_dma.c standard x86/isa/nmi.c standard x86/isa/orm.c optional isa x86/pci/pci_bus.c optional pci x86/pci/qpi.c optional pci x86/x86/autoconf.c standard x86/x86/bus_machdep.c standard x86/x86/busdma_bounce.c standard x86/x86/busdma_machdep.c standard x86/x86/cpu_machdep.c standard x86/x86/dump_machdep.c standard x86/x86/fdt_machdep.c optional fdt x86/x86/identcpu.c standard x86/x86/intr_machdep.c standard x86/x86/io_apic.c standard x86/x86/legacy.c standard x86/x86/local_apic.c standard x86/x86/mca.c standard x86/x86/mptable.c optional mptable x86/x86/mptable_pci.c optional mptable pci x86/x86/mp_x86.c optional smp x86/x86/mp_watchdog.c optional mp_watchdog smp x86/x86/msi.c optional pci x86/x86/nexus.c standard x86/x86/pvclock.c standard x86/x86/stack_machdep.c optional ddb | stack x86/x86/tsc.c standard x86/x86/delay.c standard x86/xen/hvm.c optional xenhvm x86/xen/xen_intr.c optional xenhvm x86/xen/pv.c optional xenhvm x86/xen/pvcpu_enum.c optional xenhvm x86/xen/xen_apic.c optional xenhvm x86/xen/xenpv.c optional xenhvm x86/xen/xen_nexus.c optional xenhvm x86/xen/xen_msi.c optional xenhvm x86/xen/xen_pci_bus.c optional xenhvm Index: head/sys/conf/options.amd64 =================================================================== --- head/sys/conf/options.amd64 (revision 306096) +++ head/sys/conf/options.amd64 (revision 306097) @@ -1,66 +1,69 @@ # $FreeBSD$ # Options specific to AMD64 platform kernels AUTO_EOI_1 opt_auto_eoi.h AUTO_EOI_2 opt_auto_eoi.h COUNT_XINVLTLB_HITS opt_smp.h COUNT_IPIS opt_smp.h MAXMEM MPTABLE_FORCE_HTT MP_WATCHDOG NKPT opt_pmap.h PV_STATS opt_pmap.h # Options for emulators. These should only be used at config time, so # they are handled like options for static filesystems # (see src/sys/conf/options), except for broken debugging options. COMPAT_FREEBSD32 opt_compat.h #IBCS2 opt_dontuse.h #COMPAT_LINUX opt_dontuse.h COMPAT_LINUX32 opt_compat.h #COMPAT_SVR4 opt_dontuse.h #DEBUG_SVR4 opt_svr4.h LINPROCFS opt_dontuse.h LINSYSFS opt_dontuse.h NDISAPI opt_dontuse.h TIMER_FREQ opt_clock.h # options for serial support COM_ESP opt_sio.h COM_MULTIPORT opt_sio.h CONSPEED opt_sio.h GDBSPEED opt_sio.h COM_NO_ACPI opt_sio.h VGA_ALT_SEQACCESS opt_vga.h VGA_DEBUG opt_vga.h VGA_NO_FONT_LOADING opt_vga.h VGA_NO_MODE_CHANGE opt_vga.h VGA_SLOW_IOACCESS opt_vga.h VGA_WIDTH90 opt_vga.h VESA VESA_DEBUG opt_vesa.h # AGP debugging support AGP_DEBUG opt_agp.h ATKBD_DFLT_KEYMAP opt_atkbd.h # ------------------------------- # EOF # ------------------------------- HAMMER opt_cpu.h PSM_HOOKRESUME opt_psm.h PSM_RESETAFTERSUSPEND opt_psm.h PSM_DEBUG opt_psm.h DEV_ATPIC opt_atpic.h # BPF just-in-time compiler BPF_JITTER opt_bpf.h XENHVM opt_global.h # options for the Intel C600 SAS driver (isci) ISCI_LOGGING opt_isci.h + +# EFI Runtime services support +EFIRT opt_efirt.h Index: head/sys/modules/Makefile =================================================================== --- head/sys/modules/Makefile (revision 306096) +++ head/sys/modules/Makefile (revision 306097) @@ -1,798 +1,800 @@ # $FreeBSD$ SYSDIR?=${.CURDIR}/.. .include "${SYSDIR}/conf/kern.opts.mk" SUBDIR_PARALLEL= # Modules that include binary-only blobs of microcode should be selectable by # MK_SOURCELESS_UCODE option (see below). .if defined(MODULES_OVERRIDE) && !defined(ALL_MODULES) SUBDIR=${MODULES_OVERRIDE} .else SUBDIR= \ ${_3dfx} \ ${_3dfx_linux} \ ${_aac} \ ${_aacraid} \ accf_data \ accf_dns \ accf_http \ acl_nfs4 \ acl_posix1e \ ${_acpi} \ ae \ ${_aesni} \ age \ ${_agp} \ aha \ ${_ahb} \ ahci \ ${_aic} \ aic7xxx \ alc \ ale \ alq \ ${_amdsbwd} \ ${_amdtemp} \ amr \ ${_an} \ ${_aout} \ ${_apm} \ ${_arcmsr} \ ${_arcnet} \ ${_asmc} \ ata \ ath \ ath_pci \ ${_autofs} \ ${_auxio} \ ${_bce} \ bfe \ bhnd \ bge \ bhnd \ ${_bxe} \ ${_bios} \ ${_bktr} \ ${_bm} \ bridgestp \ bwi \ bwn \ bwn_pci \ cam \ ${_canbepm} \ ${_canbus} \ ${_cardbus} \ ${_carp} \ cas \ ${_cbb} \ cc \ cd9660 \ cd9660_iconv \ ${_ce} \ ${_cfi} \ ${_ciss} \ cloudabi \ ${_cloudabi32} \ ${_cloudabi64} \ ${_cm} \ ${_cmx} \ ${_coff} \ ${_coretemp} \ ${_cp} \ ${_cpsw} \ ${_cpuctl} \ ${_cpufreq} \ ${_crypto} \ ${_cryptodev} \ ${_cs} \ ${_ct} \ ${_ctau} \ ctl \ ${_cxgb} \ ${_cxgbe} \ dc \ dcons \ dcons_crom \ de \ ${_dpms} \ ${_dpt} \ ${_drm} \ ${_drm2} \ dummynet \ ${_ed} \ + ${_efirt} \ ${_elink} \ ${_em} \ en \ ${_ep} \ ${_epic} \ esp \ ${_et} \ ${_ex} \ ${_exca} \ ext2fs \ ${_fatm} \ fdc \ fdescfs \ ${_fe} \ filemon \ firewire \ firmware \ fuse \ ${_fxp} \ gem \ geom \ ${_glxiic} \ ${_glxsb} \ gpio \ hatm \ hifn \ hme \ ${_hpt27xx} \ ${_hptiop} \ ${_hptmv} \ ${_hptnr} \ ${_hptrr} \ hwpmc \ ${_hyperv} \ i2c \ ${_ibcore} \ ${_ibcs2} \ ${_ichwd} \ ${_ida} \ if_bridge \ if_disc \ if_edsc \ ${_if_enc} \ if_epair \ ${_if_gif} \ ${_if_gre} \ ${_if_me} \ if_lagg \ ${_if_ndis} \ ${_if_stf} \ if_tap \ if_tun \ if_vlan \ if_vxlan \ ${_igb} \ ${_iir} \ imgact_binmisc \ ${_io} \ ${_ioat} \ ${_ipoib} \ ${_ipdivert} \ ${_ipfilter} \ ${_ipfw} \ ipfw_nat \ ${_ipfw_nat64} \ ${_ipfw_nptv6} \ ${_ipmi} \ ip6_mroute_mod \ ip_mroute_mod \ ${_ips} \ ${_ipw} \ ${_ipwfw} \ ${_isci} \ ${_iser} \ isp \ ${_ispfw} \ ${_iwi} \ ${_iwifw} \ ${_iwm} \ ${_iwmfw} \ ${_iwn} \ ${_iwnfw} \ ${_ix} \ ${_ixv} \ ${_ixgb} \ ${_ixl} \ ${_ixlv} \ jme \ joy \ kbdmux \ kgssapi \ kgssapi_krb5 \ khelp \ krpc \ ksyms \ le \ lge \ libalias \ libiconv \ libmbpool \ libmchain \ ${_linprocfs} \ ${_linsysfs} \ ${_linux} \ ${_linux_common} \ ${_linux64} \ linuxkpi \ lmc \ lpt \ mac_biba \ mac_bsdextended \ mac_ifoff \ mac_lomac \ mac_mls \ mac_none \ mac_partition \ mac_portacl \ mac_seeotheruids \ mac_stub \ mac_test \ malo \ md \ mdio \ mem \ mfi \ mii \ mlx \ ${_mlx4} \ ${_mlx4ib} \ ${_mlxen} \ ${_mlx5} \ ${_mlx5en} \ ${_mly} \ mmc \ mmcsd \ mpr \ mps \ mpt \ mqueue \ mrsas \ msdosfs \ msdosfs_iconv \ ${_mse} \ msk \ ${_mthca} \ mvs \ mwl \ ${_mwlfw} \ mxge \ my \ ${_nandfs} \ ${_nandsim} \ ${_ncr} \ ${_nctgpio} \ ${_ncv} \ ${_ndis} \ netfpga10g \ ${_netgraph} \ ${_nfe} \ nfscl \ nfscommon \ nfsd \ nfslock \ nfslockd \ nfssvc \ nge \ nmdm \ ${_nsp} \ nullfs \ ${_ntb} \ ${_nvd} \ ${_nvme} \ ${_nvram} \ ${_nxge} \ oce \ otus \ ${_otusfw} \ ow \ ${_padlock} \ ${_padlock_rng} \ patm \ ${_pccard} \ ${_pcfclock} \ pcn \ ${_pf} \ ${_pflog} \ ${_pfsync} \ plip \ ${_pmc} \ ${_pms} \ ppbus \ ppc \ ppi \ pps \ procfs \ proto \ pseudofs \ ${_pst} \ pty \ puc \ ${_qlxge} \ ${_qlxgb} \ ${_qlxgbe} \ ral \ ${_ralfw} \ ${_random_fortuna} \ ${_random_yarrow} \ ${_random_other} \ rc4 \ ${_rdma} \ ${_rdrand_rng} \ re \ rl \ rtwn \ ${_rtwnfw} \ ${_s3} \ ${_safe} \ ${_sbni} \ scc \ ${_scsi_low} \ sdhci \ sdhci_pci \ sem \ send \ ${_sf} \ ${_sfxge} \ sge \ siba_bwn \ siftr \ siis \ sis \ sk \ smbfs \ sn \ ${_snc} \ snp \ sound \ ${_speaker} \ ${_splash} \ ${_sppp} \ ste \ ${_stg} \ stge \ ${_streams} \ ${_svr4} \ ${_sym} \ ${_syscons} \ sysvipc \ ${_ti} \ ${_tcp_fastpath} \ tests/framework \ tests/callout_test \ tl \ tmpfs \ ${_toecore} \ ${_tpm} \ trm \ ${_twa} \ twe \ tws \ tx \ ${_txp} \ uart \ ubsec \ udf \ udf_iconv \ ufs \ unionfs \ urtwn \ ${_urtwnfw} \ usb \ utopia \ ${_vesa} \ ${_virtio} \ vge \ ${_viawd} \ videomode \ vkbd \ ${_vmm} \ ${_vmware} \ ${_vpo} \ vr \ vte \ vx \ ${_vxge} \ wb \ ${_wbwd} \ ${_wi} \ wlan \ wlan_acl \ wlan_amrr \ wlan_ccmp \ wlan_rssadapt \ wlan_tkip \ wlan_wep \ wlan_xauth \ ${_wpi} \ ${_wpifw} \ ${_x86bios} \ ${_xe} \ xl \ zlib .if ${MK_AUTOFS} != "no" || defined(ALL_MODULES) _autofs= autofs .endif .if ${MK_CDDL} != "no" || defined(ALL_MODULES) .if (${MACHINE_CPUARCH} != "arm" || ${MACHINE_ARCH:Marmv6*} != "") && \ ${MACHINE_CPUARCH} != "mips" && \ ${MACHINE_CPUARCH} != "sparc64" SUBDIR+= dtrace .endif SUBDIR+= opensolaris .endif .if ${MK_CRYPT} != "no" || defined(ALL_MODULES) .if exists(${.CURDIR}/../opencrypto) _crypto= crypto _cryptodev= cryptodev _random_fortuna=random_fortuna _random_yarrow= random_yarrow _random_other= random_other .endif .endif .if ${MK_CUSE} != "no" || defined(ALL_MODULES) SUBDIR+= cuse .endif .if ${MK_EXTRA_TCP_STACKS} != "no" || defined(ALL_MODULES) _tcp_fastpath= tcp/fastpath .endif .if (${MK_INET_SUPPORT} != "no" || ${MK_INET6_SUPPORT} != "no") || \ defined(ALL_MODULES) _carp= carp _toecore= toecore _if_enc= if_enc _if_gif= if_gif _if_gre= if_gre .endif .if (${MK_INET_SUPPORT} != "no" && ${MK_INET6_SUPPORT} != "no") || \ defined(ALL_MODULES) _if_stf= if_stf .endif .if ${MK_INET_SUPPORT} != "no" || defined(ALL_MODULES) _if_me= if_me _ipdivert= ipdivert _ipfw= ipfw .if ${MK_INET6_SUPPORT} != "no" || defined(ALL_MODULES) _ipfw_nat64= ipfw_nat64 .endif .endif .if ${MK_INET6_SUPPORT} != "no" || defined(ALL_MODULES) _ipfw_nptv6= ipfw_nptv6 .endif .if ${MK_IPFILTER} != "no" || defined(ALL_MODULES) _ipfilter= ipfilter .endif .if ${MK_ISCSI} != "no" || defined(ALL_MODULES) SUBDIR+= iscsi SUBDIR+= iscsi_initiator .endif .if ${MK_NAND} != "no" || defined(ALL_MODULES) _nandfs= nandfs _nandsim= nandsim .endif .if ${MK_NETGRAPH} != "no" || defined(ALL_MODULES) _netgraph= netgraph .endif .if (${MK_PF} != "no" && (${MK_INET_SUPPORT} != "no" || \ ${MK_INET6_SUPPORT} != "no")) || defined(ALL_MODULES) _pf= pf _pflog= pflog .if ${MK_INET_SUPPORT} != "no" _pfsync= pfsync .endif .endif .if ${MK_SOURCELESS_UCODE} != "no" _bce= bce _fatm= fatm _fxp= fxp _ispfw= ispfw _mwlfw= mwlfw _otusfw= otusfw _ralfw= ralfw _rtwnfw= rtwnfw _urtwnfw= urtwnfw _sf= sf _ti= ti _txp= txp .endif .if ${MK_SOURCELESS_UCODE} != "no" && ${MACHINE_CPUARCH} != "arm" && \ ${MACHINE_CPUARCH} != "mips" && \ ${MACHINE_ARCH} != "powerpc" && ${MACHINE_CPUARCH} != "riscv" _cxgbe= cxgbe .endif .if ${MK_ZFS} != "no" || defined(ALL_MODULES) SUBDIR+= zfs .endif .if ${MACHINE_CPUARCH} != "aarch64" && ${MACHINE_CPUARCH} != "arm" && \ ${MACHINE_CPUARCH} != "mips" && ${MACHINE_CPUARCH} != "powerpc" && \ ${MACHINE_CPUARCH} != "riscv" _syscons= syscons _vpo= vpo .endif .if ${MACHINE_CPUARCH} != "mips" # no BUS_SPACE_UNSPECIFIED # No barrier instruction support (specific to this driver) _sym= sym # intr_disable() is a macro, causes problems .if ${MK_SOURCELESS_UCODE} != "no" _cxgb= cxgb .endif .endif .if ${MACHINE_CPUARCH} == "aarch64" _em= em _igb= igb .endif .if ${MACHINE_CPUARCH} == "i386" || ${MACHINE_CPUARCH} == "amd64" _agp= agp _an= an _aout= aout _bktr= bktr _bxe= bxe _cardbus= cardbus _cbb= cbb _cpuctl= cpuctl _cpufreq= cpufreq _cs= cs _dpms= dpms _drm= drm _drm2= drm2 _ed= ed _em= em _ep= ep _et= et _exca= exca _fe= fe .if ${MK_OFED} != "no" || defined(ALL_MODULES) _ibcore= ibcore .endif _if_ndis= if_ndis _igb= igb _io= io .if ${MK_OFED} != "no" || defined(ALL_MODULES) _ipoib= ipoib _iser= iser .endif _ix= ix _ixv= ixv _linprocfs= linprocfs _linsysfs= linsysfs _linux= linux _nctgpio= nctgpio _ndis= ndis _pccard= pccard .if ${MK_OFED} != "no" || defined(ALL_MODULES) _rdma= rdma .endif _safe= safe _scsi_low= scsi_low _speaker= speaker _splash= splash _sppp= sppp _vmware= vmware _vxge= vxge _wbwd= wbwd _wi= wi _xe= xe .if ${MACHINE} != "pc98" _aac= aac _aacraid= aacraid _acpi= acpi .if ${MK_CRYPT} != "no" || defined(ALL_MODULES) _aesni= aesni .endif _amdsbwd= amdsbwd _amdtemp= amdtemp _arcmsr= arcmsr _asmc= asmc _ciss= ciss _cmx= cmx _coretemp= coretemp .if ${MK_SOURCELESS_HOST} != "no" _hpt27xx= hpt27xx .endif _hptiop= hptiop .if ${MK_SOURCELESS_HOST} != "no" _hptmv= hptmv _hptnr= hptnr _hptrr= hptrr .endif _hyperv= hyperv _ichwd= ichwd _ida= ida _iir= iir _ipmi= ipmi _ips= ips _isci= isci _ipw= ipw _iwi= iwi _iwm= iwm _iwn= iwn _ixgb= ixgb .if ${MK_SOURCELESS_UCODE} != "no" _ipwfw= ipwfw _iwifw= iwifw _iwmfw= iwmfw _iwnfw= iwnfw .endif .if ${MK_OFED} != "no" || defined(ALL_MODULES) _mlx4= mlx4 _mlx4ib= mlx4ib _mlxen= mlxen .endif _mlx5= mlx5 .if (${MK_INET_SUPPORT} != "no" && ${MK_INET6_SUPPORT} != "no") || \ defined(ALL_MODULES) _mlx5en= mlx5en .endif _mly= mly .if ${MK_OFED} != "no" || defined(ALL_MODULES) _mthca= mthca .endif _nfe= nfe _nvd= nvd _nvme= nvme _nvram= nvram _nxge= nxge .if ${MK_CRYPT} != "no" || defined(ALL_MODULES) _padlock= padlock _padlock_rng= padlock_rng _rdrand_rng= rdrand_rng .endif _s3= s3 _tpm= tpm _twa= twa _vesa= vesa _viawd= viawd _virtio= virtio _wpi= wpi .if ${MK_SOURCELESS_UCODE} != "no" _wpifw= wpifw .endif _x86bios= x86bios .endif .endif .if ${MACHINE_CPUARCH} == "amd64" +_efirt= efirt _ioat= ioat _ixl= ixl _ixlv= ixlv _linux64= linux64 _linux_common= linux_common _ntb= ntb _pms= pms _qlxge= qlxge _qlxgb= qlxgb _qlxgbe= qlxgbe _sfxge= sfxge .if ${MK_BHYVE} != "no" || defined(ALL_MODULES) _vmm= vmm .endif .endif .if ${MACHINE_CPUARCH} == "i386" # XXX some of these can move to the general case when de-i386'ed # XXX some of these can move now, but are untested on other architectures. _3dfx= 3dfx _3dfx_linux= 3dfx_linux _aic= aic _apm= apm _arcnet= arcnet .if ${MK_SOURCELESS_UCODE} != "no" _ce= ce .endif _coff= coff .if ${MK_SOURCELESS_UCODE} != "no" _cp= cp .endif _elink= elink _glxiic= glxiic _glxsb= glxsb #_ibcs2= ibcs2 _mse= mse _ncr= ncr _ncv= ncv _nsp= nsp _pcfclock= pcfclock _pst= pst _sbni= sbni _streams= streams _stg= stg _svr4= svr4 .if ${MACHINE} == "i386" .if ${MK_EISA} != "no" _ahb= ahb .endif _bios= bios _cm= cm .if ${MK_SOURCELESS_UCODE} != "no" _ctau= ctau .endif _dpt= dpt _ex= ex .elif ${MACHINE} == "pc98" _canbepm= canbepm _canbus= canbus _ct= ct _pmc= pmc _snc= snc .endif .endif .if ${MACHINE_CPUARCH} == "arm" _cfi= cfi _cpsw= cpsw .endif .if ${MACHINE_CPUARCH} == "powerpc" _agp= agp _an= an _bm= bm _cardbus= cardbus _cbb= cbb _cfi= cfi _cpufreq= cpufreq _drm= drm _exca= exca _nvram= powermac_nvram _pccard= pccard _wi= wi .endif .if ${MACHINE_ARCH} == "powerpc64" _drm2= drm2 .endif .if ${MACHINE_CPUARCH} == "sparc64" _auxio= auxio _em= em _epic= epic _igb= igb .endif .if ${MACHINE_CPUARCH} == "amd64" || ${MACHINE_CPUARCH} == "i386" _cloudabi32= cloudabi32 .endif .if ${MACHINE_CPUARCH} == "aarch64" || ${MACHINE_CPUARCH} == "amd64" _cloudabi64= cloudabi64 .endif .endif SUBDIR+=${MODULES_EXTRA} .for reject in ${WITHOUT_MODULES} SUBDIR:= ${SUBDIR:N${reject}} .endfor # Calling kldxref(8) for each module is expensive. .if !defined(NO_XREF) .MAKEFLAGS+= -DNO_XREF afterinstall: .PHONY @if type kldxref >/dev/null 2>&1; then \ ${ECHO} kldxref ${DESTDIR}${KMODDIR}; \ kldxref ${DESTDIR}${KMODDIR}; \ fi .endif .include "${SYSDIR}/conf/config.mk" SUBDIR:= ${SUBDIR:u:O} .include Index: head/sys/modules/efirt/Makefile =================================================================== --- head/sys/modules/efirt/Makefile (nonexistent) +++ head/sys/modules/efirt/Makefile (revision 306097) @@ -0,0 +1,8 @@ +# $FreeBSD$ + +.PATH: ${.CURDIR}/../../${MACHINE}/${MACHINE} + +KMOD= efirt +SRCS= efirt.c + +.include Property changes on: head/sys/modules/efirt/Makefile ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property