हमारा सुझाव है कि 27 मार्च, 2025 से AOSP को बनाने और उसमें योगदान देने के लिए, aosp-main
के बजाय android-latest-release
का इस्तेमाल करें. ज़्यादा जानकारी के लिए, AOSP में हुए बदलाव लेख पढ़ें.
सिस्टम प्रॉपर्टी
संग्रह की मदद से व्यवस्थित रहें
अपनी प्राथमिकताओं के आधार पर, कॉन्टेंट को सेव करें और कैटगरी में बांटें.
सिस्टम की कई अलग-अलग प्रॉपर्टी हैं, जो पेज साइज़ के साथ काम करने के लिहाज़ से, Android सिस्टम की अलग-अलग स्थितियों के बारे में बताती हैं. अगर आपको यह समझना है कि किसी डिवाइस को कैसे कॉन्फ़िगर किया गया है, तो इन विकल्पों से आपको यह जानकारी मिलती है कि Android में पेज साइज़ को कैसे कॉन्फ़िगर किया जाता है और उसका इस्तेमाल कैसे किया जाता है.
ro.boot.hardware.cpu.pagesize
, OEM के हिसाब से तय की गई वैल्यू होती है. इससे, चल रहे पेज के साइज़ का पता चलता है. Android 16 में, यह डिफ़ॉल्ट रूप से init के ज़रिए सेट होता है. यह सीपीयू पेज साइज़ के आधार पर सेट होता है. हालांकि, ऐसा तब होता है, जब इसे बूटलोडर से पास न किया गया हो.
ro.product.cpu.pagesize.max
, PRODUCT_MAX_PAGE_SIZE_SUPPORTED
की वैल्यू है. दूसरे शब्दों में, डिवाइस पर बाइनरी के अलाइनमेंट की उम्मीद है.
ro.product.page_size
(Android 16 में जोड़ा गया)
TARGET_BOOTS_16K
के आधार पर, प्रॉडक्ट के लिए तय किया गया पेज साइज़ है. इससे यह तय होता है कि पेज का साइज़ क्या होना चाहिए. इसकी पुष्टि Vts16KPageSizeTest
में की जाती है. अगर गलत कर्नेल का इस्तेमाल किया गया है, तो इस प्रॉपर्टी के मैच न होने से आपको इसकी जानकारी मिलती है.
ro.product.build.16k_page.enabled
से पता चलता है कि डिवाइस में 4 केबी और 16 केबी मोड के बीच स्विच करने के लिए, डेवलपर के लिए उपलब्ध विकल्प है या नहीं. इस विकल्प को चालू और इस्तेमाल करने के तरीके के बारे में ज़्यादा पढ़ें.
इस पेज पर मौजूद कॉन्टेंट और कोड सैंपल कॉन्टेंट के लाइसेंस में बताए गए लाइसेंस के हिसाब से हैं. Java और OpenJDK, Oracle और/या इससे जुड़ी हुई कंपनियों के ट्रेडमार्क या रजिस्टर किए हुए ट्रेडमार्क हैं.
आखिरी बार 2025-07-27 (UTC) को अपडेट किया गया.
[[["समझने में आसान है","easyToUnderstand","thumb-up"],["मेरी समस्या हल हो गई","solvedMyProblem","thumb-up"],["अन्य","otherUp","thumb-up"]],[["वह जानकारी मौजूद नहीं है जो मुझे चाहिए","missingTheInformationINeed","thumb-down"],["बहुत मुश्किल है / बहुत सारे चरण हैं","tooComplicatedTooManySteps","thumb-down"],["पुराना","outOfDate","thumb-down"],["अनुवाद से जुड़ी समस्या","translationIssue","thumb-down"],["सैंपल / कोड से जुड़ी समस्या","samplesCodeIssue","thumb-down"],["अन्य","otherDown","thumb-down"]],["आखिरी बार 2025-07-27 (UTC) को अपडेट किया गया."],[],[],null,["# System properties\n\nThere are many different system properties that indicate various states of\nan Android system related to its page size support. If you're trying to\nunderstand how a specific device is configured, these options provide an\noverview of how page size is configured and used in Android.\n\n- `ro.boot.hardware.cpu.pagesize` is an OEM-specific value, indicating the page size that is running. In Android 16, this is set by init by default based on the CPU page size if it isn't passed from the bootloader.\n- `ro.product.cpu.pagesize.max` is the value of `PRODUCT_MAX_PAGE_SIZE_SUPPORTED` or in other words, the expected alignment of binaries on device.\n- `ro.product.page_size` (introduced in Android 16) is the product-defined page size (based on `TARGET_BOOTS_16K`). This defines what the page size should be and is verfied in `Vts16KPageSizeTest`. If the wrong kernel is used, the mismatch with this property tells you.\n- `ro.product.build.16k_page.enabled` indicates whether the device supports a developer option to switch between 4 KB and 16 KB mode. Read more how to [enable and use this option](/docs/core/architecture/16kb-page-size/16kb-developer-option)."]]