mirror of
https://github.com/libretro/Lakka.git
synced 2024-11-26 17:40:36 +00:00
S805 basic devices support
This commit is contained in:
parent
0adce94d81
commit
caa856376f
@ -48,6 +48,11 @@ LINUX_DEPENDS="$PROJECT_DIR/$PROJECT/linux/linux.$TARGET_ARCH.conf $ROOT/package
|
||||
. $PROJECT_DIR/$PROJECT/options
|
||||
fi
|
||||
|
||||
# read board options if available
|
||||
if [ -f "$PROJECT_DIR/$PROJECT/devices/$SYSTEM/options" ]; then
|
||||
. $PROJECT_DIR/$PROJECT/devices/$SYSTEM/options
|
||||
fi
|
||||
|
||||
# Need to point to your actual cc
|
||||
# If you have ccache installed, take care that LOCAL_CC don't point to it
|
||||
LOCAL_CC=`which gcc`
|
||||
|
@ -1,2 +1,5 @@
|
||||
# Kernel extra targets to build
|
||||
KERNEL_UBOOT_EXTRA_TARGET="meson8b_hd18q.dtd meson8b_hd18q.dtb"
|
||||
|
||||
# Path to a file that will be passed as the --second parameter to Android mkbootimg
|
||||
ANDROID_BOOTIMG_SECOND="arch/arm/boot/dts/amlogic/meson8b_hd18q.dtb"
|
||||
|
@ -23,15 +23,9 @@
|
||||
# Kernel target
|
||||
KERNEL_UBOOT_TARGET="uImage"
|
||||
|
||||
# Kernel extra targets to build
|
||||
KERNEL_UBOOT_EXTRA_TARGET="meson8b_hd18q.dtd meson8b_hd18q.dtb"
|
||||
|
||||
# Build Android kernel image using mkbootimg
|
||||
BUILD_ANDROID_BOOTIMG="yes"
|
||||
|
||||
# Path to a file that will be passed as the --second parameter to Android mkbootimg
|
||||
ANDROID_BOOTIMG_SECOND="arch/arm/boot/dts/amlogic/meson8b_hd18q.dtb"
|
||||
|
||||
# Additional kernel make parameters (for example to specify the u-boot loadaddress)
|
||||
KERNEL_MAKE_EXTRACMD=""
|
||||
|
||||
|
@ -41,7 +41,7 @@ if [ "$OPENELEC_VERSION" = devel ]; then
|
||||
fi
|
||||
|
||||
TARGET_VERSION="$PROJECT"
|
||||
if [ "$PROJECT" == "imx6" -o "$PROJECT" == "H3" ] && [ -n "$SYSTEM" ]; then
|
||||
if [ "$PROJECT" == "imx6" -o "$PROJECT" == "H3" -o "$PROJECT" == "S805" ] && [ -n "$SYSTEM" ]; then
|
||||
TARGET_VERSION="$TARGET_VERSION.$SYSTEM"
|
||||
fi
|
||||
TARGET_VERSION="$TARGET_VERSION.$TARGET_ARCH-$OPENELEC_VERSION"
|
||||
|
Loading…
Reference in New Issue
Block a user