Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add UDFPS build flag #39

Open
wants to merge 36 commits into
base: fifteen
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
5a24eba
[RisingOS] Initial manifest for android 15
minaripenguin Oct 8, 2024
bcdccda
manifest: Track our fork of NetworkStack
luk1337 Oct 6, 2024
20d5782
Track bionic fork
minaripenguin Oct 12, 2024
af4c37c
[RisingOS] October Security Update [A15]
minaripenguin Oct 16, 2024
d84e9ec
manifest: Track Faceunlock
neobuddy89 Oct 19, 2024
f6741c5
Untrack updated LOS repositories
minaripenguin Oct 20, 2024
cc4edd3
manifest: Track our own blueprint and Virtualization repos
luk1337 Oct 19, 2024
defc394
Track pixel development repositories
minaripenguin Oct 20, 2024
6d1cd20
manifest: Remove AudioFX and Eleven
minaripenguin Oct 21, 2024
6ae7ad2
Untrack more updated LOS repositories
minaripenguin Oct 22, 2024
5d35728
Track telecomm repository
minaripenguin Oct 23, 2024
31838a4
Track FadingEdgeLayout
minaripenguin Oct 25, 2024
7cb8ec3
Update launcher path
minaripenguin Oct 26, 2024
bc1923f
Track updated gms vendor
minaripenguin Oct 26, 2024
43318ff
Track wifi module and art repositories
minaripenguin Oct 27, 2024
56c363e
[DEVELOPMENT] Track cheetah vendor
minaripenguin Oct 27, 2024
979c4d6
manifest: Track gs-common
Legendleo90 Oct 26, 2024
00ef48a
Track RisingWalls
minaripenguin Oct 28, 2024
7c860a2
Redirect from staging to main org
minaripenguin Oct 28, 2024
87ead9b
Update Chipset/Maintainer sysprop documentation
minaripenguin Oct 30, 2024
2cf6ffa
Untrack android_vendor_qcom_opensource_fm-commonsys
minaripenguin Nov 1, 2024
a06ceea
manifest: Track qcom bluetooth commonsys-intf
mikeNG Oct 31, 2024
9bd4adc
Track LMKD repository
minaripenguin Nov 1, 2024
5a11547
Remove pixel framework entry
minaripenguin Nov 1, 2024
7939367
manifest: Track our kotlinc/kotlinx.{coroutines,serialization} forks
luk1337 Nov 2, 2024
a3c4046
manifest: Track our device/google/contexthub
npjohnson Nov 5, 2024
7b31148
[RisingOS] November Security Update
minaripenguin Nov 7, 2024
dd0f66f
Track android_hardware_google_graphics_common
minaripenguin Nov 8, 2024
689b28d
Remove development repositories
minaripenguin Nov 8, 2024
f775111
manifest: November 2024 Security Update
mikeNG Nov 7, 2024
f9fa51d
Track build/release repository
minaripenguin Nov 10, 2024
64fef96
Track pixel framework
minaripenguin Nov 26, 2024
1fc1004
Track LMOFreeform repository
minaripenguin Nov 30, 2024
b1c1d29
Update Corvus AOSP credits link
minaripenguin Dec 6, 2024
3dc428f
manifest: Add new device org
RisenID Dec 6, 2024
ad3a50d
Add UDFPS build flag
MohammadAlArabi Dec 20, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update Chipset/Maintainer sysprop documentation
Signed-off-by: minaripenguin <[email protected]>
  • Loading branch information
minaripenguin committed Oct 30, 2024
commit 87ead9b741abb414b58087a7a5cef20f93239586
20 changes: 12 additions & 8 deletions README.mkdn
Original file line number Diff line number Diff line change
Expand Up @@ -54,22 +54,26 @@ Building Flags
```bash
# friendly tip: builders can use vendor init_xxx.cpp as workaround for spacing
# e.g. property_override("ro.rising.chipset", "Snapdragon 870 5G");
RISING_CHIPSET="Google Tensor 2"

# friendly tip: builders can use vendor init_xxx.cpp as workaround for spacing
# e.g. property_override("ro.rising.maintainer", "maintainer");
RISING_MAINTAINER="Niv"

#In rising_<device>.mk Add the following properties to `PRODUCT_BUILD_PROP_OVERRIDES`
# Chipset and Maintainer Prop
#In lineage_<device>.mk Add the following properties to `PRODUCT_BUILD_PROP_OVERRIDES`

Add the following variables:

# Lunch banner maintainer variable
RISING_MAINTAINER="Niv"

example:
# Chipset/Maintainer properties (ro.rising.chipset/ro.rising.maintainer)
# (Optional if builder is setting properties via init_<device>.cpp)
PRODUCT_BUILD_PROP_OVERRIDES += \
RISING_CHIPSET="Google Tensor 2" \
RISING_MAINTAINER="Niv"
RisingChipset="Google Tensor 2" \
RisingMaintainer="Niv"

# chipset flag enclose var with "" if more than one
# this will reflect on build/display version, a firmware package/zip name
# e.g. risingOS-2.1-COMMUNITY-device-AOSP.zip - AOSP is the default package type, WITH_GMS will override the package type to PIXEL
# e.g. risingOS-6.0-COMMUNITY-device-AOSP.zip - AOSP is the default package type, WITH_GMS will override the package type to PIXEL
RISING_PACKAGE_TYPE := "VANILLA_AOSP"

# disable/enable blur support, default is false
Expand Down