gemini: Activate serial USB console on the DNS-313
This brings up a serial console on the USB device port of the DNS-313 by: - Activating the usbgadget feature - Selecting the usbgadget-acm package - Adding an inittab that opens a console at ttyGS0 which is the device side of ttyACMn of a connected host Link: http://patchwork.ozlabs.org/project/openwrt/patch/20250403-dns313-usb-serial-v2-4-d84de8e86931@linaro.org/ Cc: Chuanhong Guo <gch981213@gmail.com> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
This commit is contained in:
parent
cb650214ba
commit
719f378bfb
4 changed files with 17 additions and 2 deletions
|
@ -7,7 +7,7 @@ include $(TOPDIR)/rules.mk
|
||||||
ARCH:=arm
|
ARCH:=arm
|
||||||
BOARD:=gemini
|
BOARD:=gemini
|
||||||
BOARDNAME:=Cortina Systems CS351x
|
BOARDNAME:=Cortina Systems CS351x
|
||||||
FEATURES:=squashfs pci rtc usb dt gpio display ext4 rootfs-part boot-part
|
FEATURES:=squashfs pci rtc usb usbgadget dt gpio display ext4 rootfs-part boot-part
|
||||||
CPU_TYPE:=fa526
|
CPU_TYPE:=fa526
|
||||||
SUBTARGETS:=generic
|
SUBTARGETS:=generic
|
||||||
|
|
||||||
|
|
11
target/linux/gemini/base-files/etc/board.d/02_usbgadget
Normal file
11
target/linux/gemini/base-files/etc/board.d/02_usbgadget
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
. /lib/functions.sh
|
||||||
|
|
||||||
|
case "$(board_name)" in
|
||||||
|
dlink,dns-313)
|
||||||
|
uci set usbgadget.@preset[0].name="acm"
|
||||||
|
uci set usbgadget.@preset[0].UDC="69000000.usb"
|
||||||
|
uci commit usbgadget
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
exit 0
|
4
target/linux/gemini/base-files/etc/inittab
Normal file
4
target/linux/gemini/base-files/etc/inittab
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
::sysinit:/etc/init.d/rcS S boot
|
||||||
|
::shutdown:/etc/init.d/rcS K shutdown
|
||||||
|
::askconsole:/usr/libexec/login.sh
|
||||||
|
ttyGS0::askfirst:/usr/libexec/login.sh
|
|
@ -170,7 +170,7 @@ define Device/dlink_dns-313
|
||||||
DEVICE_VENDOR := D-Link
|
DEVICE_VENDOR := D-Link
|
||||||
DEVICE_MODEL := DNS-313 1-Bay Network Storage Enclosure
|
DEVICE_MODEL := DNS-313 1-Bay Network Storage Enclosure
|
||||||
DEVICE_DTS := gemini-dlink-dns-313
|
DEVICE_DTS := gemini-dlink-dns-313
|
||||||
DEVICE_PACKAGES := $(GEMINI_NAS_PACKAGES)
|
DEVICE_PACKAGES := $(GEMINI_NAS_PACKAGES) usbgadget-acm
|
||||||
BLOCKSIZE := 1k
|
BLOCKSIZE := 1k
|
||||||
FILESYSTEMS := ext4
|
FILESYSTEMS := ext4
|
||||||
IMAGES := factory.bin.gz
|
IMAGES := factory.bin.gz
|
||||||
|
|
Loading…
Reference in a new issue