├── .github ├── ISSUE_TEMPLATE │ ├── bug-report.md │ ├── config.yml │ ├── feature-request.md │ ├── question-or-support-request.md │ └── task.md └── workflows │ └── deploy.yml ├── CHANGELOG.md ├── Dockerfile ├── Dockerfile.gitlab ├── README.md ├── configs ├── config-4.14.33 ├── config-4.14.50 ├── config-4.14.59 ├── config-4.15.16 ├── config-4.15.18 ├── config-4.16.1 ├── config-4.16.16 ├── config-5.15.44 ├── linux_4.14.9_config └── linux_4.8_min_config ├── docs ├── APU_mPCIe_capabilities.md ├── Payloads_config_menu.png ├── apu2_vboot.md ├── apu2_vs_apu3.md ├── apu2_vs_apu4.md ├── apu_CPU_boost.md ├── apu_ecc.md ├── apu_flashing_ipxe.md ├── apu_flashing_with_rpi.md ├── cbmem_building.md ├── cold_reset.md ├── debug │ ├── AGESA.md │ ├── alix3d2_issue.md │ ├── cpu_frequency.md │ ├── debian_kernel_rebuild.md │ ├── external_sd_slot.md │ ├── freeDOS_problems.md │ ├── hdd_mPCIe_log_analyze.md │ ├── hdd_test.md │ ├── iommu.md │ ├── mpcie1_mpcie2_ethernet_card.md │ ├── mpcie2.md │ ├── mpcie_ethernet.md │ ├── openwrt.md │ ├── pfsense-ahci-issue.md │ ├── sd_registers_bad.md │ ├── sdcard_debug.md │ ├── sdcard_test.md │ ├── tplink_hg.md │ ├── tpm.md │ ├── usb-debugging.md │ ├── usb-sticks.md │ ├── usb-tests.md │ └── warmboot_reset.md ├── firmware_flashing.md ├── flashrom_building.md ├── generating_coreboot_support_logs.md ├── gpios.md ├── images │ ├── INA219-RTE.png │ ├── TPM1a.jpg │ ├── cb4-sysbench-current.png │ ├── cb4-sysbench-power.png │ ├── cb4-sysbench-voltage.png │ ├── cb5-sysbench-current.png │ ├── cb5-sysbench-power.png │ ├── cb5-sysbench-voltage.png │ ├── delock_95233.png │ ├── m2_converter.jpg │ ├── m2_lte.jpg │ ├── mt7915e.jpg │ ├── quectel_pinout.png │ └── realtek_controller.jpg ├── index.md ├── ipxe_compile.md ├── j13_usb_header.md ├── linux_issues.md ├── logs │ ├── iommu_enabled_xl_dmesg.log │ ├── tiano.log │ └── tiano2.log ├── microcode_patching.md ├── mpcie_modules.md ├── mt86.cfg ├── order_of_PCI_addresses.md ├── os-status.md ├── os_boot_serial_console.md ├── pfSense-install-guide.md ├── pfsense_installerconfig.md ├── power_consumption_testing.md ├── pxelinux-cfg.md ├── release_process.md ├── research │ ├── 4_13_rc6_tpm_config │ ├── Orange_Pi_flasher.md │ ├── ROCA.md │ ├── RPI_SPI_flasher.md │ ├── USB_compliance_test.md │ ├── apu_bios_write_protect.md │ ├── early-cbmem-implementation.md │ ├── fast_boot.md │ ├── freebsd_tpm_support.md │ ├── geode_lx.md │ ├── openssl_1_1_0.patch │ ├── power-consumption-tests.md │ └── tpm2-triage.md ├── rs-232.jpg ├── runtime-configuration.md ├── sd_card_performance_test.md ├── serial_console.md ├── supported_coreboot_build.md ├── theory-of-operation.md ├── tianocore_build.md ├── tpm_menu.md ├── tpm_pin_mapping.md ├── voyage_image_building_alix.md ├── voyage_linux_netinst.md └── voyage_linux_sd_card_install.md ├── ipxe ├── 0001-syslinux.cfg-enable-ttyS0-output.patch ├── general.h ├── menu.ipxe └── shell.ipxe ├── mkdocs.yml └── scripts ├── apu2_fw_rel.sh ├── apu_fw_updater_opnsense.sh ├── build_release_img.sh ├── installerconfig └── relays.sh /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/.github/ISSUE_TEMPLATE/feature-request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question-or-support-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/.github/ISSUE_TEMPLATE/question-or-support-request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/task.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/.github/ISSUE_TEMPLATE/task.md -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/Dockerfile -------------------------------------------------------------------------------- /Dockerfile.gitlab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/Dockerfile.gitlab -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/README.md -------------------------------------------------------------------------------- /configs/config-4.14.33: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/configs/config-4.14.33 -------------------------------------------------------------------------------- /configs/config-4.14.50: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/configs/config-4.14.50 -------------------------------------------------------------------------------- /configs/config-4.14.59: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/configs/config-4.14.59 -------------------------------------------------------------------------------- /configs/config-4.15.16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/configs/config-4.15.16 -------------------------------------------------------------------------------- /configs/config-4.15.18: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/configs/config-4.15.18 -------------------------------------------------------------------------------- /configs/config-4.16.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/configs/config-4.16.1 -------------------------------------------------------------------------------- /configs/config-4.16.16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/configs/config-4.16.16 -------------------------------------------------------------------------------- /configs/config-5.15.44: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/configs/config-5.15.44 -------------------------------------------------------------------------------- /configs/linux_4.14.9_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/configs/linux_4.14.9_config -------------------------------------------------------------------------------- /configs/linux_4.8_min_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/configs/linux_4.8_min_config -------------------------------------------------------------------------------- /docs/APU_mPCIe_capabilities.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/docs/APU_mPCIe_capabilities.md -------------------------------------------------------------------------------- /docs/Payloads_config_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/docs/Payloads_config_menu.png -------------------------------------------------------------------------------- /docs/apu2_vboot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/docs/apu2_vboot.md -------------------------------------------------------------------------------- /docs/apu2_vs_apu3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/docs/apu2_vs_apu3.md -------------------------------------------------------------------------------- /docs/apu2_vs_apu4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/docs/apu2_vs_apu4.md -------------------------------------------------------------------------------- /docs/apu_CPU_boost.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/docs/apu_CPU_boost.md -------------------------------------------------------------------------------- /docs/apu_ecc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/docs/apu_ecc.md -------------------------------------------------------------------------------- /docs/apu_flashing_ipxe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/docs/apu_flashing_ipxe.md -------------------------------------------------------------------------------- /docs/apu_flashing_with_rpi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/docs/apu_flashing_with_rpi.md -------------------------------------------------------------------------------- /docs/cbmem_building.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/docs/cbmem_building.md -------------------------------------------------------------------------------- /docs/cold_reset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/docs/cold_reset.md -------------------------------------------------------------------------------- /docs/debug/AGESA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/docs/debug/AGESA.md -------------------------------------------------------------------------------- /docs/debug/alix3d2_issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/docs/debug/alix3d2_issue.md -------------------------------------------------------------------------------- /docs/debug/cpu_frequency.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/docs/debug/cpu_frequency.md -------------------------------------------------------------------------------- /docs/debug/debian_kernel_rebuild.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/docs/debug/debian_kernel_rebuild.md -------------------------------------------------------------------------------- /docs/debug/external_sd_slot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/docs/debug/external_sd_slot.md -------------------------------------------------------------------------------- /docs/debug/freeDOS_problems.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/docs/debug/freeDOS_problems.md -------------------------------------------------------------------------------- /docs/debug/hdd_mPCIe_log_analyze.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/docs/debug/hdd_mPCIe_log_analyze.md -------------------------------------------------------------------------------- /docs/debug/hdd_test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/docs/debug/hdd_test.md -------------------------------------------------------------------------------- /docs/debug/iommu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/docs/debug/iommu.md -------------------------------------------------------------------------------- /docs/debug/mpcie1_mpcie2_ethernet_card.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/docs/debug/mpcie1_mpcie2_ethernet_card.md -------------------------------------------------------------------------------- /docs/debug/mpcie2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/docs/debug/mpcie2.md -------------------------------------------------------------------------------- /docs/debug/mpcie_ethernet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/docs/debug/mpcie_ethernet.md -------------------------------------------------------------------------------- /docs/debug/openwrt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/docs/debug/openwrt.md -------------------------------------------------------------------------------- /docs/debug/pfsense-ahci-issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/docs/debug/pfsense-ahci-issue.md -------------------------------------------------------------------------------- /docs/debug/sd_registers_bad.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/docs/debug/sd_registers_bad.md -------------------------------------------------------------------------------- /docs/debug/sdcard_debug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/docs/debug/sdcard_debug.md -------------------------------------------------------------------------------- /docs/debug/sdcard_test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/docs/debug/sdcard_test.md -------------------------------------------------------------------------------- /docs/debug/tplink_hg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/docs/debug/tplink_hg.md -------------------------------------------------------------------------------- /docs/debug/tpm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/docs/debug/tpm.md -------------------------------------------------------------------------------- /docs/debug/usb-debugging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/docs/debug/usb-debugging.md -------------------------------------------------------------------------------- /docs/debug/usb-sticks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/docs/debug/usb-sticks.md -------------------------------------------------------------------------------- /docs/debug/usb-tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/docs/debug/usb-tests.md -------------------------------------------------------------------------------- /docs/debug/warmboot_reset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/docs/debug/warmboot_reset.md -------------------------------------------------------------------------------- /docs/firmware_flashing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/docs/firmware_flashing.md -------------------------------------------------------------------------------- /docs/flashrom_building.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/docs/flashrom_building.md -------------------------------------------------------------------------------- /docs/generating_coreboot_support_logs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/docs/generating_coreboot_support_logs.md -------------------------------------------------------------------------------- /docs/gpios.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/docs/gpios.md -------------------------------------------------------------------------------- /docs/images/INA219-RTE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/docs/images/INA219-RTE.png -------------------------------------------------------------------------------- /docs/images/TPM1a.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/docs/images/TPM1a.jpg -------------------------------------------------------------------------------- /docs/images/cb4-sysbench-current.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/docs/images/cb4-sysbench-current.png -------------------------------------------------------------------------------- /docs/images/cb4-sysbench-power.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/docs/images/cb4-sysbench-power.png -------------------------------------------------------------------------------- /docs/images/cb4-sysbench-voltage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/docs/images/cb4-sysbench-voltage.png -------------------------------------------------------------------------------- /docs/images/cb5-sysbench-current.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/docs/images/cb5-sysbench-current.png -------------------------------------------------------------------------------- /docs/images/cb5-sysbench-power.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/docs/images/cb5-sysbench-power.png -------------------------------------------------------------------------------- /docs/images/cb5-sysbench-voltage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/docs/images/cb5-sysbench-voltage.png -------------------------------------------------------------------------------- /docs/images/delock_95233.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/docs/images/delock_95233.png -------------------------------------------------------------------------------- /docs/images/m2_converter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/docs/images/m2_converter.jpg -------------------------------------------------------------------------------- /docs/images/m2_lte.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/docs/images/m2_lte.jpg -------------------------------------------------------------------------------- /docs/images/mt7915e.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/docs/images/mt7915e.jpg -------------------------------------------------------------------------------- /docs/images/quectel_pinout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/docs/images/quectel_pinout.png -------------------------------------------------------------------------------- /docs/images/realtek_controller.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/docs/images/realtek_controller.jpg -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/ipxe_compile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/docs/ipxe_compile.md -------------------------------------------------------------------------------- /docs/j13_usb_header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/docs/j13_usb_header.md -------------------------------------------------------------------------------- /docs/linux_issues.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/docs/linux_issues.md -------------------------------------------------------------------------------- /docs/logs/iommu_enabled_xl_dmesg.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/docs/logs/iommu_enabled_xl_dmesg.log -------------------------------------------------------------------------------- /docs/logs/tiano.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/docs/logs/tiano.log -------------------------------------------------------------------------------- /docs/logs/tiano2.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/docs/logs/tiano2.log -------------------------------------------------------------------------------- /docs/microcode_patching.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/docs/microcode_patching.md -------------------------------------------------------------------------------- /docs/mpcie_modules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/docs/mpcie_modules.md -------------------------------------------------------------------------------- /docs/mt86.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/docs/mt86.cfg -------------------------------------------------------------------------------- /docs/order_of_PCI_addresses.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/docs/order_of_PCI_addresses.md -------------------------------------------------------------------------------- /docs/os-status.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/docs/os-status.md -------------------------------------------------------------------------------- /docs/os_boot_serial_console.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/docs/os_boot_serial_console.md -------------------------------------------------------------------------------- /docs/pfSense-install-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/docs/pfSense-install-guide.md -------------------------------------------------------------------------------- /docs/pfsense_installerconfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/docs/pfsense_installerconfig.md -------------------------------------------------------------------------------- /docs/power_consumption_testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/docs/power_consumption_testing.md -------------------------------------------------------------------------------- /docs/pxelinux-cfg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/docs/pxelinux-cfg.md -------------------------------------------------------------------------------- /docs/release_process.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/docs/release_process.md -------------------------------------------------------------------------------- /docs/research/4_13_rc6_tpm_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/docs/research/4_13_rc6_tpm_config -------------------------------------------------------------------------------- /docs/research/Orange_Pi_flasher.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/docs/research/Orange_Pi_flasher.md -------------------------------------------------------------------------------- /docs/research/ROCA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/docs/research/ROCA.md -------------------------------------------------------------------------------- /docs/research/RPI_SPI_flasher.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/docs/research/RPI_SPI_flasher.md -------------------------------------------------------------------------------- /docs/research/USB_compliance_test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/docs/research/USB_compliance_test.md -------------------------------------------------------------------------------- /docs/research/apu_bios_write_protect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/docs/research/apu_bios_write_protect.md -------------------------------------------------------------------------------- /docs/research/early-cbmem-implementation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/docs/research/early-cbmem-implementation.md -------------------------------------------------------------------------------- /docs/research/fast_boot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/docs/research/fast_boot.md -------------------------------------------------------------------------------- /docs/research/freebsd_tpm_support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/docs/research/freebsd_tpm_support.md -------------------------------------------------------------------------------- /docs/research/geode_lx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/docs/research/geode_lx.md -------------------------------------------------------------------------------- /docs/research/openssl_1_1_0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/docs/research/openssl_1_1_0.patch -------------------------------------------------------------------------------- /docs/research/power-consumption-tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/docs/research/power-consumption-tests.md -------------------------------------------------------------------------------- /docs/research/tpm2-triage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/docs/research/tpm2-triage.md -------------------------------------------------------------------------------- /docs/rs-232.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/docs/rs-232.jpg -------------------------------------------------------------------------------- /docs/runtime-configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/docs/runtime-configuration.md -------------------------------------------------------------------------------- /docs/sd_card_performance_test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/docs/sd_card_performance_test.md -------------------------------------------------------------------------------- /docs/serial_console.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/docs/serial_console.md -------------------------------------------------------------------------------- /docs/supported_coreboot_build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/docs/supported_coreboot_build.md -------------------------------------------------------------------------------- /docs/theory-of-operation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/docs/theory-of-operation.md -------------------------------------------------------------------------------- /docs/tianocore_build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/docs/tianocore_build.md -------------------------------------------------------------------------------- /docs/tpm_menu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/docs/tpm_menu.md -------------------------------------------------------------------------------- /docs/tpm_pin_mapping.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/docs/tpm_pin_mapping.md -------------------------------------------------------------------------------- /docs/voyage_image_building_alix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/docs/voyage_image_building_alix.md -------------------------------------------------------------------------------- /docs/voyage_linux_netinst.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/docs/voyage_linux_netinst.md -------------------------------------------------------------------------------- /docs/voyage_linux_sd_card_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/docs/voyage_linux_sd_card_install.md -------------------------------------------------------------------------------- /ipxe/0001-syslinux.cfg-enable-ttyS0-output.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/ipxe/0001-syslinux.cfg-enable-ttyS0-output.patch -------------------------------------------------------------------------------- /ipxe/general.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/ipxe/general.h -------------------------------------------------------------------------------- /ipxe/menu.ipxe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/ipxe/menu.ipxe -------------------------------------------------------------------------------- /ipxe/shell.ipxe: -------------------------------------------------------------------------------- 1 | #!ipxe 2 | shell 3 | -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /scripts/apu2_fw_rel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/scripts/apu2_fw_rel.sh -------------------------------------------------------------------------------- /scripts/apu_fw_updater_opnsense.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/scripts/apu_fw_updater_opnsense.sh -------------------------------------------------------------------------------- /scripts/build_release_img.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/scripts/build_release_img.sh -------------------------------------------------------------------------------- /scripts/installerconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/scripts/installerconfig -------------------------------------------------------------------------------- /scripts/relays.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcengines/apu2-documentation/HEAD/scripts/relays.sh --------------------------------------------------------------------------------