Skip to content

Commit 9192bb8

Browse files
committed
Customizations for dev-68
1 parent 4d87998 commit 9192bb8

File tree

7 files changed

+24
-10
lines changed

7 files changed

+24
-10
lines changed

.tool-versions

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
elixir 1.11.0-otp-23
2+
erlang 23.1.1

README.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# Customized
2+
3+
This system is customized for the Dev-68 nerves keyboard development board. The
4+
primary branch is `dev-68` whereas `main` tracks upstream's main branch. To
5+
update, pull main from upstream and rebase `dev-68` on it.
6+
17
# Generic BeagleBone Support
28

39
[![CircleCI](https://circleci.com/gh/nerves-project/nerves_system_bbb.svg?style=svg)](https://circleci.com/gh/nerves-project/nerves_system_bbb)

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.8.0
1+
2.8.0+dev-68.1

fwup_include/provisioning.conf

+5-5
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ uboot_setenv(uboot-env, "nerves_serial_number", "\${NERVES_SERIAL_NUMBER}")
1414
uboot_setenv(uboot-env, "enable_uboot_overlays", "1")
1515
###
1616
###Overide capes with eeprom
17-
#uboot_setenv(uboot-env, "uboot_overlay_addr0", "/lib/firmware/<file0>.dtbo")
17+
uboot_setenv(uboot-env, "uboot_overlay_addr0", "/lib/firmware/BB-I2C1-00A0.dtbo")
1818
#uboot_setenv(uboot-env, "uboot_overlay_addr1", "/lib/firmware/<file1>.dtbo")
1919
#uboot_setenv(uboot-env, "uboot_overlay_addr2", "/lib/firmware/<file2>.dtbo")
2020
#uboot_setenv(uboot-env, "uboot_overlay_addr3", "/lib/firmware/<file3>.dtbo")
@@ -30,18 +30,18 @@ uboot_setenv(uboot-env, "enable_uboot_overlays", "1")
3030
###
3131
###Disable auto loading of virtual capes (emmc/video/wireless/adc)
3232
#uboot_setenv(uboot-env, "disable_uboot_overlay_emmc", "1")
33-
#uboot_setenv(uboot-env, "disable_uboot_overlay_video", "1")
34-
#uboot_setenv(uboot-env, "disable_uboot_overlay_audio", "1")
33+
uboot_setenv(uboot-env, "disable_uboot_overlay_video", "1")
34+
uboot_setenv(uboot-env, "disable_uboot_overlay_audio", "1")
3535
#uboot_setenv(uboot-env, "disable_uboot_overlay_wireless", "1")
36-
#uboot_setenv(uboot-env, "disable_uboot_overlay_adc", "1")
36+
uboot_setenv(uboot-env, "disable_uboot_overlay_adc", "1")
3737
###
3838
###PRUSS OPTIONS
3939
###pru_rproc (4.4.x-ti kernel)
4040
#uboot_setenv(uboot-env, "uboot_overlay_pru", "/lib/firmware/AM335X-PRU-RPROC-4-4-TI-00A0.dtbo")
4141
###pru_rproc (4.14.x-ti kernel)
4242
#uboot_setenv(uboot-env, "uboot_overlay_pru", "/lib/firmware/AM335X-PRU-RPROC-4-14-TI-00A0.dtbo")
4343
###pru_uio (4.4.x-ti, 4.14.x-ti & mainline/bone kernel)
44-
uboot_setenv(uboot-env, "uboot_overlay_pru", "/lib/firmware/AM335X-PRU-UIO-00A0.dtbo")
44+
# uboot_setenv(uboot-env, "uboot_overlay_pru", "/lib/firmware/AM335X-PRU-UIO-00A0.dtbo")
4545
###
4646
###Cape Universal Enable
4747
uboot_setenv(uboot-env, "enable_uboot_cape_universal", "1")

linux/linux-4.19.defconfig

+6-1
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,7 @@ CONFIG_SCSI=y
121121
CONFIG_BLK_DEV_SD=y
122122
# CONFIG_SCSI_LOWLEVEL is not set
123123
CONFIG_NETDEVICES=y
124+
CONFIG_BONDING=y
124125
CONFIG_TUN=m
125126
# CONFIG_NET_VENDOR_ALACRITECH is not set
126127
# CONFIG_NET_VENDOR_AMAZON is not set
@@ -238,7 +239,11 @@ CONFIG_USB_GPIO_VBUS=y
238239
CONFIG_USB_ULPI=y
239240
CONFIG_USB_GADGET=y
240241
CONFIG_USB_GADGET_VBUS_DRAW=500
241-
CONFIG_USB_ETH=y
242+
CONFIG_USB_CONFIGFS=y
243+
CONFIG_USB_CONFIGFS_NCM=y
244+
CONFIG_USB_CONFIGFS_ECM=y
245+
CONFIG_USB_CONFIGFS_RNDIS=y
246+
CONFIG_USB_CONFIGFS_F_HID=y
242247
CONFIG_MMC=y
243248
CONFIG_MMC_OMAP_HS=y
244249
CONFIG_NEW_LEDS=y

mix.exs

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
defmodule NervesSystemBbb.MixProject do
1+
defmodule NervesSystemDev68Bbb.MixProject do
22
use Mix.Project
33

4-
@github_organization "nerves-project"
5-
@app :nerves_system_bbb
4+
@github_organization "ElixirSeattle"
5+
@app :nerves_system_dev_68_bbb
66
@version Path.join(__DIR__, "VERSION")
77
|> File.read!()
88
|> String.trim()

nerves_defconfig

+1
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ BR2_PACKAGE_LINUX_FIRMWARE_RTL_87XX=y
4040
BR2_PACKAGE_LINUX_FIRMWARE_TI_WL18XX=y
4141
BR2_PACKAGE_LIBP11=y
4242
BR2_PACKAGE_UNIXODBC=y
43+
BR2_PACKAGE_LIBUSBGX=y
4344
BR2_PACKAGE_LIBMNL=y
4445
BR2_PACKAGE_WIRELESS_REGDB=y
4546
BR2_PACKAGE_WPA_SUPPLICANT=y

0 commit comments

Comments
 (0)