Add styling on links
This commit is contained in:
BIN
static/assets/fitlet2/Fitlet2+FACET.png
(Stored with Git LFS)
Normal file
BIN
static/assets/fitlet2/Fitlet2+FACET.png
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
static/assets/fitlet2/Fitlet2-Back.png
(Stored with Git LFS)
Normal file
BIN
static/assets/fitlet2/Fitlet2-Back.png
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
static/assets/fitlet2/Fitlet2-BottomOpen.png
(Stored with Git LFS)
Normal file
BIN
static/assets/fitlet2/Fitlet2-BottomOpen.png
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
static/assets/fitlet2/Fitlet2-Front.png
(Stored with Git LFS)
Normal file
BIN
static/assets/fitlet2/Fitlet2-Front.png
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
static/assets/fitlet2/Fitlet2-stock.png
(Stored with Git LFS)
Normal file
BIN
static/assets/fitlet2/Fitlet2-stock.png
(Stored with Git LFS)
Normal file
Binary file not shown.
241
static/assets/fitlet2/c3.css
Normal file
241
static/assets/fitlet2/c3.css
Normal file
@ -0,0 +1,241 @@
|
||||
/*-- Chart --*/
|
||||
.c3 svg {
|
||||
font: 10px sans-serif;
|
||||
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
||||
}
|
||||
|
||||
.c3 path, .c3 line {
|
||||
fill: none;
|
||||
stroke: #000;
|
||||
}
|
||||
|
||||
.c3 text {
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
.c3-legend-item-tile,
|
||||
.c3-xgrid-focus,
|
||||
.c3-ygrid,
|
||||
.c3-event-rect,
|
||||
.c3-bars path {
|
||||
shape-rendering: crispEdges;
|
||||
}
|
||||
|
||||
.c3-chart-arc path {
|
||||
stroke: #fff;
|
||||
}
|
||||
|
||||
.c3-chart-arc rect {
|
||||
stroke: white;
|
||||
stroke-width: 1;
|
||||
}
|
||||
|
||||
.c3-chart-arc text {
|
||||
fill: #fff;
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
/*-- Axis --*/
|
||||
/*-- Grid --*/
|
||||
.c3-grid line {
|
||||
stroke: #aaa;
|
||||
}
|
||||
|
||||
.c3-grid text {
|
||||
fill: #aaa;
|
||||
}
|
||||
|
||||
.c3-xgrid, .c3-ygrid {
|
||||
stroke-dasharray: 3 3;
|
||||
}
|
||||
|
||||
/*-- Text on Chart --*/
|
||||
.c3-text.c3-empty {
|
||||
fill: #808080;
|
||||
font-size: 2em;
|
||||
}
|
||||
|
||||
/*-- Line --*/
|
||||
.c3-line {
|
||||
stroke-width: 1px;
|
||||
}
|
||||
|
||||
/*-- Point --*/
|
||||
.c3-circle {
|
||||
fill: currentColor;
|
||||
}
|
||||
|
||||
.c3-circle._expanded_ {
|
||||
stroke-width: 1px;
|
||||
stroke: white;
|
||||
}
|
||||
|
||||
.c3-selected-circle {
|
||||
fill: white;
|
||||
stroke-width: 2px;
|
||||
}
|
||||
|
||||
/*-- Bar --*/
|
||||
.c3-bar {
|
||||
stroke-width: 0;
|
||||
}
|
||||
|
||||
.c3-bar._expanded_ {
|
||||
fill-opacity: 1;
|
||||
fill-opacity: 0.75;
|
||||
}
|
||||
|
||||
/*-- Focus --*/
|
||||
.c3-target.c3-focused {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.c3-target.c3-focused path.c3-line, .c3-target.c3-focused path.c3-step {
|
||||
stroke-width: 2px;
|
||||
}
|
||||
|
||||
.c3-target.c3-defocused {
|
||||
opacity: 0.3 !important;
|
||||
}
|
||||
|
||||
/*-- Region --*/
|
||||
.c3-region {
|
||||
fill: steelblue;
|
||||
fill-opacity: 0.1;
|
||||
}
|
||||
.c3-region text {
|
||||
fill-opacity: 1;
|
||||
}
|
||||
|
||||
/*-- Brush --*/
|
||||
.c3-brush .extent {
|
||||
fill-opacity: 0.1;
|
||||
}
|
||||
|
||||
/*-- Select - Drag --*/
|
||||
/*-- Legend --*/
|
||||
.c3-legend-item {
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
.c3-legend-item-hidden {
|
||||
opacity: 0.15;
|
||||
}
|
||||
|
||||
.c3-legend-background {
|
||||
opacity: 0.75;
|
||||
fill: white;
|
||||
stroke: lightgray;
|
||||
stroke-width: 1;
|
||||
}
|
||||
|
||||
/*-- Title --*/
|
||||
.c3-title {
|
||||
font: 14px sans-serif;
|
||||
}
|
||||
|
||||
/*-- Tooltip --*/
|
||||
.c3-tooltip-container {
|
||||
z-index: 10;
|
||||
}
|
||||
|
||||
.c3-tooltip {
|
||||
border-collapse: collapse;
|
||||
border-spacing: 0;
|
||||
background-color: #fff;
|
||||
empty-cells: show;
|
||||
-webkit-box-shadow: 7px 7px 12px -9px #777777;
|
||||
-moz-box-shadow: 7px 7px 12px -9px #777777;
|
||||
box-shadow: 7px 7px 12px -9px #777777;
|
||||
opacity: 0.9;
|
||||
}
|
||||
|
||||
.c3-tooltip tr {
|
||||
border: 1px solid #CCC;
|
||||
}
|
||||
|
||||
.c3-tooltip th {
|
||||
background-color: #aaa;
|
||||
font-size: 14px;
|
||||
padding: 2px 5px;
|
||||
text-align: left;
|
||||
color: #FFF;
|
||||
}
|
||||
|
||||
.c3-tooltip td {
|
||||
font-size: 13px;
|
||||
padding: 3px 6px;
|
||||
background-color: #fff;
|
||||
border-left: 1px dotted #999;
|
||||
}
|
||||
|
||||
.c3-tooltip td > span {
|
||||
display: inline-block;
|
||||
width: 10px;
|
||||
height: 10px;
|
||||
margin-right: 6px;
|
||||
}
|
||||
|
||||
.c3-tooltip .value {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
/*-- Area --*/
|
||||
.c3-area {
|
||||
stroke-width: 0;
|
||||
opacity: 0.2;
|
||||
}
|
||||
|
||||
/*-- Arc --*/
|
||||
.c3-chart-arcs-title {
|
||||
dominant-baseline: middle;
|
||||
font-size: 1.3em;
|
||||
}
|
||||
|
||||
.c3-chart-arcs .c3-chart-arcs-background {
|
||||
fill: #e0e0e0;
|
||||
stroke: #FFF;
|
||||
}
|
||||
|
||||
.c3-chart-arcs .c3-chart-arcs-gauge-unit {
|
||||
fill: #000;
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
.c3-chart-arcs .c3-chart-arcs-gauge-max {
|
||||
fill: #777;
|
||||
}
|
||||
|
||||
.c3-chart-arcs .c3-chart-arcs-gauge-min {
|
||||
fill: #777;
|
||||
}
|
||||
|
||||
.c3-chart-arc .c3-gauge-value {
|
||||
fill: #000;
|
||||
/* font-size: 28px !important;*/
|
||||
}
|
||||
|
||||
.c3-chart-arc.c3-target g path {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.c3-chart-arc.c3-target.c3-focused g path {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
/*-- Zoom --*/
|
||||
.c3-drag-zoom.enabled {
|
||||
pointer-events: all !important;
|
||||
visibility: visible;
|
||||
}
|
||||
|
||||
.c3-drag-zoom.disabled {
|
||||
pointer-events: none !important;
|
||||
visibility: hidden;
|
||||
}
|
||||
|
||||
.c3-drag-zoom .extent {
|
||||
fill-opacity: 0.1;
|
||||
}
|
2
static/assets/fitlet2/c3.min.js
vendored
Normal file
2
static/assets/fitlet2/c3.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
2
static/assets/fitlet2/d3.v5.min.js
vendored
Normal file
2
static/assets/fitlet2/d3.v5.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
902
static/assets/fitlet2/dmesg.txt
Normal file
902
static/assets/fitlet2/dmesg.txt
Normal file
@ -0,0 +1,902 @@
|
||||
[ 0.000000] Linux version 5.10.0-21-amd64 (debian-kernel@lists.debian.org) (gcc-10 (Debian 10.2.1-6) 10.2.1 20210110, GNU ld (GNU Binutils for Debian) 2.35.2) #1 SMP Debian 5.10.162-1 (2023-01-21)
|
||||
[ 0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-5.10.0-21-amd64 root=UUID=8f44f8e0-54ae-4014-8f98-e6e3047946e2 ro isolcpus=1-3,5-7
|
||||
[ 0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
|
||||
[ 0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
|
||||
[ 0.000000] x86/fpu: Supporting XSAVE feature 0x008: 'MPX bounds registers'
|
||||
[ 0.000000] x86/fpu: Supporting XSAVE feature 0x010: 'MPX CSR'
|
||||
[ 0.000000] x86/fpu: xstate_offset[3]: 576, xstate_sizes[3]: 64
|
||||
[ 0.000000] x86/fpu: xstate_offset[4]: 640, xstate_sizes[4]: 64
|
||||
[ 0.000000] x86/fpu: Enabled xstate features 0x1b, context size is 704 bytes, using 'compacted' format.
|
||||
[ 0.000000] BIOS-provided physical RAM map:
|
||||
[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009b3ff] usable
|
||||
[ 0.000000] BIOS-e820: [mem 0x000000000009b400-0x000000000009ffff] reserved
|
||||
[ 0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
|
||||
[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000000fffffff] usable
|
||||
[ 0.000000] BIOS-e820: [mem 0x0000000010000000-0x0000000012150fff] reserved
|
||||
[ 0.000000] BIOS-e820: [mem 0x0000000012151000-0x0000000075eddfff] usable
|
||||
[ 0.000000] BIOS-e820: [mem 0x0000000075ede000-0x0000000079a1bfff] reserved
|
||||
[ 0.000000] BIOS-e820: [mem 0x0000000079a1c000-0x0000000079ae8fff] usable
|
||||
[ 0.000000] BIOS-e820: [mem 0x0000000079ae9000-0x0000000079e4ffff] ACPI NVS
|
||||
[ 0.000000] BIOS-e820: [mem 0x0000000079e50000-0x000000007a1d6fff] reserved
|
||||
[ 0.000000] BIOS-e820: [mem 0x000000007a1d7000-0x000000007a543fff] usable
|
||||
[ 0.000000] BIOS-e820: [mem 0x000000007a544000-0x000000007a544fff] ACPI NVS
|
||||
[ 0.000000] BIOS-e820: [mem 0x000000007a545000-0x000000007a56efff] reserved
|
||||
[ 0.000000] BIOS-e820: [mem 0x000000007a56f000-0x000000007aae1fff] usable
|
||||
[ 0.000000] BIOS-e820: [mem 0x000000007aae2000-0x000000007aae3fff] reserved
|
||||
[ 0.000000] BIOS-e820: [mem 0x000000007aae4000-0x000000007affffff] usable
|
||||
[ 0.000000] BIOS-e820: [mem 0x000000007b000000-0x000000007fffffff] reserved
|
||||
[ 0.000000] BIOS-e820: [mem 0x00000000d0000000-0x00000000d0ffffff] reserved
|
||||
[ 0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
|
||||
[ 0.000000] BIOS-e820: [mem 0x00000000fe042000-0x00000000fe044fff] reserved
|
||||
[ 0.000000] BIOS-e820: [mem 0x00000000fe900000-0x00000000fe902fff] reserved
|
||||
[ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
|
||||
[ 0.000000] BIOS-e820: [mem 0x00000000fed01000-0x00000000fed01fff] reserved
|
||||
[ 0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
|
||||
[ 0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
|
||||
[ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000027fffffff] usable
|
||||
[ 0.000000] NX (Execute Disable) protection: active
|
||||
[ 0.000000] SMBIOS 3.0.0 present.
|
||||
[ 0.000000] DMI: Compulab fitlet2/fitlet2, BIOS FLT2.0.46.02.00 01/04/2021
|
||||
[ 0.000000] tsc: Detected 1593.600 MHz processor
|
||||
[ 0.002016] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
|
||||
[ 0.002023] e820: remove [mem 0x000a0000-0x000fffff] usable
|
||||
[ 0.002045] last_pfn = 0x280000 max_arch_pfn = 0x400000000
|
||||
[ 0.002053] MTRR default type: uncachable
|
||||
[ 0.002055] MTRR fixed ranges enabled:
|
||||
[ 0.002058] 00000-6FFFF write-back
|
||||
[ 0.002060] 70000-7FFFF uncachable
|
||||
[ 0.002062] 80000-9FFFF write-back
|
||||
[ 0.002064] A0000-BFFFF uncachable
|
||||
[ 0.002066] C0000-FFFFF write-protect
|
||||
[ 0.002068] MTRR variable ranges enabled:
|
||||
[ 0.002072] 0 base 0000000000 mask 7F80000000 write-back
|
||||
[ 0.002074] 1 base 007C000000 mask 7FFC000000 uncachable
|
||||
[ 0.002077] 2 base 007B000000 mask 7FFF000000 uncachable
|
||||
[ 0.002079] 3 base 0100000000 mask 7F00000000 write-back
|
||||
[ 0.002081] 4 base 0200000000 mask 7F80000000 write-back
|
||||
[ 0.002084] 5 base 00FF000000 mask 7FFF000000 write-combining
|
||||
[ 0.002086] 6 disabled
|
||||
[ 0.002087] 7 disabled
|
||||
[ 0.002089] 8 disabled
|
||||
[ 0.002090] 9 disabled
|
||||
[ 0.002235] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT
|
||||
[ 0.002503] last_pfn = 0x7b000 max_arch_pfn = 0x400000000
|
||||
[ 0.009220] found SMP MP-table at [mem 0x000fcc60-0x000fcc6f]
|
||||
[ 0.009507] Using GB pages for direct mapping
|
||||
[ 0.011862] RAMDISK: [mem 0x3489d000-0x36445fff]
|
||||
[ 0.011869] ACPI: Early table checksum verification disabled
|
||||
[ 0.011876] ACPI: RSDP 0x00000000000F05B0 000024 (v02 ALASKA)
|
||||
[ 0.011886] ACPI: XSDT 0x0000000079E0E0B0 0000D4 (v01 ALASKA A M I 01072009 AMI 00010013)
|
||||
[ 0.011898] ACPI: FACP 0x0000000079E16EC0 000114 (v06 ALASKA A M I 01072009 AMI 00010013)
|
||||
[ 0.011910] ACPI: DSDT 0x0000000079E0E230 008C8E (v02 ALASKA A M I 01072009 INTL 20160930)
|
||||
[ 0.011918] ACPI: FACS 0x0000000079E4F080 000040
|
||||
[ 0.011926] ACPI: FPDT 0x0000000079E16FE0 000044 (v01 ALASKA A M I 01072009 AMI 00010013)
|
||||
[ 0.011934] ACPI: FIDT 0x0000000079E17030 00009C (v01 ALASKA A M I 01072009 AMI 00010013)
|
||||
[ 0.011942] ACPI: MCFG 0x0000000079E170D0 00003C (v01 ALASKA A M I 01072009 MSFT 00000097)
|
||||
[ 0.011950] ACPI: PSDS 0x0000000079E17110 00004D (v01 INTEL EDK2 00000005 INTL 0100000D)
|
||||
[ 0.011958] ACPI: DBG2 0x0000000079E17160 000072 (v00 00000003 BRXT 0100000D)
|
||||
[ 0.011966] ACPI: DBGP 0x0000000079E171E0 000034 (v01 00000003 BRXT 0100000D)
|
||||
[ 0.011973] ACPI: HPET 0x0000000079E17220 000038 (v01 00000003 BRXT 0100000D)
|
||||
[ 0.011981] ACPI: LPIT 0x0000000079E17260 00005C (v01 00000003 BRXT 0100000D)
|
||||
[ 0.011989] ACPI: APIC 0x0000000079E172C0 000084 (v03 00000003 BRXT 0100000D)
|
||||
[ 0.011997] ACPI: NPKT 0x0000000079E17350 000065 (v01 00000003 BRXT 0100000D)
|
||||
[ 0.012004] ACPI: PRAM 0x0000000079E173C0 000030 (v01 00000003 BRXT 0100000D)
|
||||
[ 0.012012] ACPI: WSMT 0x0000000079E173F0 000028 (v01 00000003 BRXT 0100000D)
|
||||
[ 0.012020] ACPI: SSDT 0x0000000079E17420 001084 (v02 UsbCTabl 00000003 BRXT 0100000D)
|
||||
[ 0.012028] ACPI: SSDT 0x0000000079E184B0 001A3F (v01 Intel_ Platform 00001000 INTL 20160930)
|
||||
[ 0.012036] ACPI: SSDT 0x0000000079E19EF0 000451 (v02 PmRef Cpu0Ist 00003000 INTL 20160930)
|
||||
[ 0.012044] ACPI: SSDT 0x0000000079E1A350 000775 (v02 CpuRef CpuSsdt 00003000 INTL 20160930)
|
||||
[ 0.012053] ACPI: SSDT 0x0000000079E1AAD0 00035F (v02 PmRef Cpu0Tst 00003000 INTL 20160930)
|
||||
[ 0.012061] ACPI: SSDT 0x0000000079E1AE30 0001E6 (v02 PmRef ApTst 00003000 INTL 20160930)
|
||||
[ 0.012069] ACPI: SSDT 0x0000000079E1B020 0028AF (v02 SaSsdt SaSsdt 00003000 INTL 20160930)
|
||||
[ 0.012077] ACPI: UEFI 0x0000000079E1D8D0 000042 (v01 ALASKA A M I 00000000 00000000)
|
||||
[ 0.012085] ACPI: TPM2 0x0000000079E1D920 000034 (v04 ALASKA A M I 00000001 AMI 00000000)
|
||||
[ 0.012093] ACPI: Reserving FACP table memory at [mem 0x79e16ec0-0x79e16fd3]
|
||||
[ 0.012096] ACPI: Reserving DSDT table memory at [mem 0x79e0e230-0x79e16ebd]
|
||||
[ 0.012099] ACPI: Reserving FACS table memory at [mem 0x79e4f080-0x79e4f0bf]
|
||||
[ 0.012102] ACPI: Reserving FPDT table memory at [mem 0x79e16fe0-0x79e17023]
|
||||
[ 0.012105] ACPI: Reserving FIDT table memory at [mem 0x79e17030-0x79e170cb]
|
||||
[ 0.012108] ACPI: Reserving MCFG table memory at [mem 0x79e170d0-0x79e1710b]
|
||||
[ 0.012111] ACPI: Reserving PSDS table memory at [mem 0x79e17110-0x79e1715c]
|
||||
[ 0.012114] ACPI: Reserving DBG2 table memory at [mem 0x79e17160-0x79e171d1]
|
||||
[ 0.012116] ACPI: Reserving DBGP table memory at [mem 0x79e171e0-0x79e17213]
|
||||
[ 0.012119] ACPI: Reserving HPET table memory at [mem 0x79e17220-0x79e17257]
|
||||
[ 0.012122] ACPI: Reserving LPIT table memory at [mem 0x79e17260-0x79e172bb]
|
||||
[ 0.012125] ACPI: Reserving APIC table memory at [mem 0x79e172c0-0x79e17343]
|
||||
[ 0.012128] ACPI: Reserving NPKT table memory at [mem 0x79e17350-0x79e173b4]
|
||||
[ 0.012131] ACPI: Reserving PRAM table memory at [mem 0x79e173c0-0x79e173ef]
|
||||
[ 0.012134] ACPI: Reserving WSMT table memory at [mem 0x79e173f0-0x79e17417]
|
||||
[ 0.012137] ACPI: Reserving SSDT table memory at [mem 0x79e17420-0x79e184a3]
|
||||
[ 0.012140] ACPI: Reserving SSDT table memory at [mem 0x79e184b0-0x79e19eee]
|
||||
[ 0.012143] ACPI: Reserving SSDT table memory at [mem 0x79e19ef0-0x79e1a340]
|
||||
[ 0.012146] ACPI: Reserving SSDT table memory at [mem 0x79e1a350-0x79e1aac4]
|
||||
[ 0.012149] ACPI: Reserving SSDT table memory at [mem 0x79e1aad0-0x79e1ae2e]
|
||||
[ 0.012152] ACPI: Reserving SSDT table memory at [mem 0x79e1ae30-0x79e1b015]
|
||||
[ 0.012155] ACPI: Reserving SSDT table memory at [mem 0x79e1b020-0x79e1d8ce]
|
||||
[ 0.012158] ACPI: Reserving UEFI table memory at [mem 0x79e1d8d0-0x79e1d911]
|
||||
[ 0.012161] ACPI: Reserving TPM2 table memory at [mem 0x79e1d920-0x79e1d953]
|
||||
[ 0.012179] ACPI: Local APIC address 0xfee00000
|
||||
[ 0.012314] No NUMA configuration found
|
||||
[ 0.012318] Faking a node at [mem 0x0000000000000000-0x000000027fffffff]
|
||||
[ 0.012342] NODE_DATA(0) allocated [mem 0x27ffd6000-0x27fffffff]
|
||||
[ 0.013359] Zone ranges:
|
||||
[ 0.013363] DMA [mem 0x0000000000001000-0x0000000000ffffff]
|
||||
[ 0.013367] DMA32 [mem 0x0000000001000000-0x00000000ffffffff]
|
||||
[ 0.013372] Normal [mem 0x0000000100000000-0x000000027fffffff]
|
||||
[ 0.013376] Device empty
|
||||
[ 0.013379] Movable zone start for each node
|
||||
[ 0.013386] Early memory node ranges
|
||||
[ 0.013389] node 0: [mem 0x0000000000001000-0x000000000009afff]
|
||||
[ 0.013392] node 0: [mem 0x0000000000100000-0x000000000fffffff]
|
||||
[ 0.013395] node 0: [mem 0x0000000012151000-0x0000000075eddfff]
|
||||
[ 0.013398] node 0: [mem 0x0000000079a1c000-0x0000000079ae8fff]
|
||||
[ 0.013401] node 0: [mem 0x000000007a1d7000-0x000000007a543fff]
|
||||
[ 0.013403] node 0: [mem 0x000000007a56f000-0x000000007aae1fff]
|
||||
[ 0.013406] node 0: [mem 0x000000007aae4000-0x000000007affffff]
|
||||
[ 0.013408] node 0: [mem 0x0000000100000000-0x000000027fffffff]
|
||||
[ 0.013414] Initmem setup node 0 [mem 0x0000000000001000-0x000000027fffffff]
|
||||
[ 0.013418] On node 0 totalpages: 2051056
|
||||
[ 0.013421] DMA zone: 64 pages used for memmap
|
||||
[ 0.013423] DMA zone: 21 pages reserved
|
||||
[ 0.013425] DMA zone: 3994 pages, LIFO batch:0
|
||||
[ 0.013428] DMA32 zone: 7410 pages used for memmap
|
||||
[ 0.013430] DMA32 zone: 474198 pages, LIFO batch:63
|
||||
[ 0.013432] Normal zone: 24576 pages used for memmap
|
||||
[ 0.013434] Normal zone: 1572864 pages, LIFO batch:63
|
||||
[ 0.013441] On node 0, zone DMA: 1 pages in unavailable ranges
|
||||
[ 0.013530] On node 0, zone DMA: 101 pages in unavailable ranges
|
||||
[ 0.024119] On node 0, zone DMA32: 8529 pages in unavailable ranges
|
||||
[ 0.024476] On node 0, zone DMA32: 15166 pages in unavailable ranges
|
||||
[ 0.024539] On node 0, zone DMA32: 1774 pages in unavailable ranges
|
||||
[ 0.024574] On node 0, zone DMA32: 43 pages in unavailable ranges
|
||||
[ 0.024605] On node 0, zone DMA32: 2 pages in unavailable ranges
|
||||
[ 0.025877] On node 0, zone Normal: 20480 pages in unavailable ranges
|
||||
[ 0.025903] Reserving Intel graphics memory at [mem 0x7c000000-0x7fffffff]
|
||||
[ 0.026330] ACPI: PM-Timer IO Port: 0x408
|
||||
[ 0.026336] ACPI: Local APIC address 0xfee00000
|
||||
[ 0.026349] ACPI: LAPIC_NMI (acpi_id[0x01] high level lint[0x1])
|
||||
[ 0.026354] ACPI: LAPIC_NMI (acpi_id[0x02] high level lint[0x1])
|
||||
[ 0.026356] ACPI: LAPIC_NMI (acpi_id[0x03] high level lint[0x1])
|
||||
[ 0.026359] ACPI: LAPIC_NMI (acpi_id[0x04] high level lint[0x1])
|
||||
[ 0.026397] IOAPIC[0]: apic_id 1, version 32, address 0xfec00000, GSI 0-119
|
||||
[ 0.026403] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
|
||||
[ 0.026407] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
|
||||
[ 0.026411] ACPI: IRQ0 used by override.
|
||||
[ 0.026414] ACPI: IRQ9 used by override.
|
||||
[ 0.026417] Using ACPI (MADT) for SMP configuration information
|
||||
[ 0.026422] ACPI: HPET id: 0x8086a701 base: 0xfed00000
|
||||
[ 0.026432] TSC deadline timer available
|
||||
[ 0.026436] smpboot: Allowing 4 CPUs, 0 hotplug CPUs
|
||||
[ 0.026500] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
|
||||
[ 0.026506] PM: hibernation: Registered nosave memory: [mem 0x0009b000-0x0009bfff]
|
||||
[ 0.026509] PM: hibernation: Registered nosave memory: [mem 0x0009c000-0x0009ffff]
|
||||
[ 0.026512] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000dffff]
|
||||
[ 0.026514] PM: hibernation: Registered nosave memory: [mem 0x000e0000-0x000fffff]
|
||||
[ 0.026519] PM: hibernation: Registered nosave memory: [mem 0x10000000-0x12150fff]
|
||||
[ 0.026524] PM: hibernation: Registered nosave memory: [mem 0x75ede000-0x79a1bfff]
|
||||
[ 0.026530] PM: hibernation: Registered nosave memory: [mem 0x79ae9000-0x79e4ffff]
|
||||
[ 0.026532] PM: hibernation: Registered nosave memory: [mem 0x79e50000-0x7a1d6fff]
|
||||
[ 0.026537] PM: hibernation: Registered nosave memory: [mem 0x7a544000-0x7a544fff]
|
||||
[ 0.026540] PM: hibernation: Registered nosave memory: [mem 0x7a545000-0x7a56efff]
|
||||
[ 0.026545] PM: hibernation: Registered nosave memory: [mem 0x7aae2000-0x7aae3fff]
|
||||
[ 0.026550] PM: hibernation: Registered nosave memory: [mem 0x7b000000-0x7fffffff]
|
||||
[ 0.026553] PM: hibernation: Registered nosave memory: [mem 0x80000000-0xcfffffff]
|
||||
[ 0.026556] PM: hibernation: Registered nosave memory: [mem 0xd0000000-0xd0ffffff]
|
||||
[ 0.026558] PM: hibernation: Registered nosave memory: [mem 0xd1000000-0xdfffffff]
|
||||
[ 0.026561] PM: hibernation: Registered nosave memory: [mem 0xe0000000-0xefffffff]
|
||||
[ 0.026563] PM: hibernation: Registered nosave memory: [mem 0xf0000000-0xfe041fff]
|
||||
[ 0.026566] PM: hibernation: Registered nosave memory: [mem 0xfe042000-0xfe044fff]
|
||||
[ 0.026568] PM: hibernation: Registered nosave memory: [mem 0xfe045000-0xfe8fffff]
|
||||
[ 0.026570] PM: hibernation: Registered nosave memory: [mem 0xfe900000-0xfe902fff]
|
||||
[ 0.026573] PM: hibernation: Registered nosave memory: [mem 0xfe903000-0xfebfffff]
|
||||
[ 0.026575] PM: hibernation: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
|
||||
[ 0.026578] PM: hibernation: Registered nosave memory: [mem 0xfec01000-0xfed00fff]
|
||||
[ 0.026580] PM: hibernation: Registered nosave memory: [mem 0xfed01000-0xfed01fff]
|
||||
[ 0.026583] PM: hibernation: Registered nosave memory: [mem 0xfed02000-0xfedfffff]
|
||||
[ 0.026585] PM: hibernation: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
|
||||
[ 0.026588] PM: hibernation: Registered nosave memory: [mem 0xfee01000-0xfeffffff]
|
||||
[ 0.026590] PM: hibernation: Registered nosave memory: [mem 0xff000000-0xffffffff]
|
||||
[ 0.026595] [mem 0x80000000-0xcfffffff] available for PCI devices
|
||||
[ 0.026598] Booting paravirtualized kernel on bare hardware
|
||||
[ 0.026605] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
|
||||
[ 0.034582] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:4 nr_cpu_ids:4 nr_node_ids:1
|
||||
[ 0.035320] percpu: Embedded 63 pages/cpu s221184 r8192 d28672 u524288
|
||||
[ 0.035340] pcpu-alloc: s221184 r8192 d28672 u524288 alloc=1*2097152
|
||||
[ 0.035344] pcpu-alloc: [0] 0 1 2 3
|
||||
[ 0.035424] Built 1 zonelists, mobility grouping on. Total pages: 2018985
|
||||
[ 0.035428] Policy zone: Normal
|
||||
[ 0.035433] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-5.10.0-21-amd64 root=UUID=8f44f8e0-54ae-4014-8f98-e6e3047946e2 ro isolcpus=1-3,5-7
|
||||
[ 0.035517] Housekeeping: nohz_full= or isolcpus= incorrect CPU range
|
||||
[ 0.037479] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
|
||||
[ 0.038458] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)
|
||||
[ 0.038543] mem auto-init: stack:off, heap alloc:on, heap free:off
|
||||
[ 0.072784] Memory: 1949636K/8204224K available (12295K kernel code, 2537K rwdata, 7560K rodata, 2660K init, 5468K bss, 275852K reserved, 0K cma-reserved)
|
||||
[ 0.073866] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
|
||||
[ 0.073924] ftrace: allocating 36545 entries in 143 pages
|
||||
[ 0.104285] ftrace: allocated 143 pages with 5 groups
|
||||
[ 0.104639] rcu: Hierarchical RCU implementation.
|
||||
[ 0.104644] rcu: RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=4.
|
||||
[ 0.104647] Rude variant of Tasks RCU enabled.
|
||||
[ 0.104649] Tracing variant of Tasks RCU enabled.
|
||||
[ 0.104652] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
|
||||
[ 0.104655] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
|
||||
[ 0.115022] NR_IRQS: 524544, nr_irqs: 1024, preallocated irqs: 16
|
||||
[ 0.115483] random: crng init done
|
||||
[ 0.118057] Console: colour VGA+ 80x25
|
||||
[ 0.134781] printk: console [tty0] enabled
|
||||
[ 0.134900] ACPI: Core revision 20200925
|
||||
[ 0.135306] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 99544814920 ns
|
||||
[ 0.135500] APIC: Switch to symmetric I/O mode setup
|
||||
[ 0.136895] x2apic: IRQ remapping doesn't support X2APIC mode
|
||||
[ 0.141817] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
|
||||
[ 0.159458] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x16f8873b2b5, max_idle_ns: 440795270785 ns
|
||||
[ 0.159571] Calibrating delay loop (skipped), value calculated using timer frequency.. 3187.20 BogoMIPS (lpj=6374400)
|
||||
[ 0.159679] pid_max: default: 32768 minimum: 301
|
||||
[ 0.159820] LSM: Security Framework initializing
|
||||
[ 0.159923] Yama: disabled by default; enable with sysctl kernel.yama.*
|
||||
[ 0.160063] AppArmor: AppArmor initialized
|
||||
[ 0.160146] TOMOYO Linux initialized
|
||||
[ 0.160288] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
|
||||
[ 0.160415] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
|
||||
[ 0.161126] mce: CPU0: Thermal monitoring enabled (TM1)
|
||||
[ 0.161301] Last level iTLB entries: 4KB 48, 2MB 0, 4MB 0
|
||||
[ 0.161381] Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0
|
||||
[ 0.161467] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
|
||||
[ 0.161568] Spectre V2 : Mitigation: Retpolines
|
||||
[ 0.161649] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
|
||||
[ 0.161746] Spectre V2 : Spectre v2 / SpectreRSB : Filling RSB on VMEXIT
|
||||
[ 0.161829] Spectre V2 : Enabling Restricted Speculation for firmware calls
|
||||
[ 0.161915] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
|
||||
[ 0.181638] Freeing SMP alternatives memory: 32K
|
||||
[ 0.184907] smpboot: CPU0: Intel(R) Atom(TM) Processor E3950 @ 1.60GHz (family: 0x6, model: 0x5c, stepping: 0x9)
|
||||
[ 0.185382] Performance Events: PEBS fmt3+, Goldmont events, 32-deep LBR, full-width counters, Intel PMU driver.
|
||||
[ 0.185514] ... version: 4
|
||||
[ 0.185591] ... bit width: 48
|
||||
[ 0.185670] ... generic registers: 4
|
||||
[ 0.185750] ... value mask: 0000ffffffffffff
|
||||
[ 0.185831] ... max period: 00007fffffffffff
|
||||
[ 0.185910] ... fixed-purpose events: 3
|
||||
[ 0.185987] ... event mask: 000000070000000f
|
||||
[ 0.186253] rcu: Hierarchical SRCU implementation.
|
||||
[ 0.187401] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
|
||||
[ 0.187565] smp: Bringing up secondary CPUs ...
|
||||
[ 0.187565] x86: Booting SMP configuration:
|
||||
[ 0.187565] .... node #0, CPUs: #1 #2 #3
|
||||
[ 0.188289] smp: Brought up 1 node, 4 CPUs
|
||||
[ 0.188289] smpboot: Max logical packages: 1
|
||||
[ 0.188289] smpboot: Total of 4 processors activated (12748.80 BogoMIPS)
|
||||
[ 0.212255] node 0 deferred pages initialised in 24ms
|
||||
[ 0.212403] devtmpfs: initialized
|
||||
[ 0.212403] x86/mm: Memory block size: 128MB
|
||||
[ 0.215634] PM: Registering ACPI NVS region [mem 0x79ae9000-0x79e4ffff] (3567616 bytes)
|
||||
[ 0.215851] PM: Registering ACPI NVS region [mem 0x7a544000-0x7a544fff] (4096 bytes)
|
||||
[ 0.216028] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
|
||||
[ 0.216150] futex hash table entries: 1024 (order: 4, 65536 bytes, linear)
|
||||
[ 0.216363] pinctrl core: initialized pinctrl subsystem
|
||||
[ 0.216866] NET: Registered protocol family 16
|
||||
[ 0.217323] DMA: preallocated 1024 KiB GFP_KERNEL pool for atomic allocations
|
||||
[ 0.217687] DMA: preallocated 1024 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
|
||||
[ 0.218061] DMA: preallocated 1024 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
|
||||
[ 0.218209] audit: initializing netlink subsys (disabled)
|
||||
[ 0.218345] audit: type=2000 audit(1676125833.080:1): state=initialized audit_enabled=0 res=1
|
||||
[ 0.218345] thermal_sys: Registered thermal governor 'fair_share'
|
||||
[ 0.218345] thermal_sys: Registered thermal governor 'bang_bang'
|
||||
[ 0.218345] thermal_sys: Registered thermal governor 'step_wise'
|
||||
[ 0.218345] thermal_sys: Registered thermal governor 'user_space'
|
||||
[ 0.218345] thermal_sys: Registered thermal governor 'power_allocator'
|
||||
[ 0.218345] cpuidle: using governor ladder
|
||||
[ 0.219664] cpuidle: using governor menu
|
||||
[ 0.219675] ACPI: bus type PCI registered
|
||||
[ 0.219762] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
|
||||
[ 0.219762] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
|
||||
[ 0.219839] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
|
||||
[ 0.219962] PCI: Using configuration type 1 for base access
|
||||
[ 0.220504] mtrr: your CPUs had inconsistent variable MTRR settings
|
||||
[ 0.220587] mtrr: probably your BIOS does not setup all CPUs.
|
||||
[ 0.220668] mtrr: corrected configuration.
|
||||
[ 0.222155] Kprobes globally optimized
|
||||
[ 0.222155] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
|
||||
[ 0.222155] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
|
||||
[ 0.560381] ACPI: Added _OSI(Module Device)
|
||||
[ 0.560381] ACPI: Added _OSI(Processor Device)
|
||||
[ 0.560381] ACPI: Added _OSI(3.0 _SCP Extensions)
|
||||
[ 0.560381] ACPI: Added _OSI(Processor Aggregator Device)
|
||||
[ 0.560381] ACPI: Added _OSI(Linux-Dell-Video)
|
||||
[ 0.560381] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
|
||||
[ 0.560381] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
|
||||
[ 0.575456] ACPI: 8 ACPI AML tables successfully acquired and loaded
|
||||
[ 0.580266] ACPI: Dynamic OEM Table Load:
|
||||
[ 0.580362] ACPI: SSDT 0xFFFF88A880A86200 000190 (v02 PmRef Cpu0Cst 00003001 INTL 20160930)
|
||||
[ 0.582016] ACPI: Dynamic OEM Table Load:
|
||||
[ 0.582103] ACPI: SSDT 0xFFFF88A880A86000 0001E6 (v02 PmRef ApIst 00003000 INTL 20160930)
|
||||
[ 0.583416] ACPI: Dynamic OEM Table Load:
|
||||
[ 0.583506] ACPI: SSDT 0xFFFF88A8808AED00 0000C9 (v02 PmRef ApCst 00003000 INTL 20160930)
|
||||
[ 0.586388] ACPI: Interpreter enabled
|
||||
[ 0.586514] ACPI: (supports S0 S3 S4 S5)
|
||||
[ 0.586595] ACPI: Using IOAPIC for interrupt routing
|
||||
[ 0.586734] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
|
||||
[ 0.587423] ACPI: Enabled 12 GPEs in block 00 to 7F
|
||||
[ 0.602973] ACPI: Power Resource [FN00] (on)
|
||||
[ 0.604335] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
|
||||
[ 0.604429] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
|
||||
[ 0.605898] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME AER PCIeCapability LTR]
|
||||
[ 0.607373] PCI host bridge to bus 0000:00
|
||||
[ 0.607456] pci_bus 0000:00: root bus resource [io 0x0070-0x0077]
|
||||
[ 0.607538] pci_bus 0000:00: root bus resource [io 0x0000-0x006f window]
|
||||
[ 0.607571] pci_bus 0000:00: root bus resource [io 0x0078-0x0cf7 window]
|
||||
[ 0.607655] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
|
||||
[ 0.607740] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
|
||||
[ 0.607842] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000dffff window]
|
||||
[ 0.610521] pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000fffff window]
|
||||
[ 0.610617] pci_bus 0000:00: root bus resource [mem 0x7c000001-0x7fffffff window]
|
||||
[ 0.610714] pci_bus 0000:00: root bus resource [mem 0x7b800001-0x7bffffff window]
|
||||
[ 0.610811] pci_bus 0000:00: root bus resource [mem 0x80000000-0xcfffffff window]
|
||||
[ 0.610908] pci_bus 0000:00: root bus resource [mem 0xe0000000-0xefffffff window]
|
||||
[ 0.611004] pci_bus 0000:00: root bus resource [mem 0x280000000-0x7fffffffff window]
|
||||
[ 0.611104] pci_bus 0000:00: root bus resource [bus 00-ff]
|
||||
[ 0.611215] pci 0000:00:00.0: [8086:5af0] type 00 class 0x060000
|
||||
[ 0.611836] pci 0000:00:02.0: [8086:5a84] type 00 class 0x030000
|
||||
[ 0.611934] pci 0000:00:02.0: reg 0x10: [mem 0xc0000000-0xc0ffffff 64bit]
|
||||
[ 0.612027] pci 0000:00:02.0: reg 0x18: [mem 0xb0000000-0xbfffffff 64bit pref]
|
||||
[ 0.612129] pci 0000:00:02.0: reg 0x20: [io 0xf000-0xf03f]
|
||||
[ 0.612761] pci 0000:00:0e.0: [8086:5a98] type 00 class 0x040300
|
||||
[ 0.612864] pci 0000:00:0e.0: reg 0x10: [mem 0x7ffff00000-0x7ffff03fff 64bit]
|
||||
[ 0.612975] pci 0000:00:0e.0: reg 0x20: [mem 0x7fffe00000-0x7fffefffff 64bit]
|
||||
[ 0.613126] pci 0000:00:0e.0: PME# supported from D0 D3hot D3cold
|
||||
[ 0.613750] pci 0000:00:0f.0: [8086:5a9a] type 00 class 0x078000
|
||||
[ 0.613863] pci 0000:00:0f.0: reg 0x10: [mem 0xc1516000-0xc1516fff 64bit]
|
||||
[ 0.614062] pci 0000:00:0f.0: PME# supported from D3hot
|
||||
[ 0.614587] pci 0000:00:0f.1: [8086:5a9c] type 00 class 0x078000
|
||||
[ 0.614700] pci 0000:00:0f.1: reg 0x10: [mem 0xc1515000-0xc1515fff 64bit]
|
||||
[ 0.614906] pci 0000:00:0f.1: PME# supported from D3hot
|
||||
[ 0.615412] pci 0000:00:0f.2: [8086:5a9e] type 00 class 0x078000
|
||||
[ 0.615522] pci 0000:00:0f.2: reg 0x10: [mem 0xc1514000-0xc1514fff 64bit]
|
||||
[ 0.615692] pci 0000:00:0f.2: PME# supported from D3hot
|
||||
[ 0.616200] pci 0000:00:12.0: [8086:5ae3] type 00 class 0x010601
|
||||
[ 0.616299] pci 0000:00:12.0: reg 0x10: [mem 0xc1510000-0xc1511fff]
|
||||
[ 0.616388] pci 0000:00:12.0: reg 0x14: [mem 0xc1513000-0xc15130ff]
|
||||
[ 0.616479] pci 0000:00:12.0: reg 0x18: [io 0xf090-0xf097]
|
||||
[ 0.616568] pci 0000:00:12.0: reg 0x1c: [io 0xf080-0xf083]
|
||||
[ 0.616657] pci 0000:00:12.0: reg 0x20: [io 0xf060-0xf07f]
|
||||
[ 0.616746] pci 0000:00:12.0: reg 0x24: [mem 0xc1512000-0xc15127ff]
|
||||
[ 0.616875] pci 0000:00:12.0: PME# supported from D3hot
|
||||
[ 0.617391] pci 0000:00:13.0: [8086:5ad9] type 01 class 0x060400
|
||||
[ 0.617579] pci 0000:00:13.0: PME# supported from D0 D3hot D3cold
|
||||
[ 0.617686] pci 0000:00:13.0: PTM enabled (root), 4ns granularity
|
||||
[ 0.618224] pci 0000:00:13.2: [8086:5ada] type 01 class 0x060400
|
||||
[ 0.618410] pci 0000:00:13.2: PME# supported from D0 D3hot D3cold
|
||||
[ 0.618516] pci 0000:00:13.2: PTM enabled (root), 4ns granularity
|
||||
[ 0.619046] pci 0000:00:13.3: [8086:5adb] type 01 class 0x060400
|
||||
[ 0.619230] pci 0000:00:13.3: PME# supported from D0 D3hot D3cold
|
||||
[ 0.619338] pci 0000:00:13.3: PTM enabled (root), 4ns granularity
|
||||
[ 0.619897] pci 0000:00:15.0: [8086:5aa8] type 00 class 0x0c0330
|
||||
[ 0.620003] pci 0000:00:15.0: reg 0x10: [mem 0xc1500000-0xc150ffff 64bit]
|
||||
[ 0.620168] pci 0000:00:15.0: PME# supported from D3hot D3cold
|
||||
[ 0.620706] pci 0000:00:16.0: [8086:5aac] type 00 class 0x118000
|
||||
[ 0.620811] pci 0000:00:16.0: reg 0x10: [mem 0x7ffff1c000-0x7ffff1cfff 64bit]
|
||||
[ 0.620906] pci 0000:00:16.0: reg 0x18: [mem 0x7ffff1b000-0x7ffff1bfff 64bit]
|
||||
[ 0.621470] pci 0000:00:16.1: [8086:5aae] type 00 class 0x118000
|
||||
[ 0.621573] pci 0000:00:16.1: reg 0x10: [mem 0x7ffff1a000-0x7ffff1afff 64bit]
|
||||
[ 0.621671] pci 0000:00:16.1: reg 0x18: [mem 0x7ffff19000-0x7ffff19fff 64bit]
|
||||
[ 0.622232] pci 0000:00:16.2: [8086:5ab0] type 00 class 0x118000
|
||||
[ 0.622336] pci 0000:00:16.2: reg 0x10: [mem 0x7ffff18000-0x7ffff18fff 64bit]
|
||||
[ 0.622432] pci 0000:00:16.2: reg 0x18: [mem 0x7ffff17000-0x7ffff17fff 64bit]
|
||||
[ 0.622990] pci 0000:00:16.3: [8086:5ab2] type 00 class 0x118000
|
||||
[ 0.623094] pci 0000:00:16.3: reg 0x10: [mem 0x7ffff16000-0x7ffff16fff 64bit]
|
||||
[ 0.623191] pci 0000:00:16.3: reg 0x18: [mem 0x7ffff15000-0x7ffff15fff 64bit]
|
||||
[ 0.623798] pci 0000:00:17.0: [8086:5ab4] type 00 class 0x118000
|
||||
[ 0.623902] pci 0000:00:17.0: reg 0x10: [mem 0x7ffff14000-0x7ffff14fff 64bit]
|
||||
[ 0.623997] pci 0000:00:17.0: reg 0x18: [mem 0x7ffff13000-0x7ffff13fff 64bit]
|
||||
[ 0.624560] pci 0000:00:17.1: [8086:5ab6] type 00 class 0x118000
|
||||
[ 0.624665] pci 0000:00:17.1: reg 0x10: [mem 0x7ffff12000-0x7ffff12fff 64bit]
|
||||
[ 0.624762] pci 0000:00:17.1: reg 0x18: [mem 0x7ffff11000-0x7ffff11fff 64bit]
|
||||
[ 0.625323] pci 0000:00:17.2: [8086:5ab8] type 00 class 0x118000
|
||||
[ 0.625425] pci 0000:00:17.2: reg 0x10: [mem 0x7ffff10000-0x7ffff10fff 64bit]
|
||||
[ 0.625522] pci 0000:00:17.2: reg 0x18: [mem 0x7ffff0f000-0x7ffff0ffff 64bit]
|
||||
[ 0.626084] pci 0000:00:17.3: [8086:5aba] type 00 class 0x118000
|
||||
[ 0.626186] pci 0000:00:17.3: reg 0x10: [mem 0x7ffff0e000-0x7ffff0efff 64bit]
|
||||
[ 0.626282] pci 0000:00:17.3: reg 0x18: [mem 0x7ffff0d000-0x7ffff0dfff 64bit]
|
||||
[ 0.626854] pci 0000:00:18.0: [8086:5abc] type 00 class 0x118000
|
||||
[ 0.626958] pci 0000:00:18.0: reg 0x10: [mem 0x7ffff0c000-0x7ffff0cfff 64bit]
|
||||
[ 0.627053] pci 0000:00:18.0: reg 0x18: [mem 0x7ffff0b000-0x7ffff0bfff 64bit]
|
||||
[ 0.627625] pci 0000:00:18.1: [8086:5abe] type 00 class 0x118000
|
||||
[ 0.627727] pci 0000:00:18.1: reg 0x10: [mem 0x7ffff0a000-0x7ffff0afff 64bit]
|
||||
[ 0.627824] pci 0000:00:18.1: reg 0x18: [mem 0x7ffff09000-0x7ffff09fff 64bit]
|
||||
[ 0.628392] pci 0000:00:18.2: [8086:5ac0] type 00 class 0x118000
|
||||
[ 0.628494] pci 0000:00:18.2: reg 0x10: [mem 0xfea10000-0xfea10fff 64bit]
|
||||
[ 0.628590] pci 0000:00:18.2: reg 0x18: [mem 0x00000000-0x00000fff 64bit]
|
||||
[ 0.629159] pci 0000:00:18.3: [8086:5aee] type 00 class 0x118000
|
||||
[ 0.629262] pci 0000:00:18.3: reg 0x10: [mem 0x7ffff08000-0x7ffff08fff 64bit]
|
||||
[ 0.629360] pci 0000:00:18.3: reg 0x18: [mem 0x7ffff07000-0x7ffff07fff 64bit]
|
||||
[ 0.629959] pci 0000:00:1a.0: [8086:5ac8] type 00 class 0x0c8000
|
||||
[ 0.630063] pci 0000:00:1a.0: reg 0x10: [mem 0x7ffff06000-0x7ffff06fff 64bit]
|
||||
[ 0.630160] pci 0000:00:1a.0: reg 0x18: [mem 0x7ffff05000-0x7ffff05fff 64bit]
|
||||
[ 0.630306] pci 0000:00:1a.0: PME# supported from D0 D3hot
|
||||
[ 0.630843] pci 0000:00:1f.0: [8086:5ae8] type 00 class 0x060100
|
||||
[ 0.631485] pci 0000:00:1f.1: [8086:5ad4] type 00 class 0x0c0500
|
||||
[ 0.631629] pci 0000:00:1f.1: reg 0x10: [mem 0x7ffff04000-0x7ffff040ff 64bit]
|
||||
[ 0.631791] pci 0000:00:1f.1: reg 0x20: [io 0xf040-0xf05f]
|
||||
[ 0.632490] pci 0000:01:00.0: [8086:1539] type 00 class 0x020000
|
||||
[ 0.632626] pci 0000:01:00.0: reg 0x10: [mem 0xc1400000-0xc141ffff]
|
||||
[ 0.632760] pci 0000:01:00.0: reg 0x18: [io 0xe000-0xe01f]
|
||||
[ 0.632878] pci 0000:01:00.0: reg 0x1c: [mem 0xc1420000-0xc1423fff]
|
||||
[ 0.633162] pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
|
||||
[ 0.633484] pci 0000:00:13.0: PCI bridge to [bus 01]
|
||||
[ 0.633571] pci 0000:00:13.0: bridge window [io 0xe000-0xefff]
|
||||
[ 0.633655] pci 0000:00:13.0: bridge window [mem 0xc1400000-0xc14fffff]
|
||||
[ 0.633874] pci 0000:02:00.0: [8086:1539] type 00 class 0x020000
|
||||
[ 0.634006] pci 0000:02:00.0: reg 0x10: [mem 0xc1300000-0xc131ffff]
|
||||
[ 0.634138] pci 0000:02:00.0: reg 0x18: [io 0xd000-0xd01f]
|
||||
[ 0.634257] pci 0000:02:00.0: reg 0x1c: [mem 0xc1320000-0xc1323fff]
|
||||
[ 0.634540] pci 0000:02:00.0: PME# supported from D0 D3hot D3cold
|
||||
[ 0.634853] pci 0000:00:13.2: PCI bridge to [bus 02]
|
||||
[ 0.634937] pci 0000:00:13.2: bridge window [io 0xd000-0xdfff]
|
||||
[ 0.635020] pci 0000:00:13.2: bridge window [mem 0xc1300000-0xc13fffff]
|
||||
[ 0.635235] pci 0000:03:00.0: [8086:1536] type 00 class 0x020000
|
||||
[ 0.635369] pci 0000:03:00.0: reg 0x10: [mem 0xc1100000-0xc11fffff]
|
||||
[ 0.635499] pci 0000:03:00.0: reg 0x18: [io 0xc000-0xc01f]
|
||||
[ 0.635607] pci 0000:03:00.0: reg 0x1c: [mem 0xc1200000-0xc1203fff]
|
||||
[ 0.635754] pci 0000:03:00.0: reg 0x30: [mem 0xc1000000-0xc10fffff pref]
|
||||
[ 0.636004] pci 0000:03:00.0: PME# supported from D0 D3hot D3cold
|
||||
[ 0.636322] pci 0000:00:13.3: PCI bridge to [bus 03]
|
||||
[ 0.636407] pci 0000:00:13.3: bridge window [io 0xc000-0xcfff]
|
||||
[ 0.636491] pci 0000:00:13.3: bridge window [mem 0xc1000000-0xc12fffff]
|
||||
[ 0.637620] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 10 11 12 14 *15), disabled.
|
||||
[ 0.637849] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 10 11 12 14 *15), disabled.
|
||||
[ 0.638070] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 10 11 12 14 *15), disabled.
|
||||
[ 0.638293] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 10 11 12 14 *15), disabled.
|
||||
[ 0.638515] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 10 11 12 14 *15), disabled.
|
||||
[ 0.638735] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 10 11 12 14 *15), disabled.
|
||||
[ 0.638955] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 10 11 12 14 *15), disabled.
|
||||
[ 0.639176] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 10 11 12 14 *15), disabled.
|
||||
[ 0.640514] iommu: Default domain type: Translated
|
||||
[ 0.643586] pci 0000:00:02.0: vgaarb: setting as boot VGA device
|
||||
[ 0.643671] pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
|
||||
[ 0.643783] pci 0000:00:02.0: vgaarb: bridge control possible
|
||||
[ 0.643866] vgaarb: loaded
|
||||
[ 0.643866] EDAC MC: Ver: 3.0.0
|
||||
[ 0.643984] NetLabel: Initializing
|
||||
[ 0.643984] NetLabel: domain hash size = 128
|
||||
[ 0.644010] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO
|
||||
[ 0.644122] NetLabel: unlabeled traffic allowed by default
|
||||
[ 0.644205] PCI: Using ACPI for IRQ routing
|
||||
[ 0.673126] PCI: pci_cache_line_size set to 64 bytes
|
||||
[ 0.673255] pci 0000:00:18.2: can't claim BAR 0 [mem 0xfea10000-0xfea10fff 64bit]: no compatible bridge window
|
||||
[ 0.673471] e820: reserve RAM buffer [mem 0x0009b400-0x0009ffff]
|
||||
[ 0.673475] e820: reserve RAM buffer [mem 0x75ede000-0x77ffffff]
|
||||
[ 0.673477] e820: reserve RAM buffer [mem 0x79ae9000-0x7bffffff]
|
||||
[ 0.673479] e820: reserve RAM buffer [mem 0x7a544000-0x7bffffff]
|
||||
[ 0.673482] e820: reserve RAM buffer [mem 0x7aae2000-0x7bffffff]
|
||||
[ 0.673484] e820: reserve RAM buffer [mem 0x7b000000-0x7bffffff]
|
||||
[ 0.673536] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
|
||||
[ 0.673629] hpet0: 8 comparators, 64-bit 19.200000 MHz counter
|
||||
[ 0.675614] clocksource: Switched to clocksource tsc-early
|
||||
[ 0.699159] VFS: Disk quotas dquot_6.6.0
|
||||
[ 0.699276] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
|
||||
[ 0.699645] AppArmor: AppArmor Filesystem Enabled
|
||||
[ 0.699766] pnp: PnP ACPI init
|
||||
[ 0.700166] system 00:00: [io 0x0680-0x069f] has been reserved
|
||||
[ 0.700254] system 00:00: [io 0x0400-0x047f] has been reserved
|
||||
[ 0.700337] system 00:00: [io 0x0500-0x05fe] has been reserved
|
||||
[ 0.700420] system 00:00: [io 0x0600-0x061f] has been reserved
|
||||
[ 0.700504] system 00:00: [io 0x164e-0x164f] has been reserved
|
||||
[ 0.700599] system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
|
||||
[ 0.701304] system 00:01: [mem 0xe0000000-0xefffffff] has been reserved
|
||||
[ 0.701390] system 00:01: [mem 0xfea00000-0xfeafffff] has been reserved
|
||||
[ 0.701473] system 00:01: [mem 0xfed01000-0xfed01fff] has been reserved
|
||||
[ 0.701559] system 00:01: [mem 0xfed03000-0xfed03fff] has been reserved
|
||||
[ 0.701642] system 00:01: [mem 0xfed06000-0xfed06fff] has been reserved
|
||||
[ 0.701727] system 00:01: [mem 0xfed08000-0xfed09fff] has been reserved
|
||||
[ 0.701809] system 00:01: [mem 0xfed80000-0xfedbffff] has been reserved
|
||||
[ 0.701893] system 00:01: [mem 0xfed1c000-0xfed1cfff] has been reserved
|
||||
[ 0.701981] system 00:01: [mem 0xfee00000-0xfeefffff] could not be reserved
|
||||
[ 0.702073] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
|
||||
[ 0.702329] pnp 00:02: Plug and Play ACPI device, IDs PNP0b00 (active)
|
||||
[ 0.702627] pnp: PnP ACPI: found 3 devices
|
||||
[ 0.711043] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
|
||||
[ 0.711279] NET: Registered protocol family 2
|
||||
[ 0.711645] IP idents hash table entries: 131072 (order: 8, 1048576 bytes, linear)
|
||||
[ 0.714554] tcp_listen_portaddr_hash hash table entries: 4096 (order: 4, 65536 bytes, linear)
|
||||
[ 0.717518] TCP established hash table entries: 65536 (order: 7, 524288 bytes, linear)
|
||||
[ 0.718161] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear)
|
||||
[ 0.718741] TCP: Hash tables configured (established 65536 bind 65536)
|
||||
[ 0.718963] UDP hash table entries: 4096 (order: 5, 131072 bytes, linear)
|
||||
[ 0.719173] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes, linear)
|
||||
[ 0.719446] NET: Registered protocol family 1
|
||||
[ 0.719537] NET: Registered protocol family 44
|
||||
[ 0.719693] pci 0000:00:18.2: BAR 0: assigned [mem 0x280000000-0x280000fff 64bit]
|
||||
[ 0.719813] pci 0000:00:18.2: BAR 2: assigned [mem 0x280001000-0x280001fff 64bit]
|
||||
[ 0.719923] pci 0000:00:13.0: PCI bridge to [bus 01]
|
||||
[ 0.720007] pci 0000:00:13.0: bridge window [io 0xe000-0xefff]
|
||||
[ 0.720094] pci 0000:00:13.0: bridge window [mem 0xc1400000-0xc14fffff]
|
||||
[ 0.720184] pci 0000:00:13.2: PCI bridge to [bus 02]
|
||||
[ 0.720266] pci 0000:00:13.2: bridge window [io 0xd000-0xdfff]
|
||||
[ 0.720351] pci 0000:00:13.2: bridge window [mem 0xc1300000-0xc13fffff]
|
||||
[ 0.720440] pci 0000:00:13.3: PCI bridge to [bus 03]
|
||||
[ 0.720521] pci 0000:00:13.3: bridge window [io 0xc000-0xcfff]
|
||||
[ 0.720606] pci 0000:00:13.3: bridge window [mem 0xc1000000-0xc12fffff]
|
||||
[ 0.720698] pci_bus 0000:00: resource 4 [io 0x0070-0x0077]
|
||||
[ 0.720778] pci_bus 0000:00: resource 5 [io 0x0000-0x006f window]
|
||||
[ 0.720859] pci_bus 0000:00: resource 6 [io 0x0078-0x0cf7 window]
|
||||
[ 0.720943] pci_bus 0000:00: resource 7 [io 0x0d00-0xffff window]
|
||||
[ 0.721024] pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000bffff window]
|
||||
[ 0.721108] pci_bus 0000:00: resource 9 [mem 0x000c0000-0x000dffff window]
|
||||
[ 0.721192] pci_bus 0000:00: resource 10 [mem 0x000e0000-0x000fffff window]
|
||||
[ 0.721276] pci_bus 0000:00: resource 11 [mem 0x7c000001-0x7fffffff window]
|
||||
[ 0.721361] pci_bus 0000:00: resource 12 [mem 0x7b800001-0x7bffffff window]
|
||||
[ 0.721445] pci_bus 0000:00: resource 13 [mem 0x80000000-0xcfffffff window]
|
||||
[ 0.721528] pci_bus 0000:00: resource 14 [mem 0xe0000000-0xefffffff window]
|
||||
[ 0.721611] pci_bus 0000:00: resource 15 [mem 0x280000000-0x7fffffffff window]
|
||||
[ 0.721709] pci_bus 0000:01: resource 0 [io 0xe000-0xefff]
|
||||
[ 0.721790] pci_bus 0000:01: resource 1 [mem 0xc1400000-0xc14fffff]
|
||||
[ 0.721874] pci_bus 0000:02: resource 0 [io 0xd000-0xdfff]
|
||||
[ 0.721954] pci_bus 0000:02: resource 1 [mem 0xc1300000-0xc13fffff]
|
||||
[ 0.722038] pci_bus 0000:03: resource 0 [io 0xc000-0xcfff]
|
||||
[ 0.722121] pci_bus 0000:03: resource 1 [mem 0xc1000000-0xc12fffff]
|
||||
[ 0.722381] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
|
||||
[ 0.723117] PCI: CLS 64 bytes, default 64
|
||||
[ 0.723319] Trying to unpack rootfs image as initramfs...
|
||||
[ 1.639045] Freeing initrd memory: 28324K
|
||||
[ 1.639213] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
|
||||
[ 1.639300] software IO TLB: mapped [mem 0x0000000071ede000-0x0000000075ede000] (64MB)
|
||||
[ 1.639461] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x16f8873b2b5, max_idle_ns: 440795270785 ns
|
||||
[ 1.639613] clocksource: Switched to clocksource tsc
|
||||
[ 1.640558] Initialise system trusted keyrings
|
||||
[ 1.640659] Key type blacklist registered
|
||||
[ 1.640850] workingset: timestamp_bits=36 max_order=21 bucket_order=0
|
||||
[ 1.643123] zbud: loaded
|
||||
[ 1.643554] integrity: Platform Keyring initialized
|
||||
[ 1.643669] Key type asymmetric registered
|
||||
[ 1.643749] Asymmetric key parser 'x509' registered
|
||||
[ 1.643845] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 251)
|
||||
[ 1.644057] io scheduler mq-deadline registered
|
||||
[ 1.645573] pcieport 0000:00:13.0: PME: Signaling with IRQ 120
|
||||
[ 1.646006] pcieport 0000:00:13.2: PME: Signaling with IRQ 121
|
||||
[ 1.646424] pcieport 0000:00:13.3: PME: Signaling with IRQ 122
|
||||
[ 1.646681] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
|
||||
[ 1.646786] intel_idle: Please enable MWAIT in BIOS SETUP
|
||||
[ 1.646898] ACPI: \_PR_.CPU0: Found 3 idle states
|
||||
[ 1.648466] ACPI: \_PR_.CPU1: Found 3 idle states
|
||||
[ 1.648958] ACPI: \_PR_.CPU2: Found 3 idle states
|
||||
[ 1.649450] ACPI: \_PR_.CPU3: Found 3 idle states
|
||||
[ 1.650786] thermal LNXTHERM:00: registered as thermal_zone0
|
||||
[ 1.650874] ACPI: Thermal Zone [TZ01] (37 C)
|
||||
[ 1.651269] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
|
||||
[ 1.652622] Linux agpgart interface v0.103
|
||||
[ 1.652782] AMD-Vi: AMD IOMMUv2 functionality not available on this system - This is not a bug.
|
||||
[ 1.653496] i8042: PNP: No PS/2 controller found.
|
||||
[ 1.653857] mousedev: PS/2 mouse device common for all mice
|
||||
[ 1.654004] rtc_cmos 00:02: RTC can wake from S4
|
||||
[ 1.655004] rtc_cmos 00:02: registered as rtc0
|
||||
[ 1.655314] rtc_cmos 00:02: setting system clock to 2023-02-11T14:30:35 UTC (1676125835)
|
||||
[ 1.655463] rtc_cmos 00:02: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
|
||||
[ 1.655600] intel_pstate: Intel P-state driver initializing
|
||||
[ 1.657100] ledtrig-cpu: registered to indicate activity on CPUs
|
||||
[ 1.657821] NET: Registered protocol family 10
|
||||
[ 1.673401] Segment Routing with IPv6
|
||||
[ 1.673527] mip6: Mobile IPv6
|
||||
[ 1.673606] NET: Registered protocol family 17
|
||||
[ 1.674017] mpls_gso: MPLS GSO support
|
||||
[ 1.675019] microcode: sig=0x506c9, pf=0x2, revision=0x40
|
||||
[ 1.675215] microcode: Microcode Update Driver: v2.2.
|
||||
[ 1.675560] resctrl: L2 allocation detected
|
||||
[ 1.675744] IPI shorthand broadcast: enabled
|
||||
[ 1.675843] sched_clock: Marking stable (1655525190, 20118155)->(1678463152, -2819807)
|
||||
[ 1.676369] registered taskstats version 1
|
||||
[ 1.676454] Loading compiled-in X.509 certificates
|
||||
[ 1.739465] Loaded X.509 cert 'Debian Secure Boot CA: 6ccece7e4c6c0d1f6149f3dd27dfcc5cbb419ea1'
|
||||
[ 1.739625] Loaded X.509 cert 'Debian Secure Boot Signer 2022 - linux: 14011249c2675ea8e5148542202005810584b25f'
|
||||
[ 1.739809] zswap: loaded using pool lzo/zbud
|
||||
[ 1.740837] Key type .fscrypt registered
|
||||
[ 1.740924] Key type fscrypt-provisioning registered
|
||||
[ 1.741078] AppArmor: AppArmor sha1 policy hashing enabled
|
||||
[ 1.743475] Freeing unused decrypted memory: 2036K
|
||||
[ 1.744586] Freeing unused kernel image (initmem) memory: 2660K
|
||||
[ 1.787815] Write protecting the kernel read-only data: 22528k
|
||||
[ 1.789198] Freeing unused kernel image (text/rodata gap) memory: 2040K
|
||||
[ 1.789726] Freeing unused kernel image (rodata/data gap) memory: 632K
|
||||
[ 1.856639] x86/mm: Checked W+X mappings: passed, no W+X pages found.
|
||||
[ 1.856738] Run /init as init process
|
||||
[ 1.856819] with arguments:
|
||||
[ 1.856821] /init
|
||||
[ 1.856822] with environment:
|
||||
[ 1.856823] HOME=/
|
||||
[ 1.856824] TERM=linux
|
||||
[ 1.856826] BOOT_IMAGE=/boot/vmlinuz-5.10.0-21-amd64
|
||||
[ 1.856827] isolcpus=1-3,5-7
|
||||
[ 1.976027] ACPI Warning: SystemMemory range 0x00000000FED17080-0x00000000FED17083 conflicts with OpRegion 0x00000000FED17000-0x00000000FED170FF (\_TZ.MBAR) (20200925/utaddress-204)
|
||||
[ 1.976168] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
|
||||
[ 1.976276] intel_pmc_bxt INT34D2:00: Failed to create PMC devices
|
||||
[ 1.991821] intel_pmc_bxt: probe of INT34D2:00 failed with error -16
|
||||
[ 2.001118] idma64 idma64.0: Found Intel integrated DMA 64-bit
|
||||
[ 2.004532] pps_core: LinuxPPS API ver. 1 registered
|
||||
[ 2.004620] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
|
||||
[ 2.005363] idma64 idma64.1: Found Intel integrated DMA 64-bit
|
||||
[ 2.007011] PTP clock support registered
|
||||
[ 2.008635] dca service started, version 1.12.1
|
||||
[ 2.009350] idma64 idma64.2: Found Intel integrated DMA 64-bit
|
||||
[ 2.013546] idma64 idma64.3: Found Intel integrated DMA 64-bit
|
||||
[ 2.017323] idma64 idma64.4: Found Intel integrated DMA 64-bit
|
||||
[ 2.021156] idma64 idma64.5: Found Intel integrated DMA 64-bit
|
||||
[ 2.025078] idma64 idma64.6: Found Intel integrated DMA 64-bit
|
||||
[ 2.028993] idma64 idma64.7: Found Intel integrated DMA 64-bit
|
||||
[ 2.032965] lpc_ich 0000:00:1f.0: I/O space for ACPI uninitialized
|
||||
[ 2.035796] igb: Intel(R) Gigabit Ethernet Network Driver
|
||||
[ 2.035885] igb: Copyright (c) 2007-2014 Intel Corporation.
|
||||
[ 2.039311] i801_smbus 0000:00:1f.1: SMBus using PCI interrupt
|
||||
[ 2.039486] i2c i2c-7: 1/1 memory slots populated (from DMI)
|
||||
[ 2.039981] i2c i2c-7: Successfully instantiated SPD at 0x50
|
||||
[ 2.042227] idma64 idma64.8: Found Intel integrated DMA 64-bit
|
||||
[ 2.052693] dw-apb-uart.8: ttyS0 at MMIO 0x7ffff0c000 (irq = 4, base_baud = 115200) is a 16550A
|
||||
[ 2.054293] idma64 idma64.9: Found Intel integrated DMA 64-bit
|
||||
[ 2.054920] dw-apb-uart.9: ttyS1 at MMIO 0x7ffff0a000 (irq = 5, base_baud = 115200) is a 16550A
|
||||
[ 2.056798] dw-apb-uart.10: ttyS2 at MMIO 0x280000000 (irq = 6, base_baud = 115200) is a 16550A
|
||||
[ 2.058642] dw-apb-uart.11: ttyS3 at MMIO 0x7ffff08000 (irq = 7, base_baud = 115200) is a 16550A
|
||||
[ 2.068013] SCSI subsystem initialized
|
||||
[ 2.073642] pps pps0: new PPS source ptp0
|
||||
[ 2.073893] igb 0000:01:00.0: added PHC on eth0
|
||||
[ 2.073978] igb 0000:01:00.0: Intel(R) Gigabit Ethernet Network Connection
|
||||
[ 2.074068] igb 0000:01:00.0: eth0: (PCIe:2.5Gb/s:Width x1) 00:01:c0:2a:eb:a8
|
||||
[ 2.074151] igb 0000:01:00.0: eth0: PBA No: FFFFFF-0FF
|
||||
[ 2.074233] igb 0000:01:00.0: Using MSI-X interrupts. 2 rx queue(s), 2 tx queue(s)
|
||||
[ 2.075690] ACPI: bus type USB registered
|
||||
[ 2.076108] usbcore: registered new interface driver usbfs
|
||||
[ 2.076218] usbcore: registered new interface driver hub
|
||||
[ 2.077039] usbcore: registered new device driver usb
|
||||
[ 2.090339] libata version 3.00 loaded.
|
||||
[ 2.100425] ahci 0000:00:12.0: version 3.0
|
||||
[ 2.106460] pps pps1: new PPS source ptp1
|
||||
[ 2.106636] igb 0000:02:00.0: added PHC on eth1
|
||||
[ 2.106719] igb 0000:02:00.0: Intel(R) Gigabit Ethernet Network Connection
|
||||
[ 2.106805] igb 0000:02:00.0: eth1: (PCIe:2.5Gb/s:Width x1) 00:01:c0:2a:eb:b4
|
||||
[ 2.106899] igb 0000:02:00.0: eth1: PBA No: FFFFFF-0FF
|
||||
[ 2.106982] igb 0000:02:00.0: Using MSI-X interrupts. 2 rx queue(s), 2 tx queue(s)
|
||||
[ 2.110559] xhci_hcd 0000:00:15.0: xHCI Host Controller
|
||||
[ 2.110656] xhci_hcd 0000:00:15.0: new USB bus registered, assigned bus number 1
|
||||
[ 2.110878] ahci 0000:00:12.0: AHCI 0001.0301 32 slots 1 ports 6 Gbps 0x1 impl SATA mode
|
||||
[ 2.110987] ahci 0000:00:12.0: flags: 64bit ncq sntf pm clo only pmp pio slum part deso sadm sds apst
|
||||
[ 2.111856] xhci_hcd 0000:00:15.0: hcc params 0x200077c1 hci version 0x100 quirks 0x0000000081109810
|
||||
[ 2.113764] xhci_hcd 0000:00:15.0: cache line size of 64 is not supported
|
||||
[ 2.114120] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10
|
||||
[ 2.114187] scsi host0: ahci
|
||||
[ 2.114229] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
|
||||
[ 2.114403] usb usb1: Product: xHCI Host Controller
|
||||
[ 2.114438] ata1: SATA max UDMA/133 abar m2048@0xc1512000 port 0xc1512100 irq 133
|
||||
[ 2.114491] usb usb1: Manufacturer: Linux 5.10.0-21-amd64 xhci-hcd
|
||||
[ 2.114667] usb usb1: SerialNumber: 0000:00:15.0
|
||||
[ 2.115242] hub 1-0:1.0: USB hub found
|
||||
[ 2.115349] hub 1-0:1.0: 8 ports detected
|
||||
[ 2.116471] xhci_hcd 0000:00:15.0: xHCI Host Controller
|
||||
[ 2.116565] xhci_hcd 0000:00:15.0: new USB bus registered, assigned bus number 2
|
||||
[ 2.116668] xhci_hcd 0000:00:15.0: Host supports USB 3.0 SuperSpeed
|
||||
[ 2.116826] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.10
|
||||
[ 2.116927] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
|
||||
[ 2.117024] usb usb2: Product: xHCI Host Controller
|
||||
[ 2.117103] usb usb2: Manufacturer: Linux 5.10.0-21-amd64 xhci-hcd
|
||||
[ 2.117185] usb usb2: SerialNumber: 0000:00:15.0
|
||||
[ 2.117657] hub 2-0:1.0: USB hub found
|
||||
[ 2.117762] hub 2-0:1.0: 7 ports detected
|
||||
[ 2.135018] pps pps2: new PPS source ptp2
|
||||
[ 2.135262] igb 0000:03:00.0: added PHC on eth2
|
||||
[ 2.135348] igb 0000:03:00.0: Intel(R) Gigabit Ethernet Network Connection
|
||||
[ 2.135438] igb 0000:03:00.0: eth2: (PCIe:2.5Gb/s:Width x1) 00:01:c0:2b:dd:82
|
||||
[ 2.135605] igb 0000:03:00.0: eth2: PBA No: 000300-000
|
||||
[ 2.135689] igb 0000:03:00.0: Using MSI-X interrupts. 4 rx queue(s), 4 tx queue(s)
|
||||
[ 2.587735] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
|
||||
[ 2.589306] ata1.00: ATA-9: BIWIN SSD, R0822A, max UDMA/133
|
||||
[ 2.589397] ata1.00: 125045424 sectors, multi 2: LBA48 NCQ (depth 32), AA
|
||||
[ 2.590547] ata1.00: configured for UDMA/133
|
||||
[ 2.590675] ahci 0000:00:12.0: port does not support device sleep
|
||||
[ 2.591229] scsi 0:0:0:0: Direct-Access ATA BIWIN SSD 2A PQ: 0 ANSI: 5
|
||||
[ 2.594395] igb 0000:02:00.0 eno1: renamed from eth1
|
||||
[ 2.606300] sd 0:0:0:0: [sda] 125045424 512-byte logical blocks: (64.0 GB/59.6 GiB)
|
||||
[ 2.606438] sd 0:0:0:0: [sda] Write Protect is off
|
||||
[ 2.606525] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
|
||||
[ 2.606565] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
|
||||
[ 2.632287] igb 0000:03:00.0 enp3s0: renamed from eth2
|
||||
[ 2.646861] sda: sda1 sda2 < sda5 >
|
||||
[ 2.676401] igb 0000:01:00.0 enp1s0: renamed from eth0
|
||||
[ 2.692051] sd 0:0:0:0: [sda] Attached SCSI disk
|
||||
[ 2.771114] PM: Image not found (code -22)
|
||||
[ 2.918798] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
|
||||
[ 2.986255] Not activating Mandatory Access Control as /sbin/tomoyo-init does not exist.
|
||||
[ 3.097928] systemd[1]: Inserted module 'autofs4'
|
||||
[ 3.128913] systemd[1]: systemd 247.3-7+deb11u1 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +ZSTD +SECCOMP +BLKID +ELFUTILS +KMOD +IDN2 -IDN +PCRE2 default-hierarchy=unified)
|
||||
[ 3.148000] systemd[1]: Detected architecture x86-64.
|
||||
[ 3.151298] systemd[1]: Set hostname to <fitlet>.
|
||||
[ 3.330844] systemd[1]: Queued start job for default target Graphical Interface.
|
||||
[ 3.333222] systemd[1]: Created slice system-getty.slice.
|
||||
[ 3.334283] systemd[1]: Created slice system-modprobe.slice.
|
||||
[ 3.335115] systemd[1]: Created slice User and Session Slice.
|
||||
[ 3.335658] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
|
||||
[ 3.336096] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
|
||||
[ 3.336733] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
|
||||
[ 3.337126] systemd[1]: Reached target Local Encrypted Volumes.
|
||||
[ 3.337462] systemd[1]: Reached target Paths.
|
||||
[ 3.337758] systemd[1]: Reached target Remote File Systems.
|
||||
[ 3.338052] systemd[1]: Reached target Slices.
|
||||
[ 3.338612] systemd[1]: Listening on Syslog Socket.
|
||||
[ 3.339109] systemd[1]: Listening on fsck to fsckd communication Socket.
|
||||
[ 3.339519] systemd[1]: Listening on initctl Compatibility Named Pipe.
|
||||
[ 3.340154] systemd[1]: Listening on Journal Audit Socket.
|
||||
[ 3.340650] systemd[1]: Listening on Journal Socket (/dev/log).
|
||||
[ 3.341166] systemd[1]: Listening on Journal Socket.
|
||||
[ 3.342032] systemd[1]: Listening on udev Control Socket.
|
||||
[ 3.342583] systemd[1]: Listening on udev Kernel Socket.
|
||||
[ 3.344562] systemd[1]: Mounting Huge Pages File System...
|
||||
[ 3.346537] systemd[1]: Mounting POSIX Message Queue File System...
|
||||
[ 3.348546] systemd[1]: Mounting Kernel Debug File System...
|
||||
[ 3.350625] systemd[1]: Mounting Kernel Trace File System...
|
||||
[ 3.353281] systemd[1]: Starting Set the console keyboard layout...
|
||||
[ 3.355565] systemd[1]: Starting Create list of static device nodes for the current kernel...
|
||||
[ 3.357901] systemd[1]: Starting Load Kernel Module configfs...
|
||||
[ 3.360224] systemd[1]: Starting Load Kernel Module drm...
|
||||
[ 3.362416] systemd[1]: Starting Load Kernel Module fuse...
|
||||
[ 3.364396] systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped.
|
||||
[ 3.364590] systemd[1]: Condition check resulted in File System Check on Root Device being skipped.
|
||||
[ 3.367941] systemd[1]: Starting Journal Service...
|
||||
[ 3.372942] systemd[1]: Starting Load Kernel Modules...
|
||||
[ 3.375008] systemd[1]: Starting Remount Root and Kernel File Systems...
|
||||
[ 3.377153] systemd[1]: Starting Coldplug All udev Devices...
|
||||
[ 3.380777] systemd[1]: Mounted Huge Pages File System.
|
||||
[ 3.381334] systemd[1]: Mounted POSIX Message Queue File System.
|
||||
[ 3.381795] systemd[1]: Mounted Kernel Debug File System.
|
||||
[ 3.382242] systemd[1]: Mounted Kernel Trace File System.
|
||||
[ 3.383037] systemd[1]: Finished Create list of static device nodes for the current kernel.
|
||||
[ 3.383481] fuse: init (API version 7.32)
|
||||
[ 3.384106] systemd[1]: modprobe@configfs.service: Succeeded.
|
||||
[ 3.384564] systemd[1]: Finished Load Kernel Module configfs.
|
||||
[ 3.385544] systemd[1]: modprobe@fuse.service: Succeeded.
|
||||
[ 3.385969] systemd[1]: Finished Load Kernel Module fuse.
|
||||
[ 3.388213] systemd[1]: Mounting FUSE Control File System...
|
||||
[ 3.390285] systemd[1]: Mounting Kernel Configuration File System...
|
||||
[ 3.399561] EXT4-fs (sda1): re-mounted. Opts: errors=remount-ro
|
||||
[ 3.403058] systemd[1]: Finished Remount Root and Kernel File Systems.
|
||||
[ 3.404715] systemd[1]: Condition check resulted in Rebuild Hardware Database being skipped.
|
||||
[ 3.404923] systemd[1]: Condition check resulted in Platform Persistent Storage Archival being skipped.
|
||||
[ 3.406545] systemd[1]: Starting Load/Save Random Seed...
|
||||
[ 3.411881] systemd[1]: Starting Create System Users...
|
||||
[ 3.414830] systemd[1]: modprobe@drm.service: Succeeded.
|
||||
[ 3.415378] systemd[1]: Finished Load Kernel Module drm.
|
||||
[ 3.417088] systemd[1]: Finished Load Kernel Modules.
|
||||
[ 3.417833] systemd[1]: Mounted FUSE Control File System.
|
||||
[ 3.420069] systemd[1]: Starting Apply Kernel Variables...
|
||||
[ 3.423006] systemd[1]: Mounted Kernel Configuration File System.
|
||||
[ 3.430297] systemd[1]: Finished Load/Save Random Seed.
|
||||
[ 3.431021] systemd[1]: Condition check resulted in First Boot Complete being skipped.
|
||||
[ 3.450412] systemd[1]: Finished Create System Users.
|
||||
[ 3.452842] systemd[1]: Starting Create Static Device Nodes in /dev...
|
||||
[ 3.532317] systemd[1]: Finished Create Static Device Nodes in /dev.
|
||||
[ 3.535879] systemd[1]: Starting Rule-based Manager for Device Events and Files...
|
||||
[ 3.544645] systemd[1]: Started Journal Service.
|
||||
[ 3.564449] systemd-journald[222]: Received client request to flush runtime journal.
|
||||
[ 3.680025] audit: type=1400 audit(1676125837.523:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="nvidia_modprobe" pid=280 comm="apparmor_parser"
|
||||
[ 3.680167] audit: type=1400 audit(1676125837.523:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="nvidia_modprobe//kmod" pid=280 comm="apparmor_parser"
|
||||
[ 3.682657] audit: type=1400 audit(1676125837.523:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/man" pid=278 comm="apparmor_parser"
|
||||
[ 3.682799] audit: type=1400 audit(1676125837.523:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="man_filter" pid=278 comm="apparmor_parser"
|
||||
[ 3.682932] audit: type=1400 audit(1676125837.523:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="man_groff" pid=278 comm="apparmor_parser"
|
||||
[ 3.687463] audit: type=1400 audit(1676125837.527:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="lsb_release" pid=279 comm="apparmor_parser"
|
||||
[ 3.703031] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
|
||||
[ 3.703223] ACPI: Power Button [PWRB]
|
||||
[ 3.703371] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
|
||||
[ 3.703519] ACPI: Power Button [PWRF]
|
||||
[ 3.845503] input: PC Speaker as /devices/platform/pcspkr/input/input2
|
||||
[ 3.855136] RAPL PMU: API unit is 2^-32 Joules, 4 fixed counters, 655360 ms ovfl timer
|
||||
[ 3.855249] RAPL PMU: hw unit of domain pp0-core 2^-14 Joules
|
||||
[ 3.855250] RAPL PMU: hw unit of domain package 2^-14 Joules
|
||||
[ 3.855251] RAPL PMU: hw unit of domain dram 2^-14 Joules
|
||||
[ 3.855252] RAPL PMU: hw unit of domain pp1-gpu 2^-14 Joules
|
||||
[ 3.902468] at24 7-0050: supply vcc not found, using dummy regulator
|
||||
[ 3.905541] at24 7-0050: 256 byte spd EEPROM, read-only
|
||||
[ 3.912136] cryptd: max_cpu_qlen set to 1000
|
||||
[ 3.929018] sd 0:0:0:0: Attached scsi generic sg0 type 0
|
||||
[ 4.088516] SSE version of gcm_enc/dec engaged.
|
||||
[ 4.204265] i915 0000:00:02.0: vgaarb: deactivate vga console
|
||||
[ 4.204681] Adding 998396k swap on /dev/sda5. Priority:-2 extents:1 across:998396k SSFS
|
||||
[ 4.206596] Console: switching to colour dummy device 80x25
|
||||
[ 4.209821] i915 0000:00:02.0: vgaarb: changed VGA decodes: olddecodes=io+mem,decodes=io+mem:owns=io+mem
|
||||
[ 4.211265] i915 0000:00:02.0: firmware: failed to load i915/bxt_dmc_ver1_07.bin (-2)
|
||||
[ 4.211278] firmware_class: See https://wiki.debian.org/Firmware for information about missing firmware
|
||||
[ 4.211284] i915 0000:00:02.0: Direct firmware load for i915/bxt_dmc_ver1_07.bin failed with error -2
|
||||
[ 4.211293] i915 0000:00:02.0: [drm] Failed to load DMC firmware i915/bxt_dmc_ver1_07.bin. Disabling runtime power management.
|
||||
[ 4.211299] i915 0000:00:02.0: [drm] DMC firmware homepage: https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/i915
|
||||
[ 4.372774] EDAC pnd2: b_cr_tolud_pci=080000001 ret=0
|
||||
[ 4.372819] EDAC pnd2: b_cr_touud_lo_pci=080000000 ret=0
|
||||
[ 4.372862] EDAC pnd2: b_cr_touud_hi_pci=000000002 ret=0
|
||||
[ 4.372904] EDAC pnd2: b_cr_asym_mem_region0_mchbar=000000000 ret=0
|
||||
[ 4.372945] EDAC pnd2: b_cr_asym_mem_region1_mchbar=000000000 ret=0
|
||||
[ 4.373017] EDAC pnd2: b_cr_mot_out_base_mchbar=000000000 ret=0
|
||||
[ 4.373060] EDAC pnd2: b_cr_mot_out_mask_mchbar=000000000 ret=0
|
||||
[ 4.373141] EDAC pnd2: b_cr_slice_channel_hash=8000000480000001 ret=0
|
||||
[ 4.373183] EDAC pnd2: b_cr_asym_2way_mem_region_mchbar=000000000 ret=0
|
||||
[ 4.373224] EDAC pnd2: d_cr_drp0=0c000c007 ret=0
|
||||
[ 4.373266] EDAC pnd2: d_cr_drp0=000000000 ret=2
|
||||
[ 4.373307] EDAC pnd2: d_cr_drp0=000000000 ret=2
|
||||
[ 4.373347] EDAC pnd2: d_cr_drp0=000000000 ret=2
|
||||
[ 4.373349] EDAC pnd2: ECC disabled on channel 0
|
||||
[ 4.373359] EDAC pnd2: Failed to register device with error -22.
|
||||
[ 4.548536] EDAC pnd2: b_cr_tolud_pci=080000001 ret=0
|
||||
[ 4.548581] EDAC pnd2: b_cr_touud_lo_pci=080000000 ret=0
|
||||
[ 4.548624] EDAC pnd2: b_cr_touud_hi_pci=000000002 ret=0
|
||||
[ 4.548666] EDAC pnd2: b_cr_asym_mem_region0_mchbar=000000000 ret=0
|
||||
[ 4.548707] EDAC pnd2: b_cr_asym_mem_region1_mchbar=000000000 ret=0
|
||||
[ 4.548749] EDAC pnd2: b_cr_mot_out_base_mchbar=000000000 ret=0
|
||||
[ 4.548790] EDAC pnd2: b_cr_mot_out_mask_mchbar=000000000 ret=0
|
||||
[ 4.548873] EDAC pnd2: b_cr_slice_channel_hash=8000000480000001 ret=0
|
||||
[ 4.548914] EDAC pnd2: b_cr_asym_2way_mem_region_mchbar=000000000 ret=0
|
||||
[ 4.548955] EDAC pnd2: d_cr_drp0=0c000c007 ret=0
|
||||
[ 4.548997] EDAC pnd2: d_cr_drp0=000000000 ret=2
|
||||
[ 4.549038] EDAC pnd2: d_cr_drp0=000000000 ret=2
|
||||
[ 4.549079] EDAC pnd2: d_cr_drp0=000000000 ret=2
|
||||
[ 4.549080] EDAC pnd2: ECC disabled on channel 0
|
||||
[ 4.549089] EDAC pnd2: Failed to register device with error -22.
|
||||
[ 4.562321] i915 0000:00:02.0: [drm] failed to retrieve link info, disabling eDP
|
||||
[ 4.563852] i915 0000:00:02.0: [drm] RC6 context corruption, disabling runtime power management
|
||||
[ 4.567804] [drm] Initialized i915 1.6.0 20200917 for 0000:00:02.0 on minor 0
|
||||
[ 4.569458] ACPI: Video Device [GFX0] (multi-head: yes rom: no post: no)
|
||||
[ 4.569955] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input3
|
||||
[ 4.570432] snd_hda_intel 0000:00:0e.0: bound 0000:00:02.0 (ops i915_audio_component_bind_ops [i915])
|
||||
[ 4.575879] i915 0000:00:02.0: [drm] Cannot find any crtc or sizes
|
||||
[ 4.578681] i915 0000:00:02.0: [drm] Cannot find any crtc or sizes
|
||||
[ 4.581699] i915 0000:00:02.0: [drm] Cannot find any crtc or sizes
|
||||
[ 4.602780] EDAC pnd2: b_cr_tolud_pci=080000001 ret=0
|
||||
[ 4.602825] EDAC pnd2: b_cr_touud_lo_pci=080000000 ret=0
|
||||
[ 4.602869] EDAC pnd2: b_cr_touud_hi_pci=000000002 ret=0
|
||||
[ 4.602910] EDAC pnd2: b_cr_asym_mem_region0_mchbar=000000000 ret=0
|
||||
[ 4.602954] EDAC pnd2: b_cr_asym_mem_region1_mchbar=000000000 ret=0
|
||||
[ 4.602998] EDAC pnd2: b_cr_mot_out_base_mchbar=000000000 ret=0
|
||||
[ 4.603040] EDAC pnd2: b_cr_mot_out_mask_mchbar=000000000 ret=0
|
||||
[ 4.603123] EDAC pnd2: b_cr_slice_channel_hash=8000000480000001 ret=0
|
||||
[ 4.603165] EDAC pnd2: b_cr_asym_2way_mem_region_mchbar=000000000 ret=0
|
||||
[ 4.603207] EDAC pnd2: d_cr_drp0=0c000c007 ret=0
|
||||
[ 4.603248] EDAC pnd2: d_cr_drp0=000000000 ret=2
|
||||
[ 4.603289] EDAC pnd2: d_cr_drp0=000000000 ret=2
|
||||
[ 4.603330] EDAC pnd2: d_cr_drp0=000000000 ret=2
|
||||
[ 4.603332] EDAC pnd2: ECC disabled on channel 0
|
||||
[ 4.603341] EDAC pnd2: Failed to register device with error -22.
|
||||
[ 4.653423] EDAC pnd2: b_cr_tolud_pci=080000001 ret=0
|
||||
[ 4.653469] EDAC pnd2: b_cr_touud_lo_pci=080000000 ret=0
|
||||
[ 4.653510] EDAC pnd2: b_cr_touud_hi_pci=000000002 ret=0
|
||||
[ 4.653552] EDAC pnd2: b_cr_asym_mem_region0_mchbar=000000000 ret=0
|
||||
[ 4.653594] EDAC pnd2: b_cr_asym_mem_region1_mchbar=000000000 ret=0
|
||||
[ 4.653635] EDAC pnd2: b_cr_mot_out_base_mchbar=000000000 ret=0
|
||||
[ 4.653677] EDAC pnd2: b_cr_mot_out_mask_mchbar=000000000 ret=0
|
||||
[ 4.653758] EDAC pnd2: b_cr_slice_channel_hash=8000000480000001 ret=0
|
||||
[ 4.653800] EDAC pnd2: b_cr_asym_2way_mem_region_mchbar=000000000 ret=0
|
||||
[ 4.653842] EDAC pnd2: d_cr_drp0=0c000c007 ret=0
|
||||
[ 4.653883] EDAC pnd2: d_cr_drp0=000000000 ret=2
|
||||
[ 4.653924] EDAC pnd2: d_cr_drp0=000000000 ret=2
|
||||
[ 4.653965] EDAC pnd2: d_cr_drp0=000000000 ret=2
|
||||
[ 4.653967] EDAC pnd2: ECC disabled on channel 0
|
||||
[ 4.653977] EDAC pnd2: Failed to register device with error -22.
|
||||
[ 4.664068] intel_rapl_common: Found RAPL domain package
|
||||
[ 4.664081] intel_rapl_common: Found RAPL domain core
|
||||
[ 4.664086] intel_rapl_common: Found RAPL domain uncore
|
||||
[ 4.664090] intel_rapl_common: Found RAPL domain dram
|
||||
[ 4.667824] ICMPv6: process `snmpd' is using deprecated sysctl (syscall) net.ipv6.neigh.lo.retrans_time - use net.ipv6.neigh.lo.retrans_time_ms instead
|
||||
[ 4.685068] snd_hda_codec_realtek hdaudioC0D0: ALC1150: SKU not ready 0x00000000
|
||||
[ 4.687213] snd_hda_codec_realtek hdaudioC0D0: autoconfig for ALC1150: line_outs=4 (0x14/0x15/0x16/0x17/0x0) type:line
|
||||
[ 4.687227] snd_hda_codec_realtek hdaudioC0D0: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
|
||||
[ 4.687231] snd_hda_codec_realtek hdaudioC0D0: hp_outs=1 (0x1b/0x0/0x0/0x0/0x0)
|
||||
[ 4.687235] snd_hda_codec_realtek hdaudioC0D0: mono: mono_out=0x0
|
||||
[ 4.687239] snd_hda_codec_realtek hdaudioC0D0: dig-out=0x1e/0x0
|
||||
[ 4.687242] snd_hda_codec_realtek hdaudioC0D0: inputs:
|
||||
[ 4.687247] snd_hda_codec_realtek hdaudioC0D0: Front Mic=0x19
|
||||
[ 4.687251] snd_hda_codec_realtek hdaudioC0D0: Rear Mic=0x18
|
||||
[ 4.687254] snd_hda_codec_realtek hdaudioC0D0: Line=0x1a
|
||||
[ 4.779029] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:0e.0/sound/card0/input4
|
||||
[ 4.779137] input: HDA Intel PCH Front Mic as /devices/pci0000:00/0000:00:0e.0/sound/card0/input5
|
||||
[ 4.779224] input: HDA Intel PCH Rear Mic as /devices/pci0000:00/0000:00:0e.0/sound/card0/input6
|
||||
[ 4.779317] input: HDA Intel PCH Line as /devices/pci0000:00/0000:00:0e.0/sound/card0/input7
|
||||
[ 4.779403] input: HDA Intel PCH Line Out Front as /devices/pci0000:00/0000:00:0e.0/sound/card0/input8
|
||||
[ 4.779488] input: HDA Intel PCH Line Out Surround as /devices/pci0000:00/0000:00:0e.0/sound/card0/input9
|
||||
[ 4.779612] input: HDA Intel PCH Line Out CLFE as /devices/pci0000:00/0000:00:0e.0/sound/card0/input10
|
||||
[ 4.779703] input: HDA Intel PCH Line Out Side as /devices/pci0000:00/0000:00:0e.0/sound/card0/input11
|
||||
[ 4.779796] input: HDA Intel PCH Front Headphone as /devices/pci0000:00/0000:00:0e.0/sound/card0/input12
|
||||
[ 4.779883] input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:0e.0/sound/card0/input13
|
||||
[ 4.779968] input: HDA Intel PCH HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:0e.0/sound/card0/input14
|
||||
[ 4.780049] input: HDA Intel PCH HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:0e.0/sound/card0/input15
|
||||
[ 4.780138] input: HDA Intel PCH HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:0e.0/sound/card0/input16
|
||||
[ 4.780218] input: HDA Intel PCH HDMI/DP,pcm=10 as /devices/pci0000:00/0000:00:0e.0/sound/card0/input17
|
||||
[ 5.597590] igb 0000:01:00.0: removed PHC on enp1s0
|
||||
[ 5.710795] igb 0000:03:00.0: removed PHC on enp3s0
|
674
static/assets/fitlet2/dmidecode.txt
Normal file
674
static/assets/fitlet2/dmidecode.txt
Normal file
@ -0,0 +1,674 @@
|
||||
# dmidecode 3.3
|
||||
Getting SMBIOS data from sysfs.
|
||||
SMBIOS 3.0.0 present.
|
||||
Table at 0x000EE0D0.
|
||||
|
||||
Handle 0x0000, DMI type 0, 24 bytes
|
||||
BIOS Information
|
||||
Vendor: American Megatrends Inc.
|
||||
Version: FLT2.0.46.02.00
|
||||
Release Date: 01/04/2021
|
||||
Address: 0xF0000
|
||||
Runtime Size: 64 kB
|
||||
ROM Size: 5 MB
|
||||
Characteristics:
|
||||
PCI is supported
|
||||
BIOS is upgradeable
|
||||
BIOS shadowing is allowed
|
||||
Boot from CD is supported
|
||||
Selectable boot is supported
|
||||
BIOS ROM is socketed
|
||||
EDD is supported
|
||||
5.25"/1.2 MB floppy services are supported (int 13h)
|
||||
3.5"/720 kB floppy services are supported (int 13h)
|
||||
3.5"/2.88 MB floppy services are supported (int 13h)
|
||||
Print screen service is supported (int 5h)
|
||||
Serial services are supported (int 14h)
|
||||
Printer services are supported (int 17h)
|
||||
ACPI is supported
|
||||
USB legacy is supported
|
||||
BIOS boot specification is supported
|
||||
Targeted content distribution is supported
|
||||
UEFI is supported
|
||||
BIOS Revision: 5.12
|
||||
|
||||
Handle 0x0001, DMI type 1, 27 bytes
|
||||
System Information
|
||||
Manufacturer: Compulab
|
||||
Product Name: fitlet2
|
||||
Version: N/A
|
||||
Serial Number: 1210131-01246
|
||||
UUID: 38293b80-6ebe-11eb-b6c5-5b3cc7f44500
|
||||
Wake-up Type: Power Switch
|
||||
SKU Number: N/A
|
||||
Family: N/A
|
||||
|
||||
Handle 0x0002, DMI type 2, 15 bytes
|
||||
Base Board Information
|
||||
Manufacturer: Compulab
|
||||
Product Name: fitlet2
|
||||
Version: 1.3
|
||||
Serial Number: 1200914-02151
|
||||
Asset Tag: N/A
|
||||
Features:
|
||||
Board is a hosting board
|
||||
Board is replaceable
|
||||
Location In Chassis: N/A
|
||||
Chassis Handle: 0x0003
|
||||
Type: Motherboard
|
||||
Contained Object Handles: 0
|
||||
|
||||
Handle 0x0003, DMI type 3, 22 bytes
|
||||
Chassis Information
|
||||
Manufacturer: Compulab
|
||||
Type: Desktop
|
||||
Lock: Not Present
|
||||
Version: N/A
|
||||
Serial Number: N/A
|
||||
Asset Tag: N/A
|
||||
Boot-up State: Safe
|
||||
Power Supply State: Safe
|
||||
Thermal State: Safe
|
||||
Security Status: None
|
||||
OEM Information: 0x00000000
|
||||
Height: Unspecified
|
||||
Number Of Power Cords: 1
|
||||
Contained Elements: 0
|
||||
SKU Number: N/A
|
||||
|
||||
Handle 0x0008, DMI type 8, 9 bytes
|
||||
Port Connector Information
|
||||
Internal Reference Designator: J1A1
|
||||
Internal Connector Type: None
|
||||
External Reference Designator: PS2Mouse
|
||||
External Connector Type: PS/2
|
||||
Port Type: Mouse Port
|
||||
|
||||
Handle 0x0009, DMI type 8, 9 bytes
|
||||
Port Connector Information
|
||||
Internal Reference Designator: J1A1
|
||||
Internal Connector Type: None
|
||||
External Reference Designator: Keyboard
|
||||
External Connector Type: PS/2
|
||||
Port Type: Keyboard Port
|
||||
|
||||
Handle 0x000A, DMI type 8, 9 bytes
|
||||
Port Connector Information
|
||||
Internal Reference Designator: J2A1
|
||||
Internal Connector Type: None
|
||||
External Reference Designator: TV Out
|
||||
External Connector Type: Mini Centronics Type-14
|
||||
Port Type: Other
|
||||
|
||||
Handle 0x000B, DMI type 8, 9 bytes
|
||||
Port Connector Information
|
||||
Internal Reference Designator: J2A2A
|
||||
Internal Connector Type: None
|
||||
External Reference Designator: COM A
|
||||
External Connector Type: DB-9 male
|
||||
Port Type: Serial Port 16550A Compatible
|
||||
|
||||
Handle 0x000C, DMI type 8, 9 bytes
|
||||
Port Connector Information
|
||||
Internal Reference Designator: J2A2B
|
||||
Internal Connector Type: None
|
||||
External Reference Designator: Video
|
||||
External Connector Type: DB-15 female
|
||||
Port Type: Video Port
|
||||
|
||||
Handle 0x000D, DMI type 8, 9 bytes
|
||||
Port Connector Information
|
||||
Internal Reference Designator: J3A1
|
||||
Internal Connector Type: None
|
||||
External Reference Designator: USB1
|
||||
External Connector Type: Access Bus (USB)
|
||||
Port Type: USB
|
||||
|
||||
Handle 0x000E, DMI type 8, 9 bytes
|
||||
Port Connector Information
|
||||
Internal Reference Designator: J3A1
|
||||
Internal Connector Type: None
|
||||
External Reference Designator: USB2
|
||||
External Connector Type: Access Bus (USB)
|
||||
Port Type: USB
|
||||
|
||||
Handle 0x000F, DMI type 8, 9 bytes
|
||||
Port Connector Information
|
||||
Internal Reference Designator: J3A1
|
||||
Internal Connector Type: None
|
||||
External Reference Designator: USB3
|
||||
External Connector Type: Access Bus (USB)
|
||||
Port Type: USB
|
||||
|
||||
Handle 0x0010, DMI type 8, 9 bytes
|
||||
Port Connector Information
|
||||
Internal Reference Designator: J9A1 - TPM HDR
|
||||
Internal Connector Type: Other
|
||||
External Reference Designator: Not Specified
|
||||
External Connector Type: None
|
||||
Port Type: Other
|
||||
|
||||
Handle 0x0011, DMI type 8, 9 bytes
|
||||
Port Connector Information
|
||||
Internal Reference Designator: J9C1 - PCIE DOCKING CONN
|
||||
Internal Connector Type: Other
|
||||
External Reference Designator: Not Specified
|
||||
External Connector Type: None
|
||||
Port Type: Other
|
||||
|
||||
Handle 0x0012, DMI type 8, 9 bytes
|
||||
Port Connector Information
|
||||
Internal Reference Designator: J2B3 - CPU FAN
|
||||
Internal Connector Type: Other
|
||||
External Reference Designator: Not Specified
|
||||
External Connector Type: None
|
||||
Port Type: Other
|
||||
|
||||
Handle 0x0013, DMI type 8, 9 bytes
|
||||
Port Connector Information
|
||||
Internal Reference Designator: J6C2 - EXT HDMI
|
||||
Internal Connector Type: Other
|
||||
External Reference Designator: Not Specified
|
||||
External Connector Type: None
|
||||
Port Type: Other
|
||||
|
||||
Handle 0x0014, DMI type 8, 9 bytes
|
||||
Port Connector Information
|
||||
Internal Reference Designator: J3C1 - GMCH FAN
|
||||
Internal Connector Type: Other
|
||||
External Reference Designator: Not Specified
|
||||
External Connector Type: None
|
||||
Port Type: Other
|
||||
|
||||
Handle 0x0015, DMI type 8, 9 bytes
|
||||
Port Connector Information
|
||||
Internal Reference Designator: J1D1 - ITP
|
||||
Internal Connector Type: Other
|
||||
External Reference Designator: Not Specified
|
||||
External Connector Type: None
|
||||
Port Type: Other
|
||||
|
||||
Handle 0x0016, DMI type 8, 9 bytes
|
||||
Port Connector Information
|
||||
Internal Reference Designator: J9E2 - MDC INTPSR
|
||||
Internal Connector Type: Other
|
||||
External Reference Designator: Not Specified
|
||||
External Connector Type: None
|
||||
Port Type: Other
|
||||
|
||||
Handle 0x0017, DMI type 8, 9 bytes
|
||||
Port Connector Information
|
||||
Internal Reference Designator: J9E4 - MDC INTPSR
|
||||
Internal Connector Type: Other
|
||||
External Reference Designator: Not Specified
|
||||
External Connector Type: None
|
||||
Port Type: Other
|
||||
|
||||
Handle 0x0018, DMI type 8, 9 bytes
|
||||
Port Connector Information
|
||||
Internal Reference Designator: J9E3 - LPC HOT DOCKING
|
||||
Internal Connector Type: Other
|
||||
External Reference Designator: Not Specified
|
||||
External Connector Type: None
|
||||
Port Type: Other
|
||||
|
||||
Handle 0x0019, DMI type 8, 9 bytes
|
||||
Port Connector Information
|
||||
Internal Reference Designator: J9E1 - SCAN MATRIX
|
||||
Internal Connector Type: Other
|
||||
External Reference Designator: Not Specified
|
||||
External Connector Type: None
|
||||
Port Type: Other
|
||||
|
||||
Handle 0x001A, DMI type 8, 9 bytes
|
||||
Port Connector Information
|
||||
Internal Reference Designator: J9G1 - LPC SIDE BAND
|
||||
Internal Connector Type: Other
|
||||
External Reference Designator: Not Specified
|
||||
External Connector Type: None
|
||||
Port Type: Other
|
||||
|
||||
Handle 0x001B, DMI type 8, 9 bytes
|
||||
Port Connector Information
|
||||
Internal Reference Designator: J8F1 - UNIFIED
|
||||
Internal Connector Type: Other
|
||||
External Reference Designator: Not Specified
|
||||
External Connector Type: None
|
||||
Port Type: Other
|
||||
|
||||
Handle 0x001C, DMI type 8, 9 bytes
|
||||
Port Connector Information
|
||||
Internal Reference Designator: J6F1 - LVDS
|
||||
Internal Connector Type: Other
|
||||
External Reference Designator: Not Specified
|
||||
External Connector Type: None
|
||||
Port Type: Other
|
||||
|
||||
Handle 0x001D, DMI type 8, 9 bytes
|
||||
Port Connector Information
|
||||
Internal Reference Designator: J2F1 - LAI FAN
|
||||
Internal Connector Type: Other
|
||||
External Reference Designator: Not Specified
|
||||
External Connector Type: None
|
||||
Port Type: Other
|
||||
|
||||
Handle 0x001E, DMI type 8, 9 bytes
|
||||
Port Connector Information
|
||||
Internal Reference Designator: J2G1 - GFX VID
|
||||
Internal Connector Type: Other
|
||||
External Reference Designator: Not Specified
|
||||
External Connector Type: None
|
||||
Port Type: Other
|
||||
|
||||
Handle 0x001F, DMI type 8, 9 bytes
|
||||
Port Connector Information
|
||||
Internal Reference Designator: J1G6 - AC JACK
|
||||
Internal Connector Type: Other
|
||||
External Reference Designator: Not Specified
|
||||
External Connector Type: None
|
||||
Port Type: Other
|
||||
|
||||
Handle 0x0020, DMI type 10, 6 bytes
|
||||
On Board Device Information
|
||||
Type: Video
|
||||
Status: Enabled
|
||||
Description: To Be Filled By O.E.M.
|
||||
|
||||
Handle 0x0021, DMI type 11, 5 bytes
|
||||
OEM Strings
|
||||
String 1: N/A
|
||||
|
||||
Handle 0x0022, DMI type 12, 5 bytes
|
||||
System Configuration Options
|
||||
Option 1: N/A
|
||||
|
||||
Handle 0x0023, DMI type 20, 35 bytes
|
||||
Memory Device Mapped Address
|
||||
Starting Address: 0x00000000000
|
||||
Ending Address: 0x001FFFFFFFF
|
||||
Range Size: 8 GB
|
||||
Physical Device Handle: 0x0027
|
||||
Memory Array Mapped Address Handle: 0x0028
|
||||
Partition Row Position: Unknown
|
||||
Interleave Position: 1
|
||||
Interleaved Data Depth: 2
|
||||
|
||||
Handle 0x0025, DMI type 32, 20 bytes
|
||||
System Boot Information
|
||||
Status: No errors detected
|
||||
|
||||
Handle 0x0026, DMI type 16, 23 bytes
|
||||
Physical Memory Array
|
||||
Location: System Board Or Motherboard
|
||||
Use: System Memory
|
||||
Error Correction Type: None
|
||||
Maximum Capacity: 8 GB
|
||||
Error Information Handle: Not Provided
|
||||
Number Of Devices: 1
|
||||
|
||||
Handle 0x0027, DMI type 17, 40 bytes
|
||||
Memory Device
|
||||
Array Handle: 0x0026
|
||||
Error Information Handle: Not Provided
|
||||
Total Width: 64 bits
|
||||
Data Width: 64 bits
|
||||
Size: 8 GB
|
||||
Form Factor: SODIMM
|
||||
Set: None
|
||||
Locator: ChannelA-DIMM0
|
||||
Bank Locator: BANK 0
|
||||
Type: DDR3
|
||||
Type Detail: Synchronous
|
||||
Speed: 1600 MT/s
|
||||
Manufacturer: Unde
|
||||
Serial Number: 00000000
|
||||
Asset Tag: 9876543210
|
||||
Part Number: SP008GLSTU160N02
|
||||
Rank: Unknown
|
||||
Configured Memory Speed: 1600 MT/s
|
||||
Minimum Voltage: 1.35 V
|
||||
Maximum Voltage: 1.5 V
|
||||
Configured Voltage: 1.35 V
|
||||
|
||||
Handle 0x0028, DMI type 19, 31 bytes
|
||||
Memory Array Mapped Address
|
||||
Starting Address: 0x00000000000
|
||||
Ending Address: 0x001FFFFFFFF
|
||||
Range Size: 8 GB
|
||||
Physical Array Handle: 0x0026
|
||||
Partition Width: 1
|
||||
|
||||
Handle 0x0029, DMI type 43, 31 bytes
|
||||
TPM Device
|
||||
Vendor ID: CTNI
|
||||
Specification Version: 2.0
|
||||
Firmware Revision: 301.9
|
||||
Description: INTEL
|
||||
Characteristics:
|
||||
Family configurable via platform software support
|
||||
OEM-specific Information: 0x00000000
|
||||
|
||||
Handle 0x002A, DMI type 7, 19 bytes
|
||||
Cache Information
|
||||
Socket Designation: CPU Internal L1
|
||||
Configuration: Enabled, Not Socketed, Level 1
|
||||
Operational Mode: Write Back
|
||||
Location: Internal
|
||||
Installed Size: 224 kB
|
||||
Maximum Size: 224 kB
|
||||
Supported SRAM Types:
|
||||
Synchronous
|
||||
Installed SRAM Type: Synchronous
|
||||
Speed: Unknown
|
||||
Error Correction Type: Parity
|
||||
System Type: Other
|
||||
Associativity: Other
|
||||
|
||||
Handle 0x002B, DMI type 7, 19 bytes
|
||||
Cache Information
|
||||
Socket Designation: CPU Internal L2
|
||||
Configuration: Enabled, Not Socketed, Level 2
|
||||
Operational Mode: Write Back
|
||||
Location: Internal
|
||||
Installed Size: 2 MB
|
||||
Maximum Size: 2 MB
|
||||
Supported SRAM Types:
|
||||
Synchronous
|
||||
Installed SRAM Type: Synchronous
|
||||
Speed: Unknown
|
||||
Error Correction Type: Single-bit ECC
|
||||
System Type: Unified
|
||||
Associativity: 16-way Set-associative
|
||||
|
||||
Handle 0x002C, DMI type 4, 48 bytes
|
||||
Processor Information
|
||||
Socket Designation: SOCKET 0
|
||||
Type: Central Processor
|
||||
Family: Atom
|
||||
Manufacturer: Intel
|
||||
ID: C9 06 05 00 FF FB EB BF
|
||||
Signature: Type 0, Family 6, Model 92, Stepping 9
|
||||
Flags:
|
||||
FPU (Floating-point unit on-chip)
|
||||
VME (Virtual mode extension)
|
||||
DE (Debugging extension)
|
||||
PSE (Page size extension)
|
||||
TSC (Time stamp counter)
|
||||
MSR (Model specific registers)
|
||||
PAE (Physical address extension)
|
||||
MCE (Machine check exception)
|
||||
CX8 (CMPXCHG8 instruction supported)
|
||||
APIC (On-chip APIC hardware supported)
|
||||
SEP (Fast system call)
|
||||
MTRR (Memory type range registers)
|
||||
PGE (Page global enable)
|
||||
MCA (Machine check architecture)
|
||||
CMOV (Conditional move instruction supported)
|
||||
PAT (Page attribute table)
|
||||
PSE-36 (36-bit page size extension)
|
||||
CLFSH (CLFLUSH instruction supported)
|
||||
DS (Debug store)
|
||||
ACPI (ACPI supported)
|
||||
MMX (MMX technology supported)
|
||||
FXSR (FXSAVE and FXSTOR instructions supported)
|
||||
SSE (Streaming SIMD extensions)
|
||||
SSE2 (Streaming SIMD extensions 2)
|
||||
SS (Self-snoop)
|
||||
HTT (Multi-threading)
|
||||
TM (Thermal monitor supported)
|
||||
PBE (Pending break enabled)
|
||||
Version: Intel(R) Atom(TM) Processor E3950 @ 1.60GHz
|
||||
Voltage: 1.2 V
|
||||
External Clock: 100 MHz
|
||||
Max Speed: 2400 MHz
|
||||
Current Speed: 1600 MHz
|
||||
Status: Populated, Enabled
|
||||
Upgrade: Other
|
||||
L1 Cache Handle: 0x002A
|
||||
L2 Cache Handle: 0x002B
|
||||
L3 Cache Handle: Not Provided
|
||||
Serial Number: Not Specified
|
||||
Asset Tag: Fill By OEM
|
||||
Part Number: Fill By OEM
|
||||
Core Count: 4
|
||||
Core Enabled: 4
|
||||
Thread Count: 4
|
||||
Characteristics:
|
||||
64-bit capable
|
||||
|
||||
Handle 0x002D, DMI type 41, 11 bytes
|
||||
Onboard Device
|
||||
Reference Designation: Onboard - Ethernet
|
||||
Type: Ethernet
|
||||
Status: Enabled
|
||||
Type Instance: 1
|
||||
Bus Address: 0000:02:00.0
|
||||
|
||||
Handle 0x002E, DMI type 41, 11 bytes
|
||||
Onboard Device
|
||||
Reference Designation: Onboard - Other
|
||||
Type: Other
|
||||
Status: Enabled
|
||||
Type Instance: 1
|
||||
Bus Address: 0000:00:00.0
|
||||
|
||||
Handle 0x002F, DMI type 41, 11 bytes
|
||||
Onboard Device
|
||||
Reference Designation: Onboard - Video
|
||||
Type: Video
|
||||
Status: Enabled
|
||||
Type Instance: 1
|
||||
Bus Address: 0000:00:02.0
|
||||
|
||||
Handle 0x0030, DMI type 41, 11 bytes
|
||||
Onboard Device
|
||||
Reference Designation: Onboard - Other
|
||||
Type: Other
|
||||
Status: Enabled
|
||||
Type Instance: 2
|
||||
Bus Address: 0000:00:0d.0
|
||||
|
||||
Handle 0x0031, DMI type 41, 11 bytes
|
||||
Onboard Device
|
||||
Reference Designation: Onboard - Other
|
||||
Type: Other
|
||||
Status: Enabled
|
||||
Type Instance: 3
|
||||
Bus Address: 0000:00:0d.2
|
||||
|
||||
Handle 0x0032, DMI type 41, 11 bytes
|
||||
Onboard Device
|
||||
Reference Designation: Onboard - Other
|
||||
Type: Other
|
||||
Status: Enabled
|
||||
Type Instance: 4
|
||||
Bus Address: 0000:00:0d.3
|
||||
|
||||
Handle 0x0033, DMI type 41, 11 bytes
|
||||
Onboard Device
|
||||
Reference Designation: Onboard - Sound
|
||||
Type: Sound
|
||||
Status: Enabled
|
||||
Type Instance: 1
|
||||
Bus Address: 0000:00:0e.0
|
||||
|
||||
Handle 0x0034, DMI type 41, 11 bytes
|
||||
Onboard Device
|
||||
Reference Designation: Onboard - Other
|
||||
Type: Other
|
||||
Status: Enabled
|
||||
Type Instance: 5
|
||||
Bus Address: 0000:00:0f.0
|
||||
|
||||
Handle 0x0035, DMI type 41, 11 bytes
|
||||
Onboard Device
|
||||
Reference Designation: Onboard - SATA
|
||||
Type: SATA Controller
|
||||
Status: Enabled
|
||||
Type Instance: 1
|
||||
Bus Address: 0000:00:12.0
|
||||
|
||||
Handle 0x0036, DMI type 41, 11 bytes
|
||||
Onboard Device
|
||||
Reference Designation: Onboard - Other
|
||||
Type: Other
|
||||
Status: Enabled
|
||||
Type Instance: 6
|
||||
Bus Address: 0000:00:15.0
|
||||
|
||||
Handle 0x0037, DMI type 41, 11 bytes
|
||||
Onboard Device
|
||||
Reference Designation: Onboard - Other
|
||||
Type: Other
|
||||
Status: Enabled
|
||||
Type Instance: 7
|
||||
Bus Address: 0000:00:16.0
|
||||
|
||||
Handle 0x0038, DMI type 41, 11 bytes
|
||||
Onboard Device
|
||||
Reference Designation: Onboard - Other
|
||||
Type: Other
|
||||
Status: Enabled
|
||||
Type Instance: 8
|
||||
Bus Address: 0000:00:16.1
|
||||
|
||||
Handle 0x0039, DMI type 41, 11 bytes
|
||||
Onboard Device
|
||||
Reference Designation: Onboard - Other
|
||||
Type: Other
|
||||
Status: Enabled
|
||||
Type Instance: 9
|
||||
Bus Address: 0000:00:16.2
|
||||
|
||||
Handle 0x003A, DMI type 41, 11 bytes
|
||||
Onboard Device
|
||||
Reference Designation: Onboard - Other
|
||||
Type: Other
|
||||
Status: Enabled
|
||||
Type Instance: 10
|
||||
Bus Address: 0000:00:16.3
|
||||
|
||||
Handle 0x003B, DMI type 41, 11 bytes
|
||||
Onboard Device
|
||||
Reference Designation: Onboard - Other
|
||||
Type: Other
|
||||
Status: Enabled
|
||||
Type Instance: 11
|
||||
Bus Address: 0000:00:17.0
|
||||
|
||||
Handle 0x003C, DMI type 41, 11 bytes
|
||||
Onboard Device
|
||||
Reference Designation: Onboard - Other
|
||||
Type: Other
|
||||
Status: Enabled
|
||||
Type Instance: 12
|
||||
Bus Address: 0000:00:17.1
|
||||
|
||||
Handle 0x003D, DMI type 41, 11 bytes
|
||||
Onboard Device
|
||||
Reference Designation: Onboard - Other
|
||||
Type: Other
|
||||
Status: Enabled
|
||||
Type Instance: 13
|
||||
Bus Address: 0000:00:17.2
|
||||
|
||||
Handle 0x003E, DMI type 41, 11 bytes
|
||||
Onboard Device
|
||||
Reference Designation: Onboard - Other
|
||||
Type: Other
|
||||
Status: Enabled
|
||||
Type Instance: 14
|
||||
Bus Address: 0000:00:17.3
|
||||
|
||||
Handle 0x003F, DMI type 41, 11 bytes
|
||||
Onboard Device
|
||||
Reference Designation: Onboard - Other
|
||||
Type: Other
|
||||
Status: Enabled
|
||||
Type Instance: 15
|
||||
Bus Address: 0000:00:18.0
|
||||
|
||||
Handle 0x0040, DMI type 41, 11 bytes
|
||||
Onboard Device
|
||||
Reference Designation: Onboard - Other
|
||||
Type: Other
|
||||
Status: Enabled
|
||||
Type Instance: 16
|
||||
Bus Address: 0000:00:18.1
|
||||
|
||||
Handle 0x0041, DMI type 41, 11 bytes
|
||||
Onboard Device
|
||||
Reference Designation: Onboard - Other
|
||||
Type: Other
|
||||
Status: Enabled
|
||||
Type Instance: 17
|
||||
Bus Address: 0000:00:18.2
|
||||
|
||||
Handle 0x0042, DMI type 41, 11 bytes
|
||||
Onboard Device
|
||||
Reference Designation: Onboard - Other
|
||||
Type: Other
|
||||
Status: Enabled
|
||||
Type Instance: 18
|
||||
Bus Address: 0000:00:18.3
|
||||
|
||||
Handle 0x0043, DMI type 41, 11 bytes
|
||||
Onboard Device
|
||||
Reference Designation: Onboard - Other
|
||||
Type: Other
|
||||
Status: Enabled
|
||||
Type Instance: 19
|
||||
Bus Address: 0000:00:1a.0
|
||||
|
||||
Handle 0x0044, DMI type 41, 11 bytes
|
||||
Onboard Device
|
||||
Reference Designation: Onboard - Other
|
||||
Type: Other
|
||||
Status: Enabled
|
||||
Type Instance: 20
|
||||
Bus Address: 0000:00:1f.0
|
||||
|
||||
Handle 0x0045, DMI type 41, 11 bytes
|
||||
Onboard Device
|
||||
Reference Designation: Onboard - Other
|
||||
Type: Other
|
||||
Status: Enabled
|
||||
Type Instance: 21
|
||||
Bus Address: 0000:00:1f.1
|
||||
|
||||
Handle 0x0046, DMI type 9, 17 bytes
|
||||
System Slot Information
|
||||
Designation: J6C1
|
||||
Type: x4 PCI Express 2 x4
|
||||
Current Usage: Available
|
||||
Length: Long
|
||||
ID: 0
|
||||
Characteristics:
|
||||
3.3 V is provided
|
||||
Opening is shared
|
||||
PME signal is supported
|
||||
Bus Address: 0000:00:14.0
|
||||
|
||||
Handle 0x0047, DMI type 9, 17 bytes
|
||||
System Slot Information
|
||||
Designation: J7C1
|
||||
Type: x2 PCI Express 2 x2
|
||||
Current Usage: Available
|
||||
Length: Short
|
||||
ID: 1
|
||||
Characteristics:
|
||||
3.3 V is provided
|
||||
Opening is shared
|
||||
PME signal is supported
|
||||
Bus Address: 0000:00:14.0
|
||||
|
||||
Handle 0x0048, DMI type 13, 22 bytes
|
||||
BIOS Language Information
|
||||
Language Description Format: Long
|
||||
Installable Languages: 1
|
||||
en|US|iso8859-1
|
||||
Currently Installed Language: en|US|iso8859-1
|
||||
|
||||
Handle 0x0049, DMI type 127, 4 bytes
|
||||
End Of Table
|
||||
|
112
static/assets/fitlet2/fitlet2.bench-bidirectional.html
Normal file
112
static/assets/fitlet2/fitlet2.bench-bidirectional.html
Normal file
File diff suppressed because one or more lines are too long
112
static/assets/fitlet2/fitlet2.bench-unidirectional.html
Normal file
112
static/assets/fitlet2/fitlet2.bench-unidirectional.html
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
103
static/assets/fitlet2/fitlet2.bench-var2-bidirectional.html
Normal file
103
static/assets/fitlet2/fitlet2.bench-var2-bidirectional.html
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
103
static/assets/fitlet2/fitlet2.bench-var2-unidirectional.html
Normal file
103
static/assets/fitlet2/fitlet2.bench-var2-unidirectional.html
Normal file
File diff suppressed because one or more lines are too long
112
static/assets/fitlet2/fitlet2.bidirectional.html
Normal file
112
static/assets/fitlet2/fitlet2.bidirectional.html
Normal file
File diff suppressed because one or more lines are too long
148
static/assets/fitlet2/fitlet2.html
Normal file
148
static/assets/fitlet2/fitlet2.html
Normal file
File diff suppressed because one or more lines are too long
85
static/assets/fitlet2/fitlet2.imix-unidirectional.html
Normal file
85
static/assets/fitlet2/fitlet2.imix-unidirectional.html
Normal file
File diff suppressed because one or more lines are too long
112
static/assets/fitlet2/fitlet2.unidirectional.html
Normal file
112
static/assets/fitlet2/fitlet2.unidirectional.html
Normal file
File diff suppressed because one or more lines are too long
BIN
static/assets/fitlet2/i210_ethernet_controller_datasheet-257785.pdf
(Stored with Git LFS)
Normal file
BIN
static/assets/fitlet2/i210_ethernet_controller_datasheet-257785.pdf
(Stored with Git LFS)
Normal file
Binary file not shown.
2
static/assets/fitlet2/jquery.min.js
vendored
Normal file
2
static/assets/fitlet2/jquery.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
BIN
static/assets/fitlet2/l2xc-demo1.png
(Stored with Git LFS)
Normal file
BIN
static/assets/fitlet2/l2xc-demo1.png
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
static/assets/fitlet2/l2xc-demo2.png
(Stored with Git LFS)
Normal file
BIN
static/assets/fitlet2/l2xc-demo2.png
(Stored with Git LFS)
Normal file
Binary file not shown.
41
static/assets/fitlet2/likwid-topology.txt
Normal file
41
static/assets/fitlet2/likwid-topology.txt
Normal file
@ -0,0 +1,41 @@
|
||||
--------------------------------------------------------------------------------
|
||||
CPU name: Intel(R) Atom(TM) Processor E3950 @ 1.60GHz
|
||||
CPU type: Intel Atom (Goldmont) processor
|
||||
CPU stepping: 9
|
||||
********************************************************************************
|
||||
Hardware Thread Topology
|
||||
********************************************************************************
|
||||
Sockets: 1
|
||||
Cores per socket: 4
|
||||
Threads per core: 1
|
||||
--------------------------------------------------------------------------------
|
||||
HWThread Thread Core Socket Available
|
||||
0 0 0 0 *
|
||||
1 0 1 0 *
|
||||
2 0 2 0 *
|
||||
3 0 3 0 *
|
||||
--------------------------------------------------------------------------------
|
||||
Socket 0: ( 0 1 2 3 )
|
||||
--------------------------------------------------------------------------------
|
||||
********************************************************************************
|
||||
Cache Topology
|
||||
********************************************************************************
|
||||
Level: 1
|
||||
Size: 24 kB
|
||||
Cache groups: ( 0 ) ( 1 ) ( 2 ) ( 3 )
|
||||
--------------------------------------------------------------------------------
|
||||
Level: 2
|
||||
Size: 1 MB
|
||||
Cache groups: ( 0 1 ) ( 2 3 )
|
||||
--------------------------------------------------------------------------------
|
||||
********************************************************************************
|
||||
NUMA Topology
|
||||
********************************************************************************
|
||||
NUMA domains: 1
|
||||
--------------------------------------------------------------------------------
|
||||
Domain: 0
|
||||
Processors: ( 0 1 2 3 )
|
||||
Distances: 10
|
||||
Free memory: 5295.04 MB
|
||||
Total memory: 7777.44 MB
|
||||
--------------------------------------------------------------------------------
|
89
static/assets/fitlet2/loadtest.js
Normal file
89
static/assets/fitlet2/loadtest.js
Normal file
@ -0,0 +1,89 @@
|
||||
(function () {
|
||||
function Graph(elem, ltdata, error) {
|
||||
var chart = c3.generate({
|
||||
bindto: elem,
|
||||
size: {
|
||||
width: 1200,
|
||||
height: error ? 400 : 800,
|
||||
},
|
||||
data: {
|
||||
columns: ltdata['data'],
|
||||
regions: {
|
||||
'ideal': error ? [] : [{'start': 0, 'style': 'dashed'}]
|
||||
},
|
||||
colors: {
|
||||
'ideal': '#bbbbbb',
|
||||
'txrate': '#bbbbbb',
|
||||
},
|
||||
axes: {
|
||||
'txrate': 'y2'
|
||||
}
|
||||
},
|
||||
point: {
|
||||
show: false
|
||||
},
|
||||
axis: {
|
||||
x: {
|
||||
tick: {
|
||||
values: ltdata['ticks'],
|
||||
},
|
||||
label: {
|
||||
text: 'seconds',
|
||||
position: 'outer-center'
|
||||
}
|
||||
},
|
||||
y: {
|
||||
min: 0,
|
||||
max: error ? 1 : ltdata['max'],
|
||||
padding: { top: 0, bottom: 0 },
|
||||
type: (error ? 'log' : 'linear'),
|
||||
tick: {
|
||||
format: d3.format('.3f'),
|
||||
},
|
||||
label: {
|
||||
text: (error ? 'err fraction of txrate (log)' : ltdata['yprefix'] + 'pps'),
|
||||
position: 'outer-middle'
|
||||
}
|
||||
},
|
||||
y2: {
|
||||
show: true,
|
||||
min: 0,
|
||||
max: error ? ltdata['max'] : 1,
|
||||
type: (error ? 'linear' : 'linear'),
|
||||
tick: {
|
||||
format: d3.format(error ? '.3f' : '.1f'),
|
||||
},
|
||||
padding: { top: 0, bottom: 0 },
|
||||
label: {
|
||||
text: error ? 'txrate ' + ltdata['yprefix'] + 'pps' : 'fraction of linerate',
|
||||
position: 'outer-middle'
|
||||
}
|
||||
}
|
||||
},
|
||||
grid: {
|
||||
y: {
|
||||
lines: error ? [{value: ltdata['ft'], text: 'fail threshold', class: 'ft', position: 'start'}] : [{value: ltdata['max']}]
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
function LoadtestGraph(elem, ltdata) {
|
||||
return Graph(elem, ltdata, false);
|
||||
}
|
||||
|
||||
function ErrorGraph(elem, ltdata) {
|
||||
return Graph(elem, ltdata, true);
|
||||
}
|
||||
|
||||
$(window).on("load", function() {
|
||||
$('div.loadtest-graph').each(function(index, el) {
|
||||
if (el.dataset.ltdata) {
|
||||
LoadtestGraph(el, JSON.parse(el.dataset.ltdata));
|
||||
} else if (el.dataset.errdata) {
|
||||
ErrorGraph(el, JSON.parse(el.dataset.errdata));
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
})();
|
BIN
static/assets/fitlet2/loadtest.png
(Stored with Git LFS)
Normal file
BIN
static/assets/fitlet2/loadtest.png
(Stored with Git LFS)
Normal file
Binary file not shown.
29
static/assets/fitlet2/lspci.txt
Normal file
29
static/assets/fitlet2/lspci.txt
Normal file
@ -0,0 +1,29 @@
|
||||
00:00.0 Host bridge: Intel Corporation Celeron N3350/Pentium N4200/Atom E3900 Series Host Bridge (rev 0b)
|
||||
00:02.0 VGA compatible controller: Intel Corporation Celeron N3350/Pentium N4200/Atom E3900 Series Integrated Graphics Controller (rev 0b)
|
||||
00:0e.0 Audio device: Intel Corporation Celeron N3350/Pentium N4200/Atom E3900 Series Audio Cluster (rev 0b)
|
||||
00:0f.0 Communication controller: Intel Corporation Celeron N3350/Pentium N4200/Atom E3900 Series Trusted Execution Engine (rev 0b)
|
||||
00:0f.1 Communication controller: Intel Corporation Device 5a9c (rev 0b)
|
||||
00:0f.2 Communication controller: Intel Corporation Device 5a9e (rev 0b)
|
||||
00:12.0 SATA controller: Intel Corporation Celeron N3350/Pentium N4200/Atom E3900 Series SATA AHCI Controller (rev 0b)
|
||||
00:13.0 PCI bridge: Intel Corporation Celeron N3350/Pentium N4200/Atom E3900 Series PCI Express Port A #2 (rev fb)
|
||||
00:13.2 PCI bridge: Intel Corporation Celeron N3350/Pentium N4200/Atom E3900 Series PCI Express Port A #3 (rev fb)
|
||||
00:13.3 PCI bridge: Intel Corporation Celeron N3350/Pentium N4200/Atom E3900 Series PCI Express Port A #4 (rev fb)
|
||||
00:15.0 USB controller: Intel Corporation Celeron N3350/Pentium N4200/Atom E3900 Series USB xHCI (rev 0b)
|
||||
00:16.0 Signal processing controller: Intel Corporation Celeron N3350/Pentium N4200/Atom E3900 Series I2C Controller #1 (rev 0b)
|
||||
00:16.1 Signal processing controller: Intel Corporation Celeron N3350/Pentium N4200/Atom E3900 Series I2C Controller #2 (rev 0b)
|
||||
00:16.2 Signal processing controller: Intel Corporation Celeron N3350/Pentium N4200/Atom E3900 Series I2C Controller #3 (rev 0b)
|
||||
00:16.3 Signal processing controller: Intel Corporation Celeron N3350/Pentium N4200/Atom E3900 Series I2C Controller #4 (rev 0b)
|
||||
00:17.0 Signal processing controller: Intel Corporation Celeron N3350/Pentium N4200/Atom E3900 Series I2C Controller #5 (rev 0b)
|
||||
00:17.1 Signal processing controller: Intel Corporation Celeron N3350/Pentium N4200/Atom E3900 Series I2C Controller #6 (rev 0b)
|
||||
00:17.2 Signal processing controller: Intel Corporation Celeron N3350/Pentium N4200/Atom E3900 Series I2C Controller #7 (rev 0b)
|
||||
00:17.3 Signal processing controller: Intel Corporation Celeron N3350/Pentium N4200/Atom E3900 Series I2C Controller #8 (rev 0b)
|
||||
00:18.0 Signal processing controller: Intel Corporation Celeron N3350/Pentium N4200/Atom E3900 Series HSUART Controller #1 (rev 0b)
|
||||
00:18.1 Signal processing controller: Intel Corporation Celeron N3350/Pentium N4200/Atom E3900 Series HSUART Controller #2 (rev 0b)
|
||||
00:18.2 Signal processing controller: Intel Corporation Celeron N3350/Pentium N4200/Atom E3900 Series HSUART Controller #3 (rev 0b)
|
||||
00:18.3 Signal processing controller: Intel Corporation Celeron N3350/Pentium N4200/Atom E3900 Series HSUART Controller #4 (rev 0b)
|
||||
00:1a.0 Serial bus controller [0c80]: Intel Corporation Celeron N3350/Pentium N4200/Atom E3900 Series PWM Pin Controller (rev 0b)
|
||||
00:1f.0 ISA bridge: Intel Corporation Celeron N3350/Pentium N4200/Atom E3900 Series Low Pin Count Interface (rev 0b)
|
||||
00:1f.1 SMBus: Intel Corporation Celeron N3350/Pentium N4200/Atom E3900 Series SMBus Controller (rev 0b)
|
||||
01:00.0 Ethernet controller: Intel Corporation I211 Gigabit Network Connection (rev 03)
|
||||
02:00.0 Ethernet controller: Intel Corporation I211 Gigabit Network Connection (rev 03)
|
||||
03:00.0 Ethernet controller: Intel Corporation I210 Gigabit Fiber Network Connection (rev 03)
|
Reference in New Issue
Block a user