Procházet zdrojové kódy

motd for mesh clients

Bob Mottram před 8 roky
rodič
revize
ac39c27ec8
1 změnil soubory, kde provedl 14 přidání a 2 odebrání
  1. 14
    2
      src/freedombone-image-customise

+ 14
- 2
src/freedombone-image-customise Zobrazit soubor

@@ -195,8 +195,9 @@ iface eth0 inet static
195 195
 	sed -i "s/nameserver.*/nameserver $NAMESERVER1/g" $rootdir/etc/resolv.conf
196 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,6 +213,17 @@ following commands, then enter your details.
212 213
 	${PROJECT_NAME} menuconfig
213 214
 
214 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 229
 configure_ssh() {