├── .gitignore ├── PKGBUILDs ├── .gitignore ├── ap6256-firmware │ ├── BCM4345C5.hcd │ ├── PKGBUILD │ ├── brcmfmac43456-sdio.bin │ ├── brcmfmac43456-sdio.clm_blob │ └── brcmfmac43456-sdio.txt ├── linux-uconsole-rpi64 │ ├── 0001-video-backlight-Add-OCP8178-backlight-driver.patch │ ├── 0002-drm-panel-add-clockwork-cwu50.patch │ ├── 0003-driver-staging-add-uconsole-simple-amplifier-switch.patch │ ├── 0004-arm-dts-overlays-add-uconsole.patch │ ├── 0005-drivers-power-axp20x-customize-PMU.patch │ ├── 0006-drm-panel-cwu50-expose-dsi-error-status-to-userspace.patch │ ├── 90-linux-dtbs.hook │ ├── PKGBUILD │ └── linux-uconsole-rpi64.install └── rpi-dsi-workaround │ ├── PKGBUILD │ ├── rpi-dsi-check │ └── rpi-dsi-workaround.service ├── README.md ├── datasheets ├── AXP228_V1.1_20130106.pdf └── JD9365D.pdf ├── doc ├── clean-build-with-abs.md ├── create-a-clean-aarch64-chroot-for-installation.md ├── how-to-install-archlinux-from-scratch.md └── make_partitions_gpt.md └── pic └── photo-uconsole-cm3.jpeg /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | -------------------------------------------------------------------------------- /PKGBUILDs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoMania/uconsole-cm3/HEAD/PKGBUILDs/.gitignore -------------------------------------------------------------------------------- /PKGBUILDs/ap6256-firmware/BCM4345C5.hcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoMania/uconsole-cm3/HEAD/PKGBUILDs/ap6256-firmware/BCM4345C5.hcd -------------------------------------------------------------------------------- /PKGBUILDs/ap6256-firmware/PKGBUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoMania/uconsole-cm3/HEAD/PKGBUILDs/ap6256-firmware/PKGBUILD -------------------------------------------------------------------------------- /PKGBUILDs/ap6256-firmware/brcmfmac43456-sdio.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoMania/uconsole-cm3/HEAD/PKGBUILDs/ap6256-firmware/brcmfmac43456-sdio.bin -------------------------------------------------------------------------------- /PKGBUILDs/ap6256-firmware/brcmfmac43456-sdio.clm_blob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoMania/uconsole-cm3/HEAD/PKGBUILDs/ap6256-firmware/brcmfmac43456-sdio.clm_blob -------------------------------------------------------------------------------- /PKGBUILDs/ap6256-firmware/brcmfmac43456-sdio.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoMania/uconsole-cm3/HEAD/PKGBUILDs/ap6256-firmware/brcmfmac43456-sdio.txt -------------------------------------------------------------------------------- /PKGBUILDs/linux-uconsole-rpi64/0001-video-backlight-Add-OCP8178-backlight-driver.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoMania/uconsole-cm3/HEAD/PKGBUILDs/linux-uconsole-rpi64/0001-video-backlight-Add-OCP8178-backlight-driver.patch -------------------------------------------------------------------------------- /PKGBUILDs/linux-uconsole-rpi64/0002-drm-panel-add-clockwork-cwu50.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoMania/uconsole-cm3/HEAD/PKGBUILDs/linux-uconsole-rpi64/0002-drm-panel-add-clockwork-cwu50.patch -------------------------------------------------------------------------------- /PKGBUILDs/linux-uconsole-rpi64/0003-driver-staging-add-uconsole-simple-amplifier-switch.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoMania/uconsole-cm3/HEAD/PKGBUILDs/linux-uconsole-rpi64/0003-driver-staging-add-uconsole-simple-amplifier-switch.patch -------------------------------------------------------------------------------- /PKGBUILDs/linux-uconsole-rpi64/0004-arm-dts-overlays-add-uconsole.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoMania/uconsole-cm3/HEAD/PKGBUILDs/linux-uconsole-rpi64/0004-arm-dts-overlays-add-uconsole.patch -------------------------------------------------------------------------------- /PKGBUILDs/linux-uconsole-rpi64/0005-drivers-power-axp20x-customize-PMU.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoMania/uconsole-cm3/HEAD/PKGBUILDs/linux-uconsole-rpi64/0005-drivers-power-axp20x-customize-PMU.patch -------------------------------------------------------------------------------- /PKGBUILDs/linux-uconsole-rpi64/0006-drm-panel-cwu50-expose-dsi-error-status-to-userspace.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoMania/uconsole-cm3/HEAD/PKGBUILDs/linux-uconsole-rpi64/0006-drm-panel-cwu50-expose-dsi-error-status-to-userspace.patch -------------------------------------------------------------------------------- /PKGBUILDs/linux-uconsole-rpi64/90-linux-dtbs.hook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoMania/uconsole-cm3/HEAD/PKGBUILDs/linux-uconsole-rpi64/90-linux-dtbs.hook -------------------------------------------------------------------------------- /PKGBUILDs/linux-uconsole-rpi64/PKGBUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoMania/uconsole-cm3/HEAD/PKGBUILDs/linux-uconsole-rpi64/PKGBUILD -------------------------------------------------------------------------------- /PKGBUILDs/linux-uconsole-rpi64/linux-uconsole-rpi64.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoMania/uconsole-cm3/HEAD/PKGBUILDs/linux-uconsole-rpi64/linux-uconsole-rpi64.install -------------------------------------------------------------------------------- /PKGBUILDs/rpi-dsi-workaround/PKGBUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoMania/uconsole-cm3/HEAD/PKGBUILDs/rpi-dsi-workaround/PKGBUILD -------------------------------------------------------------------------------- /PKGBUILDs/rpi-dsi-workaround/rpi-dsi-check: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoMania/uconsole-cm3/HEAD/PKGBUILDs/rpi-dsi-workaround/rpi-dsi-check -------------------------------------------------------------------------------- /PKGBUILDs/rpi-dsi-workaround/rpi-dsi-workaround.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoMania/uconsole-cm3/HEAD/PKGBUILDs/rpi-dsi-workaround/rpi-dsi-workaround.service -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoMania/uconsole-cm3/HEAD/README.md -------------------------------------------------------------------------------- /datasheets/AXP228_V1.1_20130106.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoMania/uconsole-cm3/HEAD/datasheets/AXP228_V1.1_20130106.pdf -------------------------------------------------------------------------------- /datasheets/JD9365D.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoMania/uconsole-cm3/HEAD/datasheets/JD9365D.pdf -------------------------------------------------------------------------------- /doc/clean-build-with-abs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoMania/uconsole-cm3/HEAD/doc/clean-build-with-abs.md -------------------------------------------------------------------------------- /doc/create-a-clean-aarch64-chroot-for-installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoMania/uconsole-cm3/HEAD/doc/create-a-clean-aarch64-chroot-for-installation.md -------------------------------------------------------------------------------- /doc/how-to-install-archlinux-from-scratch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoMania/uconsole-cm3/HEAD/doc/how-to-install-archlinux-from-scratch.md -------------------------------------------------------------------------------- /doc/make_partitions_gpt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoMania/uconsole-cm3/HEAD/doc/make_partitions_gpt.md -------------------------------------------------------------------------------- /pic/photo-uconsole-cm3.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoMania/uconsole-cm3/HEAD/pic/photo-uconsole-cm3.jpeg --------------------------------------------------------------------------------