瀏覽代碼

motd for mesh clients

Bob Mottram 8 年之前
父節點
當前提交
ac39c27ec8
共有 1 個檔案被更改,包括 14 行新增2 行删除
  1. 14
    2
      src/freedombone-image-customise

+ 14
- 2
src/freedombone-image-customise 查看文件

195
 	sed -i "s/nameserver.*/nameserver $NAMESERVER1/g" $rootdir/etc/resolv.conf
195
 	sed -i "s/nameserver.*/nameserver $NAMESERVER1/g" $rootdir/etc/resolv.conf
196
 	sed -i "/nameserver $NAMESERVER1/a\nameserver $NAMESERVER2" $rootdir/etc/resolv.conf
196
 	sed -i "/nameserver $NAMESERVER1/a\nameserver $NAMESERVER2" $rootdir/etc/resolv.conf
197
 
197
 
198
-	# change the motd to show further install instructions
199
-	echo $"
198
+	if [[ $VARIANT != "meshclient" && $VARIANT != "meshusb" ]]; then
199
+		# change the motd to show further install instructions
200
+		echo $"
200
  .---.                  .              .
201
  .---.                  .              .
201
  |                      |              |
202
  |                      |              |
202
  |--- .--. .-.  .-.  .-.|  .-. .--.--. |.-.  .-. .--.  .-.
203
  |--- .--. .-.  .-.  .-.|  .-. .--.--. |.-.  .-. .--.  .-.
212
 	${PROJECT_NAME} menuconfig
213
 	${PROJECT_NAME} menuconfig
213
 
214
 
214
 " > $rootdir/etc/motd
215
 " > $rootdir/etc/motd
216
+	else
217
+		echo $"
218
+ .---.                  .              .
219
+ |                      |              |
220
+ |--- .--. .-.  .-.  .-.|  .-. .--.--. |.-.  .-. .--.  .-.
221
+ |    |   (.-' (.-' (   | (   )|  |  | |   )(   )|  | (.-'
222
+ '    '     --'  --'  -' -  -' '  '   -' -'   -' '   -  --'
223
+
224
+				   Freedom in the Mesh
225
+" > $rootdir/etc/motd
226
+	fi
215
 }
227
 }
216
 
228
 
217
 configure_ssh() {
229
 configure_ssh() {