
I try to expand the ODROID XU4 with a PICAN CAN-Bus Board. XU4 Shifter Shield is used for the hardware connection of the two components. The chip of the CAN-Bus Board (MCP2515) converts the CAN-signal to SPI, which can theoretically be processed by ODROID.
Now I want change the recognized spi device, that directly can device appears. On http://skpang.co.uk/blog/archives/1165 this has been done for the Raspberry Pi with Rasberian. There overlays are added to the /boot/config.txt:
$this->bbcode_second_pass_code('', 'dtparam=spi=on
dtoverlay=mcp2515-can0-overlay,oscillator=16000000,interrupt=25
dtoverlay=spi-bcm2835-overlay')
I'm not quite sure, but in my case "bcm2835" should be replaced by "exynos5422". However, my main question is where to write these overlays, because no config.txt file is on my Arch Arm Linux (kernel: 3.10.96) with ODROID.

I think that I have to add these overlays to the file /boot/dtbs/exynos5422-odroidxu3.dtb. For this case, I was able to generate the .dts file from the .dtb file.
How and Where I would have to modify the code to add it to the .mts file?
Or rather, is there a way to create a config file, similar to the config.txt file?
Many thanks for your help