├── .gitignore ├── LICENSE.txt ├── README.md ├── blobs ├── README.md ├── asound.state ├── boot0.bin ├── boot0pinebook.bin ├── boot0so.bin ├── pine64.dts ├── pine64noplus.dts ├── pine64pinebook.dts ├── pine64so.dts ├── scp.bin └── sys_config.fex ├── bootlogo ├── Makefile ├── battery │ ├── Makefile │ ├── README.md │ ├── battery-empty.svg │ ├── battery-full.svg │ ├── battery-half.svg │ ├── battery-low.svg │ ├── battery_charge.bmp │ ├── bempty.bmp │ ├── charge.svg │ ├── icon-battery-empty.bmp │ ├── icon-battery-low.bmp │ ├── icon-charge.bmp │ └── low_pwr.bmp ├── bootlogo-pine64-1366x768.bmp ├── bootlogo-pine64-1366x768.png └── pine64-logo-120x175.png ├── convert-pine64-image.sh ├── kernel ├── README.md ├── install_kernel.sh ├── install_kernel_headers.sh ├── install_kernel_modules.sh ├── make_initrd.sh ├── make_kernel_tarball.sh └── pine64_config_busybox ├── simpleimage ├── README.md ├── configuration-files │ ├── fstab │ ├── modprobe.d │ │ ├── blacklist-pine64.conf │ │ └── wifi-rt8723-pine64.conf │ ├── modules-load.d │ │ ├── pine64-pinebook-hall.conf │ │ ├── pine64-speakers-jack.conf │ │ └── pine64-wifi.conf │ ├── pine64-firstboot.d │ │ └── 50-enable-pinebook-modules │ └── udev-rules.d │ │ └── 90-sunxi-disp-permission.rules ├── flash_boot0_only.sh ├── flash_u-boot_only.sh ├── make_rootfs.sh ├── make_simpleimage.sh ├── platform-scripts │ ├── install_desktop.sh │ ├── mplayer-play.sh │ ├── pine64_fix_whatever.sh │ ├── pine64_health.sh │ ├── pine64_model.sh │ ├── pine64_tune_network.sh │ ├── pine64_update_kernel.sh │ ├── pine64_update_uboot.sh │ └── resize_rootfs.sh └── systemd-services │ ├── pine64-firstboot.service │ ├── restart-network-manager-after-resume.service │ ├── restore-sound-after-resume.service │ ├── ssh-keygen.service │ └── store-sound-on-suspend.service ├── snappy ├── README.md ├── common.mk ├── gadget.mk ├── gadget │ ├── meta │ │ ├── gadget.yaml │ │ ├── hooks │ │ │ └── prepare-device │ │ ├── icon.png │ │ ├── readme.md │ │ └── snap.yaml │ └── uboot.env.in ├── kernel.mk ├── kernel │ └── snapcraft.yaml ├── pine64-model.json └── pine64.model └── u-boot-postprocess ├── README.md └── u-boot-postprocess.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longsleep/build-pine64-image/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longsleep/build-pine64-image/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longsleep/build-pine64-image/HEAD/README.md -------------------------------------------------------------------------------- /blobs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longsleep/build-pine64-image/HEAD/blobs/README.md -------------------------------------------------------------------------------- /blobs/asound.state: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longsleep/build-pine64-image/HEAD/blobs/asound.state -------------------------------------------------------------------------------- /blobs/boot0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longsleep/build-pine64-image/HEAD/blobs/boot0.bin -------------------------------------------------------------------------------- /blobs/boot0pinebook.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longsleep/build-pine64-image/HEAD/blobs/boot0pinebook.bin -------------------------------------------------------------------------------- /blobs/boot0so.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longsleep/build-pine64-image/HEAD/blobs/boot0so.bin -------------------------------------------------------------------------------- /blobs/pine64.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longsleep/build-pine64-image/HEAD/blobs/pine64.dts -------------------------------------------------------------------------------- /blobs/pine64noplus.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longsleep/build-pine64-image/HEAD/blobs/pine64noplus.dts -------------------------------------------------------------------------------- /blobs/pine64pinebook.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longsleep/build-pine64-image/HEAD/blobs/pine64pinebook.dts -------------------------------------------------------------------------------- /blobs/pine64so.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longsleep/build-pine64-image/HEAD/blobs/pine64so.dts -------------------------------------------------------------------------------- /blobs/scp.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longsleep/build-pine64-image/HEAD/blobs/scp.bin -------------------------------------------------------------------------------- /blobs/sys_config.fex: -------------------------------------------------------------------------------- 1 | [product] 2 | version = "100" 3 | -------------------------------------------------------------------------------- /bootlogo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longsleep/build-pine64-image/HEAD/bootlogo/Makefile -------------------------------------------------------------------------------- /bootlogo/battery/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longsleep/build-pine64-image/HEAD/bootlogo/battery/Makefile -------------------------------------------------------------------------------- /bootlogo/battery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longsleep/build-pine64-image/HEAD/bootlogo/battery/README.md -------------------------------------------------------------------------------- /bootlogo/battery/battery-empty.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longsleep/build-pine64-image/HEAD/bootlogo/battery/battery-empty.svg -------------------------------------------------------------------------------- /bootlogo/battery/battery-full.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longsleep/build-pine64-image/HEAD/bootlogo/battery/battery-full.svg -------------------------------------------------------------------------------- /bootlogo/battery/battery-half.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longsleep/build-pine64-image/HEAD/bootlogo/battery/battery-half.svg -------------------------------------------------------------------------------- /bootlogo/battery/battery-low.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longsleep/build-pine64-image/HEAD/bootlogo/battery/battery-low.svg -------------------------------------------------------------------------------- /bootlogo/battery/battery_charge.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longsleep/build-pine64-image/HEAD/bootlogo/battery/battery_charge.bmp -------------------------------------------------------------------------------- /bootlogo/battery/bempty.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longsleep/build-pine64-image/HEAD/bootlogo/battery/bempty.bmp -------------------------------------------------------------------------------- /bootlogo/battery/charge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longsleep/build-pine64-image/HEAD/bootlogo/battery/charge.svg -------------------------------------------------------------------------------- /bootlogo/battery/icon-battery-empty.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longsleep/build-pine64-image/HEAD/bootlogo/battery/icon-battery-empty.bmp -------------------------------------------------------------------------------- /bootlogo/battery/icon-battery-low.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longsleep/build-pine64-image/HEAD/bootlogo/battery/icon-battery-low.bmp -------------------------------------------------------------------------------- /bootlogo/battery/icon-charge.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longsleep/build-pine64-image/HEAD/bootlogo/battery/icon-charge.bmp -------------------------------------------------------------------------------- /bootlogo/battery/low_pwr.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longsleep/build-pine64-image/HEAD/bootlogo/battery/low_pwr.bmp -------------------------------------------------------------------------------- /bootlogo/bootlogo-pine64-1366x768.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longsleep/build-pine64-image/HEAD/bootlogo/bootlogo-pine64-1366x768.bmp -------------------------------------------------------------------------------- /bootlogo/bootlogo-pine64-1366x768.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longsleep/build-pine64-image/HEAD/bootlogo/bootlogo-pine64-1366x768.png -------------------------------------------------------------------------------- /bootlogo/pine64-logo-120x175.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longsleep/build-pine64-image/HEAD/bootlogo/pine64-logo-120x175.png -------------------------------------------------------------------------------- /convert-pine64-image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longsleep/build-pine64-image/HEAD/convert-pine64-image.sh -------------------------------------------------------------------------------- /kernel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longsleep/build-pine64-image/HEAD/kernel/README.md -------------------------------------------------------------------------------- /kernel/install_kernel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longsleep/build-pine64-image/HEAD/kernel/install_kernel.sh -------------------------------------------------------------------------------- /kernel/install_kernel_headers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longsleep/build-pine64-image/HEAD/kernel/install_kernel_headers.sh -------------------------------------------------------------------------------- /kernel/install_kernel_modules.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longsleep/build-pine64-image/HEAD/kernel/install_kernel_modules.sh -------------------------------------------------------------------------------- /kernel/make_initrd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longsleep/build-pine64-image/HEAD/kernel/make_initrd.sh -------------------------------------------------------------------------------- /kernel/make_kernel_tarball.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longsleep/build-pine64-image/HEAD/kernel/make_kernel_tarball.sh -------------------------------------------------------------------------------- /kernel/pine64_config_busybox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longsleep/build-pine64-image/HEAD/kernel/pine64_config_busybox -------------------------------------------------------------------------------- /simpleimage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longsleep/build-pine64-image/HEAD/simpleimage/README.md -------------------------------------------------------------------------------- /simpleimage/configuration-files/fstab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longsleep/build-pine64-image/HEAD/simpleimage/configuration-files/fstab -------------------------------------------------------------------------------- /simpleimage/configuration-files/modprobe.d/blacklist-pine64.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longsleep/build-pine64-image/HEAD/simpleimage/configuration-files/modprobe.d/blacklist-pine64.conf -------------------------------------------------------------------------------- /simpleimage/configuration-files/modprobe.d/wifi-rt8723-pine64.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longsleep/build-pine64-image/HEAD/simpleimage/configuration-files/modprobe.d/wifi-rt8723-pine64.conf -------------------------------------------------------------------------------- /simpleimage/configuration-files/modules-load.d/pine64-pinebook-hall.conf: -------------------------------------------------------------------------------- 1 | # Auto load hall driver (LID close). 2 | #hall 3 | -------------------------------------------------------------------------------- /simpleimage/configuration-files/modules-load.d/pine64-speakers-jack.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longsleep/build-pine64-image/HEAD/simpleimage/configuration-files/modules-load.d/pine64-speakers-jack.conf -------------------------------------------------------------------------------- /simpleimage/configuration-files/modules-load.d/pine64-wifi.conf: -------------------------------------------------------------------------------- 1 | 8723bs 2 | #8723cs 3 | -------------------------------------------------------------------------------- /simpleimage/configuration-files/pine64-firstboot.d/50-enable-pinebook-modules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longsleep/build-pine64-image/HEAD/simpleimage/configuration-files/pine64-firstboot.d/50-enable-pinebook-modules -------------------------------------------------------------------------------- /simpleimage/configuration-files/udev-rules.d/90-sunxi-disp-permission.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longsleep/build-pine64-image/HEAD/simpleimage/configuration-files/udev-rules.d/90-sunxi-disp-permission.rules -------------------------------------------------------------------------------- /simpleimage/flash_boot0_only.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longsleep/build-pine64-image/HEAD/simpleimage/flash_boot0_only.sh -------------------------------------------------------------------------------- /simpleimage/flash_u-boot_only.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longsleep/build-pine64-image/HEAD/simpleimage/flash_u-boot_only.sh -------------------------------------------------------------------------------- /simpleimage/make_rootfs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longsleep/build-pine64-image/HEAD/simpleimage/make_rootfs.sh -------------------------------------------------------------------------------- /simpleimage/make_simpleimage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longsleep/build-pine64-image/HEAD/simpleimage/make_simpleimage.sh -------------------------------------------------------------------------------- /simpleimage/platform-scripts/install_desktop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longsleep/build-pine64-image/HEAD/simpleimage/platform-scripts/install_desktop.sh -------------------------------------------------------------------------------- /simpleimage/platform-scripts/mplayer-play.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longsleep/build-pine64-image/HEAD/simpleimage/platform-scripts/mplayer-play.sh -------------------------------------------------------------------------------- /simpleimage/platform-scripts/pine64_fix_whatever.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longsleep/build-pine64-image/HEAD/simpleimage/platform-scripts/pine64_fix_whatever.sh -------------------------------------------------------------------------------- /simpleimage/platform-scripts/pine64_health.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longsleep/build-pine64-image/HEAD/simpleimage/platform-scripts/pine64_health.sh -------------------------------------------------------------------------------- /simpleimage/platform-scripts/pine64_model.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longsleep/build-pine64-image/HEAD/simpleimage/platform-scripts/pine64_model.sh -------------------------------------------------------------------------------- /simpleimage/platform-scripts/pine64_tune_network.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longsleep/build-pine64-image/HEAD/simpleimage/platform-scripts/pine64_tune_network.sh -------------------------------------------------------------------------------- /simpleimage/platform-scripts/pine64_update_kernel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longsleep/build-pine64-image/HEAD/simpleimage/platform-scripts/pine64_update_kernel.sh -------------------------------------------------------------------------------- /simpleimage/platform-scripts/pine64_update_uboot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longsleep/build-pine64-image/HEAD/simpleimage/platform-scripts/pine64_update_uboot.sh -------------------------------------------------------------------------------- /simpleimage/platform-scripts/resize_rootfs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longsleep/build-pine64-image/HEAD/simpleimage/platform-scripts/resize_rootfs.sh -------------------------------------------------------------------------------- /simpleimage/systemd-services/pine64-firstboot.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longsleep/build-pine64-image/HEAD/simpleimage/systemd-services/pine64-firstboot.service -------------------------------------------------------------------------------- /simpleimage/systemd-services/restart-network-manager-after-resume.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longsleep/build-pine64-image/HEAD/simpleimage/systemd-services/restart-network-manager-after-resume.service -------------------------------------------------------------------------------- /simpleimage/systemd-services/restore-sound-after-resume.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longsleep/build-pine64-image/HEAD/simpleimage/systemd-services/restore-sound-after-resume.service -------------------------------------------------------------------------------- /simpleimage/systemd-services/ssh-keygen.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longsleep/build-pine64-image/HEAD/simpleimage/systemd-services/ssh-keygen.service -------------------------------------------------------------------------------- /simpleimage/systemd-services/store-sound-on-suspend.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longsleep/build-pine64-image/HEAD/simpleimage/systemd-services/store-sound-on-suspend.service -------------------------------------------------------------------------------- /snappy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longsleep/build-pine64-image/HEAD/snappy/README.md -------------------------------------------------------------------------------- /snappy/common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longsleep/build-pine64-image/HEAD/snappy/common.mk -------------------------------------------------------------------------------- /snappy/gadget.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longsleep/build-pine64-image/HEAD/snappy/gadget.mk -------------------------------------------------------------------------------- /snappy/gadget/meta/gadget.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longsleep/build-pine64-image/HEAD/snappy/gadget/meta/gadget.yaml -------------------------------------------------------------------------------- /snappy/gadget/meta/hooks/prepare-device: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longsleep/build-pine64-image/HEAD/snappy/gadget/meta/hooks/prepare-device -------------------------------------------------------------------------------- /snappy/gadget/meta/icon.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /snappy/gadget/meta/readme.md: -------------------------------------------------------------------------------- 1 | Pine64 support package 2 | -------------------------------------------------------------------------------- /snappy/gadget/meta/snap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longsleep/build-pine64-image/HEAD/snappy/gadget/meta/snap.yaml -------------------------------------------------------------------------------- /snappy/gadget/uboot.env.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longsleep/build-pine64-image/HEAD/snappy/gadget/uboot.env.in -------------------------------------------------------------------------------- /snappy/kernel.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longsleep/build-pine64-image/HEAD/snappy/kernel.mk -------------------------------------------------------------------------------- /snappy/kernel/snapcraft.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longsleep/build-pine64-image/HEAD/snappy/kernel/snapcraft.yaml -------------------------------------------------------------------------------- /snappy/pine64-model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longsleep/build-pine64-image/HEAD/snappy/pine64-model.json -------------------------------------------------------------------------------- /snappy/pine64.model: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longsleep/build-pine64-image/HEAD/snappy/pine64.model -------------------------------------------------------------------------------- /u-boot-postprocess/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longsleep/build-pine64-image/HEAD/u-boot-postprocess/README.md -------------------------------------------------------------------------------- /u-boot-postprocess/u-boot-postprocess.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longsleep/build-pine64-image/HEAD/u-boot-postprocess/u-boot-postprocess.sh --------------------------------------------------------------------------------