forked from Openwrt/openwrt
82d63d666d
This commit introduces support for various Snapdragon 210/410/615 based devices. These chipsets usually have integrated wifi and cellular connectivity on the same chip. Among with the platform a few devices are introduced. These include Longcheer L8150 smartphone design (Wileyfox Swift / Google Android One 2nd gen) and a few snapdragon based USB modem sticks. Signed-off-by: Nikita Travkin <nikita@trvn.ru>
18 lines
369 B
Makefile
18 lines
369 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
define Device/longcheer-l8150
|
|
DEVICE_VENDOR := Longcheer
|
|
DEVICE_MODEL := L8150
|
|
SOC := msm8916
|
|
ROOT_BLKDEV := "/dev/mmcblk0p31"
|
|
endef
|
|
TARGET_DEVICES += longcheer-l8150
|
|
|
|
define Device/thwc-uf896
|
|
DEVICE_VENDOR := THWC
|
|
DEVICE_MODEL := uf896
|
|
SOC := msm8916
|
|
ROOT_BLKDEV := "/dev/mmcblk0p27"
|
|
endef
|
|
TARGET_DEVICES += thwc-uf896
|