Restore the mac80211_hwsim.radios=0 kernel arg.

This flag was left out when the command line was moved from
BoardConfig.mk to the launcher. It looks like when the flag is missing,
the default is for mac80211_hwsim to create a wlan0, and cuttlefish's
fake wlan0 becomes wlan1.

Bug: 113529234
Test: Ran cf_x86_phone-userdebug locally.
Change-Id: If21b3f3c25f9916e31f096b3069117a069321425
diff --git a/host/commands/launch/main.cc b/host/commands/launch/main.cc
index ae2ac29..1b6cd63 100644
--- a/host/commands/launch/main.cc
+++ b/host/commands/launch/main.cc
@@ -537,6 +537,7 @@
   }
   config->add_kernel_cmdline(
       concat("androidboot.serialno=", FLAGS_serial_number));
+  config->add_kernel_cmdline("mac80211_hwsim.radios=0");
   config->add_kernel_cmdline(concat("androidboot.lcd_density=", FLAGS_dpi));
   config->add_kernel_cmdline(concat("loop.max_part=", FLAGS_loop_max_part));
   if (!FLAGS_console.empty()) {