blob: 2f03dae89abc392f7765c2372253a4e0be38af56 (
plain)
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
#
# armbian automatic first boot configuration based on the documentation
# at https://docs.armbian.com/User-Guide_Autoconfig/
#
# NOTE: This configuration did NOT work as expected.
#
# In particular, it had the following errors:
#
# - did not set the root password. instead the root password was "1234"
# - did not set the user password
# - generated a broken network configuration which did not work after
# the second boot
#
# Network Settings
PRESET_NET_CHANGE_DEFAULTS="1"
## Ethernet
PRESET_NET_ETHERNET_ENABLED="1" # Ignored due to WiFi
## WiFi
PRESET_NET_WIFI_ENABLED="1"
PRESET_NET_WIFI_SSID="MY WIFI SSID"
PRESET_NET_WIFI_KEY="MY WIFI PASSWORD"
PRESET_NET_WIFI_COUNTRYCODE="US"
PRESET_CONNECT_WIRELESS="y"
## Static IP
PRESET_NET_USE_STATIC="0"
# System
SET_LANG_BASED_ON_LOCATION="y"
PRESET_LOCALE="en_US.UTF-8"
PRESET_TIMEZONE="US/Eastern"
# Root
PRESET_ROOT_PASSWORD="MY ROOT PASSWORD"
PRESET_ROOT_KEY=""
# User
PRESET_USER_NAME="someuser"
PRESET_USER_PASSWORD="MY USER PASSWORD"
PRESET_USER_KEY="URL TO SSH KEY"
PRESET_DEFAULT_REALNAME="Some User"
PRESET_USER_SHELL="bash"
|