Skip to content
This repository was archived by the owner on Feb 18, 2023. It is now read-only.

Commit bb417e8

Browse files
committed
fix truly
1 parent f3bc29b commit bb417e8

File tree

1 file changed

+127
-124
lines changed

1 file changed

+127
-124
lines changed

openwrt-ci.yml

Lines changed: 127 additions & 124 deletions
Original file line numberDiff line numberDiff line change
@@ -66,130 +66,133 @@ jobs:
6666
rm -f ./.config*
6767
touch ./.config
6868
69-
#
70-
# 以下为定制化固件选项和说明:
71-
#
72-
73-
#
74-
# 如果不对本区块做出任何编辑, 则生成默认配置固件.
75-
#
76-
77-
#
78-
# 有些插件/选项是默认开启的, 如果想要关闭, 请参照以下示例进行编写:
79-
#
80-
# =========================================
81-
# | # 取消编译VMware镜像: |
82-
# | cat >> .config <<EOF |
83-
# | # CONFIG_VMDK_IMAGES is not set |
84-
# | EOF |
85-
# =========================================
86-
#
87-
88-
#
89-
# 以下是一些提前准备好的一些插件选项.
90-
# 直接取消注释相应代码块即可应用. 不要取消注释代码块上的汉字说明.
91-
# 如果不需要代码块里的某一项配置, 只需要删除相应行.
92-
#
93-
# !!!不要对代码进行缩进!!!!
94-
#
95-
# 如果需要其他插件, 请按照示例自行添加.
96-
# 注意, 只需添加依赖链顶端的包. 如果你需要插件 A, 同时 A 依赖 B, 即只需要添加 A.
97-
#
98-
# 无论你想要对固件进行怎样的定制, 都需要且只需要修改 EOF 回环内的内容.
99-
#
100-
101-
# 编译x64固件:
102-
#cat >> .config <<EOF
103-
# CONFIG_TARGET_x86=y
104-
# CONFIG_TARGET_x86_64=y
105-
# CONFIG_TARGET_x86_64_Generic=y
106-
#EOF
107-
108-
# 固件压缩:
109-
#cat >> .config <<EOF
110-
# CONFIG_TARGET_IMAGES_GZIP=y
111-
#EOF
112-
113-
# 编译UEFI固件:
114-
#cat >> .config <<EOF
115-
# CONFIG_EFI_IMAGES=y
116-
#EOF
117-
118-
# IPv6支持:
119-
#cat >> .config <<EOF
120-
# CONFIG_PACKAGE_dnsmasq_full_dhcpv6=y
121-
# CONFIG_PACKAGE_ipv6helper=y
122-
#EOF
123-
124-
# 多文件系统支持:
125-
#cat >> .config <<EOF
126-
# CONFIG_PACKAGE_kmod-fs-nfs=y
127-
# CONFIG_PACKAGE_kmod-fs-nfs-common=y
128-
# CONFIG_PACKAGE_kmod-fs-nfs-v3=y
129-
# CONFIG_PACKAGE_kmod-fs-nfs-v4=y
130-
# CONFIG_PACKAGE_kmod-fs-ntfs=y
131-
# CONFIG_PACKAGE_kmod-fs-squashfs=y
132-
#EOF
133-
134-
# USB3.0支持:
135-
#cat >> .config <<EOF
136-
# CONFIG_PACKAGE_kmod-usb-ohci=y
137-
# CONFIG_PACKAGE_kmod-usb-ohci-pci=y
138-
# CONFIG_PACKAGE_kmod-usb2=y
139-
# CONFIG_PACKAGE_kmod-usb2-pci=y
140-
# CONFIG_PACKAGE_kmod-usb3=y
141-
#EOF
142-
143-
# 常用LuCI插件选择:
144-
#cat >> .config <<EOF
145-
# CONFIG_PACKAGE_luci-app-adbyby-plus=y
146-
# CONFIG_PACKAGE_luci-app-aria2=y
147-
# CONFIG_PACKAGE_luci-app-baidupcs-web=y
148-
# CONFIG_PACKAGE_luci-app-docker=y
149-
# CONFIG_PACKAGE_luci-app-frpc=y
150-
# CONFIG_PACKAGE_luci-app-hd-idle=y
151-
# CONFIG_PACKAGE_luci-app-kodexplorer=y
152-
# CONFIG_PACKAGE_luci-app-minidlna=y
153-
# CONFIG_PACKAGE_luci-app-openvpn=y
154-
# CONFIG_PACKAGE_luci-app-openvpn-server=y
155-
# CONFIG_PACKAGE_luci-app-ssr-plus_INCLUDE_Kcptun=y
156-
# CONFIG_PACKAGE_luci-app-ssr-plus_INCLUDE_Shadowsocks=y
157-
# CONFIG_PACKAGE_luci-app-ssr-plus_INCLUDE_ShadowsocksR_Server=y
158-
# CONFIG_PACKAGE_luci-app-ssr-plus_INCLUDE_ShadowsocksR_Socks=y
159-
# CONFIG_PACKAGE_luci-app-ssr-plus_INCLUDE_V2ray=y
160-
# CONFIG_PACKAGE_luci-app-ttyd=y
161-
# CONFIG_PACKAGE_luci-app-v2ray-server=y
162-
# CONFIG_PACKAGE_luci-app-verysync=y
163-
# CONFIG_PACKAGE_luci-app-webadmin=y
164-
# CONFIG_PACKAGE_luci-app-wireguard=y
165-
# CONFIG_PACKAGE_luci-app-wrtbwmon=y
166-
#EOF
167-
168-
# LuCI主题:
169-
#cat >> .config <<EOF
170-
# CONFIG_PACKAGE_luci-theme-argon=y
171-
#EOF
172-
173-
# 常用软件包:
174-
#cat >> .config <<EOF
175-
# CONFIG_PACKAGE_curl=y
176-
# CONFIG_PACKAGE_htop=y
177-
# CONFIG_PACKAGE_nano=y
178-
# CONFIG_PACKAGE_screen=y
179-
# CONFIG_PACKAGE_tree=y
180-
# CONFIG_PACKAGE_vim-fuller=y
181-
# CONFIG_PACKAGE_wget=y
182-
#EOF
183-
184-
# 取消编译VMware镜像以及镜像填充 (不要删除被缩进的注释符号):
185-
#cat >> .config <<EOF
186-
# # CONFIG_TARGET_IMAGES_PAD is not set
187-
# # CONFIG_VMDK_IMAGES is not set
188-
#EOF
189-
190-
#
191-
# 固件定制部分结束.
192-
#
69+
#
70+
# ========================固件定制部分========================
71+
#
72+
73+
#
74+
# 如果不对本区块做出任何编辑, 则生成默认配置固件.
75+
#
76+
77+
# 以下为定制化固件选项和说明:
78+
#
79+
80+
#
81+
# 有些插件/选项是默认开启的, 如果想要关闭, 请参照以下示例进行编写:
82+
#
83+
# =========================================
84+
# | # 取消编译VMware镜像: |
85+
# | cat >> .config <<EOF |
86+
# | # CONFIG_VMDK_IMAGES is not set |
87+
# | EOF |
88+
# =========================================
89+
#
90+
91+
#
92+
# 以下是一些提前准备好的一些插件选项.
93+
# 直接取消注释相应代码块即可应用. 不要取消注释代码块上的汉字说明.
94+
# 如果不需要代码块里的某一项配置, 只需要删除相应行.
95+
#
96+
# 如果需要其他插件, 请按照示例自行添加.
97+
# 注意, 只需添加依赖链顶端的包. 如果你需要插件 A, 同时 A 依赖 B, 即只需要添加 A.
98+
#
99+
# 无论你想要对固件进行怎样的定制, 都需要且只需要修改 EOF 回环内的内容.
100+
#
101+
102+
# 编译x64固件:
103+
# cat >> .config <<EOF
104+
# CONFIG_TARGET_x86=y
105+
# CONFIG_TARGET_x86_64=y
106+
# CONFIG_TARGET_x86_64_Generic=y
107+
# EOF
108+
109+
# 固件压缩:
110+
# cat >> .config <<EOF
111+
# CONFIG_TARGET_IMAGES_GZIP=y
112+
# EOF
113+
114+
# 编译UEFI固件:
115+
# cat >> .config <<EOF
116+
# CONFIG_EFI_IMAGES=y
117+
# EOF
118+
119+
# IPv6支持:
120+
# cat >> .config <<EOF
121+
# CONFIG_PACKAGE_dnsmasq_full_dhcpv6=y
122+
# CONFIG_PACKAGE_ipv6helper=y
123+
# EOF
124+
125+
# 多文件系统支持:
126+
# cat >> .config <<EOF
127+
# CONFIG_PACKAGE_kmod-fs-nfs=y
128+
# CONFIG_PACKAGE_kmod-fs-nfs-common=y
129+
# CONFIG_PACKAGE_kmod-fs-nfs-v3=y
130+
# CONFIG_PACKAGE_kmod-fs-nfs-v4=y
131+
# CONFIG_PACKAGE_kmod-fs-ntfs=y
132+
# CONFIG_PACKAGE_kmod-fs-squashfs=y
133+
# EOF
134+
135+
# USB3.0支持:
136+
# cat >> .config <<EOF
137+
# CONFIG_PACKAGE_kmod-usb-ohci=y
138+
# CONFIG_PACKAGE_kmod-usb-ohci-pci=y
139+
# CONFIG_PACKAGE_kmod-usb2=y
140+
# CONFIG_PACKAGE_kmod-usb2-pci=y
141+
# CONFIG_PACKAGE_kmod-usb3=y
142+
# EOF
143+
144+
# 常用LuCI插件选择:
145+
# cat >> .config <<EOF
146+
# CONFIG_PACKAGE_luci-app-adbyby-plus=y
147+
# CONFIG_PACKAGE_luci-app-aria2=y
148+
# CONFIG_PACKAGE_luci-app-baidupcs-web=y
149+
# CONFIG_PACKAGE_luci-app-docker=y
150+
# CONFIG_PACKAGE_luci-app-frpc=y
151+
# CONFIG_PACKAGE_luci-app-hd-idle=y
152+
# CONFIG_PACKAGE_luci-app-kodexplorer=y
153+
# CONFIG_PACKAGE_luci-app-minidlna=y
154+
# CONFIG_PACKAGE_luci-app-openvpn=y
155+
# CONFIG_PACKAGE_luci-app-openvpn-server=y
156+
# CONFIG_PACKAGE_luci-app-qbittorrent=y
157+
# CONFIG_PACKAGE_luci-app-ssr-plus_INCLUDE_Kcptun=y
158+
# CONFIG_PACKAGE_luci-app-ssr-plus_INCLUDE_Shadowsocks=y
159+
# CONFIG_PACKAGE_luci-app-ssr-plus_INCLUDE_ShadowsocksR_Server=y
160+
# CONFIG_PACKAGE_luci-app-ssr-plus_INCLUDE_ShadowsocksR_Socks=y
161+
# CONFIG_PACKAGE_luci-app-ssr-plus_INCLUDE_V2ray=y
162+
# CONFIG_PACKAGE_luci-app-ttyd=y
163+
# CONFIG_PACKAGE_luci-app-v2ray-server=y
164+
# CONFIG_PACKAGE_luci-app-verysync=y
165+
# CONFIG_PACKAGE_luci-app-webadmin=y
166+
# CONFIG_PACKAGE_luci-app-wireguard=y
167+
# CONFIG_PACKAGE_luci-app-wrtbwmon=y
168+
# EOF
169+
170+
# LuCI主题:
171+
# cat >> .config <<EOF
172+
# CONFIG_PACKAGE_luci-theme-argon=y
173+
# CONFIG_PACKAGE_luci-theme-netgear=y
174+
# EOF
175+
176+
# 常用软件包:
177+
# cat >> .config <<EOF
178+
# CONFIG_PACKAGE_curl=y
179+
# CONFIG_PACKAGE_htop=y
180+
# CONFIG_PACKAGE_nano=y
181+
# CONFIG_PACKAGE_screen=y
182+
# CONFIG_PACKAGE_tree=y
183+
# CONFIG_PACKAGE_vim-fuller=y
184+
# CONFIG_PACKAGE_wget=y
185+
# EOF
186+
187+
# 取消编译VMware镜像以及镜像填充 (不要删除被缩进的注释符号):
188+
# cat >> .config <<EOF
189+
# # CONFIG_TARGET_IMAGES_PAD is not set
190+
# # CONFIG_VMDK_IMAGES is not set
191+
# EOF
192+
193+
#
194+
# ========================固件定制部分结束========================
195+
#
193196
194197
sed -i 's/^[ \t]*//g' ./.config
195198
make defconfig

0 commit comments

Comments
 (0)