I would like to ask for help in figuring out how to get the IP-Config program that shows up when attempting to use dropbear from guides such as this question to allow me to use wlan0 instead of eth0 when booting up my computer with cryptsetup on grub.
The message that shows up when trying to use dropbear is
IP-Config: eth0 hardware address ...
IP-Config: no response after 3 secs - giving up
The message keeps repeating except to display a higher number of seconds each time.
I can still type in my password manually, but I would like to be able to use wifi in addition to this.
My /etc/initramfs-tools/initramfs.conf looks like
#
# initramfs.conf
# Configuration file for mkinitramfs(8). See initramfs.conf(5).
#
# Note that configuration options from this file can be overridden
# by config files in the /etc/initramfs-tools/conf.d directory.
#
# MODULES: [ most | netboot | dep | list ]
#
# most - Add most filesystem and all harddrive drivers.
#
# dep - Try and guess which modules to load.
#
# netboot - Add the base modules, network modules, but skip block devices.
#
# list - Only include modules from the 'additional modules' list
#
MODULES=most
#
# BUSYBOX: [ y | n ]
#
# Use busybox if available.
#
BUSYBOX=y
#
# KEYMAP: [ y | n ]
#
# Load a keymap during the initramfs stage.
#
KEYMAP=n
#
# COMPRESS: [ gzip | bzip2 | lzma | lzop | xz ]
#
COMPRESS=gzip
#
# NFS Section of the config.
#
#
# DEVICE: ...
#
# Specify a specific network interface, like eth0
# Overridden by optional ip= bootarg
#
DEVICE=wlan0
#
# NFSROOT: [ auto | HOST:MOUNT ]
#
NFSROOT=auto
Thank you for your help,
Brandon Gomez