Please add vxcan kernel module

Can you please add vxcan kernel module to Jetson Orin Nano linux kernel by default?

$ for module in can can_raw vcan vxcan can_gw; do     if modinfo "$module" &>/dev/null; then         echo "[✓] $module is available";     else         echo "[✗] $module is NOT available";     fi; done
[✓] can is available
[✓] can_raw is available
[✓] vcan is available
[✗] vxcan is NOT available
[✓] can_gw is available

Hi,
We would like users to manually enable required configs for specific functions. Please refer to kernel customization section in developer guide to enable the configs.

Thanks! I had to try asking to see if there was a way to avoid kernel customization just for a module. I appreciate the reply and will check the developer guide.