mirror of
git://git.openwrt.org/openwrt/openwrt.git
synced 2025-02-19 13:36:57 +00:00
oxnas: squash-pick commits from master branch
4f017c871d
oxnas: switch to generic board detectef9b169df0
oxnas: remove stray kernel config symbolscf7896117b
oxnas: enable image metadata by setting SUPPORTED_DEVICES9bcc08958b
oxnas: add console=ttyS0,115200 argument to bootargsb831eb5363
oxnas: kd20: correct memory size to 256MB217fe505b6
oxnas: remove superseded sysupgrade image check Signed-off-by: Daniel Golle <daniel@makrotopia.org>
This commit is contained in:
parent
f2a6d39b95
commit
4f40d4ca73
@ -6,17 +6,17 @@ board=$(board_name)
|
||||
board_config_update
|
||||
|
||||
case $board in
|
||||
akitio)
|
||||
"akitio,myloud")
|
||||
ucidef_set_led_default "status" "status" "akitio:red:status" "0"
|
||||
;;
|
||||
stg212)
|
||||
"mitrastar,stg-212")
|
||||
ucidef_set_led_default "power" "power" "zyxel:blue:status" "1"
|
||||
ucidef_set_led_usbdev "usb" "USB" "zyxel:orange:copy" "1-1"
|
||||
;;
|
||||
kd20)
|
||||
"shuttle,kd20")
|
||||
ucidef_set_led_default "power" "power" "kd20:blue:status" "1"
|
||||
;;
|
||||
pogoplug-pro | pogoplug-v3)
|
||||
"cloudengines,pogoplug"*)
|
||||
ucidef_set_led_default "power" "power" "pogoplug:blue:internal" "1"
|
||||
;;
|
||||
|
||||
|
@ -2,14 +2,37 @@
|
||||
|
||||
. /lib/functions/uci-defaults.sh
|
||||
. /lib/functions/system.sh
|
||||
. /lib/oxnas.sh
|
||||
|
||||
board_config_update
|
||||
|
||||
lan_mac=""
|
||||
|
||||
bootloader_cmdline_var() {
|
||||
local param
|
||||
local pval
|
||||
for arg in $(cat /proc/device-tree/chosen/bootloader-args); do
|
||||
param="$(echo $arg | cut -d'=' -f 1)"
|
||||
pval="$(echo $arg | cut -d'=' -f 2-)"
|
||||
|
||||
if [ "$param" = "$1" ]; then
|
||||
echo "$pval"
|
||||
fi
|
||||
done
|
||||
}
|
||||
|
||||
legacy_boot_mac_adr() {
|
||||
local macstr
|
||||
local oIFS
|
||||
macstr="$(bootloader_cmdline_var mac_adr)"
|
||||
oIFS="$IFS"
|
||||
IFS=","
|
||||
set -- $macstr
|
||||
printf "%02x:%02x:%02x:%02x:%02x:%02x" $1 $2 $3 $4 $5 $6
|
||||
IFS="$oIFS"
|
||||
}
|
||||
|
||||
case "$(board_name)" in
|
||||
kd20)
|
||||
"shuttle,kd20")
|
||||
lan_mac="$(legacy_boot_mac_adr)"
|
||||
;;
|
||||
esac
|
||||
|
@ -6,16 +6,16 @@
|
||||
|
||||
get_status_led() {
|
||||
case $(board_name) in
|
||||
akitio)
|
||||
"akitio,mycloud")
|
||||
status_led="akitio:red:status"
|
||||
;;
|
||||
stg212)
|
||||
"mitrastar,stg-212")
|
||||
status_led="zyxel:blue:status"
|
||||
;;
|
||||
kd20)
|
||||
"shuttle,kd20")
|
||||
status_led="kd20:blue:status"
|
||||
;;
|
||||
pogoplug-pro | pogoplug-v3)
|
||||
"cloudengines,pogoplug"*)
|
||||
status_led="pogoplug:blue:internal"
|
||||
;;
|
||||
esac
|
||||
|
@ -1,66 +0,0 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# Copyright (C) 2013 OpenWrt.org
|
||||
#
|
||||
|
||||
OXNAS_BOARD_NAME=
|
||||
OXNAS_MODEL=
|
||||
|
||||
bootloader_cmdline_var() {
|
||||
local param
|
||||
local pval
|
||||
for arg in $(cat /proc/device-tree/chosen/bootloader-args); do
|
||||
param="$(echo $arg | cut -d'=' -f 1)"
|
||||
pval="$(echo $arg | cut -d'=' -f 2-)"
|
||||
|
||||
if [ "$param" = "$1" ]; then
|
||||
echo "$pval"
|
||||
fi
|
||||
done
|
||||
}
|
||||
|
||||
legacy_boot_mac_adr() {
|
||||
local macstr
|
||||
local oIFS
|
||||
macstr="$(bootloader_cmdline_var mac_adr)"
|
||||
oIFS="$IFS"
|
||||
IFS=","
|
||||
set -- $macstr
|
||||
printf "%02x:%02x:%02x:%02x:%02x:%02x" $1 $2 $3 $4 $5 $6
|
||||
IFS="$oIFS"
|
||||
}
|
||||
|
||||
oxnas_board_detect() {
|
||||
local machine
|
||||
local name
|
||||
|
||||
machine=$(cat /proc/device-tree/model)
|
||||
|
||||
case "$machine" in
|
||||
*"Akitio MyCloud mini"*)
|
||||
name="akitio"
|
||||
;;
|
||||
*"MitraStar Technology Corp. STG-212"*)
|
||||
name="stg212"
|
||||
;;
|
||||
*"Shuttle KD20"*)
|
||||
name="kd20"
|
||||
;;
|
||||
*"Pogoplug Pro"*)
|
||||
name="pogoplug-pro"
|
||||
;;
|
||||
*"Pogoplug V3"*)
|
||||
name="pogoplug-v3"
|
||||
;;
|
||||
esac
|
||||
|
||||
[ -z "$name" ] && name="unknown"
|
||||
|
||||
[ -z "$OXNAS_BOARD_NAME" ] && OXNAS_BOARD_NAME="$name"
|
||||
[ -z "$OXNAS_MODEL" ] && OXNAS_MODEL="$machine"
|
||||
|
||||
[ -e "/tmp/sysinfo/" ] || mkdir -p "/tmp/sysinfo/"
|
||||
|
||||
echo "$OXNAS_BOARD_NAME" > /tmp/sysinfo/board_name
|
||||
echo "$OXNAS_MODEL" > /tmp/sysinfo/model
|
||||
}
|
@ -1,9 +0,0 @@
|
||||
#!/bin/sh
|
||||
|
||||
do_oxnas() {
|
||||
. /lib/oxnas.sh
|
||||
|
||||
oxnas_board_detect
|
||||
}
|
||||
|
||||
boot_hook_add preinit_main do_oxnas
|
@ -1,16 +1,7 @@
|
||||
#
|
||||
# Copyright (C) 2014 OpenWrt.org
|
||||
#
|
||||
|
||||
REQUIRE_IMAGE_METADATA=1
|
||||
|
||||
platform_check_image() {
|
||||
local board=$(board_name)
|
||||
|
||||
[ "$ARGC" -gt 1 ] && return 1
|
||||
|
||||
nand_do_platform_check $board $1
|
||||
return $?
|
||||
return 0
|
||||
}
|
||||
|
||||
platform_do_upgrade() {
|
||||
|
@ -80,16 +80,6 @@ CONFIG_CRC16=y
|
||||
# CONFIG_CRC32_SARWATE is not set
|
||||
CONFIG_CRC32_SLICEBY8=y
|
||||
CONFIG_CROSS_MEMORY_ATTACH=y
|
||||
CONFIG_CRYPTO_ACOMP2=y
|
||||
# CONFIG_CRYPTO_ARC4 is not set
|
||||
CONFIG_CRYPTO_CRC32C=y
|
||||
CONFIG_CRYPTO_DEFLATE=y
|
||||
CONFIG_CRYPTO_HASH=y
|
||||
CONFIG_CRYPTO_HASH2=y
|
||||
CONFIG_CRYPTO_HW=y
|
||||
CONFIG_CRYPTO_LZO=y
|
||||
CONFIG_CRYPTO_RNG2=y
|
||||
CONFIG_CRYPTO_WORKQUEUE=y
|
||||
CONFIG_DEBUG_ALIGN_RODATA=y
|
||||
CONFIG_DEBUG_BUGVERBOSE=y
|
||||
# CONFIG_DEBUG_USER is not set
|
||||
|
@ -10,7 +10,7 @@
|
||||
compatible = "akitio,mycloud", "oxsemi,ox820";
|
||||
|
||||
chosen {
|
||||
bootargs = "earlyprintk";
|
||||
bootargs = "earlyprintk console=ttyS0,115200";
|
||||
stdout-path = "serial0:115200n8";
|
||||
};
|
||||
|
||||
|
@ -15,7 +15,7 @@
|
||||
compatible = "cloudengines,pogoplugpro", "oxsemi,ox820";
|
||||
|
||||
chosen {
|
||||
bootargs = "earlyprintk";
|
||||
bootargs = "earlyprintk console=ttyS0,115200";
|
||||
stdout-path = "serial0:115200n8";
|
||||
};
|
||||
|
||||
|
@ -10,7 +10,7 @@
|
||||
compatible = "mitrastar,stg-212", "oxsemi,ox820";
|
||||
|
||||
chosen {
|
||||
bootargs = "earlyprintk";
|
||||
bootargs = "earlyprintk console=ttyS0,115200";
|
||||
stdout-path = "serial0:115200n8";
|
||||
};
|
||||
|
||||
|
@ -10,13 +10,13 @@
|
||||
compatible = "shuttle,kd20", "oxsemi,ox820";
|
||||
|
||||
chosen {
|
||||
bootargs = "earlyprintk";
|
||||
bootargs = "earlyprintk console=ttyS0,115200";
|
||||
stdout-path = "serial0:115200n8";
|
||||
};
|
||||
|
||||
memory {
|
||||
/* 128Mbytes DDR */
|
||||
reg = <0x60000000 0x8000000>;
|
||||
/* 256Mbytes DDR */
|
||||
reg = <0x60000000 0x10000000>;
|
||||
};
|
||||
|
||||
aliases {
|
||||
|
@ -39,6 +39,7 @@ endef
|
||||
define Device/akitio-mycloud
|
||||
DEVICE_DTS := ox820-akitio-mycloud
|
||||
DEVICE_TITLE := Akition myCloud (mini) / SilverStone DC01
|
||||
SUPPORTED_DEVICES := akitio,mycloud akitio
|
||||
DEVICE_PACKAGES := kmod-usb2-oxnas kmod-ata-oxnas-sata kmod-ledtrig-usbdev \
|
||||
kmod-i2c-gpio kmod-rtc-ds1307
|
||||
endef
|
||||
@ -47,6 +48,7 @@ TARGET_DEVICES += akitio-mycloud
|
||||
define Device/cloudengines-pogoplug-pro
|
||||
DEVICE_DTS := ox820-cloudengines-pogoplug-pro
|
||||
DEVICE_TITLE := Cloud Engines PogoPlug Pro (with mPCIe)
|
||||
SUPPORTED_DEVICES := cloudengines,pogoplugpro pogoplug-pro
|
||||
DEVICE_PACKAGES := kmod-usb2-oxnas kmod-ledtrig-usbdev
|
||||
endef
|
||||
TARGET_DEVICES += cloudengines-pogoplug-pro
|
||||
@ -54,6 +56,7 @@ TARGET_DEVICES += cloudengines-pogoplug-pro
|
||||
define Device/cloudengines-pogoplug-series-3
|
||||
DEVICE_DTS := ox820-cloudengines-pogoplug-series-3
|
||||
DEVICE_TITLE := Cloud Engines PogoPlug Series V3 (without mPCIe)
|
||||
SUPPORTED_DEVICES := cloudengines,pogoplugv3 pogoplug-v3
|
||||
DEVICE_PACKAGES := kmod-usb2-oxnas kmod-ledtrig-usbdev
|
||||
endef
|
||||
TARGET_DEVICES += cloudengines-pogoplug-series-3
|
||||
@ -61,6 +64,7 @@ TARGET_DEVICES += cloudengines-pogoplug-series-3
|
||||
define Device/shuttle-kd20
|
||||
DEVICE_DTS := ox820-shuttle-kd20
|
||||
DEVICE_TITLE := Shuttle KD20
|
||||
SUPPORTED_DEVICES := shuttle,kd20 kd20
|
||||
KERNEL := kernel-bin | append-dtb | uImage none
|
||||
KERNEL_INITRAMFS_PREFIX = $$(IMAGE_PREFIX)-factory
|
||||
KERNEL_INITRAMFS_SUFFIX := .tar.gz
|
||||
@ -75,6 +79,7 @@ TARGET_DEVICES += shuttle-kd20
|
||||
define Device/mitrastar-stg212
|
||||
DEVICE_DTS := ox820-mitrastar-stg212
|
||||
DEVICE_TITLE := MitraStar STG-212
|
||||
SUPPORTED_DEVICES := mitrastar,stg-212 stg212
|
||||
KERNEL := kernel-bin | append-dtb | uImage none
|
||||
DEVICE_PACKAGES := kmod-usb2-oxnas kmod-ata-oxnas-sata kmod-ledtrig-usbdev
|
||||
endef
|
||||
|
@ -0,0 +1,11 @@
|
||||
--- a/arch/arm/boot/dts/ox820-cloudengines-pogoplug-series-3.dts 2018-08-14 18:03:56.542679083 +0200
|
||||
+++ b/arch/arm/boot/dts/ox820-cloudengines-pogoplug-series-3.dts 2018-11-04 18:19:35.154886643 +0100
|
||||
@@ -15,7 +15,7 @@
|
||||
compatible = "cloudengines,pogoplugv3", "oxsemi,ox820";
|
||||
|
||||
chosen {
|
||||
- bootargs = "earlyprintk";
|
||||
+ bootargs = "earlyprintk console=ttyS0,115200";
|
||||
stdout-path = "serial0:115200n8";
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user