Disable wireless and bluetooth on Jetson TX2

Is there a way to disable the wireless and bluetooth on the Jetson TX2?

Hi asdflkj42,

userspace: Below rfkill comands to disable wifi

sudo rfkill block wifi  
sudo rfkill block bluetooth

kernel: remove these from defconfig file (kernel-4.4/arch/arm64/configs/.)
CONFIG_CFG80211_WEXT=y
CONFIG_WIFI_CONTROL_FUNC=y
CONFIG_BCMDHD=m
CONFIG_BCMDHD_SDIO=y
CONFIG_BCM4354=y
CONFIG_BCMDHD_FW_PATH=“/lib/firmware/brcm/fw_bcmdhd.bin”
CONFIG_BCMDHD_NVRAM_PATH=“/lib/firmware/brcm/nvram.txt”
CONFIG_BCMDHD_HW_OOB=y
CONFIG_DHD_USE_SCHED_SCAN=y

Hi,
Is it possible to disable Bluetooth in the device tree (dts files)?