From 1e83cbcb52c9426b656d430e94be779b03223e86 Mon Sep 17 00:00:00 2001 From: Maxim Devaev Date: Tue, 19 Oct 2021 05:52:13 +0300 Subject: [PATCH] no wifi in building_os --- docs/building_os.md | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/docs/building_os.md b/docs/building_os.md index e80d8d10..e4124d7f 100644 --- a/docs/building_os.md +++ b/docs/building_os.md @@ -68,13 +68,6 @@ Docker must be enabled in privileged mode. # SD card device CARD = /dev/mmcblk0 ``` - - If you want to configure wifi (for ZeroW board for example) you must add these lines to `config.mk`: - - ```Makefile - WIFI_ESSID = "my-network" - WIFI_PASSWD = "P@$$word" - ``` 4. Build the OS. It may take about one hour depending on your Internet connection: @@ -96,11 +89,3 @@ Docker must be enabled in privileged mode. ``` Image is then available as a bziped file in `images/`. - -6. After installation remove the SD card and insert it into your RPi. Turn on the power. The RPi will try to get an IP address using DHCP on your LAN. It will then be available via SSH. - -7. If you can't find the device's address, try using the following command: - - ```shell - [user@localhost os]$ make scan - ```