I see. Since the VM is a VirtualBox VM, my guess would be that the .config does not have the driver support needed on that platform.
If you want to use VirtualBox, you may need to run:
make menuconfig
and then select the options needed for VirtualBox.
See the section: "When running Gentoo as a guest system, enable the following kernel options on the guest system (either built-in or as modules) to get proper support for the hardware emulated by VirtualBox..."
If you find a set of .config options that work for VirtualBox, and let me know what your .config file is, I can try to add those to the v2alpha .config.
Alternatively, if you don't mind long build times, one options is the following: if you have booted into Virtualbox with some OS, you can grab the config from the booted kernel with something like:
cp /boot/config-$(uname -r) .config
Then you can edit the CONFIG_ lines in that .config for congestion control to be something like:
CONFIG_TCP_CONG_CUBIC=y
CONFIG_TCP_CONG_DCTCP=y
CONFIG_TCP_CONG_BBR=y
CONFIG_TCP_CONG_BBR2=y
CONFIG_DEFAULT_BBR2=y
Then you can build using that config. But that will likely take a long time to build if you are starting from a major distribution like Ubuntu.
neal