All Projects → android-rpi → Device_brcm_rpi3

android-rpi / Device_brcm_rpi3

Labels

Projects that are alternatives of or similar to Device brcm rpi3

Python Regex Cheatsheet
Python 2.7 Regular Expression cheatsheet, as a restructured text document and Makefile to convert it to PDF
Stars: ✭ 496 (-11.11%)
Mutual labels:  makefile
Go Best Practices
Codeship Golang Best Practices
Stars: ✭ 522 (-6.45%)
Mutual labels:  makefile
Manta
Manta is a scalable HTTP-based object store
Stars: ✭ 543 (-2.69%)
Mutual labels:  makefile
Lets Split Guide
This guide covers building a Let's Split v2
Stars: ✭ 501 (-10.22%)
Mutual labels:  makefile
Aiohttp Demos
Demos for aiohttp project
Stars: ✭ 517 (-7.35%)
Mutual labels:  makefile
Docker Hadoop Spark Workbench
[EXPERIMENTAL] This repo includes deployment instructions for running HDFS/Spark inside docker containers. Also includes spark-notebook and HDFS FileBrowser.
Stars: ✭ 536 (-3.94%)
Mutual labels:  makefile
Template Python
A template for new Python libraries.
Stars: ✭ 479 (-14.16%)
Mutual labels:  makefile
Buildroot
Tesla's buildroot repository
Stars: ✭ 552 (-1.08%)
Mutual labels:  makefile
Why Linux Is Better
Objective reasons to prefer Linux to Windows.
Stars: ✭ 518 (-7.17%)
Mutual labels:  makefile
Scientific network summary
总结关于科学上网的概念方法及工具
Stars: ✭ 539 (-3.41%)
Mutual labels:  makefile
Bare Arduino Project
Start your Arduino projects right out of the box
Stars: ✭ 505 (-9.5%)
Mutual labels:  makefile
Photoprocessing
A demo of how you can process photos leveraging the ndk.
Stars: ✭ 513 (-8.06%)
Mutual labels:  makefile
Erlang.mk
A build tool for Erlang that just works.
Stars: ✭ 538 (-3.58%)
Mutual labels:  makefile
Awesome Asyncio Cn
😎 Python Asyncio 精选资源列表,囊括了网络框架,库,软件等资源
Stars: ✭ 501 (-10.22%)
Mutual labels:  makefile
Awesome Python Cn
Python资源大全中文版,包括:Web框架、网络爬虫、模板引擎、数据库、数据可视化、图片处理等,由「开源前哨」和「Python开发者」微信公号团队维护更新。
Stars: ✭ 23,408 (+4094.98%)
Mutual labels:  makefile
Mask
🎭 A CLI task runner defined by a simple markdown file
Stars: ✭ 495 (-11.29%)
Mutual labels:  makefile
Pinn
An enhanced Operating System installer for the Raspberry Pi
Stars: ✭ 530 (-5.02%)
Mutual labels:  makefile
Rpi Buildroot
Buildroot overlay with a few personal tweaks for the Raspberry Pi
Stars: ✭ 553 (-0.9%)
Mutual labels:  makefile
Project Layout
Standard Go Project Layout
Stars: ✭ 28,275 (+4967.2%)
Mutual labels:  makefile
Remake
Enhanced GNU Make - tracing, error reporting, debugging, profiling and more
Stars: ✭ 538 (-3.58%)
Mutual labels:  makefile

Read it first : https://github.com/android-rpi/local_manifests/tree/android10

Build Kernel

$ sudo apt install gcc-arm-linux-gnueabihf libssl-dev $ cd kernel/rpi $ ARCH=arm scripts/kconfig/merge_config.sh arch/arm/configs/bcm2709_defconfig kernel/configs/android-base.config kernel/configs/android-recommended.config $ ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf- make zImage $ ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf- make dtbs

Install python mako module

$ sudo apt install python-mako

Build Android source

Continue build with http://source.android.com/source/building.html $ source build/envsetup.sh $ lunch rpi3-eng $ make ramdisk systemimage vendorimage

Prepare sd card

Partitions of the card should be set-up like followings. p1 256MB for BOOT : Do fdisk : W95 FAT32(LBA) & Bootable, mkfs.vfat p2 640MB for /system : Do fdisk, new primary partition p3 128MB for /vendor : Do fdisk, new primary partition p4 remainings for /data : Do fdisk, mkfs.ext4 Set volume label for /data partition as userdata : use -L option of mkfs.ext4, e2label command, or -n option of mkfs.vfat

Write system & vendor partition

$ cd out/target/product/rpi3 $ sudo dd if=system.img of=/dev/ bs=1M $ sudo dd if=vendor.img of=/dev/ bs=1M

Copy kernel & ramdisk to BOOT partition

device/brcm/rpi3/boot/* to p1:/ kernel/rpi/arch/arm/boot/zImage to p1:/ kernel/rpi/arch/arm/boot/dts/bcm2710-rpi-3-b.dtb to p1:/ kernel/rpi/arch/arm/boot/dts/overlays/vc4-kms-v3d.dtbo to p1:/overlays/vc4-kms-v3d.dtbo out/target/product/rpi3/ramdisk.img to p1:/

HDMI_MODE : If DVI monitor does not work, try followings for p1:/config.txt

hdmi_group=2 hdmi_mode=85

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].