-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdevelop_init_for_ubuntu22.04.sh
executable file
·136 lines (132 loc) · 1.66 KB
/
develop_init_for_ubuntu22.04.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
#!/bin/bash
# packages="
# adb
# android-sdk-platform-tools-common
# android-tools-adb
# autoconf
# automake
# autopoint
# autotools-dev
# binutils
# bison
# build-essential
# ca-certificates
# ccache
# chrpath
# cmake
# cmake-data
# codesearch
# command-not-found
# console-setup
# coreutils
# cpio
# cpp
# cpp-9
# curl
# device-tree-compiler
# dos2unix
# dosfstools
# f2fs-tools
# fakeroot
# flex
# g++
# g++-9
# gawk
# gcc
# gcc-10-cross-base
# gcc-9
# gcc-9-cross-base
# genext2fs
# gettext
# gettext-base
# gfortran
# gfortran-9
# ghostscript
# git
# git-man
# lz4
# lzop
# m4
# make
# makeself
# man-db
# manpages
# manpages-dev
# mawk
# mdadm
# meson
# minicom
# mtd-utils
# mtools
# ncurses-base
# ncurses-bin
# ncurses-term
# net-tools
# ninja-build
# openssl
# perl
# python-pkg-resources
# python2
# python2-dev
# python2-minimal
# python2.7
# python2.7-dev
# python2.7-minimal
# python3
# python3-pexpect
# python3-pip
# python3-pyinotify
# python3-pymacaroons
# python3-pyparsing
# python3-requests
# python3-texttable
# python3-venv
# python3-dev
# python3-minimal
# python3-venv
# python-is-python3
# qemu
# qemu-efi-aarch64
# qemu-efi-arm
# qemu-system-arm
# qemu-system-common
# qemu-system-data
# qemu-system-x86
# qemu-user-static
# qemu-utils
# rsync
# squashfuse
# ssh
# ssh-import-id
# sshfs
# texinfo
# u-boot-tools
# usb-modeswitch
# usb-modeswitch-data
# usbutils
# uuid
# uuid-runtime
# wget
# bc
# libssl-dev
# pkg-config
# gperf
# "
packages="
bc
bison
build-essential
cmake
device-tree-compiler
flex
gperf
libssl-dev
make
pkg-config
python3-minimal
python-is-python3
texinfo
"
sudo apt update
sudo apt install --fix-missing
sudo apt install $packages --fix-missing