-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: experimental support for Pi 1, Pi 2, and Pi Zero (#4)
- Loading branch information
Showing
19 changed files
with
271 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
{ | ||
"version": "0.2", | ||
"words": [ | ||
"armhf", | ||
"Armhf", | ||
"ascii", | ||
"avahi", | ||
"blkid", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
dtparam=audio=on | ||
camera_auto_detect=1 | ||
display_auto_detect=1 | ||
dtoverlay=vc4-kms-v3d | ||
max_framebuffers=2 | ||
|
||
disable_overscan=1 | ||
|
||
enable_uart=1 | ||
|
||
[pi0w] | ||
kernel=u-boot-armhf-zerow.bin | ||
|
||
[pi1] | ||
kernel=u-boot-armhf-pi1.bin | ||
|
||
[pi2] | ||
kernel=u-boot-armhf-pi2.bin |
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
CONFIG_ARM=y | ||
CONFIG_ARCH_CPU_INIT=y | ||
CONFIG_ARCH_BCM283X=y | ||
CONFIG_TEXT_BASE=0x00008000 | ||
CONFIG_SYS_MALLOC_F_LEN=0x400 | ||
CONFIG_TARGET_RPI=y | ||
CONFIG_NR_DRAM_BANKS=1 | ||
CONFIG_HAS_CUSTOM_SYS_INIT_SP_ADDR=y | ||
CONFIG_CUSTOM_SYS_INIT_SP_ADDR=0x7ffff00 | ||
CONFIG_ENV_SIZE=0x4000 | ||
CONFIG_DEFAULT_DEVICE_TREE="bcm2835-rpi-b" | ||
CONFIG_OF_LIBFDT_OVERLAY=y | ||
CONFIG_SYS_LOAD_ADDR=0x1000000 | ||
CONFIG_BOOTSTD_DEFAULTS=y | ||
CONFIG_OF_BOARD_SETUP=y | ||
CONFIG_FDT_SIMPLEFB=y | ||
CONFIG_USE_PREBOOT=y | ||
CONFIG_PREBOOT="pci enum; usb start; setenv kernel_file kernel.img;" | ||
# CONFIG_DISPLAY_CPUINFO is not set | ||
# CONFIG_DISPLAY_BOARDINFO is not set | ||
CONFIG_MISC_INIT_R=y | ||
CONFIG_SYS_PROMPT="U-Boot> " | ||
CONFIG_SYS_PBSIZE=1049 | ||
CONFIG_CMD_GPIO=y | ||
CONFIG_CMD_MMC=y | ||
CONFIG_CMD_USB=y | ||
CONFIG_CMD_FS_UUID=y | ||
CONFIG_OF_EMBED=y | ||
CONFIG_ENV_FAT_DEVICE_AND_PART="0:1" | ||
CONFIG_SYS_RELOC_GD_ENV_ADDR=y | ||
CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG=y | ||
CONFIG_TFTP_TSIZE=y | ||
CONFIG_BCM2835_GPIO=y | ||
CONFIG_MMC_SDHCI=y | ||
CONFIG_MMC_SDHCI_BCM2835=y | ||
CONFIG_PINCTRL=y | ||
# CONFIG_PINCTRL_GENERIC is not set | ||
# CONFIG_REQUIRE_SERIAL_CONSOLE is not set | ||
CONFIG_SYSINFO=y | ||
CONFIG_SYSINFO_SMBIOS=y | ||
CONFIG_USB=y | ||
CONFIG_USB_DWC2=y | ||
CONFIG_USB_KEYBOARD=y | ||
CONFIG_USB_HOST_ETHER=y | ||
CONFIG_USB_ETHER_SMSC95XX=y | ||
CONFIG_VIDEO=y | ||
# CONFIG_VIDEO_BPP8 is not set | ||
# CONFIG_VIDEO_BPP16 is not set | ||
CONFIG_SYS_WHITE_ON_BLACK=y | ||
CONFIG_VIDEO_BCM2835=y | ||
CONFIG_CONSOLE_SCROLL_LINES=10 | ||
CONFIG_PHYS_TO_BUS=y | ||
CONFIG_EFI_LOADER=y | ||
CONFIG_CMD_BOOTZ=y | ||
CONFIG_CMD_BOOTI=y | ||
CONFIG_CMD_FS_GENERIC=y | ||
CONFIG_USE_BOOTARGS=y | ||
CONFIG_CMD_BOOTZ=y | ||
CONFIG_CMD_BOOTI=y | ||
CONFIG_CMD_FS_GENERIC=y | ||
CONFIG_USE_BOOTARGS=y |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
CONFIG_ARM=y | ||
CONFIG_SKIP_LOWLEVEL_INIT=y | ||
CONFIG_ARCH_CPU_INIT=y | ||
CONFIG_ARCH_BCM283X=y | ||
CONFIG_TEXT_BASE=0x00008000 | ||
CONFIG_SYS_MALLOC_F_LEN=0x400 | ||
CONFIG_TARGET_RPI_2=y | ||
CONFIG_NR_DRAM_BANKS=1 | ||
CONFIG_HAS_CUSTOM_SYS_INIT_SP_ADDR=y | ||
CONFIG_CUSTOM_SYS_INIT_SP_ADDR=0x7ffff00 | ||
CONFIG_ENV_SIZE=0x4000 | ||
CONFIG_DEFAULT_DEVICE_TREE="bcm2836-rpi-2-b" | ||
CONFIG_OF_LIBFDT_OVERLAY=y | ||
CONFIG_SYS_LOAD_ADDR=0x1000000 | ||
CONFIG_BOOTSTD_DEFAULTS=y | ||
CONFIG_OF_BOARD_SETUP=y | ||
CONFIG_FDT_SIMPLEFB=y | ||
CONFIG_USE_PREBOOT=y | ||
CONFIG_PREBOOT="pci enum; usb start; setenv kernel_file kernel7.img;" | ||
# CONFIG_DISPLAY_CPUINFO is not set | ||
# CONFIG_DISPLAY_BOARDINFO is not set | ||
CONFIG_MISC_INIT_R=y | ||
CONFIG_SYS_PROMPT="U-Boot> " | ||
CONFIG_SYS_PBSIZE=1049 | ||
CONFIG_CMD_GPIO=y | ||
CONFIG_CMD_MMC=y | ||
CONFIG_CMD_USB=y | ||
CONFIG_CMD_FS_UUID=y | ||
CONFIG_OF_EMBED=y | ||
CONFIG_ENV_FAT_DEVICE_AND_PART="0:1" | ||
CONFIG_SYS_RELOC_GD_ENV_ADDR=y | ||
CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG=y | ||
CONFIG_TFTP_TSIZE=y | ||
CONFIG_BCM2835_GPIO=y | ||
CONFIG_MMC_SDHCI=y | ||
CONFIG_MMC_SDHCI_BCM2835=y | ||
CONFIG_PINCTRL=y | ||
# CONFIG_PINCTRL_GENERIC is not set | ||
# CONFIG_REQUIRE_SERIAL_CONSOLE is not set | ||
CONFIG_SYSINFO=y | ||
CONFIG_SYSINFO_SMBIOS=y | ||
CONFIG_USB=y | ||
CONFIG_USB_DWC2=y | ||
CONFIG_USB_KEYBOARD=y | ||
CONFIG_USB_HOST_ETHER=y | ||
CONFIG_USB_ETHER_SMSC95XX=y | ||
CONFIG_VIDEO=y | ||
# CONFIG_VIDEO_BPP8 is not set | ||
# CONFIG_VIDEO_BPP16 is not set | ||
CONFIG_SYS_WHITE_ON_BLACK=y | ||
CONFIG_VIDEO_BCM2835=y | ||
CONFIG_CONSOLE_SCROLL_LINES=10 | ||
CONFIG_PHYS_TO_BUS=y | ||
CONFIG_CMD_BOOTZ=y | ||
CONFIG_CMD_BOOTI=y | ||
CONFIG_CMD_FS_GENERIC=y | ||
CONFIG_USE_BOOTARGS=y |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
CONFIG_ARM=y | ||
CONFIG_ARCH_CPU_INIT=y | ||
CONFIG_ARCH_BCM283X=y | ||
CONFIG_TEXT_BASE=0x00008000 | ||
CONFIG_SYS_MALLOC_F_LEN=0x400 | ||
CONFIG_TARGET_RPI_0_W=y | ||
CONFIG_NR_DRAM_BANKS=1 | ||
CONFIG_HAS_CUSTOM_SYS_INIT_SP_ADDR=y | ||
CONFIG_CUSTOM_SYS_INIT_SP_ADDR=0x7ffff00 | ||
CONFIG_ENV_SIZE=0x4000 | ||
CONFIG_DEFAULT_DEVICE_TREE="bcm2835-rpi-zero-w" | ||
CONFIG_OF_LIBFDT_OVERLAY=y | ||
CONFIG_SYS_LOAD_ADDR=0x1000000 | ||
CONFIG_BOOTSTD_DEFAULTS=y | ||
CONFIG_OF_BOARD_SETUP=y | ||
CONFIG_FDT_SIMPLEFB=y | ||
CONFIG_USE_PREBOOT=y | ||
CONFIG_PREBOOT="pci enum; usb start; setenv kernel_file kernel.img;" | ||
# CONFIG_DISPLAY_CPUINFO is not set | ||
# CONFIG_DISPLAY_BOARDINFO is not set | ||
CONFIG_MISC_INIT_R=y | ||
CONFIG_SYS_PROMPT="U-Boot> " | ||
CONFIG_SYS_PBSIZE=1049 | ||
CONFIG_CMD_GPIO=y | ||
CONFIG_CMD_MMC=y | ||
CONFIG_CMD_USB=y | ||
CONFIG_CMD_FS_UUID=y | ||
CONFIG_OF_EMBED=y | ||
CONFIG_ENV_FAT_DEVICE_AND_PART="0:1" | ||
CONFIG_SYS_RELOC_GD_ENV_ADDR=y | ||
CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG=y | ||
CONFIG_TFTP_TSIZE=y | ||
CONFIG_BCM2835_GPIO=y | ||
CONFIG_MMC_SDHCI=y | ||
CONFIG_MMC_SDHCI_BCM2835=y | ||
CONFIG_PINCTRL=y | ||
# CONFIG_PINCTRL_GENERIC is not set | ||
# CONFIG_REQUIRE_SERIAL_CONSOLE is not set | ||
CONFIG_SYSINFO=y | ||
CONFIG_SYSINFO_SMBIOS=y | ||
CONFIG_USB=y | ||
CONFIG_USB_DWC2=y | ||
CONFIG_USB_KEYBOARD=y | ||
CONFIG_USB_HOST_ETHER=y | ||
CONFIG_USB_ETHER_SMSC95XX=y | ||
CONFIG_VIDEO=y | ||
# CONFIG_VIDEO_BPP8 is not set | ||
# CONFIG_VIDEO_BPP16 is not set | ||
CONFIG_SYS_WHITE_ON_BLACK=y | ||
CONFIG_VIDEO_BCM2835=y | ||
CONFIG_CONSOLE_SCROLL_LINES=10 | ||
CONFIG_PHYS_TO_BUS=y | ||
CONFIG_EFI_LOADER=y | ||
CONFIG_CMD_BOOTZ=y | ||
CONFIG_CMD_BOOTI=y | ||
CONFIG_CMD_FS_GENERIC=y | ||
CONFIG_USE_BOOTARGS=y |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.