forked from Revincx/MyWrtBuilder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharmvirt-build.sh
26 lines (20 loc) · 1005 Bytes
/
armvirt-build.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
#!/bin/bash
# 打印 info
make info
# 主配置名称
PROFILE="generic"
PACKAGES="
-base-files ca-bundle dropbear fstools libc libgcc libustream-mbedtls logd mtd netifd opkg \
uci uclient-fetch urandom-seed urngd busybox procd procd-ujail procd-seccomp mkf2fs e2fsprogs blkid \
firewall4 nftables kmod-nft-offload odhcp6c odhcpd-ipv6only ppp ppp-mod-pppoe \
luci-theme-material kmod-brcmfmac \
luci-proto-ncm luci-theme-material usbutils kmod-cfg80211 \
luci-proto-qmi usb-modeswitch luci-compat kmod-mac80211 \
kmod-usb-net-rndis -dnsmasq dnsmasq-full \
openssh-sftp-server luci-app-openclash \
luci-theme-neobirdkawe luci-app-tinyfm "
#FILES="files"
# 禁用 openssh-server 的 sshd 服务和 docker 的 dockerd 服务以防止冲突
#DISABLED_SERVICES="sshd dockerd"
#make image PROFILE="$PROFILE" PACKAGES="$PACKAGES" FILES="$FILES" DISABLED_SERVICES="$DISABLED_SERVICES"
make image PROFILE="$PROFILE" PACKAGES="$PACKAGES"