mirror of
https://github.com/ivoszbg/uniLoader.git
synced 2024-11-10 06:00:07 +00:00
Merge branch 'master' into master
This commit is contained in:
commit
c93df2826e
@ -7,6 +7,13 @@ menu "Device Support"
|
|||||||
help
|
help
|
||||||
Say Y if you want to include support for iPhone 6
|
Say Y if you want to include support for iPhone 6
|
||||||
|
|
||||||
|
config SAMSUNG_C1S
|
||||||
|
bool "Support for Samsung Galaxy Note20"
|
||||||
|
default n
|
||||||
|
depends on EXYNOS_990
|
||||||
|
help
|
||||||
|
Say Y if you want to include support for Samsung Galaxy Note20
|
||||||
|
|
||||||
config SAMSUNG_NOBLELTE
|
config SAMSUNG_NOBLELTE
|
||||||
bool "Support for Samsung Galaxy Note5"
|
bool "Support for Samsung Galaxy Note5"
|
||||||
default n
|
default n
|
||||||
@ -69,6 +76,7 @@ menu "Device Specific Addresses"
|
|||||||
config PAYLOAD_ENTRY
|
config PAYLOAD_ENTRY
|
||||||
hex "Payload Entry Address"
|
hex "Payload Entry Address"
|
||||||
default 0x830000000 if APPLE_N61AP
|
default 0x830000000 if APPLE_N61AP
|
||||||
|
default 0x090000000 if SAMSUNG_C1S
|
||||||
default 0x050000000 if SAMSUNG_NOBLELTE
|
default 0x050000000 if SAMSUNG_NOBLELTE
|
||||||
default 0x090000000 if SAMSUNG_JACKPOTLTE
|
default 0x090000000 if SAMSUNG_JACKPOTLTE
|
||||||
default 0x090000000 if SAMSUNG_ZEROFLTE
|
default 0x090000000 if SAMSUNG_ZEROFLTE
|
||||||
@ -83,6 +91,7 @@ menu "Device Specific Addresses"
|
|||||||
hex "Framebuffer Base Address (for SimpleFB)"
|
hex "Framebuffer Base Address (for SimpleFB)"
|
||||||
depends on SIMPLE_FB
|
depends on SIMPLE_FB
|
||||||
default 0x83e900000 if APPLE_N61AP
|
default 0x83e900000 if APPLE_N61AP
|
||||||
|
default 0x0F1000000 if SAMSUNG_C1S
|
||||||
default 0x0e2a00000 if SAMSUNG_NOBLELTE
|
default 0x0e2a00000 if SAMSUNG_NOBLELTE
|
||||||
default 0x0ec000000 if SAMSUNG_JACKPOTLTE
|
default 0x0ec000000 if SAMSUNG_JACKPOTLTE
|
||||||
default 0x0e2a00000 if SAMSUNG_ZEROFLTE
|
default 0x0e2a00000 if SAMSUNG_ZEROFLTE
|
||||||
@ -96,6 +105,7 @@ menu "Device Specific Addresses"
|
|||||||
int "Framebuffer Width (for SimpleFB)"
|
int "Framebuffer Width (for SimpleFB)"
|
||||||
depends on SIMPLE_FB
|
depends on SIMPLE_FB
|
||||||
default 752 if APPLE_N61AP
|
default 752 if APPLE_N61AP
|
||||||
|
default 1080 if SAMSUNG_C1S
|
||||||
default 1440 if SAMSUNG_NOBLELTE
|
default 1440 if SAMSUNG_NOBLELTE
|
||||||
default 1080 if SAMSUNG_JACKPOTLTE
|
default 1080 if SAMSUNG_JACKPOTLTE
|
||||||
default 1440 if SAMSUNG_ZEROFLTE
|
default 1440 if SAMSUNG_ZEROFLTE
|
||||||
@ -109,6 +119,7 @@ menu "Device Specific Addresses"
|
|||||||
int "Framebuffer Height (for SimpleFB)"
|
int "Framebuffer Height (for SimpleFB)"
|
||||||
depends on SIMPLE_FB
|
depends on SIMPLE_FB
|
||||||
default 1334 if APPLE_N61AP
|
default 1334 if APPLE_N61AP
|
||||||
|
default 2400 if SAMSUNG_C1S
|
||||||
default 2560 if SAMSUNG_NOBLELTE
|
default 2560 if SAMSUNG_NOBLELTE
|
||||||
default 2220 if SAMSUNG_JACKPOTLTE
|
default 2220 if SAMSUNG_JACKPOTLTE
|
||||||
default 2560 if SAMSUNG_ZEROFLTE
|
default 2560 if SAMSUNG_ZEROFLTE
|
||||||
@ -122,6 +133,7 @@ menu "Device Specific Addresses"
|
|||||||
int "Framebuffer Stride (for SimpleFB)"
|
int "Framebuffer Stride (for SimpleFB)"
|
||||||
depends on SIMPLE_FB
|
depends on SIMPLE_FB
|
||||||
default 4 if APPLE_N61AP
|
default 4 if APPLE_N61AP
|
||||||
|
default 4 if SAMSUNG_C1S
|
||||||
default 4 if SAMSUNG_NOBLELTE
|
default 4 if SAMSUNG_NOBLELTE
|
||||||
default 4 if SAMSUNG_JACKPOTLTE
|
default 4 if SAMSUNG_JACKPOTLTE
|
||||||
default 4 if SAMSUNG_ZEROFLTE
|
default 4 if SAMSUNG_ZEROFLTE
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
lib-$(CONFIG_APPLE_N61AP) += apple/board-n61ap.o
|
lib-$(CONFIG_APPLE_N61AP) += apple/board-n61ap.o
|
||||||
|
lib-$(CONFIG_SAMSUNG_C1S) += samsung/board-c1s.o
|
||||||
lib-$(CONFIG_SAMSUNG_NOBLELTE) += samsung/board-noblelte.o
|
lib-$(CONFIG_SAMSUNG_NOBLELTE) += samsung/board-noblelte.o
|
||||||
lib-$(CONFIG_SAMSUNG_JACKPOTLTE) += samsung/board-jackpotlte.o
|
lib-$(CONFIG_SAMSUNG_JACKPOTLTE) += samsung/board-jackpotlte.o
|
||||||
lib-$(CONFIG_SAMSUNG_ZEROFLTE) += samsung/board-zeroflte.o
|
lib-$(CONFIG_SAMSUNG_ZEROFLTE) += samsung/board-zeroflte.o
|
||||||
|
9
board/samsung/board-c1s.c
Executable file
9
board/samsung/board-c1s.c
Executable file
@ -0,0 +1,9 @@
|
|||||||
|
/* SPDX-License-Identifier: GPL-2.0 */
|
||||||
|
/*
|
||||||
|
* Copyright (c) BotchedRPR <thenxguy0@gmail.com>
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
void board_init(void) {
|
||||||
|
|
||||||
|
}
|
3
configs/c1s_defconfig
Executable file
3
configs/c1s_defconfig
Executable file
@ -0,0 +1,3 @@
|
|||||||
|
CONFIG_CROSS_COMPILE="aarch64-linux-gnu-"
|
||||||
|
CONFIG_EXYNOS_990=y
|
||||||
|
CONFIG_SAMSUNG_C1S=y
|
Loading…
Reference in New Issue
Block a user