Hello there,
Yes I Have gotten kali working on the new B+
You will have to copy over the updated boot files to the boot partition on the SD
you can get it from the raspberry pi github repo https://github.com/raspberrypi/firmware
pop the SD card in the pi and boot it up!Code:# clone the firmware repo from raspberry pi git clone https://github.com/raspberrypi/firmware # find partition on the card with type Windows_FAT_32 (for you it looks like its disk2s1) fdisk -l # mount the partition mkdir /mnt/boot mount /dev/disk2s1 /mnt/boot # copy the contents of the boot folder to the mounted boot partition cp -r firmware/boot/* /mnt/boot/ # unmount and cleanup unmount /mnt/boot rmdir /mnt/boot rm -rf firmware
hope this helps!!
-deleechious