Skip to content

Commit 5050cc2

Browse files
committed
+ [android-rpi] android build scripts.
1 parent 20d37ec commit 5050cc2

File tree

7 files changed

+78
-1
lines changed

7 files changed

+78
-1
lines changed

.serial

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
109
1+
111

android-rpi/.desc

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
desc: Android for Respberry Pi 4
3+
date: "2020.12"
4+
serial: 110
5+
tags: android,rpi
6+
id: android-rpi

android-rpi/.note.swp

12 KB
Binary file not shown.

android-rpi/__attach

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/sh
2+
3+
docker exec -it -u admin a0 /bin/bash -il

android-rpi/__run

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
#!/bin/sh
2+
3+
docker run -d --net=host \
4+
--name a0 \
5+
-v /home/admin:/home/admin \
6+
-v /root:/root \
7+
-v /tmp:/tmp ubuntu:20.04 \
8+
sleep 10000200401

android-rpi/note

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
https://github.com/android-rpi/local_manifests/tree/arpi-11
2+
3+
#
4+
apt install -y git openssh-client
5+
apt install -y build-essential android-sdk-build-tools crossbuild-essential-arm64
6+
7+
apt install -y python python3
8+
apt install -y curl wget
9+
10+
apt install -y flex bison bc libssl-dev libncurses5
11+
apt install -y unzip zip

android-rpi/sources.list

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
# See http://help.ubuntu.com/community/UpgradeNotes for how to upgrade to
2+
# newer versions of the distribution.
3+
deb http://mirrors.aliyun.com/ubuntu/ focal main restricted
4+
# deb-src http://mirrors.aliyun.com/ubuntu/ focal main restricted
5+
6+
## Major bug fix updates produced after the final release of the
7+
## distribution.
8+
deb http://mirrors.aliyun.com/ubuntu/ focal-updates main restricted
9+
# deb-src http://mirrors.aliyun.com/ubuntu/ focal-updates main restricted
10+
11+
## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
12+
## team. Also, please note that software in universe WILL NOT receive any
13+
## review or updates from the Ubuntu security team.
14+
deb http://mirrors.aliyun.com/ubuntu/ focal universe
15+
# deb-src http://mirrors.aliyun.com/ubuntu/ focal universe
16+
deb http://mirrors.aliyun.com/ubuntu/ focal-updates universe
17+
# deb-src http://mirrors.aliyun.com/ubuntu/ focal-updates universe
18+
19+
## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
20+
## team, and may not be under a free licence. Please satisfy yourself as to
21+
## your rights to use the software. Also, please note that software in
22+
## multiverse WILL NOT receive any review or updates from the Ubuntu
23+
## security team.
24+
deb http://mirrors.aliyun.com/ubuntu/ focal multiverse
25+
# deb-src http://mirrors.aliyun.com/ubuntu/ focal multiverse
26+
deb http://mirrors.aliyun.com/ubuntu/ focal-updates multiverse
27+
# deb-src http://mirrors.aliyun.com/ubuntu/ focal-updates multiverse
28+
29+
## N.B. software from this repository may not have been tested as
30+
## extensively as that contained in the main release, although it includes
31+
## newer versions of some applications which may provide useful features.
32+
## Also, please note that software in backports WILL NOT receive any review
33+
## or updates from the Ubuntu security team.
34+
deb http://mirrors.aliyun.com/ubuntu/ focal-backports main restricted universe multiverse
35+
# deb-src http://mirrors.aliyun.com/ubuntu/ focal-backports main restricted universe multiverse
36+
37+
## Uncomment the following two lines to add software from Canonical's
38+
## 'partner' repository.
39+
## This software is not part of Ubuntu, but is offered by Canonical and the
40+
## respective vendors as a service to Ubuntu users.
41+
# deb http://archive.canonical.com/ubuntu focal partner
42+
# deb-src http://archive.canonical.com/ubuntu focal partner
43+
44+
deb http://mirrors.aliyun.com/ubuntu/ focal-security main restricted
45+
# deb-src http://mirrors.aliyun.com/ubuntu/ focal-security main restricted
46+
deb http://mirrors.aliyun.com/ubuntu/ focal-security universe
47+
# deb-src http://mirrors.aliyun.com/ubuntu/ focal-security universe
48+
deb http://mirrors.aliyun.com/ubuntu/ focal-security multiverse
49+
# deb-src http://mirrors.aliyun.com/ubuntu/ focal-security multiverse

0 commit comments

Comments
 (0)