blob: 65bee16e315da3d9f1eb4bb1afeb10b6e382179f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
#
# Broadcom SoC support
#
# SoC support
options SOC_BRCM_BCM2837
options SOC_BRCM_BCM2838
options SOC_BRCM_NS2
# I2C
device bcm2835_bsc # Broadcom BCM283x I2C bus
# SPI
device bcm2835_spi # Broadcom BCM283x SPI bus
# Serial (COM) ports
device uart_mu # RPI3 aux port
device pl011
# Ethernet NICs
device genet # Broadcom on RPi4
# USB support
device dwcotg
# USB ethernet support
device muge
device smsc
# MMC/SD/SDIO Card slot support
device sdhci
options FDT
device acpi
# Sound support
device vchiq
# DTBs
makeoptions MODULES_EXTRA+="dtb/rpi"
|