mirror of
https://github.com/ivoszbg/uniLoader.git
synced 2024-11-21 11:30:06 +00:00
Compare commits
2 Commits
0fe1215b15
...
d5279df583
Author | SHA1 | Date | |
---|---|---|---|
|
d5279df583 | ||
|
cb87ef8644 |
@ -48,13 +48,6 @@ menu "Device Support"
|
||||
help
|
||||
Say Y if you want to include support for Samsung Galaxy S9
|
||||
|
||||
config SAMSUNG_R8S
|
||||
bool "Support for Samsung Galaxy S20 FE"
|
||||
default n
|
||||
depends on EXYNOS_990
|
||||
help
|
||||
Say Y if you want to include support for Samsung Galaxy S20 FE
|
||||
|
||||
config SAMSUNG_X1S
|
||||
bool "Support for Samsung Galaxy S20"
|
||||
default n
|
||||
@ -82,6 +75,13 @@ menu "Device Support"
|
||||
depends on EXYNOS_9610
|
||||
help
|
||||
Say Y if you want to include support for Samsung Galaxy Tab S6 Lite
|
||||
|
||||
config SAMSUNG_R8S
|
||||
bool "Support for Samsung Galaxy S20 FE"
|
||||
default n
|
||||
depends on EXYNOS_990
|
||||
help
|
||||
Say Y if you want to include support for Samsung Galaxy S20 FE
|
||||
endmenu
|
||||
|
||||
menu "Device Specific Addresses"
|
||||
@ -99,18 +99,18 @@ menu "Device Specific Addresses"
|
||||
default 0x090000000 if SAMSUNG_ZEROFLTE
|
||||
default 0x090000000 if SAMSUNG_DREAMLTE
|
||||
default 0x090000000 if SAMSUNG_STARLTE
|
||||
default 0x090000000 if SAMSUNG_R8S
|
||||
default 0x090000000 if SAMSUNG_X1S
|
||||
default 0x050000000 if SAMSUNG_J4LTE
|
||||
default 0x090000000 if SAMSUNG_J5LTE
|
||||
default 0x090000000 if SAMSUNG_GTA4XL
|
||||
default 0x090000000 if SAMSUNG_R8S
|
||||
|
||||
config RAMDISK_ENTRY
|
||||
hex "Ramdisk Entry Address"
|
||||
default 0x082000000 if SAMSUNG_DREAMLTE
|
||||
default 0x084000000 if SAMSUNG_C1S
|
||||
default 0x084000000 if SAMSUNG_R8S
|
||||
default 0x084000000 if SAMSUNG_X1S
|
||||
default 0x084000000 if SAMSUNG_R8S
|
||||
|
||||
config FRAMEBUFFER_BASE
|
||||
hex "Framebuffer Base Address (for SimpleFB)"
|
||||
@ -122,11 +122,11 @@ menu "Device Specific Addresses"
|
||||
default 0x0e2a00000 if SAMSUNG_ZEROFLTE
|
||||
default 0x0cc000000 if SAMSUNG_DREAMLTE
|
||||
default 0x0cc000000 if SAMSUNG_STARLTE
|
||||
default 0x0f1000000 if SAMSUNG_R8S
|
||||
default 0x0f1000000 if SAMSUNG_X1S
|
||||
default 0x067000000 if SAMSUNG_J4LTE
|
||||
default 0x08e000000 if SAMSUNG_J5LTE
|
||||
default 0x0ca000000 if SAMSUNG_GTA4XL
|
||||
default 0x0f1000000 if SAMSUNG_R8S
|
||||
|
||||
config FRAMEBUFFER_WIDTH
|
||||
int "Framebuffer Width (for SimpleFB)"
|
||||
@ -138,11 +138,11 @@ menu "Device Specific Addresses"
|
||||
default 1440 if SAMSUNG_ZEROFLTE
|
||||
default 1440 if SAMSUNG_DREAMLTE
|
||||
default 1440 if SAMSUNG_STARLTE
|
||||
default 1080 if SAMSUNG_R8S
|
||||
default 1440 if SAMSUNG_X1S
|
||||
default 720 if SAMSUNG_J4LTE
|
||||
default 720 if SAMSUNG_J5LTE
|
||||
default 1200 if SAMSUNG_GTA4XL
|
||||
default 1080 if SAMSUNG_R8S
|
||||
|
||||
config FRAMEBUFFER_HEIGHT
|
||||
int "Framebuffer Height (for SimpleFB)"
|
||||
@ -154,11 +154,11 @@ menu "Device Specific Addresses"
|
||||
default 2560 if SAMSUNG_ZEROFLTE
|
||||
default 2960 if SAMSUNG_DREAMLTE
|
||||
default 2960 if SAMSUNG_STARLTE
|
||||
default 2400 if SAMSUNG_R8S
|
||||
default 3200 if SAMSUNG_X1S
|
||||
default 1280 if SAMSUNG_J4LTE
|
||||
default 1280 if SAMSUNG_J5LTE
|
||||
default 2000 if SAMSUNG_GTA4XL
|
||||
default 2400 if SAMSUNG_R8S
|
||||
|
||||
config FRAMEBUFFER_STRIDE
|
||||
int "Framebuffer Stride (for SimpleFB)"
|
||||
@ -170,11 +170,11 @@ menu "Device Specific Addresses"
|
||||
default 4 if SAMSUNG_ZEROFLTE
|
||||
default 4 if SAMSUNG_DREAMLTE
|
||||
default 4 if SAMSUNG_STARLTE
|
||||
default 4 if SAMSUNG_R8S
|
||||
default 4 if SAMSUNG_X1S
|
||||
default 4 if SAMSUNG_J4LTE
|
||||
default 3 if SAMSUNG_J5LTE
|
||||
default 4 if SAMSUNG_GTA4XL
|
||||
default 4 if SAMSUNG_R8S
|
||||
|
||||
config FRAMEBUFFER_BGRA
|
||||
bool "Framebuffer BGRA (for SimpleFB)"
|
||||
|
@ -5,8 +5,8 @@ lib-$(CONFIG_SAMSUNG_JACKPOTLTE) += samsung/board-jackpotlte.o
|
||||
lib-$(CONFIG_SAMSUNG_ZEROFLTE) += samsung/board-zeroflte.o
|
||||
lib-$(CONFIG_SAMSUNG_DREAMLTE) += samsung/board-dreamlte.o
|
||||
lib-$(CONFIG_SAMSUNG_STARLTE) += samsung/board-starlte.o
|
||||
lib-$(CONFIG_SAMSUNG_R8S) += samsung/board-r8s.o
|
||||
lib-$(CONFIG_SAMSUNG_X1S) += samsung/board-x1s.o
|
||||
lib-$(CONFIG_SAMSUNG_J5LTE) += samsung/board-j5lte.o
|
||||
lib-$(CONFIG_SAMSUNG_J4LTE) += samsung/board-j4lte.o
|
||||
lib-$(CONFIG_SAMSUNG_GTA4XL) += samsung/board-gta4xl.o
|
||||
lib-$(CONFIG_SAMSUNG_R8S) += samsung/board-r8s.o
|
||||
|
Loading…
Reference in New Issue
Block a user