├── .github └── FUNDING.yml ├── .gitignore ├── FEATURES.md ├── KERNEL.md ├── LICENSE ├── README.md ├── binaries ├── LICENSE.pongoOS ├── Pongo.bin ├── README.md └── initramfs.gz ├── config_16k ├── features ├── A10.md ├── A11.md ├── A7.md ├── A8.md └── A9.md ├── hw └── DART.md └── images └── m1n1 ├── README.md ├── d22.png ├── j171.png ├── j42d.png ├── j680.png └── n61.png /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: [asdfugil] 4 | patreon: # Replace with a single Patreon username 5 | open_collective: # Replace with a single Open Collective username 6 | ko_fi: riscv64 7 | tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel 8 | community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry 9 | liberapay: # Replace with a single Liberapay username 10 | issuehunt: # Replace with a single IssueHunt username 11 | lfx_crowdfunding: # Replace with a single LFX Crowdfunding project-name e.g., cloud-foundry 12 | polar: # Replace with a single Polar username 13 | buy_me_a_coffee: # Replace with a single Buy Me a Coffee username 14 | thanks_dev: # Replace with a single thanks.dev username 15 | custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2'] 16 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /FEATURES.md: -------------------------------------------------------------------------------- 1 | # Feature Support 2 | 3 | These documents provide information on feature support on supported devices as well as upstreaming statistics. 4 | 5 | ## Feature Support by SoC 6 | 7 | - [A7 Devices Feature Support](./features/A7.md) 8 | - [A8/A8X Devices Feature Support](./features/A8.md) 9 | - [A9/A9X Devices Feature Support](./features/A9.md) 10 | - [A10/A10X/T2 Devices Feature Support](./features/A10.md) 11 | - [A11 Devices Feature Support](./features/A11.md) 12 | 13 | ## Upstreaming staticstics 14 | 15 | The table below lists the amount of non-merge commits between each mainline release and the corresponding linux-apple tag. 16 | 17 | 18 | | | linux-apple tag | commit count | 19 | |--------------|:---------------:|:------------:| 20 | | v6.13 | apple-6.13 | 82 | 21 | | v6.14 | apple-6.14 | 111 | 22 | | v6.15 | apple-6.15 | 96 | 23 | -------------------------------------------------------------------------------- /KERNEL.md: -------------------------------------------------------------------------------- 1 | # Kernel Config 2 | 3 | Start with the `config_16k` in the repository. A9-A11, T2 should be fine with 4 | this config. A7-A8X will need to change the page size. 5 | 6 | Edit config with clang using: 7 | ``` 8 | make -j$(nproc) ARCH=arm64 LLVM=1 menuconfig 9 | ``` 10 | 11 | For 4K page size (A7-A8X), enable: 12 | 13 | - CONFIG_ARM64_4K 14 | 15 | For 16K page size (A9-A11, T2), enable: 16 | 17 | - CONFIG_ARM64_16K 18 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | binaries/initramfs.gz and binaries/Pongo.bin have their own license. For other files: 2 | 3 | MIT License 4 | 5 | Copyright (c) 2025 Hoolock Linux contributors 6 | 7 | Permission is hereby granted, free of charge, to any person obtaining a copy 8 | of this software and associated documentation files (the "Software"), to deal 9 | in the Software without restriction, including without limitation the rights 10 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 11 | copies of the Software, and to permit persons to whom the Software is 12 | furnished to do so, subject to the following conditions: 13 | 14 | The above copyright notice and this permission notice shall be included in all 15 | copies or substantial portions of the Software. 16 | 17 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 18 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 19 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 20 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 21 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 22 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 23 | SOFTWARE. 24 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Hoolock Linux Documentation 2 | 3 | Documentation for Linux on A7-A11, T2 Apple devices. 4 | 5 | This document contains information about building and booting the kernel. 6 | 7 | For feature support, see [FEATURES.md](./FEATURES.md). 8 | 9 | Excluded devices: 10 | - HomePod (not tested, so no device tree included) 11 | 12 | Supported firmware versions: iOS/iPadOS/tvOS 9.0 - 18.0 13 | 14 | ## Preparing files 15 | 16 | ### Required files 17 | 18 | - [checkra1n 1337](https://checkra.in/1337) 19 | - [PongoOS (with bootm)](https://github.com/checkra1n/PongoOS/tree/iOS15) 20 | - [Linux Kernel](https://github.com/hoolocklinux/linux) branch `hoolock` 21 | - [m1n1-idevice](https://github.com/hoolocklinux/m1n1) 22 | - [pongoterm.c](https://github.com/checkra1n/PongoOS/raw/iOS15/scripts/pongoterm.c) 23 | - An arm64 initramfs, an example is included here as well. 24 | 25 | Prebuilt PongoOS and can be found in this repository. You can find 26 | prebuilt m1n1-idevice binaries from the [CI build output](https://nightly.link/hoolocklinux/m1n1/workflows/build/idevice/m1n1.zip). 27 | `m1n1.bin` is that one that should be used alongside pongoOS like in the following instructions. `m1n1-idevice.macho` and `monitor-stub.macho` 28 | is for booting with Apple's iBoot. That process is more complicated and has not been documented yet. 29 | 30 | Note: palera1n's pongoOS already have bootm 31 | 32 | ### pongoterm.c compile instructions 33 | 34 | Linux: 35 | ``` 36 | cc pongoterm.c -DUSE_LIBUSB -Os -lusb-1.0 -o pongoterm 37 | ``` 38 | 39 | macOS: 40 | ``` 41 | clang -x objective-c pongoterm.c -framework IOKit -framework CoreFoundation -framework Foundation -Os -o pongoterm 42 | ``` 43 | 44 | ### Kernel config 45 | 46 | [KERNEL.md](./KERNEL.md) 47 | 48 | To compile the kernel with clang: 49 | ``` 50 | make -j$(nproc) ARCH=arm64 LLVM=1 Image.gz dtbs 51 | ``` 52 | 53 | 54 | ### Prepare m1n1 blob 55 | 56 | Assuming you are in the m1n1 source tree, the command should look like this. 57 | 58 | ``` 59 | cat build/m1n1.bin <(echo 'chosen.bootargs=') \ 60 | /path/to/hoolock-linux/arch/arm64/boot/dts/apple/*.dtb \ 61 | /path/to/hoolock-linux/arch/arm64/boot/Image.gz \ 62 | /path/to/initramfs.gz > m1n1-linux.bin 63 | ``` 64 | 65 | ## Booting 66 | 67 | ### DFU mode 68 | 69 | You can use [palera1n](https://github.com/palera1n/palera1n/releases) to 70 | help you enter DFU mode. Command: `palera1n -Dl` 71 | 72 | [Instructions](https://theapplewiki.com/wiki/DFU_Mode) to enter DFU without 73 | palera1n. 74 | 75 | ### Booting PongoOS 76 | 77 | Run checkra1n as root: 78 | 79 | ``` 80 | sudo /path/to/checkra1n -pEk /path/to/Pongo.bin 81 | ``` 82 | 83 | ### Booting m1n1 and kernel 84 | 85 | After booting pongoOS, run pongoterm as root: 86 | 87 | ``` 88 | printf '/send /path/to/m1n1-linux.bin\nbootm\n' | sudo pongoterm 89 | ``` 90 | 91 | Click [here](./images/m1n1/README.md) to see how the screen looks like while in m1n1. 92 | 93 | ## Acknowledgements 94 | 95 | - [Asahi Linux](https://asahilinux.org/) - m1n1 and Apple M1 Linux support 96 | - [checkra1n](https://checkra.in) - pongoOS and checkm8 exploit implementation 97 | - [Konrad Dybcio](https://konradybcio.pl) - Original linux-apple porter 98 | - [Corellium](https://github.com/corellium) - Sandcastle Linux port 99 | 100 | ---- 101 | 102 | *Linux® is the registered trademark of Linus Torvalds in the U.S. and other countries.* 103 | -------------------------------------------------------------------------------- /binaries/LICENSE.pongoOS: -------------------------------------------------------------------------------- 1 | **License for pongoOS as a whole** 2 | Except the third-party software used as part of pongoOS which have their licenses copied below. 3 | 4 | The MIT License (MIT) 5 | 6 | Copyright © 2019-2023 checkra1n team 7 | 8 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: 9 | 10 | The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 11 | 12 | THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 13 | 14 | **License for USB controller drivers: src/drivers/usb/synopsys** 15 | 16 | Apache License 17 | 18 | Version 2.0, January 2004 19 | 20 | http://www.apache.org/licenses/ 21 | 22 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 23 | 24 | 1. Definitions. 25 | 26 | "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. 27 | 28 | "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. 29 | 30 | "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. 31 | 32 | "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. 33 | 34 | "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. 35 | 36 | "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. 37 | 38 | "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. 41 | 42 | "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." 43 | 44 | "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 45 | 46 | 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. 47 | 48 | 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. 49 | 50 | 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: 51 | 52 | You must give any other recipients of the Work or Derivative Works a copy of this License; and 53 | You must cause any modified files to carry prominent notices stating that You changed the files; and 54 | You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and 55 | If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. 56 | 57 | You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 58 | 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. 59 | 60 | 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. 61 | 62 | 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. 63 | 64 | 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. 65 | 66 | 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. 67 | 68 | END OF TERMS AND CONDITIONS 69 | 70 | **License for Apple provided components**: 71 | (apple-include, src/lib/libDER) 72 | 73 | Please read this License carefully before downloading this software. 74 | By downloading or using this software, you are agreeing to be bound by 75 | the terms of this License. If you do not or cannot agree to the terms 76 | of this License, please do not download or use the software. 77 | 78 | 1. General; Definitions. This License applies to any program or other 79 | work which Apple Computer, Inc. ("Apple") makes publicly available and 80 | which contains a notice placed by Apple identifying such program or 81 | work as "Original Code" and stating that it is subject to the terms of 82 | this Apple Public Source License version 2.0 ("License"). As used in 83 | this License: 84 | 85 | 1.1 "Applicable Patent Rights" mean: (a) in the case where Apple is 86 | the grantor of rights, (i) claims of patents that are now or hereafter 87 | acquired, owned by or assigned to Apple and (ii) that cover subject 88 | matter contained in the Original Code, but only to the extent 89 | necessary to use, reproduce and/or distribute the Original Code 90 | without infringement; and (b) in the case where You are the grantor of 91 | rights, (i) claims of patents that are now or hereafter acquired, 92 | owned by or assigned to You and (ii) that cover subject matter in Your 93 | Modifications, taken alone or in combination with Original Code. 94 | 95 | 1.2 "Contributor" means any person or entity that creates or 96 | contributes to the creation of Modifications. 97 | 98 | 1.3 "Covered Code" means the Original Code, Modifications, the 99 | combination of Original Code and any Modifications, and/or any 100 | respective portions thereof. 101 | 102 | 1.4 "Externally Deploy" means: (a) to sublicense, distribute or 103 | otherwise make Covered Code available, directly or indirectly, to 104 | anyone other than You; and/or (b) to use Covered Code, alone or as 105 | part of a Larger Work, in any way to provide a service, including but 106 | not limited to delivery of content, through electronic communication 107 | with a client other than You. 108 | 109 | 1.5 "Larger Work" means a work which combines Covered Code or portions 110 | thereof with code not governed by the terms of this License. 111 | 112 | 1.6 "Modifications" mean any addition to, deletion from, and/or change 113 | to, the substance and/or structure of the Original Code, any previous 114 | Modifications, the combination of Original Code and any previous 115 | Modifications, and/or any respective portions thereof. When code is 116 | released as a series of files, a Modification is: (a) any addition to 117 | or deletion from the contents of a file containing Covered Code; 118 | and/or (b) any new file or other representation of computer program 119 | statements that contains any part of Covered Code. 120 | 121 | 1.7 "Original Code" means (a) the Source Code of a program or other 122 | work as originally made available by Apple under this License, 123 | including the Source Code of any updates or upgrades to such programs 124 | or works made available by Apple under this License, and that has been 125 | expressly identified by Apple as such in the header file(s) of such 126 | work; and (b) the object code compiled from such Source Code and 127 | originally made available by Apple under this License. 128 | 129 | 1.8 "Source Code" means the human readable form of a program or other 130 | work that is suitable for making modifications to it, including all 131 | modules it contains, plus any associated interface definition files, 132 | scripts used to control compilation and installation of an executable 133 | (object code). 134 | 135 | 1.9 "You" or "Your" means an individual or a legal entity exercising 136 | rights under this License. For legal entities, "You" or "Your" 137 | includes any entity which controls, is controlled by, or is under 138 | common control with, You, where "control" means (a) the power, direct 139 | or indirect, to cause the direction or management of such entity, 140 | whether by contract or otherwise, or (b) ownership of fifty percent 141 | (50%) or more of the outstanding shares or beneficial ownership of 142 | such entity. 143 | 144 | 2. Permitted Uses; Conditions & Restrictions. Subject to the terms 145 | and conditions of this License, Apple hereby grants You, effective on 146 | the date You accept this License and download the Original Code, a 147 | world-wide, royalty-free, non-exclusive license, to the extent of 148 | Apple's Applicable Patent Rights and copyrights covering the Original 149 | Code, to do the following: 150 | 151 | 2.1 Unmodified Code. You may use, reproduce, display, perform, 152 | internally distribute within Your organization, and Externally Deploy 153 | verbatim, unmodified copies of the Original Code, for commercial or 154 | non-commercial purposes, provided that in each instance: 155 | 156 | (a) You must retain and reproduce in all copies of Original Code the 157 | copyright and other proprietary notices and disclaimers of Apple as 158 | they appear in the Original Code, and keep intact all notices in the 159 | Original Code that refer to this License; and 160 | 161 | (b) You must include a copy of this License with every copy of Source 162 | Code of Covered Code and documentation You distribute or Externally 163 | Deploy, and You may not offer or impose any terms on such Source Code 164 | that alter or restrict this License or the recipients' rights 165 | hereunder, except as permitted under Section 6. 166 | 167 | 2.2 Modified Code. You may modify Covered Code and use, reproduce, 168 | display, perform, internally distribute within Your organization, and 169 | Externally Deploy Your Modifications and Covered Code, for commercial 170 | or non-commercial purposes, provided that in each instance You also 171 | meet all of these conditions: 172 | 173 | (a) You must satisfy all the conditions of Section 2.1 with respect to 174 | the Source Code of the Covered Code; 175 | 176 | (b) You must duplicate, to the extent it does not already exist, the 177 | notice in Exhibit A in each file of the Source Code of all Your 178 | Modifications, and cause the modified files to carry prominent notices 179 | stating that You changed the files and the date of any change; and 180 | 181 | (c) If You Externally Deploy Your Modifications, You must make 182 | Source Code of all Your Externally Deployed Modifications either 183 | available to those to whom You have Externally Deployed Your 184 | Modifications, or publicly available. Source Code of Your Externally 185 | Deployed Modifications must be released under the terms set forth in 186 | this License, including the license grants set forth in Section 3 187 | below, for as long as you Externally Deploy the Covered Code or twelve 188 | (12) months from the date of initial External Deployment, whichever is 189 | longer. You should preferably distribute the Source Code of Your 190 | Externally Deployed Modifications electronically (e.g. download from a 191 | web site). 192 | 193 | 2.3 Distribution of Executable Versions. In addition, if You 194 | Externally Deploy Covered Code (Original Code and/or Modifications) in 195 | object code, executable form only, You must include a prominent 196 | notice, in the code itself as well as in related documentation, 197 | stating that Source Code of the Covered Code is available under the 198 | terms of this License with information on how and where to obtain such 199 | Source Code. 200 | 201 | 2.4 Third Party Rights. You expressly acknowledge and agree that 202 | although Apple and each Contributor grants the licenses to their 203 | respective portions of the Covered Code set forth herein, no 204 | assurances are provided by Apple or any Contributor that the Covered 205 | Code does not infringe the patent or other intellectual property 206 | rights of any other entity. Apple and each Contributor disclaim any 207 | liability to You for claims brought by any other entity based on 208 | infringement of intellectual property rights or otherwise. As a 209 | condition to exercising the rights and licenses granted hereunder, You 210 | hereby assume sole responsibility to secure any other intellectual 211 | property rights needed, if any. For example, if a third party patent 212 | license is required to allow You to distribute the Covered Code, it is 213 | Your responsibility to acquire that license before distributing the 214 | Covered Code. 215 | 216 | 3. Your Grants. In consideration of, and as a condition to, the 217 | licenses granted to You under this License, You hereby grant to any 218 | person or entity receiving or distributing Covered Code under this 219 | License a non-exclusive, royalty-free, perpetual, irrevocable license, 220 | under Your Applicable Patent Rights and other intellectual property 221 | rights (other than patent) owned or controlled by You, to use, 222 | reproduce, display, perform, modify, sublicense, distribute and 223 | Externally Deploy Your Modifications of the same scope and extent as 224 | Apple's licenses under Sections 2.1 and 2.2 above. 225 | 226 | 4. Larger Works. You may create a Larger Work by combining Covered 227 | Code with other code not governed by the terms of this License and 228 | distribute the Larger Work as a single product. In each such instance, 229 | You must make sure the requirements of this License are fulfilled for 230 | the Covered Code or any portion thereof. 231 | 232 | 5. Limitations on Patent License. Except as expressly stated in 233 | Section 2, no other patent rights, express or implied, are granted by 234 | Apple herein. Modifications and/or Larger Works may require additional 235 | patent licenses from Apple which Apple may grant in its sole 236 | discretion. 237 | 238 | 6. Additional Terms. You may choose to offer, and to charge a fee for, 239 | warranty, support, indemnity or liability obligations and/or other 240 | rights consistent with the scope of the license granted herein 241 | ("Additional Terms") to one or more recipients of Covered Code. 242 | However, You may do so only on Your own behalf and as Your sole 243 | responsibility, and not on behalf of Apple or any Contributor. You 244 | must obtain the recipient's agreement that any such Additional Terms 245 | are offered by You alone, and You hereby agree to indemnify, defend 246 | and hold Apple and every Contributor harmless for any liability 247 | incurred by or claims asserted against Apple or such Contributor by 248 | reason of any such Additional Terms. 249 | 250 | 7. Versions of the License. Apple may publish revised and/or new 251 | versions of this License from time to time. Each version will be given 252 | a distinguishing version number. Once Original Code has been published 253 | under a particular version of this License, You may continue to use it 254 | under the terms of that version. You may also choose to use such 255 | Original Code under the terms of any subsequent version of this 256 | License published by Apple. No one other than Apple has the right to 257 | modify the terms applicable to Covered Code created under this 258 | License. 259 | 260 | 8. NO WARRANTY OR SUPPORT. The Covered Code may contain in whole or in 261 | part pre-release, untested, or not fully tested works. The Covered 262 | Code may contain errors that could cause failures or loss of data, and 263 | may be incomplete or contain inaccuracies. You expressly acknowledge 264 | and agree that use of the Covered Code, or any portion thereof, is at 265 | Your sole and entire risk. THE COVERED CODE IS PROVIDED "AS IS" AND 266 | WITHOUT WARRANTY, UPGRADES OR SUPPORT OF ANY KIND AND APPLE AND 267 | APPLE'S LICENSOR(S) (COLLECTIVELY REFERRED TO AS "APPLE" FOR THE 268 | PURPOSES OF SECTIONS 8 AND 9) AND ALL CONTRIBUTORS EXPRESSLY DISCLAIM 269 | ALL WARRANTIES AND/OR CONDITIONS, EXPRESS OR IMPLIED, INCLUDING, BUT 270 | NOT LIMITED TO, THE IMPLIED WARRANTIES AND/OR CONDITIONS OF 271 | MERCHANTABILITY, OF SATISFACTORY QUALITY, OF FITNESS FOR A PARTICULAR 272 | PURPOSE, OF ACCURACY, OF QUIET ENJOYMENT, AND NONINFRINGEMENT OF THIRD 273 | PARTY RIGHTS. APPLE AND EACH CONTRIBUTOR DOES NOT WARRANT AGAINST 274 | INTERFERENCE WITH YOUR ENJOYMENT OF THE COVERED CODE, THAT THE 275 | FUNCTIONS CONTAINED IN THE COVERED CODE WILL MEET YOUR REQUIREMENTS, 276 | THAT THE OPERATION OF THE COVERED CODE WILL BE UNINTERRUPTED OR 277 | ERROR-FREE, OR THAT DEFECTS IN THE COVERED CODE WILL BE CORRECTED. NO 278 | ORAL OR WRITTEN INFORMATION OR ADVICE GIVEN BY APPLE, AN APPLE 279 | AUTHORIZED REPRESENTATIVE OR ANY CONTRIBUTOR SHALL CREATE A WARRANTY. 280 | You acknowledge that the Covered Code is not intended for use in the 281 | operation of nuclear facilities, aircraft navigation, communication 282 | systems, or air traffic control machines in which case the failure of 283 | the Covered Code could lead to death, personal injury, or severe 284 | physical or environmental damage. 285 | 286 | 9. LIMITATION OF LIABILITY. TO THE EXTENT NOT PROHIBITED BY LAW, IN NO 287 | EVENT SHALL APPLE OR ANY CONTRIBUTOR BE LIABLE FOR ANY INCIDENTAL, 288 | SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES ARISING OUT OF OR RELATING 289 | TO THIS LICENSE OR YOUR USE OR INABILITY TO USE THE COVERED CODE, OR 290 | ANY PORTION THEREOF, WHETHER UNDER A THEORY OF CONTRACT, WARRANTY, 291 | TORT (INCLUDING NEGLIGENCE), PRODUCTS LIABILITY OR OTHERWISE, EVEN IF 292 | APPLE OR SUCH CONTRIBUTOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH 293 | DAMAGES AND NOTWITHSTANDING THE FAILURE OF ESSENTIAL PURPOSE OF ANY 294 | REMEDY. SOME JURISDICTIONS DO NOT ALLOW THE LIMITATION OF LIABILITY OF 295 | INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS LIMITATION MAY NOT APPLY 296 | TO YOU. In no event shall Apple's total liability to You for all 297 | damages (other than as may be required by applicable law) under this 298 | License exceed the amount of fifty dollars ($50.00). 299 | 300 | 10. Trademarks. This License does not grant any rights to use the 301 | trademarks or trade names "Apple", "Apple Computer", "Mac", "Mac OS", 302 | "QuickTime", "QuickTime Streaming Server" or any other trademarks, 303 | service marks, logos or trade names belonging to Apple (collectively 304 | "Apple Marks") or to any trademark, service mark, logo or trade name 305 | belonging to any Contributor. You agree not to use any Apple Marks in 306 | or as part of the name of products derived from the Original Code or 307 | to endorse or promote products derived from the Original Code other 308 | than as expressly permitted by and in strict compliance at all times 309 | with Apple's third party trademark usage guidelines which are posted 310 | at http://www.apple.com/legal/guidelinesfor3rdparties.html. 311 | 312 | 11. Ownership. Subject to the licenses granted under this License, 313 | each Contributor retains all rights, title and interest in and to any 314 | Modifications made by such Contributor. Apple retains all rights, 315 | title and interest in and to the Original Code and any Modifications 316 | made by or on behalf of Apple ("Apple Modifications"), and such Apple 317 | Modifications will not be automatically subject to this License. Apple 318 | may, at its sole discretion, choose to license such Apple 319 | Modifications under this License, or on different terms from those 320 | contained in this License or may choose not to license them at all. 321 | 322 | 12. Termination. 323 | 324 | 12.1 Termination. This License and the rights granted hereunder will 325 | terminate: 326 | 327 | (a) automatically without notice from Apple if You fail to comply with 328 | any term(s) of this License and fail to cure such breach within 30 329 | days of becoming aware of such breach; 330 | 331 | (b) immediately in the event of the circumstances described in Section 332 | 13.5(b); or 333 | 334 | (c) automatically without notice from Apple if You, at any time during 335 | the term of this License, commence an action for patent infringement 336 | against Apple; provided that Apple did not first commence 337 | an action for patent infringement against You in that instance. 338 | 339 | 12.2 Effect of Termination. Upon termination, You agree to immediately 340 | stop any further use, reproduction, modification, sublicensing and 341 | distribution of the Covered Code. All sublicenses to the Covered Code 342 | which have been properly granted prior to termination shall survive 343 | any termination of this License. Provisions which, by their nature, 344 | should remain in effect beyond the termination of this License shall 345 | survive, including but not limited to Sections 3, 5, 8, 9, 10, 11, 346 | 12.2 and 13. No party will be liable to any other for compensation, 347 | indemnity or damages of any sort solely as a result of terminating 348 | this License in accordance with its terms, and termination of this 349 | License will be without prejudice to any other right or remedy of 350 | any party. 351 | 352 | 13. Miscellaneous. 353 | 354 | 13.1 Government End Users. The Covered Code is a "commercial item" as 355 | defined in FAR 2.101. Government software and technical data rights in 356 | the Covered Code include only those rights customarily provided to the 357 | public as defined in this License. This customary commercial license 358 | in technical data and software is provided in accordance with FAR 359 | 12.211 (Technical Data) and 12.212 (Computer Software) and, for 360 | Department of Defense purchases, DFAR 252.227-7015 (Technical Data -- 361 | Commercial Items) and 227.7202-3 (Rights in Commercial Computer 362 | Software or Computer Software Documentation). Accordingly, all U.S. 363 | Government End Users acquire Covered Code with only those rights set 364 | forth herein. 365 | 366 | 13.2 Relationship of Parties. This License will not be construed as 367 | creating an agency, partnership, joint venture or any other form of 368 | legal association between or among You, Apple or any Contributor, and 369 | You will not represent to the contrary, whether expressly, by 370 | implication, appearance or otherwise. 371 | 372 | 13.3 Independent Development. Nothing in this License will impair 373 | Apple's right to acquire, license, develop, have others develop for 374 | it, market and/or distribute technology or products that perform the 375 | same or similar functions as, or otherwise compete with, 376 | Modifications, Larger Works, technology or products that You may 377 | develop, produce, market or distribute. 378 | 379 | 13.4 Waiver; Construction. Failure by Apple or any Contributor to 380 | enforce any provision of this License will not be deemed a waiver of 381 | future enforcement of that or any other provision. Any law or 382 | regulation which provides that the language of a contract shall be 383 | construed against the drafter will not apply to this License. 384 | 385 | 13.5 Severability. (a) If for any reason a court of competent 386 | jurisdiction finds any provision of this License, or portion thereof, 387 | to be unenforceable, that provision of the License will be enforced to 388 | the maximum extent permissible so as to effect the economic benefits 389 | and intent of the parties, and the remainder of this License will 390 | continue in full force and effect. (b) Notwithstanding the foregoing, 391 | if applicable law prohibits or restricts You from fully and/or 392 | specifically complying with Sections 2 and/or 3 or prevents the 393 | enforceability of either of those Sections, this License will 394 | immediately terminate and You must immediately discontinue any use of 395 | the Covered Code and destroy all copies of it that are in your 396 | possession or control. 397 | 398 | 13.6 Dispute Resolution. Any litigation or other dispute resolution 399 | between You and Apple relating to this License shall take place in the 400 | Northern District of California, and You and Apple hereby consent to 401 | the personal jurisdiction of, and venue in, the state and federal 402 | courts within that District with respect to this License. The 403 | application of the United Nations Convention on Contracts for the 404 | International Sale of Goods is expressly excluded. 405 | 406 | 13.7 Entire Agreement; Governing Law. This License constitutes the 407 | entire agreement between the parties with respect to the subject 408 | matter hereof. This License shall be governed by the laws of the 409 | United States and the State of California, except that body of 410 | California law concerning conflicts of law. 411 | 412 | Where You are located in the province of Quebec, Canada, the following 413 | clause applies: The parties hereby confirm that they have requested 414 | that this License and all related documents be drafted in English. Les 415 | parties ont exige que le present contrat et tous les documents 416 | connexes soient rediges en anglais. 417 | 418 | EXHIBIT A. 419 | 420 | "Portions Copyright (c) 1999-2003 Apple Computer, Inc. All Rights 421 | Reserved. 422 | 423 | This file contains Original Code and/or Modifications of Original Code 424 | as defined in and that are subject to the Apple Public Source License 425 | Version 2.0 (the 'License'). You may not use this file except in 426 | compliance with the License. Please obtain a copy of the License at 427 | http://www.opensource.apple.com/apsl/ and read it before using this 428 | file. 429 | 430 | The Original Code and all software distributed under the License are 431 | distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER 432 | EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, 433 | INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, 434 | FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. 435 | Please see the License for the specific language governing rights and 436 | limitations under the License." 437 | 438 | **LZMA decompressor**: 439 | src/lib/lzma/lzmadec.c 440 | 441 | This is software written by Igor Pavlov and placed in the public domain. 442 | -------------------------------------------------------------------------------- /binaries/Pongo.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoolockLinux/docs/d4b7785551fe89fdd08548a5530ee7701424e3f2/binaries/Pongo.bin -------------------------------------------------------------------------------- /binaries/README.md: -------------------------------------------------------------------------------- 1 | # Example files 2 | 3 | - `Pongo.bin`: pongoOS binary 4 | - `initramfs.gz`: example ramdisk 5 | 6 | ## About the example ramdisk 7 | 8 | The example ramdisk is a modified postmarketOS ramdisk. It sets the device 9 | as a composite USB device: CDC Ethernet + CDC Serial + Mass storage. 10 | 11 | Access a telnet shell at 172.16.42.1 port 23. 12 | Access a virtual serial shell, usually at `/dev/ttyACM0` in Linux, 13 | or prefixed with `/dev/tty.usbmodem` in macOS. 14 | View logs by inspecting the mass storage volume. 15 | -------------------------------------------------------------------------------- /binaries/initramfs.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoolockLinux/docs/d4b7785551fe89fdd08548a5530ee7701424e3f2/binaries/initramfs.gz -------------------------------------------------------------------------------- /config_16k: -------------------------------------------------------------------------------- 1 | # 2 | # Automatically generated file; DO NOT EDIT. 3 | # Linux/arm64 6.15.0-rc5 Kernel Configuration 4 | # 5 | CONFIG_CC_VERSION_TEXT="clang version 20.1.3 (Fedora 20.1.3-1.fc42)" 6 | CONFIG_GCC_VERSION=0 7 | CONFIG_CC_IS_CLANG=y 8 | CONFIG_CLANG_VERSION=200103 9 | CONFIG_AS_IS_LLVM=y 10 | CONFIG_AS_VERSION=200103 11 | CONFIG_LD_VERSION=0 12 | CONFIG_LD_IS_LLD=y 13 | CONFIG_LLD_VERSION=200103 14 | CONFIG_RUSTC_VERSION=108501 15 | CONFIG_RUST_IS_AVAILABLE=y 16 | CONFIG_RUSTC_LLVM_VERSION=190107 17 | CONFIG_CC_CAN_LINK=y 18 | CONFIG_CC_CAN_LINK_STATIC=y 19 | CONFIG_CC_HAS_ASM_GOTO_OUTPUT=y 20 | CONFIG_CC_HAS_ASM_GOTO_TIED_OUTPUT=y 21 | CONFIG_TOOLS_SUPPORT_RELR=y 22 | CONFIG_CC_HAS_ASM_INLINE=y 23 | CONFIG_CC_HAS_NO_PROFILE_FN_ATTR=y 24 | CONFIG_CC_HAS_COUNTED_BY=y 25 | CONFIG_RUSTC_HAS_COERCE_POINTEE=y 26 | CONFIG_PAHOLE_VERSION=129 27 | CONFIG_IRQ_WORK=y 28 | CONFIG_BUILDTIME_TABLE_SORT=y 29 | CONFIG_THREAD_INFO_IN_TASK=y 30 | 31 | # 32 | # General setup 33 | # 34 | CONFIG_INIT_ENV_ARG_LIMIT=32 35 | # CONFIG_COMPILE_TEST is not set 36 | # CONFIG_WERROR is not set 37 | CONFIG_LOCALVERSION="" 38 | CONFIG_LOCALVERSION_AUTO=y 39 | CONFIG_BUILD_SALT="" 40 | CONFIG_DEFAULT_INIT="" 41 | CONFIG_DEFAULT_HOSTNAME="(none)" 42 | CONFIG_SYSVIPC=y 43 | CONFIG_SYSVIPC_SYSCTL=y 44 | CONFIG_SYSVIPC_COMPAT=y 45 | CONFIG_POSIX_MQUEUE=y 46 | CONFIG_POSIX_MQUEUE_SYSCTL=y 47 | # CONFIG_WATCH_QUEUE is not set 48 | CONFIG_CROSS_MEMORY_ATTACH=y 49 | # CONFIG_USELIB is not set 50 | CONFIG_AUDIT=y 51 | CONFIG_HAVE_ARCH_AUDITSYSCALL=y 52 | CONFIG_AUDITSYSCALL=y 53 | 54 | # 55 | # IRQ subsystem 56 | # 57 | CONFIG_GENERIC_IRQ_PROBE=y 58 | CONFIG_GENERIC_IRQ_SHOW=y 59 | CONFIG_GENERIC_IRQ_SHOW_LEVEL=y 60 | CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y 61 | CONFIG_GENERIC_IRQ_MIGRATION=y 62 | CONFIG_HARDIRQS_SW_RESEND=y 63 | CONFIG_IRQ_DOMAIN=y 64 | CONFIG_IRQ_DOMAIN_HIERARCHY=y 65 | CONFIG_GENERIC_IRQ_IPI=y 66 | CONFIG_GENERIC_IRQ_IPI_MUX=y 67 | CONFIG_GENERIC_MSI_IRQ=y 68 | CONFIG_IRQ_MSI_IOMMU=y 69 | CONFIG_IRQ_FORCED_THREADING=y 70 | CONFIG_SPARSE_IRQ=y 71 | # CONFIG_GENERIC_IRQ_DEBUGFS is not set 72 | CONFIG_GENERIC_IRQ_KEXEC_CLEAR_VM_FORWARD=y 73 | # end of IRQ subsystem 74 | 75 | CONFIG_GENERIC_TIME_VSYSCALL=y 76 | CONFIG_GENERIC_CLOCKEVENTS=y 77 | CONFIG_ARCH_HAS_TICK_BROADCAST=y 78 | CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y 79 | CONFIG_HAVE_POSIX_CPU_TIMERS_TASK_WORK=y 80 | CONFIG_POSIX_CPU_TIMERS_TASK_WORK=y 81 | CONFIG_CONTEXT_TRACKING=y 82 | CONFIG_CONTEXT_TRACKING_IDLE=y 83 | 84 | # 85 | # Timers subsystem 86 | # 87 | CONFIG_TICK_ONESHOT=y 88 | CONFIG_NO_HZ_COMMON=y 89 | # CONFIG_HZ_PERIODIC is not set 90 | CONFIG_NO_HZ_IDLE=y 91 | # CONFIG_NO_HZ_FULL is not set 92 | # CONFIG_NO_HZ is not set 93 | CONFIG_HIGH_RES_TIMERS=y 94 | # end of Timers subsystem 95 | 96 | CONFIG_BPF=y 97 | CONFIG_HAVE_EBPF_JIT=y 98 | CONFIG_ARCH_WANT_DEFAULT_BPF_JIT=y 99 | 100 | # 101 | # BPF subsystem 102 | # 103 | CONFIG_BPF_SYSCALL=y 104 | CONFIG_BPF_JIT=y 105 | CONFIG_BPF_JIT_ALWAYS_ON=y 106 | CONFIG_BPF_JIT_DEFAULT_ON=y 107 | # CONFIG_BPF_UNPRIV_DEFAULT_OFF is not set 108 | # CONFIG_BPF_PRELOAD is not set 109 | # CONFIG_BPF_LSM is not set 110 | # end of BPF subsystem 111 | 112 | CONFIG_PREEMPT_BUILD=y 113 | # CONFIG_PREEMPT_NONE is not set 114 | # CONFIG_PREEMPT_VOLUNTARY is not set 115 | CONFIG_PREEMPT=y 116 | # CONFIG_PREEMPT_RT is not set 117 | CONFIG_PREEMPT_COUNT=y 118 | CONFIG_PREEMPTION=y 119 | # CONFIG_PREEMPT_DYNAMIC is not set 120 | 121 | # 122 | # CPU/Task time and stats accounting 123 | # 124 | CONFIG_TICK_CPU_ACCOUNTING=y 125 | # CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set 126 | CONFIG_IRQ_TIME_ACCOUNTING=y 127 | CONFIG_HAVE_SCHED_AVG_IRQ=y 128 | CONFIG_BSD_PROCESS_ACCT=y 129 | CONFIG_BSD_PROCESS_ACCT_V3=y 130 | CONFIG_TASKSTATS=y 131 | CONFIG_TASK_DELAY_ACCT=y 132 | CONFIG_TASK_XACCT=y 133 | CONFIG_TASK_IO_ACCOUNTING=y 134 | # CONFIG_PSI is not set 135 | # end of CPU/Task time and stats accounting 136 | 137 | CONFIG_CPU_ISOLATION=y 138 | 139 | # 140 | # RCU Subsystem 141 | # 142 | CONFIG_TREE_RCU=y 143 | CONFIG_PREEMPT_RCU=y 144 | # CONFIG_RCU_EXPERT is not set 145 | CONFIG_TREE_SRCU=y 146 | CONFIG_TASKS_RCU_GENERIC=y 147 | CONFIG_NEED_TASKS_RCU=y 148 | CONFIG_TASKS_RCU=y 149 | CONFIG_TASKS_TRACE_RCU=y 150 | CONFIG_RCU_STALL_COMMON=y 151 | CONFIG_RCU_NEED_SEGCBLIST=y 152 | # end of RCU Subsystem 153 | 154 | # CONFIG_IKCONFIG is not set 155 | # CONFIG_IKHEADERS is not set 156 | CONFIG_LOG_BUF_SHIFT=17 157 | CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 158 | # CONFIG_PRINTK_INDEX is not set 159 | CONFIG_GENERIC_SCHED_CLOCK=y 160 | 161 | # 162 | # Scheduler features 163 | # 164 | # CONFIG_UCLAMP_TASK is not set 165 | # end of Scheduler features 166 | 167 | CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y 168 | CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y 169 | CONFIG_CC_HAS_INT128=y 170 | CONFIG_CC_IMPLICIT_FALLTHROUGH="-Wimplicit-fallthrough" 171 | CONFIG_GCC10_NO_ARRAY_BOUNDS=y 172 | CONFIG_GCC_NO_STRINGOP_OVERFLOW=y 173 | CONFIG_ARCH_SUPPORTS_INT128=y 174 | CONFIG_SLAB_OBJ_EXT=y 175 | CONFIG_CGROUPS=y 176 | CONFIG_PAGE_COUNTER=y 177 | # CONFIG_CGROUP_FAVOR_DYNMODS is not set 178 | CONFIG_MEMCG=y 179 | # CONFIG_MEMCG_V1 is not set 180 | CONFIG_BLK_CGROUP=y 181 | CONFIG_CGROUP_WRITEBACK=y 182 | CONFIG_CGROUP_SCHED=y 183 | CONFIG_GROUP_SCHED_WEIGHT=y 184 | CONFIG_FAIR_GROUP_SCHED=y 185 | # CONFIG_CFS_BANDWIDTH is not set 186 | # CONFIG_RT_GROUP_SCHED is not set 187 | CONFIG_SCHED_MM_CID=y 188 | CONFIG_CGROUP_PIDS=y 189 | # CONFIG_CGROUP_RDMA is not set 190 | # CONFIG_CGROUP_DMEM is not set 191 | # CONFIG_CGROUP_FREEZER is not set 192 | CONFIG_CGROUP_HUGETLB=y 193 | # CONFIG_CPUSETS is not set 194 | CONFIG_CGROUP_DEVICE=y 195 | CONFIG_CGROUP_CPUACCT=y 196 | CONFIG_CGROUP_PERF=y 197 | # CONFIG_CGROUP_BPF is not set 198 | # CONFIG_CGROUP_MISC is not set 199 | # CONFIG_CGROUP_DEBUG is not set 200 | CONFIG_NAMESPACES=y 201 | CONFIG_UTS_NS=y 202 | CONFIG_TIME_NS=y 203 | CONFIG_IPC_NS=y 204 | CONFIG_USER_NS=y 205 | CONFIG_PID_NS=y 206 | CONFIG_NET_NS=y 207 | # CONFIG_CHECKPOINT_RESTORE is not set 208 | CONFIG_SCHED_AUTOGROUP=y 209 | # CONFIG_RELAY is not set 210 | CONFIG_BLK_DEV_INITRD=y 211 | CONFIG_INITRAMFS_SOURCE="" 212 | CONFIG_RD_GZIP=y 213 | CONFIG_RD_BZIP2=y 214 | CONFIG_RD_LZMA=y 215 | CONFIG_RD_XZ=y 216 | CONFIG_RD_LZO=y 217 | CONFIG_RD_LZ4=y 218 | CONFIG_RD_ZSTD=y 219 | CONFIG_BOOT_CONFIG=y 220 | # CONFIG_BOOT_CONFIG_FORCE is not set 221 | # CONFIG_BOOT_CONFIG_EMBED is not set 222 | CONFIG_INITRAMFS_PRESERVE_MTIME=y 223 | # CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set 224 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y 225 | CONFIG_LD_ORPHAN_WARN=y 226 | CONFIG_LD_ORPHAN_WARN_LEVEL="warn" 227 | CONFIG_SYSCTL=y 228 | CONFIG_HAVE_UID16=y 229 | CONFIG_SYSCTL_EXCEPTION_TRACE=y 230 | CONFIG_SYSFS_SYSCALL=y 231 | CONFIG_EXPERT=y 232 | CONFIG_UID16=y 233 | CONFIG_MULTIUSER=y 234 | # CONFIG_SGETMASK_SYSCALL is not set 235 | CONFIG_FHANDLE=y 236 | CONFIG_POSIX_TIMERS=y 237 | CONFIG_PRINTK=y 238 | CONFIG_BUG=y 239 | # CONFIG_BASE_SMALL is not set 240 | CONFIG_FUTEX=y 241 | CONFIG_FUTEX_PI=y 242 | CONFIG_EPOLL=y 243 | CONFIG_SIGNALFD=y 244 | CONFIG_TIMERFD=y 245 | CONFIG_EVENTFD=y 246 | CONFIG_SHMEM=y 247 | CONFIG_AIO=y 248 | CONFIG_IO_URING=y 249 | CONFIG_ADVISE_SYSCALLS=y 250 | CONFIG_MEMBARRIER=y 251 | CONFIG_KCMP=y 252 | CONFIG_RSEQ=y 253 | # CONFIG_DEBUG_RSEQ is not set 254 | CONFIG_CACHESTAT_SYSCALL=y 255 | # CONFIG_PC104 is not set 256 | CONFIG_KALLSYMS=y 257 | # CONFIG_KALLSYMS_SELFTEST is not set 258 | CONFIG_KALLSYMS_ALL=y 259 | CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y 260 | CONFIG_ARCH_SUPPORTS_MSEAL_SYSTEM_MAPPINGS=y 261 | CONFIG_HAVE_PERF_EVENTS=y 262 | CONFIG_GUEST_PERF_EVENTS=y 263 | 264 | # 265 | # Kernel Performance Events And Counters 266 | # 267 | CONFIG_PERF_EVENTS=y 268 | # CONFIG_DEBUG_PERF_USE_VMALLOC is not set 269 | # end of Kernel Performance Events And Counters 270 | 271 | CONFIG_PROFILING=y 272 | CONFIG_RUST=y 273 | CONFIG_RUSTC_VERSION_TEXT="rustc 1.85.1 (4eb161250 2025-03-15)" 274 | CONFIG_BINDGEN_VERSION_TEXT="bindgen 0.71.1" 275 | CONFIG_TRACEPOINTS=y 276 | 277 | # 278 | # Kexec and crash features 279 | # 280 | # CONFIG_KEXEC_FILE is not set 281 | # end of Kexec and crash features 282 | # end of General setup 283 | 284 | CONFIG_ARM64=y 285 | CONFIG_RUSTC_SUPPORTS_ARM64=y 286 | CONFIG_CLANG_SUPPORTS_DYNAMIC_FTRACE_WITH_ARGS=y 287 | CONFIG_64BIT=y 288 | CONFIG_MMU=y 289 | CONFIG_ARM64_CONT_PTE_SHIFT=7 290 | CONFIG_ARM64_CONT_PMD_SHIFT=5 291 | CONFIG_ARCH_MMAP_RND_BITS_MIN=16 292 | CONFIG_ARCH_MMAP_RND_BITS_MAX=31 293 | CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=9 294 | CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 295 | CONFIG_NO_IOPORT_MAP=y 296 | CONFIG_STACKTRACE_SUPPORT=y 297 | CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 298 | CONFIG_LOCKDEP_SUPPORT=y 299 | CONFIG_GENERIC_BUG=y 300 | CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y 301 | CONFIG_GENERIC_HWEIGHT=y 302 | CONFIG_GENERIC_CSUM=y 303 | CONFIG_GENERIC_CALIBRATE_DELAY=y 304 | CONFIG_SMP=y 305 | CONFIG_KERNEL_MODE_NEON=y 306 | CONFIG_FIX_EARLYCON_MEM=y 307 | CONFIG_PGTABLE_LEVELS=4 308 | CONFIG_ARCH_SUPPORTS_UPROBES=y 309 | CONFIG_ARCH_PROC_KCORE_TEXT=y 310 | CONFIG_BUILTIN_RETURN_ADDRESS_STRIPS_PAC=y 311 | 312 | # 313 | # Platform selection 314 | # 315 | # CONFIG_ARCH_ACTIONS is not set 316 | # CONFIG_ARCH_AIROHA is not set 317 | # CONFIG_ARCH_SUNXI is not set 318 | # CONFIG_ARCH_ALPINE is not set 319 | CONFIG_ARCH_APPLE=y 320 | # CONFIG_ARCH_BCM is not set 321 | # CONFIG_ARCH_BERLIN is not set 322 | # CONFIG_ARCH_BITMAIN is not set 323 | # CONFIG_ARCH_BLAIZE is not set 324 | # CONFIG_ARCH_EXYNOS is not set 325 | # CONFIG_ARCH_SPARX5 is not set 326 | # CONFIG_ARCH_K3 is not set 327 | # CONFIG_ARCH_LG1K is not set 328 | # CONFIG_ARCH_HISI is not set 329 | # CONFIG_ARCH_KEEMBAY is not set 330 | # CONFIG_ARCH_MEDIATEK is not set 331 | # CONFIG_ARCH_MESON is not set 332 | # CONFIG_ARCH_MVEBU is not set 333 | # CONFIG_ARCH_NXP is not set 334 | # CONFIG_ARCH_MA35 is not set 335 | # CONFIG_ARCH_NPCM is not set 336 | # CONFIG_ARCH_PENSANDO is not set 337 | # CONFIG_ARCH_QCOM is not set 338 | # CONFIG_ARCH_REALTEK is not set 339 | # CONFIG_ARCH_RENESAS is not set 340 | # CONFIG_ARCH_ROCKCHIP is not set 341 | # CONFIG_ARCH_SEATTLE is not set 342 | # CONFIG_ARCH_INTEL_SOCFPGA is not set 343 | # CONFIG_ARCH_STM32 is not set 344 | # CONFIG_ARCH_SYNQUACER is not set 345 | # CONFIG_ARCH_TEGRA is not set 346 | # CONFIG_ARCH_SPRD is not set 347 | # CONFIG_ARCH_THUNDER is not set 348 | # CONFIG_ARCH_THUNDER2 is not set 349 | # CONFIG_ARCH_UNIPHIER is not set 350 | # CONFIG_ARCH_VEXPRESS is not set 351 | # CONFIG_ARCH_VISCONTI is not set 352 | # CONFIG_ARCH_XGENE is not set 353 | # CONFIG_ARCH_ZYNQMP is not set 354 | # end of Platform selection 355 | 356 | # 357 | # Kernel Features 358 | # 359 | 360 | # 361 | # ARM errata workarounds via the alternatives framework 362 | # 363 | # CONFIG_AMPERE_ERRATUM_AC03_CPU_38 is not set 364 | CONFIG_ARM64_WORKAROUND_APPLE_FUSION=y 365 | # CONFIG_ARM64_ERRATUM_826319 is not set 366 | # CONFIG_ARM64_ERRATUM_827319 is not set 367 | # CONFIG_ARM64_ERRATUM_824069 is not set 368 | # CONFIG_ARM64_ERRATUM_819472 is not set 369 | # CONFIG_ARM64_ERRATUM_832075 is not set 370 | # CONFIG_ARM64_ERRATUM_834220 is not set 371 | # CONFIG_ARM64_ERRATUM_1742098 is not set 372 | # CONFIG_ARM64_ERRATUM_845719 is not set 373 | # CONFIG_ARM64_ERRATUM_843419 is not set 374 | CONFIG_ARM64_LD_HAS_FIX_ERRATUM_843419=y 375 | # CONFIG_ARM64_ERRATUM_1024718 is not set 376 | # CONFIG_ARM64_ERRATUM_1418040 is not set 377 | # CONFIG_ARM64_ERRATUM_1165522 is not set 378 | # CONFIG_ARM64_ERRATUM_1319367 is not set 379 | # CONFIG_ARM64_ERRATUM_1530923 is not set 380 | # CONFIG_ARM64_ERRATUM_2441007 is not set 381 | # CONFIG_ARM64_ERRATUM_1286807 is not set 382 | # CONFIG_ARM64_ERRATUM_1463225 is not set 383 | # CONFIG_ARM64_ERRATUM_1542419 is not set 384 | # CONFIG_ARM64_ERRATUM_1508412 is not set 385 | # CONFIG_ARM64_ERRATUM_2051678 is not set 386 | # CONFIG_ARM64_ERRATUM_2077057 is not set 387 | # CONFIG_ARM64_ERRATUM_2658417 is not set 388 | # CONFIG_ARM64_ERRATUM_2119858 is not set 389 | # CONFIG_ARM64_ERRATUM_2139208 is not set 390 | # CONFIG_ARM64_ERRATUM_2054223 is not set 391 | # CONFIG_ARM64_ERRATUM_2067961 is not set 392 | # CONFIG_ARM64_ERRATUM_2253138 is not set 393 | # CONFIG_ARM64_ERRATUM_2224489 is not set 394 | # CONFIG_ARM64_ERRATUM_2441009 is not set 395 | # CONFIG_ARM64_ERRATUM_2064142 is not set 396 | # CONFIG_ARM64_ERRATUM_2038923 is not set 397 | # CONFIG_ARM64_ERRATUM_1902691 is not set 398 | # CONFIG_ARM64_ERRATUM_2645198 is not set 399 | # CONFIG_ARM64_ERRATUM_2966298 is not set 400 | # CONFIG_ARM64_ERRATUM_3117295 is not set 401 | # CONFIG_ARM64_ERRATUM_3194386 is not set 402 | # CONFIG_CAVIUM_ERRATUM_22375 is not set 403 | # CONFIG_CAVIUM_ERRATUM_23154 is not set 404 | # CONFIG_CAVIUM_ERRATUM_27456 is not set 405 | # CONFIG_CAVIUM_ERRATUM_30115 is not set 406 | # CONFIG_CAVIUM_TX2_ERRATUM_219 is not set 407 | # CONFIG_FUJITSU_ERRATUM_010001 is not set 408 | # CONFIG_HISILICON_ERRATUM_161600802 is not set 409 | # CONFIG_HISILICON_ERRATUM_162100801 is not set 410 | # CONFIG_QCOM_FALKOR_ERRATUM_1003 is not set 411 | # CONFIG_QCOM_FALKOR_ERRATUM_1009 is not set 412 | # CONFIG_QCOM_QDF2400_ERRATUM_0065 is not set 413 | # CONFIG_QCOM_FALKOR_ERRATUM_E1041 is not set 414 | # CONFIG_NVIDIA_CARMEL_CNP_ERRATUM is not set 415 | # CONFIG_ROCKCHIP_ERRATUM_3568002 is not set 416 | # CONFIG_ROCKCHIP_ERRATUM_3588001 is not set 417 | # CONFIG_SOCIONEXT_SYNQUACER_PREITS is not set 418 | # end of ARM errata workarounds via the alternatives framework 419 | 420 | # CONFIG_ARM64_4K_PAGES is not set 421 | CONFIG_ARM64_16K_PAGES=y 422 | # CONFIG_ARM64_64K_PAGES is not set 423 | # CONFIG_ARM64_VA_BITS_36 is not set 424 | # CONFIG_ARM64_VA_BITS_47 is not set 425 | CONFIG_ARM64_VA_BITS_48=y 426 | # CONFIG_ARM64_VA_BITS_52 is not set 427 | CONFIG_ARM64_VA_BITS=48 428 | CONFIG_ARM64_PA_BITS_48=y 429 | CONFIG_ARM64_PA_BITS=48 430 | # CONFIG_CPU_BIG_ENDIAN is not set 431 | CONFIG_CPU_LITTLE_ENDIAN=y 432 | CONFIG_SCHED_MC=y 433 | CONFIG_SCHED_CLUSTER=y 434 | # CONFIG_SCHED_SMT is not set 435 | CONFIG_NR_CPUS=8 436 | CONFIG_HOTPLUG_CPU=y 437 | # CONFIG_NUMA is not set 438 | # CONFIG_HZ_100 is not set 439 | # CONFIG_HZ_250 is not set 440 | # CONFIG_HZ_300 is not set 441 | CONFIG_HZ_1000=y 442 | CONFIG_HZ=1000 443 | CONFIG_SCHED_HRTICK=y 444 | CONFIG_ARCH_SPARSEMEM_ENABLE=y 445 | CONFIG_HW_PERF_EVENTS=y 446 | CONFIG_CC_HAVE_SHADOW_CALL_STACK=y 447 | # CONFIG_PARAVIRT is not set 448 | # CONFIG_PARAVIRT_TIME_ACCOUNTING is not set 449 | CONFIG_ARCH_SUPPORTS_KEXEC_FILE=y 450 | CONFIG_ARCH_SUPPORTS_KEXEC_SIG=y 451 | CONFIG_ARCH_SUPPORTS_KEXEC_IMAGE_VERIFY_SIG=y 452 | CONFIG_ARCH_DEFAULT_KEXEC_IMAGE_VERIFY_SIG=y 453 | CONFIG_ARCH_SUPPORTS_CRASH_DUMP=y 454 | CONFIG_ARCH_DEFAULT_CRASH_DUMP=y 455 | # CONFIG_XEN is not set 456 | CONFIG_ARCH_FORCE_MAX_ORDER=11 457 | CONFIG_UNMAP_KERNEL_AT_EL0=y 458 | CONFIG_MITIGATE_SPECTRE_BRANCH_HISTORY=y 459 | CONFIG_RODATA_FULL_DEFAULT_ENABLED=y 460 | # CONFIG_ARM64_SW_TTBR0_PAN is not set 461 | CONFIG_ARM64_TAGGED_ADDR_ABI=y 462 | CONFIG_COMPAT=y 463 | CONFIG_KUSER_HELPERS=y 464 | CONFIG_COMPAT_VDSO=y 465 | CONFIG_THUMB2_COMPAT_VDSO=y 466 | # CONFIG_COMPAT_ALIGNMENT_FIXUPS is not set 467 | # CONFIG_ARMV8_DEPRECATED is not set 468 | 469 | # 470 | # ARMv8.1 architectural features 471 | # 472 | CONFIG_ARM64_HW_AFDBM=y 473 | CONFIG_ARM64_PAN=y 474 | CONFIG_AS_HAS_LSE_ATOMICS=y 475 | CONFIG_ARM64_LSE_ATOMICS=y 476 | CONFIG_ARM64_USE_LSE_ATOMICS=y 477 | # end of ARMv8.1 architectural features 478 | 479 | # 480 | # ARMv8.2 architectural features 481 | # 482 | CONFIG_AS_HAS_ARMV8_2=y 483 | CONFIG_AS_HAS_SHA3=y 484 | # CONFIG_ARM64_PMEM is not set 485 | CONFIG_ARM64_RAS_EXTN=y 486 | CONFIG_ARM64_CNP=y 487 | # end of ARMv8.2 architectural features 488 | 489 | # 490 | # ARMv8.3 architectural features 491 | # 492 | CONFIG_ARM64_PTR_AUTH=y 493 | CONFIG_ARM64_PTR_AUTH_KERNEL=y 494 | CONFIG_CC_HAS_BRANCH_PROT_PAC_RET=y 495 | CONFIG_CC_HAS_SIGN_RETURN_ADDRESS=y 496 | CONFIG_AS_HAS_ARMV8_3=y 497 | CONFIG_AS_HAS_CFI_NEGATE_RA_STATE=y 498 | CONFIG_AS_HAS_LDAPR=y 499 | # end of ARMv8.3 architectural features 500 | 501 | # 502 | # ARMv8.4 architectural features 503 | # 504 | # CONFIG_ARM64_AMU_EXTN is not set 505 | CONFIG_AS_HAS_ARMV8_4=y 506 | # CONFIG_ARM64_TLB_RANGE is not set 507 | # end of ARMv8.4 architectural features 508 | 509 | # 510 | # ARMv8.5 architectural features 511 | # 512 | CONFIG_AS_HAS_ARMV8_5=y 513 | # CONFIG_ARM64_BTI is not set 514 | CONFIG_CC_HAS_BRANCH_PROT_PAC_RET_BTI=y 515 | # CONFIG_ARM64_E0PD is not set 516 | CONFIG_ARM64_AS_HAS_MTE=y 517 | # CONFIG_ARM64_MTE is not set 518 | # end of ARMv8.5 architectural features 519 | 520 | # 521 | # ARMv8.7 architectural features 522 | # 523 | # CONFIG_ARM64_EPAN is not set 524 | # end of ARMv8.7 architectural features 525 | 526 | CONFIG_AS_HAS_MOPS=y 527 | 528 | # 529 | # ARMv8.9 architectural features 530 | # 531 | CONFIG_ARM64_POE=y 532 | CONFIG_ARCH_PKEY_BITS=3 533 | # CONFIG_ARM64_HAFT is not set 534 | # end of ARMv8.9 architectural features 535 | 536 | # 537 | # v9.4 architectural features 538 | # 539 | # end of v9.4 architectural features 540 | 541 | # CONFIG_ARM64_SVE is not set 542 | # CONFIG_ARM64_PSEUDO_NMI is not set 543 | CONFIG_RELOCATABLE=y 544 | CONFIG_RANDOMIZE_BASE=y 545 | CONFIG_RANDOMIZE_MODULE_REGION_FULL=y 546 | CONFIG_CC_HAVE_STACKPROTECTOR_SYSREG=y 547 | CONFIG_STACKPROTECTOR_PER_TASK=y 548 | CONFIG_ARM64_CONTPTE=y 549 | # end of Kernel Features 550 | 551 | # 552 | # Boot options 553 | # 554 | CONFIG_CMDLINE="" 555 | # CONFIG_EFI is not set 556 | # CONFIG_COMPRESSED_INSTALL is not set 557 | # end of Boot options 558 | 559 | # 560 | # Power management options 561 | # 562 | # CONFIG_SUSPEND is not set 563 | # CONFIG_HIBERNATION is not set 564 | CONFIG_PM=y 565 | # CONFIG_PM_DEBUG is not set 566 | CONFIG_PM_CLK=y 567 | CONFIG_PM_GENERIC_DOMAINS=y 568 | # CONFIG_WQ_POWER_EFFICIENT_DEFAULT is not set 569 | CONFIG_PM_GENERIC_DOMAINS_OF=y 570 | CONFIG_CPU_PM=y 571 | CONFIG_ENERGY_MODEL=y 572 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y 573 | CONFIG_ARCH_SUSPEND_POSSIBLE=y 574 | # end of Power management options 575 | 576 | # 577 | # CPU Power Management 578 | # 579 | 580 | # 581 | # CPU Idle 582 | # 583 | CONFIG_CPU_IDLE=y 584 | # CONFIG_CPU_IDLE_GOV_LADDER is not set 585 | CONFIG_CPU_IDLE_GOV_MENU=y 586 | # CONFIG_CPU_IDLE_GOV_TEO is not set 587 | 588 | # 589 | # ARM CPU Idle Drivers 590 | # 591 | # CONFIG_ARM_PSCI_CPUIDLE is not set 592 | # end of ARM CPU Idle Drivers 593 | # end of CPU Idle 594 | 595 | # 596 | # CPU Frequency scaling 597 | # 598 | CONFIG_CPU_FREQ=y 599 | CONFIG_CPU_FREQ_GOV_ATTR_SET=y 600 | CONFIG_CPU_FREQ_GOV_COMMON=y 601 | CONFIG_CPU_FREQ_STAT=y 602 | # CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE is not set 603 | # CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set 604 | # CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set 605 | # CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set 606 | # CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set 607 | CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL=y 608 | CONFIG_CPU_FREQ_GOV_PERFORMANCE=y 609 | CONFIG_CPU_FREQ_GOV_POWERSAVE=y 610 | CONFIG_CPU_FREQ_GOV_USERSPACE=y 611 | CONFIG_CPU_FREQ_GOV_ONDEMAND=y 612 | CONFIG_CPU_FREQ_GOV_CONSERVATIVE=y 613 | CONFIG_CPU_FREQ_GOV_SCHEDUTIL=y 614 | 615 | # 616 | # CPU frequency scaling drivers 617 | # 618 | # CONFIG_CPUFREQ_DT is not set 619 | # CONFIG_CPUFREQ_VIRT is not set 620 | # CONFIG_CPUFREQ_DT_PLATDEV is not set 621 | CONFIG_ARM_APPLE_SOC_CPUFREQ=y 622 | # end of CPU Frequency scaling 623 | # end of CPU Power Management 624 | 625 | CONFIG_KVM_COMMON=y 626 | CONFIG_HAVE_KVM_IRQCHIP=y 627 | CONFIG_HAVE_KVM_IRQ_ROUTING=y 628 | CONFIG_HAVE_KVM_DIRTY_RING=y 629 | CONFIG_HAVE_KVM_DIRTY_RING_ACQ_REL=y 630 | CONFIG_NEED_KVM_DIRTY_RING_WITH_BITMAP=y 631 | CONFIG_KVM_MMIO=y 632 | CONFIG_HAVE_KVM_MSI=y 633 | CONFIG_HAVE_KVM_READONLY_MEM=y 634 | CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT=y 635 | CONFIG_KVM_VFIO=y 636 | CONFIG_KVM_GENERIC_DIRTYLOG_READ_PROTECT=y 637 | CONFIG_HAVE_KVM_IRQ_BYPASS=y 638 | CONFIG_HAVE_KVM_VCPU_RUN_PID_CHANGE=y 639 | CONFIG_KVM_XFER_TO_GUEST_WORK=y 640 | CONFIG_KVM_GENERIC_HARDWARE_ENABLING=y 641 | CONFIG_KVM_GENERIC_MMU_NOTIFIER=y 642 | CONFIG_VIRTUALIZATION=y 643 | CONFIG_KVM=y 644 | # CONFIG_NVHE_EL2_DEBUG is not set 645 | # CONFIG_PTDUMP_STAGE2_DEBUGFS is not set 646 | CONFIG_CPU_MITIGATIONS=y 647 | 648 | # 649 | # General architecture-dependent options 650 | # 651 | CONFIG_HOTPLUG_SMT=y 652 | CONFIG_HOTPLUG_CORE_SYNC=y 653 | CONFIG_HOTPLUG_CORE_SYNC_DEAD=y 654 | # CONFIG_KPROBES is not set 655 | CONFIG_JUMP_LABEL=y 656 | # CONFIG_STATIC_KEYS_SELFTEST is not set 657 | CONFIG_UPROBES=y 658 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y 659 | CONFIG_HAVE_IOREMAP_PROT=y 660 | CONFIG_HAVE_KPROBES=y 661 | CONFIG_HAVE_KRETPROBES=y 662 | CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y 663 | CONFIG_HAVE_NMI=y 664 | CONFIG_TRACE_IRQFLAGS_SUPPORT=y 665 | CONFIG_TRACE_IRQFLAGS_NMI_SUPPORT=y 666 | CONFIG_HAVE_ARCH_TRACEHOOK=y 667 | CONFIG_HAVE_DMA_CONTIGUOUS=y 668 | CONFIG_GENERIC_SMP_IDLE_THREAD=y 669 | CONFIG_GENERIC_IDLE_POLL_SETUP=y 670 | CONFIG_ARCH_HAS_FORTIFY_SOURCE=y 671 | CONFIG_ARCH_HAS_KEEPINITRD=y 672 | CONFIG_ARCH_HAS_SET_MEMORY=y 673 | CONFIG_ARCH_HAS_SET_DIRECT_MAP=y 674 | CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y 675 | CONFIG_ARCH_WANTS_NO_INSTR=y 676 | CONFIG_HAVE_ASM_MODVERSIONS=y 677 | CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y 678 | CONFIG_HAVE_RSEQ=y 679 | CONFIG_HAVE_RUST=y 680 | CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y 681 | CONFIG_HAVE_HW_BREAKPOINT=y 682 | CONFIG_HAVE_PERF_REGS=y 683 | CONFIG_HAVE_PERF_USER_STACK_DUMP=y 684 | CONFIG_HAVE_ARCH_JUMP_LABEL=y 685 | CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y 686 | CONFIG_MMU_GATHER_TABLE_FREE=y 687 | CONFIG_MMU_GATHER_RCU_TABLE_FREE=y 688 | CONFIG_MMU_LAZY_TLB_REFCOUNT=y 689 | CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y 690 | CONFIG_ARCH_HAS_NMI_SAFE_THIS_CPU_OPS=y 691 | CONFIG_HAVE_ALIGNED_STRUCT_PAGE=y 692 | CONFIG_HAVE_CMPXCHG_LOCAL=y 693 | CONFIG_HAVE_CMPXCHG_DOUBLE=y 694 | CONFIG_ARCH_WANT_COMPAT_IPC_PARSE_VERSION=y 695 | CONFIG_HAVE_ARCH_SECCOMP=y 696 | CONFIG_HAVE_ARCH_SECCOMP_FILTER=y 697 | CONFIG_SECCOMP=y 698 | CONFIG_SECCOMP_FILTER=y 699 | # CONFIG_SECCOMP_CACHE_DEBUG is not set 700 | CONFIG_HAVE_ARCH_STACKLEAK=y 701 | CONFIG_HAVE_STACKPROTECTOR=y 702 | CONFIG_STACKPROTECTOR=y 703 | CONFIG_STACKPROTECTOR_STRONG=y 704 | CONFIG_ARCH_SUPPORTS_SHADOW_CALL_STACK=y 705 | # CONFIG_SHADOW_CALL_STACK is not set 706 | CONFIG_ARCH_SUPPORTS_LTO_CLANG=y 707 | CONFIG_ARCH_SUPPORTS_LTO_CLANG_THIN=y 708 | CONFIG_HAS_LTO_CLANG=y 709 | CONFIG_LTO_NONE=y 710 | # CONFIG_LTO_CLANG_FULL is not set 711 | # CONFIG_LTO_CLANG_THIN is not set 712 | CONFIG_ARCH_SUPPORTS_CFI_CLANG=y 713 | # CONFIG_CFI_CLANG is not set 714 | CONFIG_HAVE_CFI_ICALL_NORMALIZE_INTEGERS_CLANG=y 715 | CONFIG_HAVE_CFI_ICALL_NORMALIZE_INTEGERS_RUSTC=y 716 | CONFIG_HAVE_CONTEXT_TRACKING_USER=y 717 | CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y 718 | CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y 719 | CONFIG_HAVE_MOVE_PUD=y 720 | CONFIG_HAVE_MOVE_PMD=y 721 | CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y 722 | CONFIG_HAVE_ARCH_HUGE_VMAP=y 723 | CONFIG_HAVE_ARCH_HUGE_VMALLOC=y 724 | CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y 725 | CONFIG_ARCH_WANT_PMD_MKWRITE=y 726 | CONFIG_HAVE_MOD_ARCH_SPECIFIC=y 727 | CONFIG_MODULES_USE_ELF_RELA=y 728 | CONFIG_ARCH_WANTS_EXECMEM_LATE=y 729 | CONFIG_HAVE_SOFTIRQ_ON_OWN_STACK=y 730 | CONFIG_SOFTIRQ_ON_OWN_STACK=y 731 | CONFIG_ARCH_HAS_ELF_RANDOMIZE=y 732 | CONFIG_HAVE_ARCH_MMAP_RND_BITS=y 733 | CONFIG_ARCH_MMAP_RND_BITS=18 734 | CONFIG_HAVE_ARCH_MMAP_RND_COMPAT_BITS=y 735 | CONFIG_ARCH_MMAP_RND_COMPAT_BITS=11 736 | CONFIG_HAVE_PAGE_SIZE_16KB=y 737 | CONFIG_PAGE_SIZE_16KB=y 738 | CONFIG_PAGE_SIZE_LESS_THAN_64KB=y 739 | CONFIG_PAGE_SIZE_LESS_THAN_256KB=y 740 | CONFIG_PAGE_SHIFT=14 741 | CONFIG_ARCH_WANT_DEFAULT_TOPDOWN_MMAP_LAYOUT=y 742 | CONFIG_CLONE_BACKWARDS=y 743 | CONFIG_OLD_SIGSUSPEND3=y 744 | CONFIG_COMPAT_OLD_SIGACTION=y 745 | CONFIG_COMPAT_32BIT_TIME=y 746 | CONFIG_ARCH_SUPPORTS_RT=y 747 | CONFIG_HAVE_ARCH_VMAP_STACK=y 748 | CONFIG_VMAP_STACK=y 749 | CONFIG_HAVE_ARCH_RANDOMIZE_KSTACK_OFFSET=y 750 | CONFIG_RANDOMIZE_KSTACK_OFFSET=y 751 | # CONFIG_RANDOMIZE_KSTACK_OFFSET_DEFAULT is not set 752 | CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y 753 | CONFIG_STRICT_KERNEL_RWX=y 754 | CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y 755 | CONFIG_HAVE_ARCH_COMPILER_H=y 756 | CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y 757 | # CONFIG_LOCK_EVENT_COUNTS is not set 758 | CONFIG_ARCH_HAS_RELR=y 759 | CONFIG_RELR=y 760 | CONFIG_ARCH_HAS_MEM_ENCRYPT=y 761 | CONFIG_ARCH_HAS_CC_PLATFORM=y 762 | CONFIG_HAVE_PREEMPT_DYNAMIC=y 763 | CONFIG_HAVE_PREEMPT_DYNAMIC_KEY=y 764 | CONFIG_ARCH_WANT_LD_ORPHAN_WARN=y 765 | CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y 766 | CONFIG_ARCH_SUPPORTS_PAGE_TABLE_CHECK=y 767 | CONFIG_ARCH_HAVE_TRACE_MMIO_ACCESS=y 768 | CONFIG_ARCH_HAS_HW_PTE_YOUNG=y 769 | CONFIG_ARCH_HAS_KERNEL_FPU_SUPPORT=y 770 | 771 | # 772 | # GCOV-based kernel profiling 773 | # 774 | # CONFIG_GCOV_KERNEL is not set 775 | CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y 776 | # end of GCOV-based kernel profiling 777 | 778 | CONFIG_HAVE_GCC_PLUGINS=y 779 | CONFIG_FUNCTION_ALIGNMENT_4B=y 780 | CONFIG_FUNCTION_ALIGNMENT=4 781 | CONFIG_CC_HAS_SANE_FUNCTION_ALIGNMENT=y 782 | # end of General architecture-dependent options 783 | 784 | CONFIG_RT_MUTEXES=y 785 | # CONFIG_MODULES is not set 786 | CONFIG_BLOCK=y 787 | CONFIG_BLOCK_LEGACY_AUTOLOAD=y 788 | # CONFIG_BLK_DEV_BSGLIB is not set 789 | # CONFIG_BLK_DEV_INTEGRITY is not set 790 | CONFIG_BLK_DEV_WRITE_MOUNTED=y 791 | # CONFIG_BLK_DEV_ZONED is not set 792 | # CONFIG_BLK_DEV_THROTTLING is not set 793 | # CONFIG_BLK_WBT is not set 794 | # CONFIG_BLK_CGROUP_IOLATENCY is not set 795 | # CONFIG_BLK_CGROUP_IOCOST is not set 796 | # CONFIG_BLK_CGROUP_IOPRIO is not set 797 | CONFIG_BLK_DEBUG_FS=y 798 | # CONFIG_BLK_SED_OPAL is not set 799 | CONFIG_BLK_INLINE_ENCRYPTION=y 800 | CONFIG_BLK_INLINE_ENCRYPTION_FALLBACK=y 801 | 802 | # 803 | # Partition Types 804 | # 805 | # CONFIG_PARTITION_ADVANCED is not set 806 | CONFIG_MSDOS_PARTITION=y 807 | CONFIG_EFI_PARTITION=y 808 | # end of Partition Types 809 | 810 | CONFIG_BLK_MQ_VIRTIO=y 811 | CONFIG_BLK_PM=y 812 | CONFIG_BLOCK_HOLDER_DEPRECATED=y 813 | CONFIG_BLK_MQ_STACKING=y 814 | 815 | # 816 | # IO Schedulers 817 | # 818 | CONFIG_MQ_IOSCHED_DEADLINE=y 819 | CONFIG_MQ_IOSCHED_KYBER=y 820 | # CONFIG_IOSCHED_BFQ is not set 821 | # end of IO Schedulers 822 | 823 | CONFIG_PREEMPT_NOTIFIERS=y 824 | CONFIG_PADATA=y 825 | CONFIG_ASN1=y 826 | CONFIG_UNINLINE_SPIN_UNLOCK=y 827 | CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y 828 | CONFIG_MUTEX_SPIN_ON_OWNER=y 829 | CONFIG_RWSEM_SPIN_ON_OWNER=y 830 | CONFIG_LOCK_SPIN_ON_OWNER=y 831 | CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y 832 | CONFIG_QUEUED_SPINLOCKS=y 833 | CONFIG_ARCH_USE_QUEUED_RWLOCKS=y 834 | CONFIG_QUEUED_RWLOCKS=y 835 | CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE=y 836 | CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y 837 | 838 | # 839 | # Executable file formats 840 | # 841 | CONFIG_BINFMT_ELF=y 842 | CONFIG_COMPAT_BINFMT_ELF=y 843 | CONFIG_ARCH_BINFMT_ELF_STATE=y 844 | CONFIG_ARCH_BINFMT_ELF_EXTRA_PHDRS=y 845 | CONFIG_ARCH_HAVE_ELF_PROT=y 846 | CONFIG_ARCH_USE_GNU_PROPERTY=y 847 | CONFIG_ELFCORE=y 848 | CONFIG_BINFMT_SCRIPT=y 849 | CONFIG_BINFMT_MISC=y 850 | # CONFIG_COREDUMP is not set 851 | # end of Executable file formats 852 | 853 | # 854 | # Memory Management options 855 | # 856 | CONFIG_ZPOOL=y 857 | CONFIG_SWAP=y 858 | CONFIG_ZSWAP=y 859 | CONFIG_ZSWAP_DEFAULT_ON=y 860 | CONFIG_ZSWAP_SHRINKER_DEFAULT_ON=y 861 | # CONFIG_ZSWAP_COMPRESSOR_DEFAULT_DEFLATE is not set 862 | # CONFIG_ZSWAP_COMPRESSOR_DEFAULT_LZO is not set 863 | # CONFIG_ZSWAP_COMPRESSOR_DEFAULT_842 is not set 864 | # CONFIG_ZSWAP_COMPRESSOR_DEFAULT_LZ4 is not set 865 | # CONFIG_ZSWAP_COMPRESSOR_DEFAULT_LZ4HC is not set 866 | CONFIG_ZSWAP_COMPRESSOR_DEFAULT_ZSTD=y 867 | CONFIG_ZSWAP_COMPRESSOR_DEFAULT="zstd" 868 | CONFIG_ZSWAP_ZPOOL_DEFAULT_ZSMALLOC=y 869 | CONFIG_ZSWAP_ZPOOL_DEFAULT="zsmalloc" 870 | CONFIG_ZSMALLOC=y 871 | # CONFIG_ZSMALLOC_STAT is not set 872 | CONFIG_ZSMALLOC_CHAIN_SIZE=8 873 | 874 | # 875 | # Slab allocator options 876 | # 877 | CONFIG_SLUB=y 878 | CONFIG_KVFREE_RCU_BATCHED=y 879 | # CONFIG_SLUB_TINY is not set 880 | CONFIG_SLAB_MERGE_DEFAULT=y 881 | # CONFIG_SLAB_FREELIST_RANDOM is not set 882 | # CONFIG_SLAB_FREELIST_HARDENED is not set 883 | # CONFIG_SLAB_BUCKETS is not set 884 | # CONFIG_SLUB_STATS is not set 885 | CONFIG_SLUB_CPU_PARTIAL=y 886 | # CONFIG_RANDOM_KMALLOC_CACHES is not set 887 | # end of Slab allocator options 888 | 889 | # CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set 890 | # CONFIG_COMPAT_BRK is not set 891 | CONFIG_SPARSEMEM=y 892 | CONFIG_SPARSEMEM_EXTREME=y 893 | CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y 894 | CONFIG_SPARSEMEM_VMEMMAP=y 895 | CONFIG_HAVE_GUP_FAST=y 896 | CONFIG_ARCH_KEEP_MEMBLOCK=y 897 | CONFIG_MEMORY_ISOLATION=y 898 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y 899 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y 900 | # CONFIG_MEMORY_HOTPLUG is not set 901 | CONFIG_ARCH_MHP_MEMMAP_ON_MEMORY_ENABLE=y 902 | CONFIG_SPLIT_PTE_PTLOCKS=y 903 | CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y 904 | CONFIG_SPLIT_PMD_PTLOCKS=y 905 | CONFIG_COMPACTION=y 906 | CONFIG_COMPACT_UNEVICTABLE_DEFAULT=1 907 | # CONFIG_PAGE_REPORTING is not set 908 | CONFIG_MIGRATION=y 909 | CONFIG_ARCH_ENABLE_HUGEPAGE_MIGRATION=y 910 | CONFIG_ARCH_ENABLE_THP_MIGRATION=y 911 | CONFIG_CONTIG_ALLOC=y 912 | CONFIG_PCP_BATCH_SCALE_MAX=5 913 | CONFIG_PHYS_ADDR_T_64BIT=y 914 | CONFIG_MMU_NOTIFIER=y 915 | CONFIG_KSM=y 916 | CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 917 | CONFIG_ARCH_SUPPORTS_MEMORY_FAILURE=y 918 | CONFIG_MEMORY_FAILURE=y 919 | # CONFIG_HWPOISON_INJECT is not set 920 | CONFIG_MM_ID=y 921 | CONFIG_TRANSPARENT_HUGEPAGE=y 922 | CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS=y 923 | # CONFIG_TRANSPARENT_HUGEPAGE_MADVISE is not set 924 | # CONFIG_TRANSPARENT_HUGEPAGE_NEVER is not set 925 | # CONFIG_READ_ONLY_THP_FOR_FS is not set 926 | # CONFIG_NO_PAGE_MAPCOUNT is not set 927 | CONFIG_PAGE_MAPCOUNT=y 928 | CONFIG_PGTABLE_HAS_HUGE_LEAVES=y 929 | CONFIG_ARCH_SUPPORTS_HUGE_PFNMAP=y 930 | CONFIG_ARCH_SUPPORTS_PMD_PFNMAP=y 931 | CONFIG_CMA=y 932 | # CONFIG_CMA_DEBUGFS is not set 933 | # CONFIG_CMA_SYSFS is not set 934 | CONFIG_CMA_AREAS=8 935 | CONFIG_GENERIC_EARLY_IOREMAP=y 936 | # CONFIG_DEFERRED_STRUCT_PAGE_INIT is not set 937 | # CONFIG_IDLE_PAGE_TRACKING is not set 938 | CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y 939 | CONFIG_ARCH_HAS_CURRENT_STACK_POINTER=y 940 | CONFIG_ARCH_HAS_PTE_DEVMAP=y 941 | CONFIG_ARCH_HAS_ZONE_DMA_SET=y 942 | CONFIG_ZONE_DMA=y 943 | CONFIG_ZONE_DMA32=y 944 | CONFIG_ARCH_USES_HIGH_VMA_FLAGS=y 945 | CONFIG_ARCH_HAS_PKEYS=y 946 | CONFIG_VM_EVENT_COUNTERS=y 947 | # CONFIG_PERCPU_STATS is not set 948 | # CONFIG_GUP_TEST is not set 949 | # CONFIG_DMAPOOL_TEST is not set 950 | CONFIG_ARCH_HAS_PTE_SPECIAL=y 951 | CONFIG_MEMFD_CREATE=y 952 | CONFIG_SECRETMEM=y 953 | # CONFIG_ANON_VMA_NAME is not set 954 | # CONFIG_USERFAULTFD is not set 955 | # CONFIG_LRU_GEN is not set 956 | CONFIG_ARCH_SUPPORTS_PER_VMA_LOCK=y 957 | CONFIG_PER_VMA_LOCK=y 958 | CONFIG_LOCK_MM_AND_FIND_VMA=y 959 | CONFIG_EXECMEM=y 960 | 961 | # 962 | # Data Access Monitoring 963 | # 964 | # CONFIG_DAMON is not set 965 | # end of Data Access Monitoring 966 | # end of Memory Management options 967 | 968 | CONFIG_NET=y 969 | CONFIG_NET_INGRESS=y 970 | CONFIG_NET_EGRESS=y 971 | CONFIG_NET_XGRESS=y 972 | CONFIG_NET_DEVMEM=y 973 | 974 | # 975 | # Networking options 976 | # 977 | CONFIG_PACKET=y 978 | # CONFIG_PACKET_DIAG is not set 979 | CONFIG_UNIX=y 980 | CONFIG_AF_UNIX_OOB=y 981 | # CONFIG_UNIX_DIAG is not set 982 | # CONFIG_TLS is not set 983 | # CONFIG_XFRM_USER is not set 984 | # CONFIG_NET_KEY is not set 985 | # CONFIG_XDP_SOCKETS is not set 986 | CONFIG_INET=y 987 | CONFIG_IP_MULTICAST=y 988 | # CONFIG_IP_ADVANCED_ROUTER is not set 989 | # CONFIG_IP_PNP is not set 990 | # CONFIG_NET_IPIP is not set 991 | # CONFIG_NET_IPGRE_DEMUX is not set 992 | CONFIG_NET_IP_TUNNEL=y 993 | # CONFIG_IP_MROUTE is not set 994 | # CONFIG_SYN_COOKIES is not set 995 | # CONFIG_NET_IPVTI is not set 996 | # CONFIG_NET_FOU is not set 997 | # CONFIG_NET_FOU_IP_TUNNELS is not set 998 | # CONFIG_INET_AH is not set 999 | # CONFIG_INET_ESP is not set 1000 | # CONFIG_INET_IPCOMP is not set 1001 | CONFIG_INET_TABLE_PERTURB_ORDER=16 1002 | CONFIG_INET_TUNNEL=y 1003 | CONFIG_INET_DIAG=y 1004 | CONFIG_INET_TCP_DIAG=y 1005 | # CONFIG_INET_UDP_DIAG is not set 1006 | # CONFIG_INET_RAW_DIAG is not set 1007 | # CONFIG_INET_DIAG_DESTROY is not set 1008 | # CONFIG_TCP_CONG_ADVANCED is not set 1009 | CONFIG_TCP_CONG_CUBIC=y 1010 | CONFIG_DEFAULT_TCP_CONG="cubic" 1011 | # CONFIG_TCP_AO is not set 1012 | # CONFIG_TCP_MD5SIG is not set 1013 | CONFIG_IPV6=y 1014 | # CONFIG_IPV6_ROUTER_PREF is not set 1015 | # CONFIG_IPV6_OPTIMISTIC_DAD is not set 1016 | # CONFIG_INET6_AH is not set 1017 | # CONFIG_INET6_ESP is not set 1018 | # CONFIG_INET6_IPCOMP is not set 1019 | # CONFIG_IPV6_MIP6 is not set 1020 | # CONFIG_IPV6_ILA is not set 1021 | # CONFIG_IPV6_VTI is not set 1022 | CONFIG_IPV6_SIT=y 1023 | # CONFIG_IPV6_SIT_6RD is not set 1024 | CONFIG_IPV6_NDISC_NODETYPE=y 1025 | # CONFIG_IPV6_TUNNEL is not set 1026 | # CONFIG_IPV6_MULTIPLE_TABLES is not set 1027 | # CONFIG_IPV6_MROUTE is not set 1028 | # CONFIG_IPV6_SEG6_LWTUNNEL is not set 1029 | # CONFIG_IPV6_SEG6_HMAC is not set 1030 | # CONFIG_IPV6_RPL_LWTUNNEL is not set 1031 | # CONFIG_IPV6_IOAM6_LWTUNNEL is not set 1032 | # CONFIG_NETLABEL is not set 1033 | # CONFIG_MPTCP is not set 1034 | CONFIG_NETWORK_SECMARK=y 1035 | # CONFIG_NETWORK_PHY_TIMESTAMPING is not set 1036 | CONFIG_NETFILTER=y 1037 | CONFIG_NETFILTER_ADVANCED=y 1038 | 1039 | # 1040 | # Core Netfilter Configuration 1041 | # 1042 | CONFIG_NETFILTER_INGRESS=y 1043 | CONFIG_NETFILTER_EGRESS=y 1044 | CONFIG_NETFILTER_BPF_LINK=y 1045 | # CONFIG_NETFILTER_NETLINK_ACCT is not set 1046 | # CONFIG_NETFILTER_NETLINK_QUEUE is not set 1047 | # CONFIG_NETFILTER_NETLINK_LOG is not set 1048 | # CONFIG_NETFILTER_NETLINK_OSF is not set 1049 | CONFIG_NF_CONNTRACK=y 1050 | CONFIG_NF_LOG_SYSLOG=y 1051 | # CONFIG_NF_CONNTRACK_MARK is not set 1052 | # CONFIG_NF_CONNTRACK_SECMARK is not set 1053 | # CONFIG_NF_CONNTRACK_ZONES is not set 1054 | CONFIG_NF_CONNTRACK_PROCFS=y 1055 | CONFIG_NF_CONNTRACK_EVENTS=y 1056 | # CONFIG_NF_CONNTRACK_TIMEOUT is not set 1057 | # CONFIG_NF_CONNTRACK_TIMESTAMP is not set 1058 | # CONFIG_NF_CONNTRACK_LABELS is not set 1059 | CONFIG_NF_CT_PROTO_DCCP=y 1060 | CONFIG_NF_CT_PROTO_SCTP=y 1061 | CONFIG_NF_CT_PROTO_UDPLITE=y 1062 | # CONFIG_NF_CONNTRACK_AMANDA is not set 1063 | # CONFIG_NF_CONNTRACK_FTP is not set 1064 | # CONFIG_NF_CONNTRACK_H323 is not set 1065 | # CONFIG_NF_CONNTRACK_IRC is not set 1066 | # CONFIG_NF_CONNTRACK_NETBIOS_NS is not set 1067 | # CONFIG_NF_CONNTRACK_SNMP is not set 1068 | # CONFIG_NF_CONNTRACK_PPTP is not set 1069 | # CONFIG_NF_CONNTRACK_SANE is not set 1070 | # CONFIG_NF_CONNTRACK_SIP is not set 1071 | # CONFIG_NF_CONNTRACK_TFTP is not set 1072 | # CONFIG_NF_CT_NETLINK is not set 1073 | CONFIG_NF_NAT=y 1074 | CONFIG_NF_NAT_MASQUERADE=y 1075 | # CONFIG_NF_TABLES is not set 1076 | CONFIG_NETFILTER_XTABLES=y 1077 | CONFIG_NETFILTER_XTABLES_COMPAT=y 1078 | 1079 | # 1080 | # Xtables combined modules 1081 | # 1082 | # CONFIG_NETFILTER_XT_MARK is not set 1083 | # CONFIG_NETFILTER_XT_CONNMARK is not set 1084 | 1085 | # 1086 | # Xtables targets 1087 | # 1088 | # CONFIG_NETFILTER_XT_TARGET_AUDIT is not set 1089 | CONFIG_NETFILTER_XT_TARGET_CHECKSUM=y 1090 | # CONFIG_NETFILTER_XT_TARGET_CLASSIFY is not set 1091 | # CONFIG_NETFILTER_XT_TARGET_CONNMARK is not set 1092 | # CONFIG_NETFILTER_XT_TARGET_DSCP is not set 1093 | # CONFIG_NETFILTER_XT_TARGET_HL is not set 1094 | # CONFIG_NETFILTER_XT_TARGET_HMARK is not set 1095 | # CONFIG_NETFILTER_XT_TARGET_IDLETIMER is not set 1096 | CONFIG_NETFILTER_XT_TARGET_LOG=y 1097 | # CONFIG_NETFILTER_XT_TARGET_MARK is not set 1098 | CONFIG_NETFILTER_XT_NAT=y 1099 | # CONFIG_NETFILTER_XT_TARGET_NETMAP is not set 1100 | # CONFIG_NETFILTER_XT_TARGET_NFLOG is not set 1101 | # CONFIG_NETFILTER_XT_TARGET_NFQUEUE is not set 1102 | # CONFIG_NETFILTER_XT_TARGET_RATEEST is not set 1103 | # CONFIG_NETFILTER_XT_TARGET_REDIRECT is not set 1104 | CONFIG_NETFILTER_XT_TARGET_MASQUERADE=y 1105 | # CONFIG_NETFILTER_XT_TARGET_TEE is not set 1106 | # CONFIG_NETFILTER_XT_TARGET_TPROXY is not set 1107 | # CONFIG_NETFILTER_XT_TARGET_SECMARK is not set 1108 | # CONFIG_NETFILTER_XT_TARGET_TCPMSS is not set 1109 | # CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP is not set 1110 | 1111 | # 1112 | # Xtables matches 1113 | # 1114 | CONFIG_NETFILTER_XT_MATCH_ADDRTYPE=y 1115 | # CONFIG_NETFILTER_XT_MATCH_BPF is not set 1116 | # CONFIG_NETFILTER_XT_MATCH_CGROUP is not set 1117 | # CONFIG_NETFILTER_XT_MATCH_CLUSTER is not set 1118 | # CONFIG_NETFILTER_XT_MATCH_COMMENT is not set 1119 | # CONFIG_NETFILTER_XT_MATCH_CONNBYTES is not set 1120 | # CONFIG_NETFILTER_XT_MATCH_CONNLABEL is not set 1121 | # CONFIG_NETFILTER_XT_MATCH_CONNLIMIT is not set 1122 | # CONFIG_NETFILTER_XT_MATCH_CONNMARK is not set 1123 | CONFIG_NETFILTER_XT_MATCH_CONNTRACK=y 1124 | # CONFIG_NETFILTER_XT_MATCH_CPU is not set 1125 | # CONFIG_NETFILTER_XT_MATCH_DCCP is not set 1126 | # CONFIG_NETFILTER_XT_MATCH_DEVGROUP is not set 1127 | # CONFIG_NETFILTER_XT_MATCH_DSCP is not set 1128 | # CONFIG_NETFILTER_XT_MATCH_ECN is not set 1129 | # CONFIG_NETFILTER_XT_MATCH_ESP is not set 1130 | # CONFIG_NETFILTER_XT_MATCH_HASHLIMIT is not set 1131 | # CONFIG_NETFILTER_XT_MATCH_HELPER is not set 1132 | # CONFIG_NETFILTER_XT_MATCH_HL is not set 1133 | # CONFIG_NETFILTER_XT_MATCH_IPCOMP is not set 1134 | # CONFIG_NETFILTER_XT_MATCH_IPRANGE is not set 1135 | # CONFIG_NETFILTER_XT_MATCH_L2TP is not set 1136 | # CONFIG_NETFILTER_XT_MATCH_LENGTH is not set 1137 | # CONFIG_NETFILTER_XT_MATCH_LIMIT is not set 1138 | # CONFIG_NETFILTER_XT_MATCH_MAC is not set 1139 | # CONFIG_NETFILTER_XT_MATCH_MARK is not set 1140 | # CONFIG_NETFILTER_XT_MATCH_MULTIPORT is not set 1141 | # CONFIG_NETFILTER_XT_MATCH_NFACCT is not set 1142 | # CONFIG_NETFILTER_XT_MATCH_OSF is not set 1143 | # CONFIG_NETFILTER_XT_MATCH_OWNER is not set 1144 | # CONFIG_NETFILTER_XT_MATCH_PKTTYPE is not set 1145 | # CONFIG_NETFILTER_XT_MATCH_QUOTA is not set 1146 | # CONFIG_NETFILTER_XT_MATCH_RATEEST is not set 1147 | # CONFIG_NETFILTER_XT_MATCH_REALM is not set 1148 | # CONFIG_NETFILTER_XT_MATCH_RECENT is not set 1149 | # CONFIG_NETFILTER_XT_MATCH_SCTP is not set 1150 | # CONFIG_NETFILTER_XT_MATCH_SOCKET is not set 1151 | # CONFIG_NETFILTER_XT_MATCH_STATE is not set 1152 | # CONFIG_NETFILTER_XT_MATCH_STATISTIC is not set 1153 | # CONFIG_NETFILTER_XT_MATCH_STRING is not set 1154 | # CONFIG_NETFILTER_XT_MATCH_TCPMSS is not set 1155 | # CONFIG_NETFILTER_XT_MATCH_TIME is not set 1156 | # CONFIG_NETFILTER_XT_MATCH_U32 is not set 1157 | # end of Core Netfilter Configuration 1158 | 1159 | # CONFIG_IP_SET is not set 1160 | # CONFIG_IP_VS is not set 1161 | 1162 | # 1163 | # IP: Netfilter Configuration 1164 | # 1165 | CONFIG_NF_DEFRAG_IPV4=y 1166 | CONFIG_IP_NF_IPTABLES_LEGACY=y 1167 | # CONFIG_NF_SOCKET_IPV4 is not set 1168 | # CONFIG_NF_TPROXY_IPV4 is not set 1169 | # CONFIG_NF_DUP_IPV4 is not set 1170 | # CONFIG_NF_LOG_ARP is not set 1171 | CONFIG_NF_LOG_IPV4=y 1172 | CONFIG_NF_REJECT_IPV4=y 1173 | CONFIG_IP_NF_IPTABLES=y 1174 | # CONFIG_IP_NF_MATCH_AH is not set 1175 | # CONFIG_IP_NF_MATCH_ECN is not set 1176 | # CONFIG_IP_NF_MATCH_RPFILTER is not set 1177 | # CONFIG_IP_NF_MATCH_TTL is not set 1178 | CONFIG_IP_NF_FILTER=y 1179 | CONFIG_IP_NF_TARGET_REJECT=y 1180 | # CONFIG_IP_NF_TARGET_SYNPROXY is not set 1181 | CONFIG_IP_NF_NAT=y 1182 | CONFIG_IP_NF_TARGET_MASQUERADE=y 1183 | # CONFIG_IP_NF_TARGET_NETMAP is not set 1184 | # CONFIG_IP_NF_TARGET_REDIRECT is not set 1185 | CONFIG_IP_NF_MANGLE=y 1186 | # CONFIG_IP_NF_TARGET_ECN is not set 1187 | # CONFIG_IP_NF_TARGET_TTL is not set 1188 | # CONFIG_IP_NF_RAW is not set 1189 | # CONFIG_IP_NF_SECURITY is not set 1190 | # CONFIG_IP_NF_ARPTABLES is not set 1191 | # CONFIG_IP_NF_ARPFILTER is not set 1192 | # end of IP: Netfilter Configuration 1193 | 1194 | # 1195 | # IPv6: Netfilter Configuration 1196 | # 1197 | CONFIG_IP6_NF_IPTABLES_LEGACY=y 1198 | # CONFIG_NF_SOCKET_IPV6 is not set 1199 | # CONFIG_NF_TPROXY_IPV6 is not set 1200 | # CONFIG_NF_DUP_IPV6 is not set 1201 | CONFIG_NF_REJECT_IPV6=y 1202 | CONFIG_NF_LOG_IPV6=y 1203 | CONFIG_IP6_NF_IPTABLES=y 1204 | # CONFIG_IP6_NF_MATCH_AH is not set 1205 | # CONFIG_IP6_NF_MATCH_EUI64 is not set 1206 | # CONFIG_IP6_NF_MATCH_FRAG is not set 1207 | # CONFIG_IP6_NF_MATCH_OPTS is not set 1208 | # CONFIG_IP6_NF_MATCH_HL is not set 1209 | # CONFIG_IP6_NF_MATCH_IPV6HEADER is not set 1210 | # CONFIG_IP6_NF_MATCH_MH is not set 1211 | # CONFIG_IP6_NF_MATCH_RPFILTER is not set 1212 | # CONFIG_IP6_NF_MATCH_RT is not set 1213 | # CONFIG_IP6_NF_MATCH_SRH is not set 1214 | # CONFIG_IP6_NF_TARGET_HL is not set 1215 | CONFIG_IP6_NF_FILTER=y 1216 | CONFIG_IP6_NF_TARGET_REJECT=y 1217 | # CONFIG_IP6_NF_TARGET_SYNPROXY is not set 1218 | CONFIG_IP6_NF_MANGLE=y 1219 | # CONFIG_IP6_NF_RAW is not set 1220 | # CONFIG_IP6_NF_SECURITY is not set 1221 | CONFIG_IP6_NF_NAT=y 1222 | CONFIG_IP6_NF_TARGET_MASQUERADE=y 1223 | # CONFIG_IP6_NF_TARGET_NPT is not set 1224 | # end of IPv6: Netfilter Configuration 1225 | 1226 | CONFIG_NF_DEFRAG_IPV6=y 1227 | # CONFIG_NF_CONNTRACK_BRIDGE is not set 1228 | # CONFIG_IP_DCCP is not set 1229 | # CONFIG_IP_SCTP is not set 1230 | # CONFIG_RDS is not set 1231 | # CONFIG_TIPC is not set 1232 | # CONFIG_ATM is not set 1233 | # CONFIG_L2TP is not set 1234 | # CONFIG_BRIDGE is not set 1235 | # CONFIG_NET_DSA is not set 1236 | # CONFIG_VLAN_8021Q is not set 1237 | # CONFIG_LLC2 is not set 1238 | # CONFIG_ATALK is not set 1239 | # CONFIG_X25 is not set 1240 | # CONFIG_LAPB is not set 1241 | # CONFIG_PHONET is not set 1242 | # CONFIG_6LOWPAN is not set 1243 | # CONFIG_IEEE802154 is not set 1244 | # CONFIG_NET_SCHED is not set 1245 | # CONFIG_DCB is not set 1246 | CONFIG_DNS_RESOLVER=y 1247 | # CONFIG_BATMAN_ADV is not set 1248 | # CONFIG_OPENVSWITCH is not set 1249 | # CONFIG_VSOCKETS is not set 1250 | # CONFIG_NETLINK_DIAG is not set 1251 | # CONFIG_MPLS is not set 1252 | # CONFIG_NET_NSH is not set 1253 | # CONFIG_HSR is not set 1254 | # CONFIG_NET_SWITCHDEV is not set 1255 | # CONFIG_NET_L3_MASTER_DEV is not set 1256 | # CONFIG_QRTR is not set 1257 | # CONFIG_NET_NCSI is not set 1258 | CONFIG_PCPU_DEV_REFCNT=y 1259 | CONFIG_MAX_SKB_FRAGS=17 1260 | CONFIG_RPS=y 1261 | CONFIG_RFS_ACCEL=y 1262 | CONFIG_SOCK_RX_QUEUE_MAPPING=y 1263 | CONFIG_XPS=y 1264 | # CONFIG_CGROUP_NET_PRIO is not set 1265 | # CONFIG_CGROUP_NET_CLASSID is not set 1266 | CONFIG_NET_RX_BUSY_POLL=y 1267 | CONFIG_BQL=y 1268 | CONFIG_NET_FLOW_LIMIT=y 1269 | 1270 | # 1271 | # Network testing 1272 | # 1273 | # CONFIG_NET_PKTGEN is not set 1274 | # CONFIG_NET_DROP_MONITOR is not set 1275 | # end of Network testing 1276 | # end of Networking options 1277 | 1278 | # CONFIG_HAMRADIO is not set 1279 | # CONFIG_CAN is not set 1280 | # CONFIG_BT is not set 1281 | # CONFIG_AF_RXRPC is not set 1282 | # CONFIG_AF_KCM is not set 1283 | # CONFIG_MCTP is not set 1284 | # CONFIG_WIRELESS is not set 1285 | # CONFIG_RFKILL is not set 1286 | # CONFIG_NET_9P is not set 1287 | # CONFIG_CAIF is not set 1288 | # CONFIG_CEPH_LIB is not set 1289 | # CONFIG_NFC is not set 1290 | # CONFIG_PSAMPLE is not set 1291 | # CONFIG_NET_IFE is not set 1292 | # CONFIG_LWTUNNEL is not set 1293 | CONFIG_DST_CACHE=y 1294 | CONFIG_GRO_CELLS=y 1295 | CONFIG_NET_SOCK_MSG=y 1296 | CONFIG_PAGE_POOL=y 1297 | # CONFIG_PAGE_POOL_STATS is not set 1298 | # CONFIG_FAILOVER is not set 1299 | # CONFIG_ETHTOOL_NETLINK is not set 1300 | 1301 | # 1302 | # Device Drivers 1303 | # 1304 | CONFIG_ARM_AMBA=y 1305 | CONFIG_HAVE_PCI=y 1306 | CONFIG_GENERIC_PCI_IOMAP=y 1307 | # CONFIG_PCI is not set 1308 | # CONFIG_PCCARD is not set 1309 | 1310 | # 1311 | # Generic Driver Options 1312 | # 1313 | CONFIG_UEVENT_HELPER=y 1314 | CONFIG_UEVENT_HELPER_PATH="" 1315 | CONFIG_DEVTMPFS=y 1316 | CONFIG_DEVTMPFS_MOUNT=y 1317 | # CONFIG_DEVTMPFS_SAFE is not set 1318 | CONFIG_STANDALONE=y 1319 | CONFIG_PREVENT_FIRMWARE_BUILD=y 1320 | 1321 | # 1322 | # Firmware loader 1323 | # 1324 | CONFIG_FW_LOADER=y 1325 | CONFIG_FW_LOADER_DEBUG=y 1326 | # CONFIG_RUST_FW_LOADER_ABSTRACTIONS is not set 1327 | CONFIG_FW_LOADER_PAGED_BUF=y 1328 | CONFIG_FW_LOADER_SYSFS=y 1329 | CONFIG_EXTRA_FIRMWARE="" 1330 | CONFIG_FW_LOADER_USER_HELPER=y 1331 | CONFIG_FW_LOADER_USER_HELPER_FALLBACK=y 1332 | CONFIG_FW_LOADER_COMPRESS=y 1333 | CONFIG_FW_LOADER_COMPRESS_XZ=y 1334 | # CONFIG_FW_LOADER_COMPRESS_ZSTD is not set 1335 | # CONFIG_FW_UPLOAD is not set 1336 | # end of Firmware loader 1337 | 1338 | CONFIG_WANT_DEV_COREDUMP=y 1339 | CONFIG_ALLOW_DEV_COREDUMP=y 1340 | CONFIG_DEV_COREDUMP=y 1341 | # CONFIG_DEBUG_DRIVER is not set 1342 | # CONFIG_DEBUG_DEVRES is not set 1343 | # CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set 1344 | CONFIG_GENERIC_CPU_DEVICES=y 1345 | CONFIG_GENERIC_CPU_AUTOPROBE=y 1346 | CONFIG_GENERIC_CPU_VULNERABILITIES=y 1347 | CONFIG_REGMAP=y 1348 | CONFIG_REGMAP_I2C=y 1349 | CONFIG_REGMAP_SPMI=y 1350 | CONFIG_REGMAP_MMIO=y 1351 | CONFIG_REGMAP_IRQ=y 1352 | CONFIG_DMA_SHARED_BUFFER=y 1353 | # CONFIG_DMA_FENCE_TRACE is not set 1354 | CONFIG_GENERIC_ARCH_TOPOLOGY=y 1355 | # CONFIG_FW_DEVLINK_SYNC_STATE_TIMEOUT is not set 1356 | # end of Generic Driver Options 1357 | 1358 | # 1359 | # Bus devices 1360 | # 1361 | # CONFIG_VEXPRESS_CONFIG is not set 1362 | CONFIG_MHI_BUS=y 1363 | CONFIG_MHI_BUS_DEBUG=y 1364 | # CONFIG_MHI_BUS_EP is not set 1365 | # end of Bus devices 1366 | 1367 | # 1368 | # Cache Drivers 1369 | # 1370 | # end of Cache Drivers 1371 | 1372 | # CONFIG_CONNECTOR is not set 1373 | 1374 | # 1375 | # Firmware Drivers 1376 | # 1377 | 1378 | # 1379 | # ARM System Control and Management Interface Protocol 1380 | # 1381 | # CONFIG_ARM_SCMI_PROTOCOL is not set 1382 | # end of ARM System Control and Management Interface Protocol 1383 | 1384 | # CONFIG_FIRMWARE_MEMMAP is not set 1385 | # CONFIG_ARM_FFA_TRANSPORT is not set 1386 | # CONFIG_GOOGLE_FIRMWARE is not set 1387 | CONFIG_ARM_PSCI_FW=y 1388 | # CONFIG_ARM_PSCI_CHECKER is not set 1389 | 1390 | # 1391 | # Qualcomm firmware drivers 1392 | # 1393 | # end of Qualcomm firmware drivers 1394 | 1395 | CONFIG_HAVE_ARM_SMCCC=y 1396 | CONFIG_HAVE_ARM_SMCCC_DISCOVERY=y 1397 | # CONFIG_ARM_SMCCC_SOC_ID is not set 1398 | 1399 | # 1400 | # Tegra firmware driver 1401 | # 1402 | # end of Tegra firmware driver 1403 | # end of Firmware Drivers 1404 | 1405 | # CONFIG_FWCTL is not set 1406 | # CONFIG_GNSS is not set 1407 | CONFIG_MTD=y 1408 | 1409 | # 1410 | # Partition parsers 1411 | # 1412 | # CONFIG_MTD_CMDLINE_PARTS is not set 1413 | CONFIG_MTD_OF_PARTS=y 1414 | # CONFIG_MTD_AFS_PARTS is not set 1415 | # CONFIG_MTD_REDBOOT_PARTS is not set 1416 | # end of Partition parsers 1417 | 1418 | # 1419 | # User Modules And Translation Layers 1420 | # 1421 | # CONFIG_MTD_BLOCK is not set 1422 | # CONFIG_MTD_BLOCK_RO is not set 1423 | # CONFIG_FTL is not set 1424 | # CONFIG_NFTL is not set 1425 | # CONFIG_INFTL is not set 1426 | # CONFIG_RFD_FTL is not set 1427 | # CONFIG_SSFDC is not set 1428 | # CONFIG_SM_FTL is not set 1429 | # CONFIG_MTD_OOPS is not set 1430 | # CONFIG_MTD_SWAP is not set 1431 | # CONFIG_MTD_PARTITIONED_MASTER is not set 1432 | 1433 | # 1434 | # RAM/ROM/Flash chip drivers 1435 | # 1436 | # CONFIG_MTD_CFI is not set 1437 | # CONFIG_MTD_JEDECPROBE is not set 1438 | CONFIG_MTD_MAP_BANK_WIDTH_1=y 1439 | CONFIG_MTD_MAP_BANK_WIDTH_2=y 1440 | CONFIG_MTD_MAP_BANK_WIDTH_4=y 1441 | CONFIG_MTD_CFI_I1=y 1442 | CONFIG_MTD_CFI_I2=y 1443 | # CONFIG_MTD_RAM is not set 1444 | # CONFIG_MTD_ROM is not set 1445 | # CONFIG_MTD_ABSENT is not set 1446 | # end of RAM/ROM/Flash chip drivers 1447 | 1448 | # 1449 | # Mapping drivers for chip access 1450 | # 1451 | # CONFIG_MTD_COMPLEX_MAPPINGS is not set 1452 | # CONFIG_MTD_PLATRAM is not set 1453 | # end of Mapping drivers for chip access 1454 | 1455 | # 1456 | # Self-contained MTD device drivers 1457 | # 1458 | # CONFIG_MTD_SLRAM is not set 1459 | CONFIG_MTD_PHRAM=y 1460 | # CONFIG_MTD_MTDRAM is not set 1461 | # CONFIG_MTD_BLOCK2MTD is not set 1462 | 1463 | # 1464 | # Disk-On-Chip Device Drivers 1465 | # 1466 | # CONFIG_MTD_DOCG3 is not set 1467 | # end of Self-contained MTD device drivers 1468 | 1469 | # 1470 | # NAND 1471 | # 1472 | # CONFIG_MTD_ONENAND is not set 1473 | # CONFIG_MTD_RAW_NAND is not set 1474 | 1475 | # 1476 | # ECC engine support 1477 | # 1478 | # CONFIG_MTD_NAND_ECC_SW_HAMMING is not set 1479 | # CONFIG_MTD_NAND_ECC_SW_BCH is not set 1480 | # CONFIG_MTD_NAND_ECC_MXIC is not set 1481 | # end of ECC engine support 1482 | # end of NAND 1483 | 1484 | # 1485 | # LPDDR & LPDDR2 PCM memory drivers 1486 | # 1487 | # CONFIG_MTD_LPDDR is not set 1488 | # end of LPDDR & LPDDR2 PCM memory drivers 1489 | 1490 | # CONFIG_MTD_UBI is not set 1491 | # CONFIG_MTD_HYPERBUS is not set 1492 | CONFIG_DTC=y 1493 | CONFIG_OF=y 1494 | # CONFIG_OF_UNITTEST is not set 1495 | CONFIG_OF_FLATTREE=y 1496 | CONFIG_OF_EARLY_FLATTREE=y 1497 | CONFIG_OF_KOBJ=y 1498 | CONFIG_OF_DYNAMIC=y 1499 | CONFIG_OF_ADDRESS=y 1500 | CONFIG_OF_IRQ=y 1501 | CONFIG_OF_RESERVED_MEM=y 1502 | CONFIG_OF_RESOLVE=y 1503 | CONFIG_OF_OVERLAY=y 1504 | # CONFIG_PARPORT is not set 1505 | CONFIG_BLK_DEV=y 1506 | # CONFIG_BLK_DEV_NULL_BLK is not set 1507 | CONFIG_ZRAM=y 1508 | # CONFIG_ZRAM_BACKEND_LZ4 is not set 1509 | # CONFIG_ZRAM_BACKEND_LZ4HC is not set 1510 | # CONFIG_ZRAM_BACKEND_ZSTD is not set 1511 | # CONFIG_ZRAM_BACKEND_DEFLATE is not set 1512 | # CONFIG_ZRAM_BACKEND_842 is not set 1513 | CONFIG_ZRAM_BACKEND_FORCE_LZO=y 1514 | CONFIG_ZRAM_BACKEND_LZO=y 1515 | CONFIG_ZRAM_DEF_COMP_LZORLE=y 1516 | # CONFIG_ZRAM_DEF_COMP_LZO is not set 1517 | CONFIG_ZRAM_DEF_COMP="lzo-rle" 1518 | CONFIG_ZRAM_WRITEBACK=y 1519 | CONFIG_ZRAM_TRACK_ENTRY_ACTIME=y 1520 | CONFIG_ZRAM_MEMORY_TRACKING=y 1521 | # CONFIG_ZRAM_MULTI_COMP is not set 1522 | CONFIG_BLK_DEV_LOOP=y 1523 | CONFIG_BLK_DEV_LOOP_MIN_COUNT=8 1524 | # CONFIG_BLK_DEV_DRBD is not set 1525 | CONFIG_BLK_DEV_NBD=y 1526 | # CONFIG_BLK_DEV_RAM is not set 1527 | # CONFIG_ATA_OVER_ETH is not set 1528 | # CONFIG_VIRTIO_BLK is not set 1529 | # CONFIG_BLK_DEV_RUST_NULL is not set 1530 | # CONFIG_BLK_DEV_RBD is not set 1531 | # CONFIG_BLK_DEV_UBLK is not set 1532 | 1533 | # 1534 | # NVME Support 1535 | # 1536 | CONFIG_NVME_CORE=y 1537 | # CONFIG_NVME_MULTIPATH is not set 1538 | # CONFIG_NVME_VERBOSE_ERRORS is not set 1539 | # CONFIG_NVME_HWMON is not set 1540 | # CONFIG_NVME_FC is not set 1541 | # CONFIG_NVME_TCP is not set 1542 | # CONFIG_NVME_HOST_AUTH is not set 1543 | CONFIG_NVME_APPLE=y 1544 | # CONFIG_NVME_TARGET is not set 1545 | # end of NVME Support 1546 | 1547 | # 1548 | # Misc devices 1549 | # 1550 | # CONFIG_AD525X_DPOT is not set 1551 | # CONFIG_DUMMY_IRQ is not set 1552 | # CONFIG_ICS932S401 is not set 1553 | # CONFIG_ENCLOSURE_SERVICES is not set 1554 | # CONFIG_HI6421V600_IRQ is not set 1555 | # CONFIG_APDS9802ALS is not set 1556 | # CONFIG_ISL29003 is not set 1557 | # CONFIG_ISL29020 is not set 1558 | # CONFIG_SENSORS_TSL2550 is not set 1559 | # CONFIG_SENSORS_BH1770 is not set 1560 | # CONFIG_SENSORS_APDS990X is not set 1561 | # CONFIG_HMC6352 is not set 1562 | # CONFIG_DS1682 is not set 1563 | # CONFIG_SRAM is not set 1564 | # CONFIG_XILINX_SDFEC is not set 1565 | # CONFIG_HISI_HIKEY_USB is not set 1566 | # CONFIG_OPEN_DICE is not set 1567 | # CONFIG_NTSYNC is not set 1568 | # CONFIG_VCPU_STALL_DETECTOR is not set 1569 | # CONFIG_NSM is not set 1570 | # CONFIG_C2PORT is not set 1571 | 1572 | # 1573 | # EEPROM support 1574 | # 1575 | # CONFIG_EEPROM_AT24 is not set 1576 | # CONFIG_EEPROM_MAX6875 is not set 1577 | # CONFIG_EEPROM_93CX6 is not set 1578 | # CONFIG_EEPROM_IDT_89HPESX is not set 1579 | # CONFIG_EEPROM_EE1004 is not set 1580 | # end of EEPROM support 1581 | 1582 | # CONFIG_SENSORS_LIS3_I2C is not set 1583 | # CONFIG_ALTERA_STAPL is not set 1584 | # CONFIG_ECHO is not set 1585 | # CONFIG_MISC_RTSX_USB is not set 1586 | # CONFIG_UACCE is not set 1587 | # CONFIG_PVPANIC is not set 1588 | # end of Misc devices 1589 | 1590 | # 1591 | # SCSI device support 1592 | # 1593 | CONFIG_SCSI_MOD=y 1594 | # CONFIG_RAID_ATTRS is not set 1595 | # CONFIG_SCSI is not set 1596 | # end of SCSI device support 1597 | 1598 | # CONFIG_ATA is not set 1599 | CONFIG_MD=y 1600 | # CONFIG_BLK_DEV_MD is not set 1601 | CONFIG_MD_BITMAP_FILE=y 1602 | # CONFIG_BCACHE is not set 1603 | CONFIG_BLK_DEV_DM_BUILTIN=y 1604 | CONFIG_BLK_DEV_DM=y 1605 | # CONFIG_DM_DEBUG is not set 1606 | # CONFIG_DM_UNSTRIPED is not set 1607 | CONFIG_DM_CRYPT=y 1608 | # CONFIG_DM_SNAPSHOT is not set 1609 | # CONFIG_DM_THIN_PROVISIONING is not set 1610 | # CONFIG_DM_CACHE is not set 1611 | # CONFIG_DM_WRITECACHE is not set 1612 | # CONFIG_DM_EBS is not set 1613 | # CONFIG_DM_ERA is not set 1614 | # CONFIG_DM_CLONE is not set 1615 | # CONFIG_DM_MIRROR is not set 1616 | # CONFIG_DM_RAID is not set 1617 | # CONFIG_DM_ZERO is not set 1618 | # CONFIG_DM_MULTIPATH is not set 1619 | # CONFIG_DM_DELAY is not set 1620 | # CONFIG_DM_DUST is not set 1621 | # CONFIG_DM_INIT is not set 1622 | # CONFIG_DM_UEVENT is not set 1623 | # CONFIG_DM_FLAKEY is not set 1624 | # CONFIG_DM_VERITY is not set 1625 | # CONFIG_DM_SWITCH is not set 1626 | # CONFIG_DM_LOG_WRITES is not set 1627 | # CONFIG_DM_INTEGRITY is not set 1628 | # CONFIG_DM_AUDIT is not set 1629 | # CONFIG_DM_VDO is not set 1630 | # CONFIG_TARGET_CORE is not set 1631 | CONFIG_NETDEVICES=y 1632 | CONFIG_NET_CORE=y 1633 | # CONFIG_BONDING is not set 1634 | # CONFIG_DUMMY is not set 1635 | # CONFIG_WIREGUARD is not set 1636 | # CONFIG_EQUALIZER is not set 1637 | # CONFIG_NET_TEAM is not set 1638 | # CONFIG_MACVLAN is not set 1639 | # CONFIG_IPVLAN is not set 1640 | # CONFIG_VXLAN is not set 1641 | # CONFIG_GENEVE is not set 1642 | # CONFIG_BAREUDP is not set 1643 | # CONFIG_GTP is not set 1644 | # CONFIG_PFCP is not set 1645 | # CONFIG_AMT is not set 1646 | # CONFIG_MACSEC is not set 1647 | # CONFIG_NETCONSOLE is not set 1648 | CONFIG_TUN=y 1649 | # CONFIG_TUN_VNET_CROSS_LE is not set 1650 | # CONFIG_VETH is not set 1651 | # CONFIG_VIRTIO_NET is not set 1652 | # CONFIG_NLMON is not set 1653 | # CONFIG_NETKIT is not set 1654 | # CONFIG_MHI_NET is not set 1655 | # CONFIG_ETHERNET is not set 1656 | # CONFIG_PHYLIB is not set 1657 | # CONFIG_MDIO_DEVICE is not set 1658 | 1659 | # 1660 | # PCS device drivers 1661 | # 1662 | # CONFIG_PCS_XPCS is not set 1663 | # end of PCS device drivers 1664 | 1665 | # CONFIG_PPP is not set 1666 | # CONFIG_SLIP is not set 1667 | # CONFIG_USB_NET_DRIVERS is not set 1668 | # CONFIG_WLAN is not set 1669 | # CONFIG_WAN is not set 1670 | 1671 | # 1672 | # Wireless WAN 1673 | # 1674 | CONFIG_WWAN=y 1675 | CONFIG_WWAN_DEBUGFS=y 1676 | # CONFIG_WWAN_HWSIM is not set 1677 | CONFIG_MHI_WWAN_CTRL=y 1678 | # CONFIG_MHI_WWAN_MBIM is not set 1679 | # end of Wireless WAN 1680 | 1681 | # CONFIG_NETDEVSIM is not set 1682 | # CONFIG_NET_FAILOVER is not set 1683 | # CONFIG_ISDN is not set 1684 | 1685 | # 1686 | # Input device support 1687 | # 1688 | CONFIG_INPUT=y 1689 | # CONFIG_INPUT_FF_MEMLESS is not set 1690 | # CONFIG_INPUT_SPARSEKMAP is not set 1691 | # CONFIG_INPUT_MATRIXKMAP is not set 1692 | 1693 | # 1694 | # Userland interfaces 1695 | # 1696 | # CONFIG_INPUT_MOUSEDEV is not set 1697 | # CONFIG_INPUT_JOYDEV is not set 1698 | CONFIG_INPUT_EVDEV=y 1699 | 1700 | # 1701 | # Input Device Drivers 1702 | # 1703 | CONFIG_INPUT_KEYBOARD=y 1704 | # CONFIG_KEYBOARD_ADP5588 is not set 1705 | # CONFIG_KEYBOARD_ADP5589 is not set 1706 | # CONFIG_KEYBOARD_ATKBD is not set 1707 | # CONFIG_KEYBOARD_QT1050 is not set 1708 | # CONFIG_KEYBOARD_QT1070 is not set 1709 | # CONFIG_KEYBOARD_QT2160 is not set 1710 | # CONFIG_KEYBOARD_DLINK_DIR685 is not set 1711 | # CONFIG_KEYBOARD_LKKBD is not set 1712 | CONFIG_KEYBOARD_GPIO=y 1713 | # CONFIG_KEYBOARD_GPIO_POLLED is not set 1714 | # CONFIG_KEYBOARD_TCA6416 is not set 1715 | # CONFIG_KEYBOARD_TCA8418 is not set 1716 | # CONFIG_KEYBOARD_MATRIX is not set 1717 | # CONFIG_KEYBOARD_LM8333 is not set 1718 | # CONFIG_KEYBOARD_MAX7359 is not set 1719 | # CONFIG_KEYBOARD_MPR121 is not set 1720 | # CONFIG_KEYBOARD_NEWTON is not set 1721 | # CONFIG_KEYBOARD_OPENCORES is not set 1722 | # CONFIG_KEYBOARD_SAMSUNG is not set 1723 | # CONFIG_KEYBOARD_STOWAWAY is not set 1724 | # CONFIG_KEYBOARD_SUNKBD is not set 1725 | # CONFIG_KEYBOARD_OMAP4 is not set 1726 | # CONFIG_KEYBOARD_XTKBD is not set 1727 | # CONFIG_KEYBOARD_CAP11XX is not set 1728 | # CONFIG_KEYBOARD_BCM is not set 1729 | # CONFIG_KEYBOARD_CYPRESS_SF is not set 1730 | # CONFIG_INPUT_MOUSE is not set 1731 | # CONFIG_INPUT_JOYSTICK is not set 1732 | # CONFIG_INPUT_TABLET is not set 1733 | # CONFIG_INPUT_TOUCHSCREEN is not set 1734 | CONFIG_INPUT_MISC=y 1735 | # CONFIG_INPUT_AD714X is not set 1736 | # CONFIG_INPUT_ATMEL_CAPTOUCH is not set 1737 | # CONFIG_INPUT_BMA150 is not set 1738 | # CONFIG_INPUT_E3X0_BUTTON is not set 1739 | # CONFIG_INPUT_MMA8450 is not set 1740 | # CONFIG_INPUT_GPIO_BEEPER is not set 1741 | # CONFIG_INPUT_GPIO_DECODER is not set 1742 | # CONFIG_INPUT_GPIO_VIBRA is not set 1743 | # CONFIG_INPUT_ATI_REMOTE2 is not set 1744 | # CONFIG_INPUT_KEYSPAN_REMOTE is not set 1745 | # CONFIG_INPUT_KXTJ9 is not set 1746 | # CONFIG_INPUT_POWERMATE is not set 1747 | # CONFIG_INPUT_YEALINK is not set 1748 | # CONFIG_INPUT_CM109 is not set 1749 | CONFIG_INPUT_UINPUT=y 1750 | # CONFIG_INPUT_PCF8574 is not set 1751 | # CONFIG_INPUT_PWM_BEEPER is not set 1752 | # CONFIG_INPUT_PWM_VIBRA is not set 1753 | # CONFIG_INPUT_GPIO_ROTARY_ENCODER is not set 1754 | # CONFIG_INPUT_DA7280_HAPTICS is not set 1755 | # CONFIG_INPUT_ADXL34X is not set 1756 | # CONFIG_INPUT_IQS269A is not set 1757 | # CONFIG_INPUT_IQS626A is not set 1758 | # CONFIG_INPUT_IQS7222 is not set 1759 | # CONFIG_INPUT_CMA3000 is not set 1760 | # CONFIG_INPUT_DRV260X_HAPTICS is not set 1761 | # CONFIG_INPUT_DRV2665_HAPTICS is not set 1762 | # CONFIG_INPUT_DRV2667_HAPTICS is not set 1763 | # CONFIG_RMI4_CORE is not set 1764 | 1765 | # 1766 | # Hardware I/O ports 1767 | # 1768 | # CONFIG_SERIO is not set 1769 | # CONFIG_GAMEPORT is not set 1770 | # end of Hardware I/O ports 1771 | # end of Input device support 1772 | 1773 | # 1774 | # Character devices 1775 | # 1776 | CONFIG_TTY=y 1777 | CONFIG_VT=y 1778 | CONFIG_CONSOLE_TRANSLATIONS=y 1779 | CONFIG_VT_CONSOLE=y 1780 | CONFIG_VT_HW_CONSOLE_BINDING=y 1781 | CONFIG_UNIX98_PTYS=y 1782 | CONFIG_LEGACY_PTYS=y 1783 | CONFIG_LEGACY_PTY_COUNT=16 1784 | CONFIG_LEGACY_TIOCSTI=y 1785 | CONFIG_LDISC_AUTOLOAD=y 1786 | 1787 | # 1788 | # Serial drivers 1789 | # 1790 | CONFIG_SERIAL_EARLYCON=y 1791 | # CONFIG_SERIAL_8250 is not set 1792 | 1793 | # 1794 | # Non-8250 serial port support 1795 | # 1796 | # CONFIG_SERIAL_AMBA_PL010 is not set 1797 | # CONFIG_SERIAL_AMBA_PL011 is not set 1798 | # CONFIG_SERIAL_EARLYCON_SEMIHOST is not set 1799 | CONFIG_SERIAL_SAMSUNG=y 1800 | CONFIG_SERIAL_SAMSUNG_UARTS=4 1801 | CONFIG_SERIAL_SAMSUNG_CONSOLE=y 1802 | # CONFIG_SERIAL_UARTLITE is not set 1803 | CONFIG_SERIAL_CORE=y 1804 | CONFIG_SERIAL_CORE_CONSOLE=y 1805 | # CONFIG_SERIAL_SIFIVE is not set 1806 | # CONFIG_SERIAL_SCCNXP is not set 1807 | # CONFIG_SERIAL_SC16IS7XX is not set 1808 | # CONFIG_SERIAL_ALTERA_JTAGUART is not set 1809 | # CONFIG_SERIAL_ALTERA_UART is not set 1810 | # CONFIG_SERIAL_XILINX_PS_UART is not set 1811 | # CONFIG_SERIAL_ARC is not set 1812 | # CONFIG_SERIAL_FSL_LPUART is not set 1813 | # CONFIG_SERIAL_FSL_LINFLEXUART is not set 1814 | # CONFIG_SERIAL_CONEXANT_DIGICOLOR is not set 1815 | # CONFIG_SERIAL_SPRD is not set 1816 | # end of Serial drivers 1817 | 1818 | # CONFIG_SERIAL_NONSTANDARD is not set 1819 | # CONFIG_N_GSM is not set 1820 | # CONFIG_NULL_TTY is not set 1821 | # CONFIG_HVC_DCC is not set 1822 | CONFIG_SERIAL_DEV_BUS=y 1823 | CONFIG_SERIAL_DEV_CTRL_TTYPORT=y 1824 | # CONFIG_TTY_PRINTK is not set 1825 | # CONFIG_VIRTIO_CONSOLE is not set 1826 | # CONFIG_IPMI_HANDLER is not set 1827 | CONFIG_HW_RANDOM=y 1828 | # CONFIG_HW_RANDOM_TIMERIOMEM is not set 1829 | # CONFIG_HW_RANDOM_BA431 is not set 1830 | # CONFIG_HW_RANDOM_VIRTIO is not set 1831 | # CONFIG_HW_RANDOM_CCTRNG is not set 1832 | # CONFIG_HW_RANDOM_XIPHERA is not set 1833 | CONFIG_HW_RANDOM_ARM_SMCCC_TRNG=y 1834 | CONFIG_DEVMEM=y 1835 | CONFIG_DEVPORT=y 1836 | # CONFIG_TCG_TPM is not set 1837 | # CONFIG_XILLYBUS is not set 1838 | # CONFIG_XILLYUSB is not set 1839 | # end of Character devices 1840 | 1841 | # 1842 | # I2C support 1843 | # 1844 | CONFIG_I2C=y 1845 | CONFIG_I2C_BOARDINFO=y 1846 | # CONFIG_I2C_CHARDEV is not set 1847 | CONFIG_I2C_MUX=y 1848 | 1849 | # 1850 | # Multiplexer I2C Chip support 1851 | # 1852 | # CONFIG_I2C_ARB_GPIO_CHALLENGE is not set 1853 | # CONFIG_I2C_MUX_GPIO is not set 1854 | # CONFIG_I2C_MUX_GPMUX is not set 1855 | # CONFIG_I2C_MUX_LTC4306 is not set 1856 | # CONFIG_I2C_MUX_PCA9541 is not set 1857 | # CONFIG_I2C_MUX_PCA954x is not set 1858 | # CONFIG_I2C_MUX_PINCTRL is not set 1859 | # CONFIG_I2C_MUX_REG is not set 1860 | # CONFIG_I2C_DEMUX_PINCTRL is not set 1861 | # CONFIG_I2C_MUX_MLXCPLD is not set 1862 | # end of Multiplexer I2C Chip support 1863 | 1864 | # CONFIG_I2C_HELPER_AUTO is not set 1865 | # CONFIG_I2C_SMBUS is not set 1866 | 1867 | # 1868 | # I2C Algorithms 1869 | # 1870 | CONFIG_I2C_ALGOBIT=y 1871 | # CONFIG_I2C_ALGOPCF is not set 1872 | # CONFIG_I2C_ALGOPCA is not set 1873 | # end of I2C Algorithms 1874 | 1875 | # 1876 | # I2C Hardware Bus support 1877 | # 1878 | 1879 | # 1880 | # I2C system bus drivers (mostly embedded / system-on-chip) 1881 | # 1882 | # CONFIG_I2C_CADENCE is not set 1883 | # CONFIG_I2C_CBUS_GPIO is not set 1884 | # CONFIG_I2C_DESIGNWARE_CORE is not set 1885 | # CONFIG_I2C_EMEV2 is not set 1886 | # CONFIG_I2C_GPIO is not set 1887 | # CONFIG_I2C_HISI is not set 1888 | # CONFIG_I2C_NOMADIK is not set 1889 | # CONFIG_I2C_OCORES is not set 1890 | CONFIG_I2C_APPLE=y 1891 | # CONFIG_I2C_PCA_PLATFORM is not set 1892 | # CONFIG_I2C_RK3X is not set 1893 | # CONFIG_I2C_SIMTEC is not set 1894 | # CONFIG_I2C_XILINX is not set 1895 | 1896 | # 1897 | # External I2C/SMBus adapter drivers 1898 | # 1899 | # CONFIG_I2C_DIOLAN_U2C is not set 1900 | # CONFIG_I2C_CP2615 is not set 1901 | # CONFIG_I2C_ROBOTFUZZ_OSIF is not set 1902 | # CONFIG_I2C_TAOS_EVM is not set 1903 | # CONFIG_I2C_TINY_USB is not set 1904 | 1905 | # 1906 | # Other I2C/SMBus bus drivers 1907 | # 1908 | # CONFIG_I2C_VIRTIO is not set 1909 | # end of I2C Hardware Bus support 1910 | 1911 | # CONFIG_I2C_SLAVE is not set 1912 | # CONFIG_I2C_DEBUG_CORE is not set 1913 | # CONFIG_I2C_DEBUG_ALGO is not set 1914 | # CONFIG_I2C_DEBUG_BUS is not set 1915 | # end of I2C support 1916 | 1917 | # CONFIG_I3C is not set 1918 | # CONFIG_SPI is not set 1919 | CONFIG_SPMI=y 1920 | CONFIG_SPMI_APPLE=y 1921 | # CONFIG_SPMI_HISI3670 is not set 1922 | # CONFIG_HSI is not set 1923 | # CONFIG_PPS is not set 1924 | 1925 | # 1926 | # PTP clock support 1927 | # 1928 | # CONFIG_PTP_1588_CLOCK is not set 1929 | CONFIG_PTP_1588_CLOCK_OPTIONAL=y 1930 | 1931 | # 1932 | # Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. 1933 | # 1934 | # end of PTP clock support 1935 | 1936 | CONFIG_PINCTRL=y 1937 | CONFIG_GENERIC_PINCTRL_GROUPS=y 1938 | CONFIG_PINMUX=y 1939 | CONFIG_GENERIC_PINMUX_FUNCTIONS=y 1940 | # CONFIG_DEBUG_PINCTRL is not set 1941 | CONFIG_PINCTRL_APPLE_GPIO=y 1942 | # CONFIG_PINCTRL_AW9523 is not set 1943 | # CONFIG_PINCTRL_CY8C95X0 is not set 1944 | # CONFIG_PINCTRL_MCP23S08 is not set 1945 | # CONFIG_PINCTRL_MICROCHIP_SGPIO is not set 1946 | # CONFIG_PINCTRL_OCELOT is not set 1947 | # CONFIG_PINCTRL_SINGLE is not set 1948 | # CONFIG_PINCTRL_STMFX is not set 1949 | # CONFIG_PINCTRL_SX150X is not set 1950 | 1951 | # 1952 | # Renesas pinctrl drivers 1953 | # 1954 | # end of Renesas pinctrl drivers 1955 | 1956 | CONFIG_GPIOLIB=y 1957 | CONFIG_GPIOLIB_FASTPATH_LIMIT=512 1958 | CONFIG_OF_GPIO=y 1959 | CONFIG_GPIOLIB_IRQCHIP=y 1960 | # CONFIG_DEBUG_GPIO is not set 1961 | # CONFIG_GPIO_SYSFS is not set 1962 | CONFIG_GPIO_CDEV=y 1963 | CONFIG_GPIO_CDEV_V1=y 1964 | 1965 | # 1966 | # Memory mapped GPIO drivers 1967 | # 1968 | # CONFIG_GPIO_74XX_MMIO is not set 1969 | # CONFIG_GPIO_ALTERA is not set 1970 | # CONFIG_GPIO_CADENCE is not set 1971 | # CONFIG_GPIO_DWAPB is not set 1972 | # CONFIG_GPIO_FTGPIO010 is not set 1973 | # CONFIG_GPIO_GENERIC_PLATFORM is not set 1974 | # CONFIG_GPIO_GRGPIO is not set 1975 | # CONFIG_GPIO_HISI is not set 1976 | # CONFIG_GPIO_HLWD is not set 1977 | # CONFIG_GPIO_LOGICVC is not set 1978 | # CONFIG_GPIO_MB86S7X is not set 1979 | # CONFIG_GPIO_PL061 is not set 1980 | # CONFIG_GPIO_POLARFIRE_SOC is not set 1981 | # CONFIG_GPIO_SIFIVE is not set 1982 | # CONFIG_GPIO_SYSCON is not set 1983 | # CONFIG_GPIO_XGENE is not set 1984 | # CONFIG_GPIO_XILINX is not set 1985 | # CONFIG_GPIO_AMD_FCH is not set 1986 | # end of Memory mapped GPIO drivers 1987 | 1988 | # 1989 | # I2C GPIO expanders 1990 | # 1991 | # CONFIG_GPIO_ADNP is not set 1992 | # CONFIG_GPIO_FXL6408 is not set 1993 | # CONFIG_GPIO_DS4520 is not set 1994 | # CONFIG_GPIO_GW_PLD is not set 1995 | # CONFIG_GPIO_MAX7300 is not set 1996 | # CONFIG_GPIO_MAX732X is not set 1997 | # CONFIG_GPIO_PCA953X is not set 1998 | # CONFIG_GPIO_PCA9570 is not set 1999 | # CONFIG_GPIO_PCF857X is not set 2000 | # CONFIG_GPIO_TPIC2810 is not set 2001 | # end of I2C GPIO expanders 2002 | 2003 | # 2004 | # MFD GPIO expanders 2005 | # 2006 | # end of MFD GPIO expanders 2007 | 2008 | # 2009 | # USB GPIO expanders 2010 | # 2011 | # CONFIG_GPIO_MPSSE is not set 2012 | # end of USB GPIO expanders 2013 | 2014 | # 2015 | # Virtual GPIO drivers 2016 | # 2017 | # CONFIG_GPIO_AGGREGATOR is not set 2018 | # CONFIG_GPIO_LATCH is not set 2019 | # CONFIG_GPIO_MOCKUP is not set 2020 | # CONFIG_GPIO_VIRTIO is not set 2021 | # CONFIG_GPIO_SIM is not set 2022 | # end of Virtual GPIO drivers 2023 | 2024 | # 2025 | # GPIO Debugging utilities 2026 | # 2027 | # CONFIG_GPIO_VIRTUSER is not set 2028 | # end of GPIO Debugging utilities 2029 | 2030 | # CONFIG_W1 is not set 2031 | CONFIG_POWER_RESET=y 2032 | # CONFIG_POWER_RESET_GPIO is not set 2033 | # CONFIG_POWER_RESET_GPIO_RESTART is not set 2034 | # CONFIG_POWER_RESET_LTC2952 is not set 2035 | # CONFIG_POWER_RESET_RESTART is not set 2036 | # CONFIG_POWER_RESET_XGENE is not set 2037 | # CONFIG_POWER_RESET_SYSCON is not set 2038 | # CONFIG_POWER_RESET_SYSCON_POWEROFF is not set 2039 | # CONFIG_SYSCON_REBOOT_MODE is not set 2040 | # CONFIG_NVMEM_REBOOT_MODE is not set 2041 | # CONFIG_POWER_SEQUENCING is not set 2042 | CONFIG_POWER_SUPPLY=y 2043 | # CONFIG_POWER_SUPPLY_DEBUG is not set 2044 | CONFIG_POWER_SUPPLY_HWMON=y 2045 | # CONFIG_IP5XXX_POWER is not set 2046 | # CONFIG_TEST_POWER is not set 2047 | # CONFIG_CHARGER_ADP5061 is not set 2048 | # CONFIG_BATTERY_CW2015 is not set 2049 | # CONFIG_BATTERY_DS2780 is not set 2050 | # CONFIG_BATTERY_DS2781 is not set 2051 | # CONFIG_BATTERY_DS2782 is not set 2052 | # CONFIG_BATTERY_SAMSUNG_SDI is not set 2053 | # CONFIG_BATTERY_SBS is not set 2054 | # CONFIG_CHARGER_SBS is not set 2055 | # CONFIG_MANAGER_SBS is not set 2056 | CONFIG_BATTERY_BQ27XXX=y 2057 | # CONFIG_BATTERY_BQ27XXX_I2C is not set 2058 | # CONFIG_BATTERY_MAX17042 is not set 2059 | # CONFIG_BATTERY_MAX1720X is not set 2060 | # CONFIG_CHARGER_MAX8903 is not set 2061 | # CONFIG_CHARGER_LP8727 is not set 2062 | # CONFIG_CHARGER_GPIO is not set 2063 | # CONFIG_CHARGER_LT3651 is not set 2064 | # CONFIG_CHARGER_LTC4162L is not set 2065 | # CONFIG_CHARGER_DETECTOR_MAX14656 is not set 2066 | # CONFIG_CHARGER_MAX77976 is not set 2067 | # CONFIG_CHARGER_BQ2415X is not set 2068 | # CONFIG_CHARGER_BQ24257 is not set 2069 | # CONFIG_CHARGER_BQ24735 is not set 2070 | # CONFIG_CHARGER_BQ2515X is not set 2071 | # CONFIG_CHARGER_BQ25890 is not set 2072 | # CONFIG_CHARGER_BQ25980 is not set 2073 | # CONFIG_CHARGER_BQ256XX is not set 2074 | # CONFIG_BATTERY_GAUGE_LTC2941 is not set 2075 | # CONFIG_BATTERY_GOLDFISH is not set 2076 | # CONFIG_BATTERY_RT5033 is not set 2077 | # CONFIG_CHARGER_RT5033 is not set 2078 | # CONFIG_CHARGER_RT9455 is not set 2079 | # CONFIG_CHARGER_BD99954 is not set 2080 | # CONFIG_BATTERY_UG3105 is not set 2081 | # CONFIG_FUEL_GAUGE_MM8013 is not set 2082 | CONFIG_HWMON=y 2083 | # CONFIG_HWMON_DEBUG_CHIP is not set 2084 | 2085 | # 2086 | # Native drivers 2087 | # 2088 | # CONFIG_SENSORS_AD7414 is not set 2089 | # CONFIG_SENSORS_AD7418 is not set 2090 | # CONFIG_SENSORS_ADM1025 is not set 2091 | # CONFIG_SENSORS_ADM1026 is not set 2092 | # CONFIG_SENSORS_ADM1029 is not set 2093 | # CONFIG_SENSORS_ADM1031 is not set 2094 | # CONFIG_SENSORS_ADM1177 is not set 2095 | # CONFIG_SENSORS_ADM9240 is not set 2096 | # CONFIG_SENSORS_ADT7410 is not set 2097 | # CONFIG_SENSORS_ADT7411 is not set 2098 | # CONFIG_SENSORS_ADT7462 is not set 2099 | # CONFIG_SENSORS_ADT7470 is not set 2100 | # CONFIG_SENSORS_ADT7475 is not set 2101 | # CONFIG_SENSORS_AHT10 is not set 2102 | # CONFIG_SENSORS_AQUACOMPUTER_D5NEXT is not set 2103 | # CONFIG_SENSORS_AS370 is not set 2104 | # CONFIG_SENSORS_ASC7621 is not set 2105 | # CONFIG_SENSORS_ASUS_ROG_RYUJIN is not set 2106 | # CONFIG_SENSORS_AXI_FAN_CONTROL is not set 2107 | # CONFIG_SENSORS_ATXP1 is not set 2108 | # CONFIG_SENSORS_CHIPCAP2 is not set 2109 | # CONFIG_SENSORS_CORSAIR_CPRO is not set 2110 | # CONFIG_SENSORS_CORSAIR_PSU is not set 2111 | # CONFIG_SENSORS_DS620 is not set 2112 | # CONFIG_SENSORS_DS1621 is not set 2113 | # CONFIG_SENSORS_F71805F is not set 2114 | # CONFIG_SENSORS_F71882FG is not set 2115 | # CONFIG_SENSORS_F75375S is not set 2116 | # CONFIG_SENSORS_FTSTEUTATES is not set 2117 | # CONFIG_SENSORS_GIGABYTE_WATERFORCE is not set 2118 | # CONFIG_SENSORS_GL518SM is not set 2119 | # CONFIG_SENSORS_GL520SM is not set 2120 | # CONFIG_SENSORS_G760A is not set 2121 | # CONFIG_SENSORS_G762 is not set 2122 | # CONFIG_SENSORS_GPIO_FAN is not set 2123 | # CONFIG_SENSORS_HIH6130 is not set 2124 | # CONFIG_SENSORS_HS3001 is not set 2125 | # CONFIG_SENSORS_HTU31 is not set 2126 | # CONFIG_SENSORS_ISL28022 is not set 2127 | # CONFIG_SENSORS_IT87 is not set 2128 | # CONFIG_SENSORS_JC42 is not set 2129 | # CONFIG_SENSORS_POWERZ is not set 2130 | # CONFIG_SENSORS_POWR1220 is not set 2131 | # CONFIG_SENSORS_LINEAGE is not set 2132 | # CONFIG_SENSORS_LTC2945 is not set 2133 | # CONFIG_SENSORS_LTC2947_I2C is not set 2134 | # CONFIG_SENSORS_LTC2990 is not set 2135 | # CONFIG_SENSORS_LTC2991 is not set 2136 | # CONFIG_SENSORS_LTC2992 is not set 2137 | # CONFIG_SENSORS_LTC4151 is not set 2138 | # CONFIG_SENSORS_LTC4215 is not set 2139 | # CONFIG_SENSORS_LTC4222 is not set 2140 | # CONFIG_SENSORS_LTC4245 is not set 2141 | # CONFIG_SENSORS_LTC4260 is not set 2142 | # CONFIG_SENSORS_LTC4261 is not set 2143 | # CONFIG_SENSORS_LTC4282 is not set 2144 | # CONFIG_SENSORS_MAX127 is not set 2145 | # CONFIG_SENSORS_MAX16065 is not set 2146 | # CONFIG_SENSORS_MAX1619 is not set 2147 | # CONFIG_SENSORS_MAX1668 is not set 2148 | # CONFIG_SENSORS_MAX197 is not set 2149 | # CONFIG_SENSORS_MAX31730 is not set 2150 | # CONFIG_SENSORS_MAX31760 is not set 2151 | # CONFIG_MAX31827 is not set 2152 | # CONFIG_SENSORS_MAX6620 is not set 2153 | # CONFIG_SENSORS_MAX6621 is not set 2154 | # CONFIG_SENSORS_MAX6639 is not set 2155 | # CONFIG_SENSORS_MAX6650 is not set 2156 | # CONFIG_SENSORS_MAX6697 is not set 2157 | # CONFIG_SENSORS_MAX31790 is not set 2158 | # CONFIG_SENSORS_MC34VR500 is not set 2159 | # CONFIG_SENSORS_MCP3021 is not set 2160 | # CONFIG_SENSORS_TC654 is not set 2161 | # CONFIG_SENSORS_TPS23861 is not set 2162 | # CONFIG_SENSORS_MR75203 is not set 2163 | # CONFIG_SENSORS_LM63 is not set 2164 | # CONFIG_SENSORS_LM73 is not set 2165 | # CONFIG_SENSORS_LM75 is not set 2166 | # CONFIG_SENSORS_LM77 is not set 2167 | # CONFIG_SENSORS_LM78 is not set 2168 | # CONFIG_SENSORS_LM80 is not set 2169 | # CONFIG_SENSORS_LM83 is not set 2170 | # CONFIG_SENSORS_LM85 is not set 2171 | # CONFIG_SENSORS_LM87 is not set 2172 | # CONFIG_SENSORS_LM90 is not set 2173 | # CONFIG_SENSORS_LM92 is not set 2174 | # CONFIG_SENSORS_LM93 is not set 2175 | # CONFIG_SENSORS_LM95234 is not set 2176 | # CONFIG_SENSORS_LM95241 is not set 2177 | # CONFIG_SENSORS_LM95245 is not set 2178 | # CONFIG_SENSORS_PC87360 is not set 2179 | # CONFIG_SENSORS_PC87427 is not set 2180 | # CONFIG_SENSORS_NCT6683 is not set 2181 | # CONFIG_SENSORS_NCT6775 is not set 2182 | # CONFIG_SENSORS_NCT6775_I2C is not set 2183 | # CONFIG_SENSORS_NCT7363 is not set 2184 | # CONFIG_SENSORS_NCT7802 is not set 2185 | # CONFIG_SENSORS_NCT7904 is not set 2186 | # CONFIG_SENSORS_NPCM7XX is not set 2187 | # CONFIG_SENSORS_NZXT_KRAKEN2 is not set 2188 | # CONFIG_SENSORS_NZXT_KRAKEN3 is not set 2189 | # CONFIG_SENSORS_NZXT_SMART2 is not set 2190 | # CONFIG_SENSORS_OCC_P8_I2C is not set 2191 | # CONFIG_SENSORS_PCF8591 is not set 2192 | # CONFIG_PMBUS is not set 2193 | # CONFIG_SENSORS_PT5161L is not set 2194 | # CONFIG_SENSORS_PWM_FAN is not set 2195 | # CONFIG_SENSORS_SBTSI is not set 2196 | # CONFIG_SENSORS_SBRMI is not set 2197 | # CONFIG_SENSORS_SHT15 is not set 2198 | # CONFIG_SENSORS_SHT21 is not set 2199 | # CONFIG_SENSORS_SHT3x is not set 2200 | # CONFIG_SENSORS_SHT4x is not set 2201 | # CONFIG_SENSORS_SHTC1 is not set 2202 | # CONFIG_SENSORS_DME1737 is not set 2203 | # CONFIG_SENSORS_EMC1403 is not set 2204 | # CONFIG_SENSORS_EMC2103 is not set 2205 | # CONFIG_SENSORS_EMC2305 is not set 2206 | # CONFIG_SENSORS_EMC6W201 is not set 2207 | # CONFIG_SENSORS_SMSC47M1 is not set 2208 | # CONFIG_SENSORS_SMSC47M192 is not set 2209 | # CONFIG_SENSORS_SMSC47B397 is not set 2210 | # CONFIG_SENSORS_SCH5627 is not set 2211 | # CONFIG_SENSORS_SCH5636 is not set 2212 | # CONFIG_SENSORS_STTS751 is not set 2213 | # CONFIG_SENSORS_ADC128D818 is not set 2214 | # CONFIG_SENSORS_ADS7828 is not set 2215 | # CONFIG_SENSORS_AMC6821 is not set 2216 | # CONFIG_SENSORS_INA209 is not set 2217 | # CONFIG_SENSORS_INA2XX is not set 2218 | # CONFIG_SENSORS_INA238 is not set 2219 | # CONFIG_SENSORS_INA3221 is not set 2220 | # CONFIG_SENSORS_SPD5118 is not set 2221 | # CONFIG_SENSORS_TC74 is not set 2222 | # CONFIG_SENSORS_THMC50 is not set 2223 | # CONFIG_SENSORS_TMP102 is not set 2224 | # CONFIG_SENSORS_TMP103 is not set 2225 | # CONFIG_SENSORS_TMP108 is not set 2226 | # CONFIG_SENSORS_TMP401 is not set 2227 | # CONFIG_SENSORS_TMP421 is not set 2228 | # CONFIG_SENSORS_TMP464 is not set 2229 | # CONFIG_SENSORS_TMP513 is not set 2230 | # CONFIG_SENSORS_VT1211 is not set 2231 | # CONFIG_SENSORS_W83773G is not set 2232 | # CONFIG_SENSORS_W83781D is not set 2233 | # CONFIG_SENSORS_W83791D is not set 2234 | # CONFIG_SENSORS_W83792D is not set 2235 | # CONFIG_SENSORS_W83793 is not set 2236 | # CONFIG_SENSORS_W83795 is not set 2237 | # CONFIG_SENSORS_W83L785TS is not set 2238 | # CONFIG_SENSORS_W83L786NG is not set 2239 | # CONFIG_SENSORS_W83627HF is not set 2240 | # CONFIG_SENSORS_W83627EHF is not set 2241 | # CONFIG_THERMAL is not set 2242 | CONFIG_WATCHDOG=y 2243 | CONFIG_WATCHDOG_CORE=y 2244 | # CONFIG_WATCHDOG_NOWAYOUT is not set 2245 | CONFIG_WATCHDOG_HANDLE_BOOT_ENABLED=y 2246 | CONFIG_WATCHDOG_OPEN_TIMEOUT=0 2247 | # CONFIG_WATCHDOG_SYSFS is not set 2248 | # CONFIG_WATCHDOG_HRTIMER_PRETIMEOUT is not set 2249 | 2250 | # 2251 | # Watchdog Pretimeout Governors 2252 | # 2253 | # CONFIG_WATCHDOG_PRETIMEOUT_GOV is not set 2254 | 2255 | # 2256 | # Watchdog Device Drivers 2257 | # 2258 | # CONFIG_SOFT_WATCHDOG is not set 2259 | # CONFIG_GPIO_WATCHDOG is not set 2260 | # CONFIG_XILINX_WATCHDOG is not set 2261 | # CONFIG_XILINX_WINDOW_WATCHDOG is not set 2262 | # CONFIG_ZIIRAVE_WATCHDOG is not set 2263 | # CONFIG_ARM_SP805_WATCHDOG is not set 2264 | # CONFIG_ARM_SBSA_WATCHDOG is not set 2265 | # CONFIG_CADENCE_WATCHDOG is not set 2266 | # CONFIG_DW_WATCHDOG is not set 2267 | # CONFIG_MAX63XX_WATCHDOG is not set 2268 | # CONFIG_ARM_SMC_WATCHDOG is not set 2269 | CONFIG_APPLE_WATCHDOG=y 2270 | # CONFIG_MEN_A21_WDT is not set 2271 | 2272 | # 2273 | # USB-based Watchdog Cards 2274 | # 2275 | # CONFIG_USBPCWATCHDOG is not set 2276 | CONFIG_SSB_POSSIBLE=y 2277 | # CONFIG_SSB is not set 2278 | CONFIG_BCMA_POSSIBLE=y 2279 | # CONFIG_BCMA is not set 2280 | 2281 | # 2282 | # Multifunction device drivers 2283 | # 2284 | CONFIG_MFD_CORE=y 2285 | # CONFIG_MFD_ADP5585 is not set 2286 | # CONFIG_MFD_ACT8945A is not set 2287 | # CONFIG_MFD_AS3711 is not set 2288 | # CONFIG_MFD_SMPRO is not set 2289 | # CONFIG_MFD_AS3722 is not set 2290 | # CONFIG_PMIC_ADP5520 is not set 2291 | # CONFIG_MFD_AAT2870_CORE is not set 2292 | # CONFIG_MFD_ATMEL_FLEXCOM is not set 2293 | # CONFIG_MFD_ATMEL_HLCDC is not set 2294 | # CONFIG_MFD_BCM590XX is not set 2295 | # CONFIG_MFD_BD9571MWV is not set 2296 | # CONFIG_MFD_AXP20X_I2C is not set 2297 | # CONFIG_MFD_CS42L43_I2C is not set 2298 | # CONFIG_MFD_MADERA is not set 2299 | # CONFIG_MFD_MAX5970 is not set 2300 | # CONFIG_PMIC_DA903X is not set 2301 | # CONFIG_MFD_DA9052_I2C is not set 2302 | # CONFIG_MFD_DA9055 is not set 2303 | # CONFIG_MFD_DA9062 is not set 2304 | # CONFIG_MFD_DA9063 is not set 2305 | # CONFIG_MFD_DA9150 is not set 2306 | # CONFIG_MFD_DLN2 is not set 2307 | # CONFIG_MFD_GATEWORKS_GSC is not set 2308 | # CONFIG_MFD_MC13XXX_I2C is not set 2309 | # CONFIG_MFD_MP2629 is not set 2310 | # CONFIG_MFD_HI6421_PMIC is not set 2311 | # CONFIG_MFD_HI6421_SPMI is not set 2312 | # CONFIG_MFD_IQS62X is not set 2313 | # CONFIG_MFD_KEMPLD is not set 2314 | # CONFIG_MFD_88PM800 is not set 2315 | # CONFIG_MFD_88PM805 is not set 2316 | # CONFIG_MFD_88PM860X is not set 2317 | # CONFIG_MFD_88PM886_PMIC is not set 2318 | # CONFIG_MFD_MAX14577 is not set 2319 | # CONFIG_MFD_MAX77541 is not set 2320 | # CONFIG_MFD_MAX77620 is not set 2321 | # CONFIG_MFD_MAX77650 is not set 2322 | # CONFIG_MFD_MAX77686 is not set 2323 | # CONFIG_MFD_MAX77693 is not set 2324 | # CONFIG_MFD_MAX77705 is not set 2325 | # CONFIG_MFD_MAX77714 is not set 2326 | # CONFIG_MFD_MAX77843 is not set 2327 | # CONFIG_MFD_MAX8907 is not set 2328 | # CONFIG_MFD_MAX8925 is not set 2329 | # CONFIG_MFD_MAX8997 is not set 2330 | # CONFIG_MFD_MAX8998 is not set 2331 | # CONFIG_MFD_MT6360 is not set 2332 | # CONFIG_MFD_MT6370 is not set 2333 | # CONFIG_MFD_MT6397 is not set 2334 | # CONFIG_MFD_MENF21BMC is not set 2335 | # CONFIG_MFD_VIPERBOARD is not set 2336 | # CONFIG_MFD_NTXEC is not set 2337 | # CONFIG_MFD_RETU is not set 2338 | # CONFIG_MFD_SY7636A is not set 2339 | # CONFIG_MFD_RT4831 is not set 2340 | CONFIG_MFD_RT5033=y 2341 | # CONFIG_MFD_RT5120 is not set 2342 | # CONFIG_MFD_RC5T583 is not set 2343 | # CONFIG_MFD_RK8XX_I2C is not set 2344 | # CONFIG_MFD_RN5T618 is not set 2345 | # CONFIG_MFD_SEC_CORE is not set 2346 | # CONFIG_MFD_SI476X_CORE is not set 2347 | CONFIG_MFD_SIMPLE_MFD_I2C=y 2348 | CONFIG_MFD_SIMPLE_MFD_SPMI=y 2349 | # CONFIG_MFD_SM501 is not set 2350 | # CONFIG_MFD_SKY81452 is not set 2351 | # CONFIG_MFD_STMPE is not set 2352 | CONFIG_MFD_SYSCON=y 2353 | # CONFIG_MFD_LP3943 is not set 2354 | # CONFIG_MFD_LP8788 is not set 2355 | # CONFIG_MFD_TI_LMU is not set 2356 | # CONFIG_MFD_PALMAS is not set 2357 | # CONFIG_TPS6105X is not set 2358 | # CONFIG_TPS65010 is not set 2359 | # CONFIG_TPS6507X is not set 2360 | # CONFIG_MFD_TPS65086 is not set 2361 | # CONFIG_MFD_TPS65090 is not set 2362 | # CONFIG_MFD_TPS65217 is not set 2363 | # CONFIG_MFD_TI_LP873X is not set 2364 | # CONFIG_MFD_TI_LP87565 is not set 2365 | # CONFIG_MFD_TPS65218 is not set 2366 | # CONFIG_MFD_TPS65219 is not set 2367 | # CONFIG_MFD_TPS6586X is not set 2368 | # CONFIG_MFD_TPS65910 is not set 2369 | # CONFIG_MFD_TPS65912_I2C is not set 2370 | # CONFIG_MFD_TPS6594_I2C is not set 2371 | # CONFIG_TWL4030_CORE is not set 2372 | # CONFIG_TWL6040_CORE is not set 2373 | # CONFIG_MFD_WL1273_CORE is not set 2374 | # CONFIG_MFD_LM3533 is not set 2375 | # CONFIG_MFD_TC3589X is not set 2376 | # CONFIG_MFD_TQMX86 is not set 2377 | # CONFIG_MFD_LOCHNAGAR is not set 2378 | # CONFIG_MFD_ARIZONA_I2C is not set 2379 | # CONFIG_MFD_WM8400 is not set 2380 | # CONFIG_MFD_WM831X_I2C is not set 2381 | # CONFIG_MFD_WM8350_I2C is not set 2382 | # CONFIG_MFD_WM8994 is not set 2383 | # CONFIG_MFD_ROHM_BD718XX is not set 2384 | # CONFIG_MFD_ROHM_BD71828 is not set 2385 | # CONFIG_MFD_ROHM_BD957XMUF is not set 2386 | # CONFIG_MFD_ROHM_BD96801 is not set 2387 | # CONFIG_MFD_STPMIC1 is not set 2388 | # CONFIG_MFD_STMFX is not set 2389 | # CONFIG_MFD_ATC260X_I2C is not set 2390 | CONFIG_MFD_QCOM_PM8008=y 2391 | # CONFIG_MFD_CS40L50_I2C is not set 2392 | # CONFIG_RAVE_SP_CORE is not set 2393 | # CONFIG_MFD_QNAP_MCU is not set 2394 | # CONFIG_MFD_RSMU_I2C is not set 2395 | # end of Multifunction device drivers 2396 | 2397 | # CONFIG_REGULATOR is not set 2398 | # CONFIG_RC_CORE is not set 2399 | 2400 | # 2401 | # CEC support 2402 | # 2403 | # CONFIG_MEDIA_CEC_SUPPORT is not set 2404 | # end of CEC support 2405 | 2406 | # CONFIG_MEDIA_SUPPORT is not set 2407 | 2408 | # 2409 | # Graphics support 2410 | # 2411 | CONFIG_APERTURE_HELPERS=y 2412 | CONFIG_VIDEO=y 2413 | # CONFIG_AUXDISPLAY is not set 2414 | CONFIG_DRM=y 2415 | # CONFIG_DRM_DEBUG_MM is not set 2416 | # CONFIG_DRM_PANIC is not set 2417 | # CONFIG_DRM_DEBUG_DP_MST_TOPOLOGY_REFS is not set 2418 | # CONFIG_DRM_DEBUG_MODESET_LOCK is not set 2419 | # CONFIG_DRM_LOAD_EDID_FIRMWARE is not set 2420 | 2421 | # 2422 | # ARM devices 2423 | # 2424 | # CONFIG_DRM_HDLCD is not set 2425 | # CONFIG_DRM_MALI_DISPLAY is not set 2426 | # CONFIG_DRM_KOMEDA is not set 2427 | # end of ARM devices 2428 | 2429 | # CONFIG_DRM_VGEM is not set 2430 | # CONFIG_DRM_VKMS is not set 2431 | # CONFIG_DRM_UDL is not set 2432 | CONFIG_DRM_PANEL=y 2433 | 2434 | # 2435 | # Display Panels 2436 | # 2437 | # CONFIG_DRM_PANEL_ARM_VERSATILE is not set 2438 | # CONFIG_DRM_PANEL_LVDS is not set 2439 | # CONFIG_DRM_PANEL_OLIMEX_LCD_OLINUXINO is not set 2440 | # CONFIG_DRM_PANEL_SAMSUNG_S6E88A0_AMS452EF01 is not set 2441 | # CONFIG_DRM_PANEL_SAMSUNG_ATNA33XC20 is not set 2442 | # CONFIG_DRM_PANEL_SAMSUNG_S6D7AA0 is not set 2443 | # CONFIG_DRM_PANEL_SAMSUNG_S6E63M0 is not set 2444 | # CONFIG_DRM_PANEL_SAMSUNG_S6E8AA0 is not set 2445 | # CONFIG_DRM_PANEL_SEIKO_43WVF1G is not set 2446 | # CONFIG_DRM_PANEL_EDP is not set 2447 | # CONFIG_DRM_PANEL_SIMPLE is not set 2448 | # end of Display Panels 2449 | 2450 | CONFIG_DRM_BRIDGE=y 2451 | CONFIG_DRM_PANEL_BRIDGE=y 2452 | 2453 | # 2454 | # Display Interface Bridges 2455 | # 2456 | # CONFIG_DRM_CHIPONE_ICN6211 is not set 2457 | # CONFIG_DRM_CHRONTEL_CH7033 is not set 2458 | # CONFIG_DRM_DISPLAY_CONNECTOR is not set 2459 | # CONFIG_DRM_I2C_NXP_TDA998X is not set 2460 | # CONFIG_DRM_ITE_IT6263 is not set 2461 | # CONFIG_DRM_ITE_IT6505 is not set 2462 | # CONFIG_DRM_LONTIUM_LT8912B is not set 2463 | # CONFIG_DRM_LONTIUM_LT9211 is not set 2464 | # CONFIG_DRM_LONTIUM_LT9611 is not set 2465 | # CONFIG_DRM_LONTIUM_LT9611UXC is not set 2466 | # CONFIG_DRM_ITE_IT66121 is not set 2467 | # CONFIG_DRM_LVDS_CODEC is not set 2468 | # CONFIG_DRM_MEGACHIPS_STDPXXXX_GE_B850V3_FW is not set 2469 | # CONFIG_DRM_NWL_MIPI_DSI is not set 2470 | # CONFIG_DRM_NXP_PTN3460 is not set 2471 | # CONFIG_DRM_PARADE_PS8622 is not set 2472 | # CONFIG_DRM_PARADE_PS8640 is not set 2473 | # CONFIG_DRM_SAMSUNG_DSIM is not set 2474 | # CONFIG_DRM_SIL_SII8620 is not set 2475 | # CONFIG_DRM_SII902X is not set 2476 | # CONFIG_DRM_SII9234 is not set 2477 | # CONFIG_DRM_SIMPLE_BRIDGE is not set 2478 | # CONFIG_DRM_THINE_THC63LVD1024 is not set 2479 | # CONFIG_DRM_TOSHIBA_TC358762 is not set 2480 | # CONFIG_DRM_TOSHIBA_TC358764 is not set 2481 | # CONFIG_DRM_TOSHIBA_TC358767 is not set 2482 | # CONFIG_DRM_TOSHIBA_TC358768 is not set 2483 | # CONFIG_DRM_TOSHIBA_TC358775 is not set 2484 | # CONFIG_DRM_TI_DLPC3433 is not set 2485 | # CONFIG_DRM_TI_TDP158 is not set 2486 | # CONFIG_DRM_TI_TFP410 is not set 2487 | # CONFIG_DRM_TI_SN65DSI83 is not set 2488 | # CONFIG_DRM_TI_SN65DSI86 is not set 2489 | # CONFIG_DRM_TI_TPD12S015 is not set 2490 | # CONFIG_DRM_ANALOGIX_ANX6345 is not set 2491 | # CONFIG_DRM_ANALOGIX_ANX78XX is not set 2492 | # CONFIG_DRM_ANALOGIX_ANX7625 is not set 2493 | # CONFIG_DRM_I2C_ADV7511 is not set 2494 | # CONFIG_DRM_CDNS_DSI is not set 2495 | # CONFIG_DRM_CDNS_MHDP8546 is not set 2496 | # end of Display Interface Bridges 2497 | 2498 | # CONFIG_DRM_ETNAVIV is not set 2499 | # CONFIG_DRM_HISI_KIRIN is not set 2500 | # CONFIG_DRM_LOGICVC is not set 2501 | # CONFIG_DRM_APPLETBDRM is not set 2502 | # CONFIG_DRM_ARCPGU is not set 2503 | # CONFIG_DRM_GM12U320 is not set 2504 | # CONFIG_DRM_SIMPLEDRM is not set 2505 | # CONFIG_DRM_PL111 is not set 2506 | # CONFIG_DRM_LIMA is not set 2507 | # CONFIG_DRM_PANFROST is not set 2508 | # CONFIG_DRM_PANTHOR is not set 2509 | # CONFIG_DRM_TIDSS is not set 2510 | # CONFIG_DRM_ADP is not set 2511 | # CONFIG_DRM_GUD is not set 2512 | # CONFIG_DRM_SSD130X is not set 2513 | # CONFIG_DRM_POWERVR is not set 2514 | # CONFIG_DRM_WERROR is not set 2515 | CONFIG_DRM_PANEL_ORIENTATION_QUIRKS=y 2516 | 2517 | # 2518 | # Frame buffer Devices 2519 | # 2520 | CONFIG_FB=y 2521 | # CONFIG_FB_OPENCORES is not set 2522 | # CONFIG_FB_S1D13XXX is not set 2523 | # CONFIG_FB_SMSCUFX is not set 2524 | # CONFIG_FB_UDL is not set 2525 | # CONFIG_FB_IBM_GXT4500 is not set 2526 | # CONFIG_FB_VIRTUAL is not set 2527 | # CONFIG_FB_METRONOME is not set 2528 | CONFIG_FB_SIMPLE=y 2529 | # CONFIG_FB_SSD1307 is not set 2530 | CONFIG_FB_CORE=y 2531 | CONFIG_FB_NOTIFY=y 2532 | # CONFIG_FIRMWARE_EDID is not set 2533 | CONFIG_FB_DEVICE=y 2534 | CONFIG_FB_CFB_FILLRECT=y 2535 | CONFIG_FB_CFB_COPYAREA=y 2536 | CONFIG_FB_CFB_IMAGEBLIT=y 2537 | CONFIG_FB_FOREIGN_ENDIAN=y 2538 | CONFIG_FB_BOTH_ENDIAN=y 2539 | # CONFIG_FB_BIG_ENDIAN is not set 2540 | # CONFIG_FB_LITTLE_ENDIAN is not set 2541 | CONFIG_FB_IOMEM_FOPS=y 2542 | CONFIG_FB_IOMEM_HELPERS=y 2543 | CONFIG_FB_MODE_HELPERS=y 2544 | # CONFIG_FB_TILEBLITTING is not set 2545 | # end of Frame buffer Devices 2546 | 2547 | # 2548 | # Backlight & LCD device support 2549 | # 2550 | # CONFIG_LCD_CLASS_DEVICE is not set 2551 | CONFIG_BACKLIGHT_CLASS_DEVICE=y 2552 | # CONFIG_BACKLIGHT_KTD253 is not set 2553 | # CONFIG_BACKLIGHT_KTD2801 is not set 2554 | # CONFIG_BACKLIGHT_KTZ8866 is not set 2555 | # CONFIG_BACKLIGHT_PWM is not set 2556 | CONFIG_BACKLIGHT_DA2XXX=y 2557 | CONFIG_BACKLIGHT_APPLE_DWI=y 2558 | # CONFIG_BACKLIGHT_QCOM_WLED is not set 2559 | # CONFIG_BACKLIGHT_ADP8860 is not set 2560 | # CONFIG_BACKLIGHT_ADP8870 is not set 2561 | # CONFIG_BACKLIGHT_LM3509 is not set 2562 | # CONFIG_BACKLIGHT_LM3630A is not set 2563 | # CONFIG_BACKLIGHT_LM3639 is not set 2564 | # CONFIG_BACKLIGHT_LP855X is not set 2565 | # CONFIG_BACKLIGHT_MP3309C is not set 2566 | # CONFIG_BACKLIGHT_GPIO is not set 2567 | # CONFIG_BACKLIGHT_LV5207LP is not set 2568 | # CONFIG_BACKLIGHT_BD6107 is not set 2569 | # CONFIG_BACKLIGHT_ARCXCNN is not set 2570 | # end of Backlight & LCD device support 2571 | 2572 | CONFIG_HDMI=y 2573 | 2574 | # 2575 | # Console display driver support 2576 | # 2577 | CONFIG_DUMMY_CONSOLE=y 2578 | CONFIG_DUMMY_CONSOLE_COLUMNS=80 2579 | CONFIG_DUMMY_CONSOLE_ROWS=25 2580 | CONFIG_FRAMEBUFFER_CONSOLE=y 2581 | # CONFIG_FRAMEBUFFER_CONSOLE_LEGACY_ACCELERATION is not set 2582 | CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY=y 2583 | CONFIG_FRAMEBUFFER_CONSOLE_ROTATION=y 2584 | CONFIG_FRAMEBUFFER_CONSOLE_DEFERRED_TAKEOVER=y 2585 | # end of Console display driver support 2586 | 2587 | CONFIG_LOGO=y 2588 | CONFIG_LOGO_LINUX_MONO=y 2589 | CONFIG_LOGO_LINUX_VGA16=y 2590 | CONFIG_LOGO_LINUX_CLUT224=y 2591 | # end of Graphics support 2592 | 2593 | # CONFIG_DRM_ACCEL is not set 2594 | # CONFIG_SOUND is not set 2595 | CONFIG_HID_SUPPORT=y 2596 | CONFIG_HID=y 2597 | # CONFIG_HID_BATTERY_STRENGTH is not set 2598 | # CONFIG_HIDRAW is not set 2599 | # CONFIG_UHID is not set 2600 | CONFIG_HID_GENERIC=y 2601 | 2602 | # 2603 | # Special HID drivers 2604 | # 2605 | # CONFIG_HID_A4TECH is not set 2606 | # CONFIG_HID_ACCUTOUCH is not set 2607 | # CONFIG_HID_ACRUX is not set 2608 | # CONFIG_HID_APPLEIR is not set 2609 | # CONFIG_HID_APPLETB_BL is not set 2610 | # CONFIG_HID_APPLETB_KBD is not set 2611 | # CONFIG_HID_AUREAL is not set 2612 | # CONFIG_HID_BELKIN is not set 2613 | # CONFIG_HID_BETOP_FF is not set 2614 | # CONFIG_HID_CHERRY is not set 2615 | # CONFIG_HID_CHICONY is not set 2616 | # CONFIG_HID_COUGAR is not set 2617 | # CONFIG_HID_MACALLY is not set 2618 | # CONFIG_HID_CMEDIA is not set 2619 | # CONFIG_HID_CREATIVE_SB0540 is not set 2620 | # CONFIG_HID_CYPRESS is not set 2621 | # CONFIG_HID_DRAGONRISE is not set 2622 | # CONFIG_HID_EMS_FF is not set 2623 | # CONFIG_HID_ELECOM is not set 2624 | # CONFIG_HID_ELO is not set 2625 | # CONFIG_HID_EVISION is not set 2626 | # CONFIG_HID_EZKEY is not set 2627 | # CONFIG_HID_GEMBIRD is not set 2628 | # CONFIG_HID_GFRM is not set 2629 | # CONFIG_HID_GLORIOUS is not set 2630 | # CONFIG_HID_HOLTEK is not set 2631 | # CONFIG_HID_GOOGLE_STADIA_FF is not set 2632 | # CONFIG_HID_VIVALDI is not set 2633 | # CONFIG_HID_KEYTOUCH is not set 2634 | # CONFIG_HID_KYE is not set 2635 | # CONFIG_HID_KYSONA is not set 2636 | # CONFIG_HID_UCLOGIC is not set 2637 | # CONFIG_HID_WALTOP is not set 2638 | # CONFIG_HID_VIEWSONIC is not set 2639 | # CONFIG_HID_VRC2 is not set 2640 | # CONFIG_HID_XIAOMI is not set 2641 | # CONFIG_HID_GYRATION is not set 2642 | # CONFIG_HID_ICADE is not set 2643 | # CONFIG_HID_ITE is not set 2644 | # CONFIG_HID_JABRA is not set 2645 | # CONFIG_HID_TWINHAN is not set 2646 | # CONFIG_HID_KENSINGTON is not set 2647 | # CONFIG_HID_LCPOWER is not set 2648 | # CONFIG_HID_LETSKETCH is not set 2649 | # CONFIG_HID_MAGICMOUSE is not set 2650 | # CONFIG_HID_MALTRON is not set 2651 | # CONFIG_HID_MAYFLASH is not set 2652 | # CONFIG_HID_MEGAWORLD_FF is not set 2653 | # CONFIG_HID_REDRAGON is not set 2654 | # CONFIG_HID_MICROSOFT is not set 2655 | # CONFIG_HID_MONTEREY is not set 2656 | # CONFIG_HID_MULTITOUCH is not set 2657 | # CONFIG_HID_NTI is not set 2658 | # CONFIG_HID_NTRIG is not set 2659 | # CONFIG_HID_ORTEK is not set 2660 | # CONFIG_HID_PANTHERLORD is not set 2661 | # CONFIG_HID_PENMOUNT is not set 2662 | # CONFIG_HID_PETALYNX is not set 2663 | # CONFIG_HID_PICOLCD is not set 2664 | # CONFIG_HID_PLANTRONICS is not set 2665 | # CONFIG_HID_PXRC is not set 2666 | # CONFIG_HID_RAZER is not set 2667 | # CONFIG_HID_PRIMAX is not set 2668 | # CONFIG_HID_RETRODE is not set 2669 | # CONFIG_HID_ROCCAT is not set 2670 | # CONFIG_HID_SAITEK is not set 2671 | # CONFIG_HID_SAMSUNG is not set 2672 | # CONFIG_HID_SEMITEK is not set 2673 | # CONFIG_HID_SIGMAMICRO is not set 2674 | # CONFIG_HID_SPEEDLINK is not set 2675 | # CONFIG_HID_STEAM is not set 2676 | # CONFIG_HID_STEELSERIES is not set 2677 | # CONFIG_HID_SUNPLUS is not set 2678 | # CONFIG_HID_RMI is not set 2679 | # CONFIG_HID_GREENASIA is not set 2680 | # CONFIG_HID_SMARTJOYPLUS is not set 2681 | # CONFIG_HID_TIVO is not set 2682 | # CONFIG_HID_TOPSEED is not set 2683 | # CONFIG_HID_TOPRE is not set 2684 | # CONFIG_HID_THRUSTMASTER is not set 2685 | # CONFIG_HID_UDRAW_PS3 is not set 2686 | # CONFIG_HID_WACOM is not set 2687 | # CONFIG_HID_XINMO is not set 2688 | # CONFIG_HID_ZEROPLUS is not set 2689 | # CONFIG_HID_ZYDACRON is not set 2690 | # CONFIG_HID_SENSOR_HUB is not set 2691 | # CONFIG_HID_ALPS is not set 2692 | # CONFIG_HID_MCP2200 is not set 2693 | # CONFIG_HID_MCP2221 is not set 2694 | # end of Special HID drivers 2695 | 2696 | # 2697 | # HID-BPF support 2698 | # 2699 | # end of HID-BPF support 2700 | 2701 | # CONFIG_I2C_HID is not set 2702 | 2703 | # 2704 | # USB HID support 2705 | # 2706 | CONFIG_USB_HID=y 2707 | # CONFIG_HID_PID is not set 2708 | # CONFIG_USB_HIDDEV is not set 2709 | # end of USB HID support 2710 | 2711 | CONFIG_USB_OHCI_LITTLE_ENDIAN=y 2712 | CONFIG_USB_SUPPORT=y 2713 | CONFIG_USB_COMMON=y 2714 | CONFIG_USB_ULPI_BUS=y 2715 | CONFIG_USB_CONN_GPIO=y 2716 | CONFIG_USB_ARCH_HAS_HCD=y 2717 | CONFIG_USB=y 2718 | CONFIG_USB_ANNOUNCE_NEW_DEVICES=y 2719 | 2720 | # 2721 | # Miscellaneous USB options 2722 | # 2723 | CONFIG_USB_DEFAULT_PERSIST=y 2724 | # CONFIG_USB_FEW_INIT_RETRIES is not set 2725 | # CONFIG_USB_DYNAMIC_MINORS is not set 2726 | # CONFIG_USB_OTG is not set 2727 | # CONFIG_USB_OTG_PRODUCTLIST is not set 2728 | # CONFIG_USB_OTG_DISABLE_EXTERNAL_HUB is not set 2729 | CONFIG_USB_AUTOSUSPEND_DELAY=2 2730 | CONFIG_USB_DEFAULT_AUTHORIZATION_MODE=1 2731 | # CONFIG_USB_MON is not set 2732 | 2733 | # 2734 | # USB Host Controller Drivers 2735 | # 2736 | # CONFIG_USB_C67X00_HCD is not set 2737 | CONFIG_USB_XHCI_HCD=y 2738 | # CONFIG_USB_XHCI_DBGCAP is not set 2739 | CONFIG_USB_XHCI_PLATFORM=y 2740 | CONFIG_USB_EHCI_HCD=y 2741 | CONFIG_USB_EHCI_ROOT_HUB_TT=y 2742 | CONFIG_USB_EHCI_TT_NEWSCHED=y 2743 | # CONFIG_USB_EHCI_FSL is not set 2744 | CONFIG_USB_EHCI_HCD_PLATFORM=y 2745 | # CONFIG_USB_OXU210HP_HCD is not set 2746 | # CONFIG_USB_ISP116X_HCD is not set 2747 | CONFIG_USB_OHCI_HCD=y 2748 | CONFIG_USB_OHCI_HCD_PLATFORM=y 2749 | # CONFIG_USB_SL811_HCD is not set 2750 | # CONFIG_USB_R8A66597_HCD is not set 2751 | # CONFIG_USB_HCD_TEST_MODE is not set 2752 | 2753 | # 2754 | # USB Device Class drivers 2755 | # 2756 | # CONFIG_USB_ACM is not set 2757 | # CONFIG_USB_PRINTER is not set 2758 | # CONFIG_USB_WDM is not set 2759 | # CONFIG_USB_TMC is not set 2760 | 2761 | # 2762 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; see USB_STORAGE Help for more info 2763 | # 2764 | 2765 | # 2766 | # USB Imaging devices 2767 | # 2768 | # CONFIG_USB_MDC800 is not set 2769 | # CONFIG_USBIP_CORE is not set 2770 | 2771 | # 2772 | # USB dual-mode controller drivers 2773 | # 2774 | # CONFIG_USB_CDNS_SUPPORT is not set 2775 | # CONFIG_USB_MUSB_HDRC is not set 2776 | # CONFIG_USB_DWC3 is not set 2777 | CONFIG_USB_DWC2=y 2778 | # CONFIG_USB_DWC2_HOST is not set 2779 | 2780 | # 2781 | # Gadget/Dual-role mode requires USB Gadget support to be enabled 2782 | # 2783 | # CONFIG_USB_DWC2_PERIPHERAL is not set 2784 | CONFIG_USB_DWC2_DUAL_ROLE=y 2785 | # CONFIG_USB_DWC2_DEBUG is not set 2786 | # CONFIG_USB_DWC2_TRACK_MISSED_SOFS is not set 2787 | # CONFIG_USB_CHIPIDEA is not set 2788 | # CONFIG_USB_ISP1760 is not set 2789 | 2790 | # 2791 | # USB port drivers 2792 | # 2793 | # CONFIG_USB_SERIAL is not set 2794 | 2795 | # 2796 | # USB Miscellaneous drivers 2797 | # 2798 | # CONFIG_USB_EMI62 is not set 2799 | # CONFIG_USB_EMI26 is not set 2800 | # CONFIG_USB_ADUTUX is not set 2801 | # CONFIG_USB_SEVSEG is not set 2802 | # CONFIG_USB_LEGOTOWER is not set 2803 | # CONFIG_USB_LCD is not set 2804 | # CONFIG_USB_CYPRESS_CY7C63 is not set 2805 | # CONFIG_USB_CYTHERM is not set 2806 | # CONFIG_USB_IDMOUSE is not set 2807 | # CONFIG_USB_APPLEDISPLAY is not set 2808 | # CONFIG_APPLE_MFI_FASTCHARGE is not set 2809 | # CONFIG_USB_SISUSBVGA is not set 2810 | # CONFIG_USB_LD is not set 2811 | # CONFIG_USB_TRANCEVIBRATOR is not set 2812 | # CONFIG_USB_IOWARRIOR is not set 2813 | # CONFIG_USB_TEST is not set 2814 | # CONFIG_USB_EHSET_TEST_FIXTURE is not set 2815 | # CONFIG_USB_ISIGHTFW is not set 2816 | # CONFIG_USB_YUREX is not set 2817 | # CONFIG_USB_EZUSB_FX2 is not set 2818 | # CONFIG_USB_HUB_USB251XB is not set 2819 | # CONFIG_USB_HSIC_USB3503 is not set 2820 | # CONFIG_USB_HSIC_USB4604 is not set 2821 | # CONFIG_USB_LINK_LAYER_TEST is not set 2822 | # CONFIG_USB_CHAOSKEY is not set 2823 | # CONFIG_USB_ONBOARD_DEV is not set 2824 | 2825 | # 2826 | # USB Physical Layer drivers 2827 | # 2828 | # CONFIG_NOP_USB_XCEIV is not set 2829 | # CONFIG_USB_ISP1301 is not set 2830 | CONFIG_USB_ULPI=y 2831 | CONFIG_USB_ULPI_VIEWPORT=y 2832 | # end of USB Physical Layer drivers 2833 | 2834 | CONFIG_USB_GADGET=y 2835 | # CONFIG_USB_GADGET_DEBUG is not set 2836 | # CONFIG_USB_GADGET_DEBUG_FILES is not set 2837 | # CONFIG_USB_GADGET_DEBUG_FS is not set 2838 | CONFIG_USB_GADGET_VBUS_DRAW=500 2839 | CONFIG_USB_GADGET_STORAGE_NUM_BUFFERS=2 2840 | CONFIG_U_SERIAL_CONSOLE=y 2841 | 2842 | # 2843 | # USB Peripheral Controller 2844 | # 2845 | # CONFIG_USB_GR_UDC is not set 2846 | # CONFIG_USB_R8A66597 is not set 2847 | # CONFIG_USB_PXA27X is not set 2848 | # CONFIG_USB_MV_UDC is not set 2849 | # CONFIG_USB_MV_U3D is not set 2850 | # CONFIG_USB_SNP_UDC_PLAT is not set 2851 | # CONFIG_USB_M66592 is not set 2852 | # CONFIG_USB_BDC_UDC is not set 2853 | # CONFIG_USB_NET2272 is not set 2854 | # CONFIG_USB_GADGET_XILINX is not set 2855 | # CONFIG_USB_DUMMY_HCD is not set 2856 | # end of USB Peripheral Controller 2857 | 2858 | CONFIG_USB_LIBCOMPOSITE=y 2859 | CONFIG_USB_F_ACM=y 2860 | CONFIG_USB_U_SERIAL=y 2861 | CONFIG_USB_U_ETHER=y 2862 | CONFIG_USB_F_SERIAL=y 2863 | CONFIG_USB_F_NCM=y 2864 | CONFIG_USB_F_ECM=y 2865 | CONFIG_USB_F_EEM=y 2866 | CONFIG_USB_F_SUBSET=y 2867 | CONFIG_USB_F_MASS_STORAGE=y 2868 | CONFIG_USB_F_FS=y 2869 | CONFIG_USB_CONFIGFS=y 2870 | CONFIG_USB_CONFIGFS_SERIAL=y 2871 | CONFIG_USB_CONFIGFS_ACM=y 2872 | # CONFIG_USB_CONFIGFS_OBEX is not set 2873 | CONFIG_USB_CONFIGFS_NCM=y 2874 | CONFIG_USB_CONFIGFS_ECM=y 2875 | # CONFIG_USB_CONFIGFS_ECM_SUBSET is not set 2876 | # CONFIG_USB_CONFIGFS_RNDIS is not set 2877 | CONFIG_USB_CONFIGFS_EEM=y 2878 | # CONFIG_USB_CONFIGFS_MASS_STORAGE is not set 2879 | # CONFIG_USB_CONFIGFS_F_LB_SS is not set 2880 | CONFIG_USB_CONFIGFS_F_FS=y 2881 | # CONFIG_USB_CONFIGFS_F_HID is not set 2882 | # CONFIG_USB_CONFIGFS_F_PRINTER is not set 2883 | 2884 | # 2885 | # USB Gadget precomposed configurations 2886 | # 2887 | # CONFIG_USB_ZERO is not set 2888 | # CONFIG_USB_ETH is not set 2889 | # CONFIG_USB_G_NCM is not set 2890 | CONFIG_USB_GADGETFS=y 2891 | CONFIG_USB_FUNCTIONFS=y 2892 | CONFIG_USB_FUNCTIONFS_ETH=y 2893 | # CONFIG_USB_FUNCTIONFS_RNDIS is not set 2894 | # CONFIG_USB_FUNCTIONFS_GENERIC is not set 2895 | # CONFIG_USB_MASS_STORAGE is not set 2896 | # CONFIG_USB_G_SERIAL is not set 2897 | # CONFIG_USB_G_PRINTER is not set 2898 | # CONFIG_USB_CDC_COMPOSITE is not set 2899 | # CONFIG_USB_G_ACM_MS is not set 2900 | CONFIG_USB_G_MULTI=y 2901 | # CONFIG_USB_G_MULTI_RNDIS is not set 2902 | CONFIG_USB_G_MULTI_CDC=y 2903 | # CONFIG_USB_G_HID is not set 2904 | # CONFIG_USB_G_DBGP is not set 2905 | # CONFIG_USB_RAW_GADGET is not set 2906 | # end of USB Gadget precomposed configurations 2907 | 2908 | # CONFIG_TYPEC is not set 2909 | CONFIG_USB_ROLE_SWITCH=y 2910 | # CONFIG_MMC is not set 2911 | # CONFIG_MEMSTICK is not set 2912 | # CONFIG_NEW_LEDS is not set 2913 | # CONFIG_ACCESSIBILITY is not set 2914 | # CONFIG_INFINIBAND is not set 2915 | CONFIG_EDAC_SUPPORT=y 2916 | # CONFIG_EDAC is not set 2917 | CONFIG_RTC_LIB=y 2918 | CONFIG_RTC_CLASS=y 2919 | CONFIG_RTC_HCTOSYS=y 2920 | CONFIG_RTC_HCTOSYS_DEVICE="rtc0" 2921 | CONFIG_RTC_SYSTOHC=y 2922 | CONFIG_RTC_SYSTOHC_DEVICE="rtc0" 2923 | # CONFIG_RTC_DEBUG is not set 2924 | CONFIG_RTC_NVMEM=y 2925 | 2926 | # 2927 | # RTC interfaces 2928 | # 2929 | CONFIG_RTC_INTF_SYSFS=y 2930 | CONFIG_RTC_INTF_PROC=y 2931 | CONFIG_RTC_INTF_DEV=y 2932 | # CONFIG_RTC_INTF_DEV_UIE_EMUL is not set 2933 | # CONFIG_RTC_DRV_TEST is not set 2934 | 2935 | # 2936 | # I2C RTC drivers 2937 | # 2938 | # CONFIG_RTC_DRV_ABB5ZES3 is not set 2939 | # CONFIG_RTC_DRV_ABEOZ9 is not set 2940 | # CONFIG_RTC_DRV_ABX80X is not set 2941 | # CONFIG_RTC_DRV_DS1307 is not set 2942 | # CONFIG_RTC_DRV_DS1374 is not set 2943 | # CONFIG_RTC_DRV_DS1672 is not set 2944 | # CONFIG_RTC_DRV_HYM8563 is not set 2945 | # CONFIG_RTC_DRV_MAX6900 is not set 2946 | # CONFIG_RTC_DRV_MAX31335 is not set 2947 | # CONFIG_RTC_DRV_NCT3018Y is not set 2948 | # CONFIG_RTC_DRV_RS5C372 is not set 2949 | # CONFIG_RTC_DRV_ISL1208 is not set 2950 | # CONFIG_RTC_DRV_ISL12022 is not set 2951 | # CONFIG_RTC_DRV_ISL12026 is not set 2952 | # CONFIG_RTC_DRV_X1205 is not set 2953 | # CONFIG_RTC_DRV_PCF8523 is not set 2954 | # CONFIG_RTC_DRV_PCF85063 is not set 2955 | # CONFIG_RTC_DRV_PCF85363 is not set 2956 | # CONFIG_RTC_DRV_PCF8563 is not set 2957 | # CONFIG_RTC_DRV_PCF8583 is not set 2958 | # CONFIG_RTC_DRV_M41T80 is not set 2959 | # CONFIG_RTC_DRV_BQ32K is not set 2960 | # CONFIG_RTC_DRV_S35390A is not set 2961 | # CONFIG_RTC_DRV_FM3130 is not set 2962 | # CONFIG_RTC_DRV_RX8010 is not set 2963 | # CONFIG_RTC_DRV_RX8111 is not set 2964 | # CONFIG_RTC_DRV_RX8581 is not set 2965 | # CONFIG_RTC_DRV_RX8025 is not set 2966 | # CONFIG_RTC_DRV_EM3027 is not set 2967 | # CONFIG_RTC_DRV_RV3028 is not set 2968 | # CONFIG_RTC_DRV_RV3032 is not set 2969 | # CONFIG_RTC_DRV_RV8803 is not set 2970 | # CONFIG_RTC_DRV_SD2405AL is not set 2971 | # CONFIG_RTC_DRV_SD3078 is not set 2972 | 2973 | # 2974 | # SPI RTC drivers 2975 | # 2976 | CONFIG_RTC_I2C_AND_SPI=y 2977 | 2978 | # 2979 | # SPI and I2C RTC drivers 2980 | # 2981 | # CONFIG_RTC_DRV_DS3232 is not set 2982 | # CONFIG_RTC_DRV_PCF2127 is not set 2983 | # CONFIG_RTC_DRV_RV3029C2 is not set 2984 | # CONFIG_RTC_DRV_RX6110 is not set 2985 | 2986 | # 2987 | # Platform RTC drivers 2988 | # 2989 | # CONFIG_RTC_DRV_DS1286 is not set 2990 | # CONFIG_RTC_DRV_DS1511 is not set 2991 | # CONFIG_RTC_DRV_DS1553 is not set 2992 | # CONFIG_RTC_DRV_DS1685_FAMILY is not set 2993 | # CONFIG_RTC_DRV_DS1742 is not set 2994 | # CONFIG_RTC_DRV_DS2404 is not set 2995 | CONFIG_RTC_DRV_DA2XXX=y 2996 | # CONFIG_RTC_DRV_STK17TA8 is not set 2997 | # CONFIG_RTC_DRV_M48T86 is not set 2998 | # CONFIG_RTC_DRV_M48T35 is not set 2999 | # CONFIG_RTC_DRV_M48T59 is not set 3000 | # CONFIG_RTC_DRV_MSM6242 is not set 3001 | # CONFIG_RTC_DRV_RP5C01 is not set 3002 | # CONFIG_RTC_DRV_ZYNQMP is not set 3003 | 3004 | # 3005 | # on-CPU RTC drivers 3006 | # 3007 | # CONFIG_RTC_DRV_PL030 is not set 3008 | # CONFIG_RTC_DRV_PL031 is not set 3009 | # CONFIG_RTC_DRV_CADENCE is not set 3010 | # CONFIG_RTC_DRV_FTRTC010 is not set 3011 | # CONFIG_RTC_DRV_R7301 is not set 3012 | 3013 | # 3014 | # HID Sensor RTC drivers 3015 | # 3016 | # CONFIG_RTC_DRV_GOLDFISH is not set 3017 | # CONFIG_DMADEVICES is not set 3018 | 3019 | # 3020 | # DMABUF options 3021 | # 3022 | CONFIG_SYNC_FILE=y 3023 | # CONFIG_SW_SYNC is not set 3024 | # CONFIG_UDMABUF is not set 3025 | # CONFIG_DMABUF_MOVE_NOTIFY is not set 3026 | # CONFIG_DMABUF_DEBUG is not set 3027 | # CONFIG_DMABUF_SELFTESTS is not set 3028 | # CONFIG_DMABUF_HEAPS is not set 3029 | # CONFIG_DMABUF_SYSFS_STATS is not set 3030 | # end of DMABUF options 3031 | 3032 | # CONFIG_UIO is not set 3033 | # CONFIG_VFIO is not set 3034 | CONFIG_IRQ_BYPASS_MANAGER=y 3035 | # CONFIG_VIRT_DRIVERS is not set 3036 | CONFIG_VIRTIO_ANCHOR=y 3037 | CONFIG_VIRTIO=y 3038 | # CONFIG_VIRTIO_MENU is not set 3039 | # CONFIG_VDPA is not set 3040 | # CONFIG_VHOST_MENU is not set 3041 | 3042 | # 3043 | # Microsoft Hyper-V guest support 3044 | # 3045 | # end of Microsoft Hyper-V guest support 3046 | 3047 | # CONFIG_GREYBUS is not set 3048 | # CONFIG_COMEDI is not set 3049 | # CONFIG_STAGING is not set 3050 | # CONFIG_GOLDFISH is not set 3051 | # CONFIG_CHROME_PLATFORMS is not set 3052 | # CONFIG_MELLANOX_PLATFORM is not set 3053 | # CONFIG_SURFACE_PLATFORMS is not set 3054 | # CONFIG_ARM64_PLATFORM_DEVICES is not set 3055 | CONFIG_HAVE_CLK=y 3056 | CONFIG_HAVE_CLK_PREPARE=y 3057 | CONFIG_COMMON_CLK=y 3058 | 3059 | # 3060 | # Clock driver for ARM Reference designs 3061 | # 3062 | # CONFIG_CLK_ICST is not set 3063 | # CONFIG_CLK_SP810 is not set 3064 | # end of Clock driver for ARM Reference designs 3065 | 3066 | CONFIG_COMMON_CLK_APPLE_NCO=y 3067 | # CONFIG_COMMON_CLK_MAX9485 is not set 3068 | # CONFIG_COMMON_CLK_SI5341 is not set 3069 | # CONFIG_COMMON_CLK_SI5351 is not set 3070 | # CONFIG_COMMON_CLK_SI514 is not set 3071 | # CONFIG_COMMON_CLK_SI544 is not set 3072 | # CONFIG_COMMON_CLK_SI570 is not set 3073 | # CONFIG_COMMON_CLK_CDCE706 is not set 3074 | # CONFIG_COMMON_CLK_CDCE925 is not set 3075 | # CONFIG_COMMON_CLK_CS2000_CP is not set 3076 | # CONFIG_COMMON_CLK_AXI_CLKGEN is not set 3077 | # CONFIG_COMMON_CLK_XGENE is not set 3078 | # CONFIG_COMMON_CLK_PWM is not set 3079 | # CONFIG_COMMON_CLK_RS9_PCIE is not set 3080 | # CONFIG_COMMON_CLK_SI521XX is not set 3081 | # CONFIG_COMMON_CLK_VC3 is not set 3082 | # CONFIG_COMMON_CLK_VC5 is not set 3083 | # CONFIG_COMMON_CLK_VC7 is not set 3084 | # CONFIG_COMMON_CLK_FIXED_MMIO is not set 3085 | # CONFIG_XILINX_VCU is not set 3086 | # CONFIG_COMMON_CLK_XLNX_CLKWZRD is not set 3087 | # CONFIG_HWSPINLOCK is not set 3088 | 3089 | # 3090 | # Clock Source drivers 3091 | # 3092 | CONFIG_TIMER_OF=y 3093 | CONFIG_TIMER_PROBE=y 3094 | CONFIG_ARM_ARCH_TIMER=y 3095 | CONFIG_ARM_ARCH_TIMER_EVTSTREAM=y 3096 | CONFIG_ARM_ARCH_TIMER_OOL_WORKAROUND=y 3097 | CONFIG_FSL_ERRATUM_A008585=y 3098 | CONFIG_HISILICON_ERRATUM_161010101=y 3099 | CONFIG_ARM64_ERRATUM_858921=y 3100 | # CONFIG_ARM_TIMER_SP804 is not set 3101 | # end of Clock Source drivers 3102 | 3103 | # CONFIG_MAILBOX is not set 3104 | CONFIG_IOMMU_IOVA=y 3105 | CONFIG_IOMMU_API=y 3106 | CONFIG_IOMMU_SUPPORT=y 3107 | 3108 | # 3109 | # Generic IOMMU Pagetable Support 3110 | # 3111 | CONFIG_IOMMU_IO_PGTABLE=y 3112 | # CONFIG_IOMMU_IO_PGTABLE_LPAE is not set 3113 | # CONFIG_IOMMU_IO_PGTABLE_ARMV7S is not set 3114 | CONFIG_IOMMU_IO_PGTABLE_DART=y 3115 | # end of Generic IOMMU Pagetable Support 3116 | 3117 | # CONFIG_IOMMU_DEBUGFS is not set 3118 | CONFIG_IOMMU_DEFAULT_DMA_STRICT=y 3119 | # CONFIG_IOMMU_DEFAULT_DMA_LAZY is not set 3120 | # CONFIG_IOMMU_DEFAULT_PASSTHROUGH is not set 3121 | CONFIG_OF_IOMMU=y 3122 | CONFIG_IOMMU_DMA=y 3123 | # CONFIG_IOMMUFD is not set 3124 | CONFIG_APPLE_DART=y 3125 | # CONFIG_ARM_SMMU is not set 3126 | # CONFIG_ARM_SMMU_V3 is not set 3127 | # CONFIG_VIRTIO_IOMMU is not set 3128 | 3129 | # 3130 | # Remoteproc drivers 3131 | # 3132 | CONFIG_REMOTEPROC=y 3133 | CONFIG_REMOTEPROC_CDEV=y 3134 | # end of Remoteproc drivers 3135 | 3136 | # 3137 | # Rpmsg drivers 3138 | # 3139 | # CONFIG_RPMSG_VIRTIO is not set 3140 | # end of Rpmsg drivers 3141 | 3142 | # 3143 | # SOC (System On Chip) specific Drivers 3144 | # 3145 | 3146 | # 3147 | # Amlogic SoC drivers 3148 | # 3149 | # end of Amlogic SoC drivers 3150 | 3151 | # 3152 | # Apple SoC drivers 3153 | # 3154 | CONFIG_APPLE_MAILBOX=y 3155 | CONFIG_APPLE_RTKIT=y 3156 | CONFIG_APPLE_SART=y 3157 | # end of Apple SoC drivers 3158 | 3159 | # 3160 | # Broadcom SoC drivers 3161 | # 3162 | # end of Broadcom SoC drivers 3163 | 3164 | # 3165 | # NXP/Freescale QorIQ SoC drivers 3166 | # 3167 | # CONFIG_QUICC_ENGINE is not set 3168 | # end of NXP/Freescale QorIQ SoC drivers 3169 | 3170 | # 3171 | # fujitsu SoC drivers 3172 | # 3173 | # end of fujitsu SoC drivers 3174 | 3175 | # 3176 | # i.MX SoC drivers 3177 | # 3178 | # end of i.MX SoC drivers 3179 | 3180 | # 3181 | # Enable LiteX SoC Builder specific drivers 3182 | # 3183 | # CONFIG_LITEX_SOC_CONTROLLER is not set 3184 | # end of Enable LiteX SoC Builder specific drivers 3185 | 3186 | # CONFIG_WPCM450_SOC is not set 3187 | 3188 | # 3189 | # Qualcomm SoC drivers 3190 | # 3191 | # CONFIG_QCOM_PBS is not set 3192 | # end of Qualcomm SoC drivers 3193 | 3194 | # CONFIG_SOC_TI is not set 3195 | 3196 | # 3197 | # Xilinx SoC drivers 3198 | # 3199 | # end of Xilinx SoC drivers 3200 | # end of SOC (System On Chip) specific Drivers 3201 | 3202 | # 3203 | # PM Domains 3204 | # 3205 | 3206 | # 3207 | # Amlogic PM Domains 3208 | # 3209 | # end of Amlogic PM Domains 3210 | 3211 | CONFIG_APPLE_PMGR_PWRSTATE=y 3212 | 3213 | # 3214 | # Broadcom PM Domains 3215 | # 3216 | # end of Broadcom PM Domains 3217 | 3218 | # 3219 | # i.MX PM Domains 3220 | # 3221 | # end of i.MX PM Domains 3222 | 3223 | # 3224 | # Qualcomm PM Domains 3225 | # 3226 | # end of Qualcomm PM Domains 3227 | # end of PM Domains 3228 | 3229 | CONFIG_PM_DEVFREQ=y 3230 | 3231 | # 3232 | # DEVFREQ Governors 3233 | # 3234 | CONFIG_DEVFREQ_GOV_SIMPLE_ONDEMAND=y 3235 | # CONFIG_DEVFREQ_GOV_PERFORMANCE is not set 3236 | # CONFIG_DEVFREQ_GOV_POWERSAVE is not set 3237 | # CONFIG_DEVFREQ_GOV_USERSPACE is not set 3238 | # CONFIG_DEVFREQ_GOV_PASSIVE is not set 3239 | 3240 | # 3241 | # DEVFREQ Drivers 3242 | # 3243 | # CONFIG_PM_DEVFREQ_EVENT is not set 3244 | # CONFIG_EXTCON is not set 3245 | # CONFIG_MEMORY is not set 3246 | # CONFIG_IIO is not set 3247 | CONFIG_PWM=y 3248 | # CONFIG_PWM_DEBUG is not set 3249 | CONFIG_PWM_APPLE=y 3250 | # CONFIG_PWM_ATMEL_TCB is not set 3251 | # CONFIG_PWM_CLK is not set 3252 | # CONFIG_PWM_FSL_FTM is not set 3253 | # CONFIG_PWM_GPIO is not set 3254 | # CONFIG_PWM_PCA9685 is not set 3255 | # CONFIG_PWM_XILINX is not set 3256 | 3257 | # 3258 | # IRQ chip support 3259 | # 3260 | CONFIG_IRQCHIP=y 3261 | CONFIG_ARM_GIC=y 3262 | CONFIG_ARM_GIC_MAX_NR=1 3263 | CONFIG_ARM_GIC_V3=y 3264 | CONFIG_ARM_GIC_V3_ITS=y 3265 | CONFIG_IRQ_MSI_LIB=y 3266 | # CONFIG_AL_FIC is not set 3267 | # CONFIG_XILINX_INTC is not set 3268 | CONFIG_PARTITION_PERCPU=y 3269 | CONFIG_APPLE_AIC=y 3270 | # end of IRQ chip support 3271 | 3272 | # CONFIG_IPACK_BUS is not set 3273 | CONFIG_RESET_CONTROLLER=y 3274 | # CONFIG_RESET_GPIO is not set 3275 | # CONFIG_RESET_SIMPLE is not set 3276 | # CONFIG_RESET_TI_SYSCON is not set 3277 | # CONFIG_RESET_TI_TPS380X is not set 3278 | 3279 | # 3280 | # PHY Subsystem 3281 | # 3282 | # CONFIG_GENERIC_PHY is not set 3283 | # CONFIG_PHY_CAN_TRANSCEIVER is not set 3284 | # CONFIG_PHY_NXP_PTN3222 is not set 3285 | 3286 | # 3287 | # PHY drivers for Broadcom platforms 3288 | # 3289 | # CONFIG_BCM_KONA_USB2_PHY is not set 3290 | # end of PHY drivers for Broadcom platforms 3291 | 3292 | # CONFIG_PHY_CADENCE_TORRENT is not set 3293 | # CONFIG_PHY_CADENCE_DPHY is not set 3294 | # CONFIG_PHY_CADENCE_DPHY_RX is not set 3295 | # CONFIG_PHY_CADENCE_SIERRA is not set 3296 | # CONFIG_PHY_CADENCE_SALVO is not set 3297 | # CONFIG_PHY_PXA_28NM_HSIC is not set 3298 | # CONFIG_PHY_PXA_28NM_USB2 is not set 3299 | # CONFIG_PHY_MAPPHONE_MDM6600 is not set 3300 | # CONFIG_PHY_OCELOT_SERDES is not set 3301 | # CONFIG_PHY_QCOM_USB_HS is not set 3302 | # CONFIG_PHY_QCOM_USB_HSIC is not set 3303 | # CONFIG_PHY_SAMSUNG_USB2 is not set 3304 | # CONFIG_PHY_TUSB1210 is not set 3305 | # end of PHY Subsystem 3306 | 3307 | # CONFIG_POWERCAP is not set 3308 | # CONFIG_MCB is not set 3309 | 3310 | # 3311 | # Performance monitor support 3312 | # 3313 | # CONFIG_ARM_CCI_PMU is not set 3314 | # CONFIG_ARM_CCN is not set 3315 | # CONFIG_ARM_CMN is not set 3316 | # CONFIG_ARM_NI is not set 3317 | CONFIG_ARM_PMU=y 3318 | # CONFIG_ARM_SMMU_V3_PMU is not set 3319 | CONFIG_ARM_PMUV3=y 3320 | # CONFIG_ARM_DSU_PMU is not set 3321 | # CONFIG_ARM_SPE_PMU is not set 3322 | CONFIG_APPLE_M1_CPU_PMU=y 3323 | # CONFIG_ARM_CORESIGHT_PMU_ARCH_SYSTEM_PMU is not set 3324 | # end of Performance monitor support 3325 | 3326 | CONFIG_RAS=y 3327 | 3328 | # 3329 | # Android 3330 | # 3331 | CONFIG_ANDROID_BINDER_IPC=y 3332 | # CONFIG_ANDROID_BINDERFS is not set 3333 | CONFIG_ANDROID_BINDER_DEVICES="binder,hwbinder,vndbinder" 3334 | # CONFIG_ANDROID_BINDER_IPC_SELFTEST is not set 3335 | # end of Android 3336 | 3337 | # CONFIG_LIBNVDIMM is not set 3338 | # CONFIG_DAX is not set 3339 | CONFIG_NVMEM=y 3340 | CONFIG_NVMEM_SYSFS=y 3341 | CONFIG_NVMEM_LAYOUTS=y 3342 | 3343 | # 3344 | # Layout Types 3345 | # 3346 | # CONFIG_NVMEM_LAYOUT_SL28_VPD is not set 3347 | # CONFIG_NVMEM_LAYOUT_ONIE_TLV is not set 3348 | # CONFIG_NVMEM_LAYOUT_U_BOOT_ENV is not set 3349 | # end of Layout Types 3350 | 3351 | CONFIG_NVMEM_APPLE_EFUSES=y 3352 | # CONFIG_NVMEM_RMEM is not set 3353 | CONFIG_NVMEM_SIMPLE_MFD=y 3354 | # CONFIG_NVMEM_SPMI_SDAM is not set 3355 | # CONFIG_NVMEM_U_BOOT_ENV is not set 3356 | 3357 | # 3358 | # HW tracing support 3359 | # 3360 | CONFIG_STM=y 3361 | # CONFIG_STM_PROTO_BASIC is not set 3362 | # CONFIG_STM_PROTO_SYS_T is not set 3363 | # CONFIG_STM_DUMMY is not set 3364 | # CONFIG_STM_SOURCE_CONSOLE is not set 3365 | # CONFIG_STM_SOURCE_HEARTBEAT is not set 3366 | # CONFIG_STM_SOURCE_FTRACE is not set 3367 | # CONFIG_INTEL_TH is not set 3368 | # end of HW tracing support 3369 | 3370 | # CONFIG_FPGA is not set 3371 | # CONFIG_FSI is not set 3372 | # CONFIG_TEE is not set 3373 | CONFIG_PM_OPP=y 3374 | # CONFIG_SIOX is not set 3375 | # CONFIG_SLIMBUS is not set 3376 | # CONFIG_INTERCONNECT is not set 3377 | # CONFIG_COUNTER is not set 3378 | # CONFIG_MOST is not set 3379 | # CONFIG_PECI is not set 3380 | # CONFIG_HTE is not set 3381 | # CONFIG_CDX_BUS is not set 3382 | # end of Device Drivers 3383 | 3384 | # 3385 | # File systems 3386 | # 3387 | CONFIG_DCACHE_WORD_ACCESS=y 3388 | # CONFIG_VALIDATE_FS_PARSER is not set 3389 | CONFIG_FS_IOMAP=y 3390 | CONFIG_BUFFER_HEAD=y 3391 | CONFIG_LEGACY_DIRECT_IO=y 3392 | # CONFIG_EXT2_FS is not set 3393 | # CONFIG_EXT3_FS is not set 3394 | CONFIG_EXT4_FS=y 3395 | CONFIG_EXT4_USE_FOR_EXT2=y 3396 | CONFIG_EXT4_FS_POSIX_ACL=y 3397 | CONFIG_EXT4_FS_SECURITY=y 3398 | # CONFIG_EXT4_DEBUG is not set 3399 | CONFIG_JBD2=y 3400 | # CONFIG_JBD2_DEBUG is not set 3401 | CONFIG_FS_MBCACHE=y 3402 | # CONFIG_JFS_FS is not set 3403 | # CONFIG_XFS_FS is not set 3404 | # CONFIG_GFS2_FS is not set 3405 | # CONFIG_OCFS2_FS is not set 3406 | # CONFIG_BTRFS_FS is not set 3407 | # CONFIG_NILFS2_FS is not set 3408 | # CONFIG_F2FS_FS is not set 3409 | # CONFIG_BCACHEFS_FS is not set 3410 | CONFIG_FS_POSIX_ACL=y 3411 | CONFIG_EXPORTFS=y 3412 | # CONFIG_EXPORTFS_BLOCK_OPS is not set 3413 | CONFIG_FILE_LOCKING=y 3414 | # CONFIG_FS_ENCRYPTION is not set 3415 | # CONFIG_FS_VERITY is not set 3416 | CONFIG_FSNOTIFY=y 3417 | CONFIG_DNOTIFY=y 3418 | CONFIG_INOTIFY_USER=y 3419 | CONFIG_FANOTIFY=y 3420 | CONFIG_FANOTIFY_ACCESS_PERMISSIONS=y 3421 | CONFIG_QUOTA=y 3422 | # CONFIG_QUOTA_NETLINK_INTERFACE is not set 3423 | # CONFIG_QUOTA_DEBUG is not set 3424 | CONFIG_QUOTA_TREE=y 3425 | CONFIG_QFMT_V1=y 3426 | CONFIG_QFMT_V2=y 3427 | CONFIG_QUOTACTL=y 3428 | CONFIG_AUTOFS_FS=y 3429 | # CONFIG_FUSE_FS is not set 3430 | # CONFIG_OVERLAY_FS is not set 3431 | 3432 | # 3433 | # Caches 3434 | # 3435 | # end of Caches 3436 | 3437 | # 3438 | # CD-ROM/DVD Filesystems 3439 | # 3440 | # CONFIG_ISO9660_FS is not set 3441 | # CONFIG_UDF_FS is not set 3442 | # end of CD-ROM/DVD Filesystems 3443 | 3444 | # 3445 | # DOS/FAT/EXFAT/NT Filesystems 3446 | # 3447 | CONFIG_FAT_FS=y 3448 | # CONFIG_MSDOS_FS is not set 3449 | CONFIG_VFAT_FS=y 3450 | CONFIG_FAT_DEFAULT_CODEPAGE=437 3451 | CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" 3452 | # CONFIG_FAT_DEFAULT_UTF8 is not set 3453 | # CONFIG_EXFAT_FS is not set 3454 | # CONFIG_NTFS3_FS is not set 3455 | # CONFIG_NTFS_FS is not set 3456 | # end of DOS/FAT/EXFAT/NT Filesystems 3457 | 3458 | # 3459 | # Pseudo filesystems 3460 | # 3461 | CONFIG_PROC_FS=y 3462 | # CONFIG_PROC_KCORE is not set 3463 | CONFIG_PROC_SYSCTL=y 3464 | CONFIG_PROC_PAGE_MONITOR=y 3465 | # CONFIG_PROC_CHILDREN is not set 3466 | CONFIG_KERNFS=y 3467 | CONFIG_SYSFS=y 3468 | CONFIG_TMPFS=y 3469 | CONFIG_TMPFS_POSIX_ACL=y 3470 | CONFIG_TMPFS_XATTR=y 3471 | # CONFIG_TMPFS_INODE64 is not set 3472 | # CONFIG_TMPFS_QUOTA is not set 3473 | CONFIG_ARCH_SUPPORTS_HUGETLBFS=y 3474 | CONFIG_HUGETLBFS=y 3475 | CONFIG_HUGETLB_PAGE=y 3476 | CONFIG_HUGETLB_PMD_PAGE_TABLE_SHARING=y 3477 | CONFIG_ARCH_HAS_GIGANTIC_PAGE=y 3478 | CONFIG_CONFIGFS_FS=y 3479 | # end of Pseudo filesystems 3480 | 3481 | CONFIG_MISC_FILESYSTEMS=y 3482 | # CONFIG_ORANGEFS_FS is not set 3483 | # CONFIG_ADFS_FS is not set 3484 | # CONFIG_AFFS_FS is not set 3485 | # CONFIG_ECRYPT_FS is not set 3486 | # CONFIG_HFS_FS is not set 3487 | # CONFIG_HFSPLUS_FS is not set 3488 | CONFIG_APFS_FS=y 3489 | # CONFIG_BEFS_FS is not set 3490 | # CONFIG_BFS_FS is not set 3491 | # CONFIG_EFS_FS is not set 3492 | # CONFIG_JFFS2_FS is not set 3493 | # CONFIG_CRAMFS is not set 3494 | # CONFIG_SQUASHFS is not set 3495 | # CONFIG_VXFS_FS is not set 3496 | # CONFIG_MINIX_FS is not set 3497 | # CONFIG_OMFS_FS is not set 3498 | # CONFIG_HPFS_FS is not set 3499 | # CONFIG_QNX4FS_FS is not set 3500 | # CONFIG_QNX6FS_FS is not set 3501 | # CONFIG_ROMFS_FS is not set 3502 | CONFIG_PSTORE=y 3503 | CONFIG_PSTORE_DEFAULT_KMSG_BYTES=10240 3504 | CONFIG_PSTORE_COMPRESS=y 3505 | CONFIG_PSTORE_CONSOLE=y 3506 | CONFIG_PSTORE_PMSG=y 3507 | CONFIG_PSTORE_RAM=y 3508 | # CONFIG_PSTORE_BLK is not set 3509 | # CONFIG_UFS_FS is not set 3510 | # CONFIG_EROFS_FS is not set 3511 | # CONFIG_NETWORK_FILESYSTEMS is not set 3512 | CONFIG_NLS=y 3513 | CONFIG_NLS_DEFAULT="iso8859-1" 3514 | CONFIG_NLS_CODEPAGE_437=y 3515 | # CONFIG_NLS_CODEPAGE_737 is not set 3516 | # CONFIG_NLS_CODEPAGE_775 is not set 3517 | # CONFIG_NLS_CODEPAGE_850 is not set 3518 | # CONFIG_NLS_CODEPAGE_852 is not set 3519 | # CONFIG_NLS_CODEPAGE_855 is not set 3520 | # CONFIG_NLS_CODEPAGE_857 is not set 3521 | # CONFIG_NLS_CODEPAGE_860 is not set 3522 | # CONFIG_NLS_CODEPAGE_861 is not set 3523 | # CONFIG_NLS_CODEPAGE_862 is not set 3524 | # CONFIG_NLS_CODEPAGE_863 is not set 3525 | # CONFIG_NLS_CODEPAGE_864 is not set 3526 | # CONFIG_NLS_CODEPAGE_865 is not set 3527 | # CONFIG_NLS_CODEPAGE_866 is not set 3528 | # CONFIG_NLS_CODEPAGE_869 is not set 3529 | # CONFIG_NLS_CODEPAGE_936 is not set 3530 | # CONFIG_NLS_CODEPAGE_950 is not set 3531 | # CONFIG_NLS_CODEPAGE_932 is not set 3532 | # CONFIG_NLS_CODEPAGE_949 is not set 3533 | # CONFIG_NLS_CODEPAGE_874 is not set 3534 | # CONFIG_NLS_ISO8859_8 is not set 3535 | # CONFIG_NLS_CODEPAGE_1250 is not set 3536 | # CONFIG_NLS_CODEPAGE_1251 is not set 3537 | # CONFIG_NLS_ASCII is not set 3538 | CONFIG_NLS_ISO8859_1=y 3539 | # CONFIG_NLS_ISO8859_2 is not set 3540 | # CONFIG_NLS_ISO8859_3 is not set 3541 | # CONFIG_NLS_ISO8859_4 is not set 3542 | # CONFIG_NLS_ISO8859_5 is not set 3543 | # CONFIG_NLS_ISO8859_6 is not set 3544 | # CONFIG_NLS_ISO8859_7 is not set 3545 | # CONFIG_NLS_ISO8859_9 is not set 3546 | # CONFIG_NLS_ISO8859_13 is not set 3547 | # CONFIG_NLS_ISO8859_14 is not set 3548 | # CONFIG_NLS_ISO8859_15 is not set 3549 | # CONFIG_NLS_KOI8_R is not set 3550 | # CONFIG_NLS_KOI8_U is not set 3551 | # CONFIG_NLS_MAC_ROMAN is not set 3552 | # CONFIG_NLS_MAC_CELTIC is not set 3553 | # CONFIG_NLS_MAC_CENTEURO is not set 3554 | # CONFIG_NLS_MAC_CROATIAN is not set 3555 | # CONFIG_NLS_MAC_CYRILLIC is not set 3556 | # CONFIG_NLS_MAC_GAELIC is not set 3557 | # CONFIG_NLS_MAC_GREEK is not set 3558 | # CONFIG_NLS_MAC_ICELAND is not set 3559 | # CONFIG_NLS_MAC_INUIT is not set 3560 | # CONFIG_NLS_MAC_ROMANIAN is not set 3561 | # CONFIG_NLS_MAC_TURKISH is not set 3562 | # CONFIG_NLS_UTF8 is not set 3563 | # CONFIG_DLM is not set 3564 | # CONFIG_UNICODE is not set 3565 | CONFIG_IO_WQ=y 3566 | # end of File systems 3567 | 3568 | # 3569 | # Security options 3570 | # 3571 | CONFIG_KEYS=y 3572 | # CONFIG_KEYS_REQUEST_CACHE is not set 3573 | # CONFIG_PERSISTENT_KEYRINGS is not set 3574 | # CONFIG_BIG_KEYS is not set 3575 | # CONFIG_TRUSTED_KEYS is not set 3576 | # CONFIG_ENCRYPTED_KEYS is not set 3577 | # CONFIG_KEY_DH_OPERATIONS is not set 3578 | # CONFIG_SECURITY_DMESG_RESTRICT is not set 3579 | CONFIG_PROC_MEM_ALWAYS_FORCE=y 3580 | # CONFIG_PROC_MEM_FORCE_PTRACE is not set 3581 | # CONFIG_PROC_MEM_NO_FORCE is not set 3582 | # CONFIG_MSEAL_SYSTEM_MAPPINGS is not set 3583 | CONFIG_SECURITY=y 3584 | CONFIG_HAS_SECURITY_AUDIT=y 3585 | CONFIG_SECURITYFS=y 3586 | CONFIG_SECURITY_NETWORK=y 3587 | # CONFIG_SECURITY_PATH is not set 3588 | # CONFIG_STATIC_USERMODEHELPER is not set 3589 | # CONFIG_SECURITY_SELINUX is not set 3590 | # CONFIG_SECURITY_SMACK is not set 3591 | # CONFIG_SECURITY_TOMOYO is not set 3592 | # CONFIG_SECURITY_APPARMOR is not set 3593 | # CONFIG_SECURITY_LOADPIN is not set 3594 | # CONFIG_SECURITY_YAMA is not set 3595 | # CONFIG_SECURITY_SAFESETID is not set 3596 | # CONFIG_SECURITY_LOCKDOWN_LSM is not set 3597 | # CONFIG_SECURITY_LANDLOCK is not set 3598 | # CONFIG_SECURITY_IPE is not set 3599 | CONFIG_INTEGRITY=y 3600 | # CONFIG_INTEGRITY_SIGNATURE is not set 3601 | CONFIG_INTEGRITY_AUDIT=y 3602 | # CONFIG_IMA is not set 3603 | # CONFIG_EVM is not set 3604 | CONFIG_DEFAULT_SECURITY_DAC=y 3605 | CONFIG_LSM="selinux" 3606 | 3607 | # 3608 | # Kernel hardening options 3609 | # 3610 | 3611 | # 3612 | # Memory initialization 3613 | # 3614 | CONFIG_CC_HAS_AUTO_VAR_INIT_PATTERN=y 3615 | CONFIG_CC_HAS_AUTO_VAR_INIT_ZERO_BARE=y 3616 | CONFIG_CC_HAS_AUTO_VAR_INIT_ZERO=y 3617 | CONFIG_INIT_STACK_NONE=y 3618 | # CONFIG_INIT_STACK_ALL_PATTERN is not set 3619 | # CONFIG_INIT_STACK_ALL_ZERO is not set 3620 | # CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set 3621 | # CONFIG_INIT_ON_FREE_DEFAULT_ON is not set 3622 | CONFIG_CC_HAS_ZERO_CALL_USED_REGS=y 3623 | # CONFIG_ZERO_CALL_USED_REGS is not set 3624 | # end of Memory initialization 3625 | 3626 | # 3627 | # Bounds checking 3628 | # 3629 | # CONFIG_FORTIFY_SOURCE is not set 3630 | # CONFIG_HARDENED_USERCOPY is not set 3631 | # end of Bounds checking 3632 | 3633 | # 3634 | # Hardening of kernel data structures 3635 | # 3636 | # CONFIG_LIST_HARDENED is not set 3637 | # CONFIG_BUG_ON_DATA_CORRUPTION is not set 3638 | # end of Hardening of kernel data structures 3639 | 3640 | CONFIG_CC_HAS_RANDSTRUCT=y 3641 | CONFIG_RANDSTRUCT_NONE=y 3642 | # CONFIG_RANDSTRUCT_FULL is not set 3643 | # end of Kernel hardening options 3644 | # end of Security options 3645 | 3646 | CONFIG_CRYPTO=y 3647 | 3648 | # 3649 | # Crypto core or helper 3650 | # 3651 | CONFIG_CRYPTO_ALGAPI=y 3652 | CONFIG_CRYPTO_ALGAPI2=y 3653 | CONFIG_CRYPTO_AEAD=y 3654 | CONFIG_CRYPTO_AEAD2=y 3655 | CONFIG_CRYPTO_SIG=y 3656 | CONFIG_CRYPTO_SIG2=y 3657 | CONFIG_CRYPTO_SKCIPHER=y 3658 | CONFIG_CRYPTO_SKCIPHER2=y 3659 | CONFIG_CRYPTO_HASH=y 3660 | CONFIG_CRYPTO_HASH2=y 3661 | CONFIG_CRYPTO_RNG=y 3662 | CONFIG_CRYPTO_RNG2=y 3663 | CONFIG_CRYPTO_RNG_DEFAULT=y 3664 | CONFIG_CRYPTO_AKCIPHER2=y 3665 | CONFIG_CRYPTO_AKCIPHER=y 3666 | CONFIG_CRYPTO_KPP2=y 3667 | CONFIG_CRYPTO_KPP=y 3668 | CONFIG_CRYPTO_ACOMP2=y 3669 | CONFIG_CRYPTO_MANAGER=y 3670 | CONFIG_CRYPTO_MANAGER2=y 3671 | # CONFIG_CRYPTO_USER is not set 3672 | CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y 3673 | CONFIG_CRYPTO_NULL=y 3674 | CONFIG_CRYPTO_NULL2=y 3675 | # CONFIG_CRYPTO_PCRYPT is not set 3676 | CONFIG_CRYPTO_CRYPTD=y 3677 | CONFIG_CRYPTO_AUTHENC=y 3678 | # CONFIG_CRYPTO_KRB5ENC is not set 3679 | # CONFIG_CRYPTO_TEST is not set 3680 | # end of Crypto core or helper 3681 | 3682 | # 3683 | # Public-key cryptography 3684 | # 3685 | CONFIG_CRYPTO_RSA=y 3686 | # CONFIG_CRYPTO_DH is not set 3687 | CONFIG_CRYPTO_ECC=y 3688 | CONFIG_CRYPTO_ECDH=y 3689 | # CONFIG_CRYPTO_ECDSA is not set 3690 | # CONFIG_CRYPTO_ECRDSA is not set 3691 | # CONFIG_CRYPTO_CURVE25519 is not set 3692 | # end of Public-key cryptography 3693 | 3694 | # 3695 | # Block ciphers 3696 | # 3697 | CONFIG_CRYPTO_AES=y 3698 | # CONFIG_CRYPTO_AES_TI is not set 3699 | # CONFIG_CRYPTO_ANUBIS is not set 3700 | # CONFIG_CRYPTO_ARIA is not set 3701 | # CONFIG_CRYPTO_BLOWFISH is not set 3702 | # CONFIG_CRYPTO_CAMELLIA is not set 3703 | # CONFIG_CRYPTO_CAST5 is not set 3704 | # CONFIG_CRYPTO_CAST6 is not set 3705 | # CONFIG_CRYPTO_DES is not set 3706 | # CONFIG_CRYPTO_FCRYPT is not set 3707 | # CONFIG_CRYPTO_KHAZAD is not set 3708 | # CONFIG_CRYPTO_SEED is not set 3709 | # CONFIG_CRYPTO_SERPENT is not set 3710 | CONFIG_CRYPTO_SM4=y 3711 | CONFIG_CRYPTO_SM4_GENERIC=y 3712 | # CONFIG_CRYPTO_TEA is not set 3713 | # CONFIG_CRYPTO_TWOFISH is not set 3714 | # end of Block ciphers 3715 | 3716 | # 3717 | # Length-preserving ciphers and modes 3718 | # 3719 | # CONFIG_CRYPTO_ADIANTUM is not set 3720 | # CONFIG_CRYPTO_ARC4 is not set 3721 | CONFIG_CRYPTO_CHACHA20=y 3722 | CONFIG_CRYPTO_CBC=y 3723 | CONFIG_CRYPTO_CTR=y 3724 | CONFIG_CRYPTO_CTS=y 3725 | CONFIG_CRYPTO_ECB=y 3726 | # CONFIG_CRYPTO_HCTR2 is not set 3727 | # CONFIG_CRYPTO_LRW is not set 3728 | # CONFIG_CRYPTO_PCBC is not set 3729 | CONFIG_CRYPTO_XTS=y 3730 | CONFIG_CRYPTO_NHPOLY1305=y 3731 | # end of Length-preserving ciphers and modes 3732 | 3733 | # 3734 | # AEAD (authenticated encryption with associated data) ciphers 3735 | # 3736 | # CONFIG_CRYPTO_AEGIS128 is not set 3737 | # CONFIG_CRYPTO_CHACHA20POLY1305 is not set 3738 | CONFIG_CRYPTO_CCM=y 3739 | CONFIG_CRYPTO_GCM=y 3740 | CONFIG_CRYPTO_GENIV=y 3741 | CONFIG_CRYPTO_SEQIV=y 3742 | # CONFIG_CRYPTO_ECHAINIV is not set 3743 | CONFIG_CRYPTO_ESSIV=y 3744 | # end of AEAD (authenticated encryption with associated data) ciphers 3745 | 3746 | # 3747 | # Hashes, digests, and MACs 3748 | # 3749 | # CONFIG_CRYPTO_BLAKE2B is not set 3750 | CONFIG_CRYPTO_CMAC=y 3751 | CONFIG_CRYPTO_GHASH=y 3752 | CONFIG_CRYPTO_HMAC=y 3753 | # CONFIG_CRYPTO_MD4 is not set 3754 | CONFIG_CRYPTO_MD5=y 3755 | CONFIG_CRYPTO_MICHAEL_MIC=y 3756 | # CONFIG_CRYPTO_POLY1305 is not set 3757 | # CONFIG_CRYPTO_RMD160 is not set 3758 | CONFIG_CRYPTO_SHA1=y 3759 | CONFIG_CRYPTO_SHA256=y 3760 | CONFIG_CRYPTO_SHA512=y 3761 | CONFIG_CRYPTO_SHA3=y 3762 | CONFIG_CRYPTO_SM3=y 3763 | CONFIG_CRYPTO_SM3_GENERIC=y 3764 | # CONFIG_CRYPTO_STREEBOG is not set 3765 | # CONFIG_CRYPTO_WP512 is not set 3766 | CONFIG_CRYPTO_XCBC=y 3767 | # CONFIG_CRYPTO_XXHASH is not set 3768 | # end of Hashes, digests, and MACs 3769 | 3770 | # 3771 | # CRCs (cyclic redundancy checks) 3772 | # 3773 | CONFIG_CRYPTO_CRC32C=y 3774 | # CONFIG_CRYPTO_CRC32 is not set 3775 | # end of CRCs (cyclic redundancy checks) 3776 | 3777 | # 3778 | # Compression 3779 | # 3780 | CONFIG_CRYPTO_DEFLATE=y 3781 | CONFIG_CRYPTO_LZO=y 3782 | CONFIG_CRYPTO_842=y 3783 | CONFIG_CRYPTO_LZ4=y 3784 | CONFIG_CRYPTO_LZ4HC=y 3785 | CONFIG_CRYPTO_ZSTD=y 3786 | # end of Compression 3787 | 3788 | # 3789 | # Random number generation 3790 | # 3791 | CONFIG_CRYPTO_ANSI_CPRNG=y 3792 | CONFIG_CRYPTO_DRBG_MENU=y 3793 | CONFIG_CRYPTO_DRBG_HMAC=y 3794 | # CONFIG_CRYPTO_DRBG_HASH is not set 3795 | # CONFIG_CRYPTO_DRBG_CTR is not set 3796 | CONFIG_CRYPTO_DRBG=y 3797 | CONFIG_CRYPTO_JITTERENTROPY=y 3798 | CONFIG_CRYPTO_JITTERENTROPY_MEMORY_BLOCKS=64 3799 | CONFIG_CRYPTO_JITTERENTROPY_MEMORY_BLOCKSIZE=32 3800 | CONFIG_CRYPTO_JITTERENTROPY_OSR=1 3801 | # end of Random number generation 3802 | 3803 | # 3804 | # Userspace interface 3805 | # 3806 | CONFIG_CRYPTO_USER_API=y 3807 | CONFIG_CRYPTO_USER_API_HASH=y 3808 | CONFIG_CRYPTO_USER_API_SKCIPHER=y 3809 | CONFIG_CRYPTO_USER_API_RNG=y 3810 | # CONFIG_CRYPTO_USER_API_RNG_CAVP is not set 3811 | CONFIG_CRYPTO_USER_API_AEAD=y 3812 | CONFIG_CRYPTO_USER_API_ENABLE_OBSOLETE=y 3813 | # end of Userspace interface 3814 | 3815 | CONFIG_CRYPTO_HASH_INFO=y 3816 | CONFIG_CRYPTO_NHPOLY1305_NEON=y 3817 | CONFIG_CRYPTO_CHACHA20_NEON=y 3818 | 3819 | # 3820 | # Accelerated Cryptographic Algorithms for CPU (arm64) 3821 | # 3822 | CONFIG_CRYPTO_GHASH_ARM64_CE=y 3823 | CONFIG_CRYPTO_SHA1_ARM64_CE=y 3824 | CONFIG_CRYPTO_SHA256_ARM64=y 3825 | CONFIG_CRYPTO_SHA2_ARM64_CE=y 3826 | CONFIG_CRYPTO_SHA512_ARM64=y 3827 | CONFIG_CRYPTO_SHA512_ARM64_CE=y 3828 | CONFIG_CRYPTO_SHA3_ARM64=y 3829 | # CONFIG_CRYPTO_SM3_NEON is not set 3830 | CONFIG_CRYPTO_SM3_ARM64_CE=y 3831 | # CONFIG_CRYPTO_POLYVAL_ARM64_CE is not set 3832 | CONFIG_CRYPTO_AES_ARM64=y 3833 | CONFIG_CRYPTO_AES_ARM64_CE=y 3834 | CONFIG_CRYPTO_AES_ARM64_CE_BLK=y 3835 | CONFIG_CRYPTO_AES_ARM64_NEON_BLK=y 3836 | CONFIG_CRYPTO_AES_ARM64_BS=y 3837 | CONFIG_CRYPTO_SM4_ARM64_CE=y 3838 | CONFIG_CRYPTO_SM4_ARM64_CE_BLK=y 3839 | CONFIG_CRYPTO_SM4_ARM64_NEON_BLK=y 3840 | CONFIG_CRYPTO_AES_ARM64_CE_CCM=y 3841 | # CONFIG_CRYPTO_SM4_ARM64_CE_CCM is not set 3842 | # CONFIG_CRYPTO_SM4_ARM64_CE_GCM is not set 3843 | # end of Accelerated Cryptographic Algorithms for CPU (arm64) 3844 | 3845 | # CONFIG_CRYPTO_HW is not set 3846 | CONFIG_ASYMMETRIC_KEY_TYPE=y 3847 | CONFIG_ASYMMETRIC_PUBLIC_KEY_SUBTYPE=y 3848 | CONFIG_X509_CERTIFICATE_PARSER=y 3849 | # CONFIG_PKCS8_PRIVATE_KEY_PARSER is not set 3850 | CONFIG_PKCS7_MESSAGE_PARSER=y 3851 | # CONFIG_FIPS_SIGNATURE_SELFTEST is not set 3852 | 3853 | # 3854 | # Certificates for signature checking 3855 | # 3856 | CONFIG_SYSTEM_TRUSTED_KEYRING=y 3857 | CONFIG_SYSTEM_TRUSTED_KEYS="" 3858 | # CONFIG_SYSTEM_EXTRA_CERTIFICATE is not set 3859 | # CONFIG_SECONDARY_TRUSTED_KEYRING is not set 3860 | # CONFIG_SYSTEM_BLACKLIST_KEYRING is not set 3861 | # end of Certificates for signature checking 3862 | 3863 | # CONFIG_CRYPTO_KRB5 is not set 3864 | CONFIG_BINARY_PRINTF=y 3865 | 3866 | # 3867 | # Library routines 3868 | # 3869 | # CONFIG_PACKING is not set 3870 | CONFIG_BITREVERSE=y 3871 | CONFIG_HAVE_ARCH_BITREVERSE=y 3872 | CONFIG_GENERIC_STRNCPY_FROM_USER=y 3873 | CONFIG_GENERIC_STRNLEN_USER=y 3874 | CONFIG_GENERIC_NET_UTILS=y 3875 | # CONFIG_CORDIC is not set 3876 | # CONFIG_PRIME_NUMBERS is not set 3877 | CONFIG_RATIONAL=y 3878 | CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y 3879 | CONFIG_ARCH_HAS_FAST_MULTIPLIER=y 3880 | CONFIG_ARCH_USE_SYM_ANNOTATIONS=y 3881 | # CONFIG_INDIRECT_PIO is not set 3882 | # CONFIG_TRACE_MMIO_ACCESS is not set 3883 | 3884 | # 3885 | # Crypto library routines 3886 | # 3887 | CONFIG_CRYPTO_LIB_UTILS=y 3888 | CONFIG_CRYPTO_LIB_AES=y 3889 | CONFIG_CRYPTO_LIB_GF128MUL=y 3890 | CONFIG_CRYPTO_LIB_BLAKE2S_GENERIC=y 3891 | CONFIG_CRYPTO_ARCH_HAVE_LIB_CHACHA=y 3892 | CONFIG_CRYPTO_LIB_CHACHA_GENERIC=y 3893 | CONFIG_CRYPTO_LIB_CHACHA_INTERNAL=y 3894 | CONFIG_CRYPTO_LIB_POLY1305_RSIZE=9 3895 | CONFIG_CRYPTO_LIB_POLY1305_GENERIC=y 3896 | CONFIG_CRYPTO_LIB_SHA1=y 3897 | CONFIG_CRYPTO_LIB_SHA256=y 3898 | # end of Crypto library routines 3899 | 3900 | CONFIG_CRC16=y 3901 | CONFIG_ARCH_HAS_CRC_T10DIF=y 3902 | CONFIG_CRC32=y 3903 | CONFIG_ARCH_HAS_CRC32=y 3904 | CONFIG_CRC32_ARCH=y 3905 | CONFIG_CRC_OPTIMIZATIONS=y 3906 | CONFIG_XXHASH=y 3907 | CONFIG_AUDIT_GENERIC=y 3908 | CONFIG_AUDIT_ARCH_COMPAT_GENERIC=y 3909 | CONFIG_AUDIT_COMPAT_GENERIC=y 3910 | # CONFIG_RANDOM32_SELFTEST is not set 3911 | CONFIG_842_COMPRESS=y 3912 | CONFIG_842_DECOMPRESS=y 3913 | CONFIG_ZLIB_INFLATE=y 3914 | CONFIG_ZLIB_DEFLATE=y 3915 | CONFIG_LZO_COMPRESS=y 3916 | CONFIG_LZO_DECOMPRESS=y 3917 | CONFIG_LZ4_COMPRESS=y 3918 | CONFIG_LZ4HC_COMPRESS=y 3919 | CONFIG_LZ4_DECOMPRESS=y 3920 | CONFIG_ZSTD_COMMON=y 3921 | CONFIG_ZSTD_COMPRESS=y 3922 | CONFIG_ZSTD_DECOMPRESS=y 3923 | CONFIG_XZ_DEC=y 3924 | # CONFIG_XZ_DEC_X86 is not set 3925 | # CONFIG_XZ_DEC_POWERPC is not set 3926 | # CONFIG_XZ_DEC_ARM is not set 3927 | # CONFIG_XZ_DEC_ARMTHUMB is not set 3928 | # CONFIG_XZ_DEC_ARM64 is not set 3929 | # CONFIG_XZ_DEC_SPARC is not set 3930 | # CONFIG_XZ_DEC_RISCV is not set 3931 | # CONFIG_XZ_DEC_MICROLZMA is not set 3932 | # CONFIG_XZ_DEC_TEST is not set 3933 | CONFIG_DECOMPRESS_GZIP=y 3934 | CONFIG_DECOMPRESS_BZIP2=y 3935 | CONFIG_DECOMPRESS_LZMA=y 3936 | CONFIG_DECOMPRESS_XZ=y 3937 | CONFIG_DECOMPRESS_LZO=y 3938 | CONFIG_DECOMPRESS_LZ4=y 3939 | CONFIG_DECOMPRESS_ZSTD=y 3940 | CONFIG_GENERIC_ALLOCATOR=y 3941 | CONFIG_REED_SOLOMON=y 3942 | CONFIG_REED_SOLOMON_ENC8=y 3943 | CONFIG_REED_SOLOMON_DEC8=y 3944 | CONFIG_INTERVAL_TREE=y 3945 | CONFIG_XARRAY_MULTI=y 3946 | CONFIG_ASSOCIATIVE_ARRAY=y 3947 | CONFIG_HAS_IOMEM=y 3948 | CONFIG_HAS_IOPORT=y 3949 | CONFIG_HAS_DMA=y 3950 | CONFIG_DMA_OPS_HELPERS=y 3951 | CONFIG_NEED_SG_DMA_FLAGS=y 3952 | CONFIG_NEED_SG_DMA_LENGTH=y 3953 | CONFIG_NEED_DMA_MAP_STATE=y 3954 | CONFIG_ARCH_DMA_ADDR_T_64BIT=y 3955 | CONFIG_DMA_DECLARE_COHERENT=y 3956 | CONFIG_ARCH_HAS_SETUP_DMA_OPS=y 3957 | CONFIG_ARCH_HAS_SYNC_DMA_FOR_DEVICE=y 3958 | CONFIG_ARCH_HAS_SYNC_DMA_FOR_CPU=y 3959 | CONFIG_ARCH_HAS_DMA_PREP_COHERENT=y 3960 | CONFIG_ARCH_HAS_FORCE_DMA_UNENCRYPTED=y 3961 | CONFIG_SWIOTLB=y 3962 | # CONFIG_SWIOTLB_DYNAMIC is not set 3963 | CONFIG_DMA_BOUNCE_UNALIGNED_KMALLOC=y 3964 | CONFIG_DMA_NEED_SYNC=y 3965 | # CONFIG_DMA_RESTRICTED_POOL is not set 3966 | CONFIG_DMA_NONCOHERENT_MMAP=y 3967 | CONFIG_DMA_COHERENT_POOL=y 3968 | CONFIG_DMA_DIRECT_REMAP=y 3969 | CONFIG_DMA_CMA=y 3970 | 3971 | # 3972 | # Default contiguous memory area size: 3973 | # 3974 | CONFIG_CMA_SIZE_MBYTES=16 3975 | CONFIG_CMA_SIZE_SEL_MBYTES=y 3976 | # CONFIG_CMA_SIZE_SEL_PERCENTAGE is not set 3977 | # CONFIG_CMA_SIZE_SEL_MIN is not set 3978 | # CONFIG_CMA_SIZE_SEL_MAX is not set 3979 | CONFIG_CMA_ALIGNMENT=8 3980 | # CONFIG_DMA_API_DEBUG is not set 3981 | # CONFIG_DMA_MAP_BENCHMARK is not set 3982 | CONFIG_SGL_ALLOC=y 3983 | CONFIG_CPU_RMAP=y 3984 | CONFIG_DQL=y 3985 | CONFIG_GLOB=y 3986 | # CONFIG_GLOB_SELFTEST is not set 3987 | CONFIG_NLATTR=y 3988 | CONFIG_CLZ_TAB=y 3989 | # CONFIG_IRQ_POLL is not set 3990 | CONFIG_MPILIB=y 3991 | CONFIG_LIBFDT=y 3992 | CONFIG_OID_REGISTRY=y 3993 | CONFIG_HAVE_GENERIC_VDSO=y 3994 | CONFIG_GENERIC_GETTIMEOFDAY=y 3995 | CONFIG_GENERIC_COMPAT_VDSO=y 3996 | CONFIG_GENERIC_VDSO_TIME_NS=y 3997 | CONFIG_VDSO_GETRANDOM=y 3998 | CONFIG_GENERIC_VDSO_DATA_STORE=y 3999 | CONFIG_FONT_SUPPORT=y 4000 | # CONFIG_FONTS is not set 4001 | CONFIG_FONT_8x8=y 4002 | CONFIG_FONT_8x16=y 4003 | CONFIG_ARCH_STACKWALK=y 4004 | CONFIG_STACKDEPOT=y 4005 | CONFIG_STACKDEPOT_MAX_FRAMES=64 4006 | CONFIG_SBITMAP=y 4007 | # CONFIG_LWQ_TEST is not set 4008 | # end of Library routines 4009 | 4010 | CONFIG_GENERIC_IOREMAP=y 4011 | CONFIG_GENERIC_LIB_DEVMEM_IS_ALLOWED=y 4012 | 4013 | # 4014 | # Kernel hacking 4015 | # 4016 | 4017 | # 4018 | # printk and dmesg options 4019 | # 4020 | CONFIG_PRINTK_TIME=y 4021 | # CONFIG_PRINTK_CALLER is not set 4022 | # CONFIG_STACKTRACE_BUILD_ID is not set 4023 | CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 4024 | CONFIG_CONSOLE_LOGLEVEL_QUIET=4 4025 | CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 4026 | CONFIG_BOOT_PRINTK_DELAY=y 4027 | CONFIG_DYNAMIC_DEBUG=y 4028 | CONFIG_DYNAMIC_DEBUG_CORE=y 4029 | CONFIG_SYMBOLIC_ERRNAME=y 4030 | CONFIG_DEBUG_BUGVERBOSE=y 4031 | # end of printk and dmesg options 4032 | 4033 | CONFIG_DEBUG_KERNEL=y 4034 | # CONFIG_DEBUG_MISC is not set 4035 | 4036 | # 4037 | # Compile-time checks and compiler options 4038 | # 4039 | CONFIG_DEBUG_INFO=y 4040 | CONFIG_AS_HAS_NON_CONST_ULEB128=y 4041 | # CONFIG_DEBUG_INFO_NONE is not set 4042 | CONFIG_DEBUG_INFO_DWARF_TOOLCHAIN_DEFAULT=y 4043 | # CONFIG_DEBUG_INFO_DWARF4 is not set 4044 | # CONFIG_DEBUG_INFO_DWARF5 is not set 4045 | # CONFIG_DEBUG_INFO_REDUCED is not set 4046 | CONFIG_DEBUG_INFO_COMPRESSED_NONE=y 4047 | # CONFIG_DEBUG_INFO_COMPRESSED_ZLIB is not set 4048 | # CONFIG_DEBUG_INFO_COMPRESSED_ZSTD is not set 4049 | # CONFIG_DEBUG_INFO_SPLIT is not set 4050 | # CONFIG_DEBUG_INFO_BTF is not set 4051 | CONFIG_PAHOLE_HAS_SPLIT_BTF=y 4052 | CONFIG_PAHOLE_HAS_BTF_TAG=y 4053 | CONFIG_PAHOLE_HAS_LANG_EXCLUDE=y 4054 | # CONFIG_GDB_SCRIPTS is not set 4055 | CONFIG_FRAME_WARN=2048 4056 | # CONFIG_STRIP_ASM_SYMS is not set 4057 | # CONFIG_HEADERS_INSTALL is not set 4058 | CONFIG_SECTION_MISMATCH_WARN_ONLY=y 4059 | # CONFIG_DEBUG_FORCE_FUNCTION_ALIGN_64B is not set 4060 | CONFIG_ARCH_WANT_FRAME_POINTERS=y 4061 | CONFIG_FRAME_POINTER=y 4062 | # CONFIG_VMLINUX_MAP is not set 4063 | # CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set 4064 | # end of Compile-time checks and compiler options 4065 | 4066 | # 4067 | # Generic Kernel Debugging Instruments 4068 | # 4069 | CONFIG_MAGIC_SYSRQ=y 4070 | CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x1 4071 | CONFIG_MAGIC_SYSRQ_SERIAL=y 4072 | CONFIG_MAGIC_SYSRQ_SERIAL_SEQUENCE="" 4073 | CONFIG_DEBUG_FS=y 4074 | CONFIG_DEBUG_FS_ALLOW_ALL=y 4075 | # CONFIG_DEBUG_FS_DISALLOW_MOUNT is not set 4076 | # CONFIG_DEBUG_FS_ALLOW_NONE is not set 4077 | CONFIG_HAVE_ARCH_KGDB=y 4078 | # CONFIG_KGDB is not set 4079 | CONFIG_ARCH_HAS_UBSAN=y 4080 | # CONFIG_UBSAN is not set 4081 | CONFIG_HAVE_ARCH_KCSAN=y 4082 | CONFIG_HAVE_KCSAN_COMPILER=y 4083 | # CONFIG_KCSAN is not set 4084 | # end of Generic Kernel Debugging Instruments 4085 | 4086 | # 4087 | # Networking Debugging 4088 | # 4089 | # CONFIG_NET_DEV_REFCNT_TRACKER is not set 4090 | # CONFIG_NET_NS_REFCNT_TRACKER is not set 4091 | # CONFIG_DEBUG_NET is not set 4092 | # CONFIG_DEBUG_NET_SMALL_RTNL is not set 4093 | # end of Networking Debugging 4094 | 4095 | # 4096 | # Memory Debugging 4097 | # 4098 | # CONFIG_PAGE_EXTENSION is not set 4099 | # CONFIG_DEBUG_PAGEALLOC is not set 4100 | CONFIG_SLUB_DEBUG=y 4101 | # CONFIG_SLUB_DEBUG_ON is not set 4102 | # CONFIG_PAGE_OWNER is not set 4103 | # CONFIG_PAGE_POISONING is not set 4104 | # CONFIG_DEBUG_PAGE_REF is not set 4105 | # CONFIG_DEBUG_RODATA_TEST is not set 4106 | CONFIG_ARCH_HAS_DEBUG_WX=y 4107 | # CONFIG_DEBUG_WX is not set 4108 | CONFIG_ARCH_HAS_PTDUMP=y 4109 | # CONFIG_PTDUMP_DEBUGFS is not set 4110 | CONFIG_HAVE_DEBUG_KMEMLEAK=y 4111 | # CONFIG_DEBUG_KMEMLEAK is not set 4112 | # CONFIG_PER_VMA_LOCK_STATS is not set 4113 | # CONFIG_DEBUG_OBJECTS is not set 4114 | # CONFIG_SHRINKER_DEBUG is not set 4115 | # CONFIG_DEBUG_STACK_USAGE is not set 4116 | # CONFIG_SCHED_STACK_END_CHECK is not set 4117 | CONFIG_ARCH_HAS_DEBUG_VM_PGTABLE=y 4118 | # CONFIG_DEBUG_VFS is not set 4119 | # CONFIG_DEBUG_VM is not set 4120 | # CONFIG_DEBUG_VM_PGTABLE is not set 4121 | CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y 4122 | # CONFIG_DEBUG_VIRTUAL is not set 4123 | # CONFIG_DEBUG_MEMORY_INIT is not set 4124 | # CONFIG_DEBUG_PER_CPU_MAPS is not set 4125 | # CONFIG_MEM_ALLOC_PROFILING is not set 4126 | CONFIG_HAVE_ARCH_KASAN=y 4127 | CONFIG_HAVE_ARCH_KASAN_SW_TAGS=y 4128 | CONFIG_HAVE_ARCH_KASAN_VMALLOC=y 4129 | CONFIG_CC_HAS_KASAN_GENERIC=y 4130 | CONFIG_CC_HAS_KASAN_SW_TAGS=y 4131 | CONFIG_CC_HAS_WORKING_NOSANITIZE_ADDRESS=y 4132 | # CONFIG_KASAN is not set 4133 | CONFIG_HAVE_ARCH_KFENCE=y 4134 | # CONFIG_KFENCE is not set 4135 | # end of Memory Debugging 4136 | 4137 | # CONFIG_DEBUG_SHIRQ is not set 4138 | 4139 | # 4140 | # Debug Oops, Lockups and Hangs 4141 | # 4142 | # CONFIG_PANIC_ON_OOPS is not set 4143 | CONFIG_PANIC_ON_OOPS_VALUE=0 4144 | CONFIG_PANIC_TIMEOUT=-1 4145 | # CONFIG_SOFTLOCKUP_DETECTOR is not set 4146 | CONFIG_HAVE_HARDLOCKUP_DETECTOR_BUDDY=y 4147 | # CONFIG_HARDLOCKUP_DETECTOR is not set 4148 | # CONFIG_DETECT_HUNG_TASK is not set 4149 | # CONFIG_WQ_WATCHDOG is not set 4150 | # CONFIG_WQ_CPU_INTENSIVE_REPORT is not set 4151 | # end of Debug Oops, Lockups and Hangs 4152 | 4153 | # 4154 | # Scheduler Debugging 4155 | # 4156 | CONFIG_SCHED_INFO=y 4157 | # CONFIG_SCHEDSTATS is not set 4158 | # end of Scheduler Debugging 4159 | 4160 | # CONFIG_DEBUG_PREEMPT is not set 4161 | 4162 | # 4163 | # Lock Debugging (spinlocks, mutexes, etc...) 4164 | # 4165 | CONFIG_LOCK_DEBUGGING_SUPPORT=y 4166 | # CONFIG_PROVE_LOCKING is not set 4167 | # CONFIG_LOCK_STAT is not set 4168 | # CONFIG_DEBUG_RT_MUTEXES is not set 4169 | # CONFIG_DEBUG_SPINLOCK is not set 4170 | # CONFIG_DEBUG_MUTEXES is not set 4171 | # CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set 4172 | # CONFIG_DEBUG_RWSEMS is not set 4173 | # CONFIG_DEBUG_LOCK_ALLOC is not set 4174 | # CONFIG_DEBUG_ATOMIC_SLEEP is not set 4175 | # CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set 4176 | # CONFIG_LOCK_TORTURE_TEST is not set 4177 | # CONFIG_WW_MUTEX_SELFTEST is not set 4178 | # CONFIG_SCF_TORTURE_TEST is not set 4179 | # CONFIG_CSD_LOCK_WAIT_DEBUG is not set 4180 | # end of Lock Debugging (spinlocks, mutexes, etc...) 4181 | 4182 | # CONFIG_DEBUG_IRQFLAGS is not set 4183 | CONFIG_STACKTRACE=y 4184 | # CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set 4185 | # CONFIG_DEBUG_KOBJECT is not set 4186 | 4187 | # 4188 | # Debug kernel data structures 4189 | # 4190 | # CONFIG_DEBUG_LIST is not set 4191 | # CONFIG_DEBUG_PLIST is not set 4192 | # CONFIG_DEBUG_SG is not set 4193 | # CONFIG_DEBUG_NOTIFIERS is not set 4194 | # CONFIG_DEBUG_MAPLE_TREE is not set 4195 | # end of Debug kernel data structures 4196 | 4197 | # 4198 | # RCU Debugging 4199 | # 4200 | # CONFIG_RCU_SCALE_TEST is not set 4201 | # CONFIG_RCU_TORTURE_TEST is not set 4202 | # CONFIG_RCU_REF_SCALE_TEST is not set 4203 | CONFIG_RCU_CPU_STALL_TIMEOUT=21 4204 | CONFIG_RCU_EXP_CPU_STALL_TIMEOUT=20 4205 | # CONFIG_RCU_CPU_STALL_CPUTIME is not set 4206 | CONFIG_RCU_TRACE=y 4207 | # CONFIG_RCU_EQS_DEBUG is not set 4208 | # end of RCU Debugging 4209 | 4210 | # CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set 4211 | # CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set 4212 | # CONFIG_LATENCYTOP is not set 4213 | CONFIG_USER_STACKTRACE_SUPPORT=y 4214 | CONFIG_NOP_TRACER=y 4215 | CONFIG_HAVE_FUNCTION_TRACER=y 4216 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y 4217 | CONFIG_HAVE_FUNCTION_GRAPH_FREGS=y 4218 | CONFIG_HAVE_FTRACE_GRAPH_FUNC=y 4219 | CONFIG_HAVE_DYNAMIC_FTRACE=y 4220 | CONFIG_HAVE_DYNAMIC_FTRACE_WITH_ARGS=y 4221 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y 4222 | CONFIG_HAVE_SYSCALL_TRACEPOINTS=y 4223 | CONFIG_HAVE_C_RECORDMCOUNT=y 4224 | CONFIG_HAVE_BUILDTIME_MCOUNT_SORT=y 4225 | CONFIG_TRACE_CLOCK=y 4226 | CONFIG_RING_BUFFER=y 4227 | CONFIG_EVENT_TRACING=y 4228 | CONFIG_CONTEXT_SWITCH_TRACER=y 4229 | CONFIG_TRACING=y 4230 | CONFIG_TRACING_SUPPORT=y 4231 | CONFIG_FTRACE=y 4232 | CONFIG_BOOTTIME_TRACING=y 4233 | # CONFIG_FUNCTION_TRACER is not set 4234 | # CONFIG_STACK_TRACER is not set 4235 | # CONFIG_IRQSOFF_TRACER is not set 4236 | # CONFIG_PREEMPT_TRACER is not set 4237 | # CONFIG_SCHED_TRACER is not set 4238 | # CONFIG_HWLAT_TRACER is not set 4239 | # CONFIG_OSNOISE_TRACER is not set 4240 | # CONFIG_TIMERLAT_TRACER is not set 4241 | # CONFIG_ENABLE_DEFAULT_TRACERS is not set 4242 | # CONFIG_FTRACE_SYSCALLS is not set 4243 | # CONFIG_TRACER_SNAPSHOT is not set 4244 | CONFIG_BRANCH_PROFILE_NONE=y 4245 | # CONFIG_PROFILE_ANNOTATED_BRANCHES is not set 4246 | # CONFIG_PROFILE_ALL_BRANCHES is not set 4247 | # CONFIG_BLK_DEV_IO_TRACE is not set 4248 | CONFIG_UPROBE_EVENTS=y 4249 | CONFIG_BPF_EVENTS=y 4250 | CONFIG_DYNAMIC_EVENTS=y 4251 | CONFIG_PROBE_EVENTS=y 4252 | # CONFIG_SYNTH_EVENTS is not set 4253 | # CONFIG_USER_EVENTS is not set 4254 | # CONFIG_HIST_TRIGGERS is not set 4255 | # CONFIG_TRACE_EVENT_INJECT is not set 4256 | # CONFIG_TRACEPOINT_BENCHMARK is not set 4257 | # CONFIG_RING_BUFFER_BENCHMARK is not set 4258 | # CONFIG_TRACE_EVAL_MAP_FILE is not set 4259 | # CONFIG_RING_BUFFER_STARTUP_TEST is not set 4260 | # CONFIG_RING_BUFFER_VALIDATE_TIME_DELTAS is not set 4261 | # CONFIG_RV is not set 4262 | # CONFIG_SAMPLES is not set 4263 | CONFIG_HAVE_SAMPLE_FTRACE_DIRECT=y 4264 | CONFIG_HAVE_SAMPLE_FTRACE_DIRECT_MULTI=y 4265 | # CONFIG_STRICT_DEVMEM is not set 4266 | 4267 | # 4268 | # arm64 Debugging 4269 | # 4270 | CONFIG_PID_IN_CONTEXTIDR=y 4271 | CONFIG_CORESIGHT=y 4272 | CONFIG_CORESIGHT_LINKS_AND_SINKS=y 4273 | CONFIG_CORESIGHT_LINK_AND_SINK_TMC=y 4274 | CONFIG_CORESIGHT_CATU=y 4275 | CONFIG_CORESIGHT_SINK_TPIU=y 4276 | CONFIG_CORESIGHT_SINK_ETBV10=y 4277 | CONFIG_CORESIGHT_SOURCE_ETM4X=y 4278 | CONFIG_ETM4X_IMPDEF_FEATURE=y 4279 | CONFIG_CORESIGHT_STM=y 4280 | # CONFIG_CORESIGHT_CTCU is not set 4281 | CONFIG_CORESIGHT_CPU_DEBUG=y 4282 | # CONFIG_CORESIGHT_CPU_DEBUG_DEFAULT_ON is not set 4283 | CONFIG_CORESIGHT_CTI=y 4284 | # CONFIG_CORESIGHT_CTI_INTEGRATION_REGS is not set 4285 | CONFIG_CORESIGHT_TRBE=y 4286 | # CONFIG_CORESIGHT_TPDM is not set 4287 | # CONFIG_CORESIGHT_TPDA is not set 4288 | # CONFIG_CORESIGHT_DUMMY is not set 4289 | # end of arm64 Debugging 4290 | 4291 | # 4292 | # Kernel Testing and Coverage 4293 | # 4294 | # CONFIG_KUNIT is not set 4295 | # CONFIG_NOTIFIER_ERROR_INJECTION is not set 4296 | # CONFIG_FAULT_INJECTION is not set 4297 | CONFIG_ARCH_HAS_KCOV=y 4298 | CONFIG_CC_HAS_SANCOV_TRACE_PC=y 4299 | # CONFIG_KCOV is not set 4300 | CONFIG_RUNTIME_TESTING_MENU=y 4301 | # CONFIG_TEST_DHRY is not set 4302 | # CONFIG_LKDTM is not set 4303 | # CONFIG_TEST_MIN_HEAP is not set 4304 | # CONFIG_TEST_DIV64 is not set 4305 | # CONFIG_TEST_MULDIV64 is not set 4306 | # CONFIG_BACKTRACE_SELF_TEST is not set 4307 | # CONFIG_TEST_REF_TRACKER is not set 4308 | # CONFIG_RBTREE_TEST is not set 4309 | # CONFIG_REED_SOLOMON_TEST is not set 4310 | # CONFIG_INTERVAL_TREE_TEST is not set 4311 | # CONFIG_ATOMIC64_SELFTEST is not set 4312 | # CONFIG_TEST_HEXDUMP is not set 4313 | # CONFIG_TEST_KSTRTOX is not set 4314 | # CONFIG_TEST_BITMAP is not set 4315 | # CONFIG_TEST_UUID is not set 4316 | # CONFIG_TEST_XARRAY is not set 4317 | # CONFIG_TEST_MAPLE_TREE is not set 4318 | # CONFIG_TEST_RHASHTABLE is not set 4319 | # CONFIG_TEST_IDA is not set 4320 | # CONFIG_TEST_BITOPS is not set 4321 | # CONFIG_FIND_BIT_BENCHMARK is not set 4322 | # CONFIG_TEST_FIRMWARE is not set 4323 | # CONFIG_TEST_SYSCTL is not set 4324 | # CONFIG_TEST_UDELAY is not set 4325 | # CONFIG_TEST_DYNAMIC_DEBUG is not set 4326 | # CONFIG_TEST_MEMCAT_P is not set 4327 | # CONFIG_TEST_MEMINIT is not set 4328 | # CONFIG_TEST_FREE_PAGES is not set 4329 | # CONFIG_TEST_FPU is not set 4330 | CONFIG_ARCH_USE_MEMTEST=y 4331 | # CONFIG_MEMTEST is not set 4332 | # end of Kernel Testing and Coverage 4333 | 4334 | # 4335 | # Rust hacking 4336 | # 4337 | # CONFIG_RUST_DEBUG_ASSERTIONS is not set 4338 | CONFIG_RUST_OVERFLOW_CHECKS=y 4339 | # CONFIG_RUST_BUILD_ASSERT_ALLOW is not set 4340 | # end of Rust hacking 4341 | # end of Kernel hacking 4342 | 4343 | CONFIG_IO_URING_ZCRX=y 4344 | -------------------------------------------------------------------------------- /features/A10.md: -------------------------------------------------------------------------------- 1 | # A10 Series Feature support 2 | 3 | This page details currently supported features on all A10 series (A10, A10X, T2) devices, as well as their progress towards being upstreamed. 4 | The tables herein can be interpreted as follows: 5 | 6 | Kernel release, e.g. 6.13: the feature was incorporated upstream as of this release 7 | 8 | linux-apple (kernel release): the feature is stable, available for use in linux-apple `apple` branch, and should be upstream by the release indicated. 9 | 10 | linux-apple: the feature is (mostly) stable and available for use in linux-apple `apple` branch 11 | 12 | WIP: Development work on the feature is actively progressing, however is not yet ready for wider testing, use or distribution 13 | 14 | TBA: Active work on this feature is not being undertaken at this time 15 | 16 | -: This feature is not available on the hardware 17 | 18 | ## Table of Contents 19 | 20 | - [SoC blocks](#soc-blocks) 21 | - [A10 devices](#a10-devices) 22 | - [A10X devices](#a10x-devices) 23 | - [T2 devices](#t2-devices) 24 | 25 | ## SoC Blocks 26 | 27 | These are features/hardware blocks that are present on all devices with the given SoC. 28 | 29 | | | A10
(T8010) | A10X
(T8011) | T2
(T8012) | 30 | |------------------|:-------------------------------:|:-------------------------------:|:-------------------------------:| 31 | | AIC | 6.12 / 6.13 (dts) | 6.12 / 6.13 (dts) | 6.12 / linux-apple (6.15) (dts) | 32 | | UART | 5.13 / 6.13 (dts) | 5.13 / 6.13 (dts) | 5.13 / linux-apple (6.15) (dts) | 33 | | GPIO | 5.16 / 6.13 (dts) | 5.16 / 6.13 (dts) | 5.16 / linux-apple (6.15) (dts) | 34 | | Watchdog | 5.17 / 6.13 (dts) | 5.17 / 6.13 (dts) | 5.17 / linux-apple (6.15) (dts) | 35 | | PMGR | 5.17 / linux-apple (6.15) (dts) | 5.17 / 6.15 (dts) | 5.17 / 6.15 (dts) | 36 | | SMP spin-up | 6.13 | 6.13 | 6.15 | 37 | | CPU PMU | linux-apple | linux-apple | linux-apple | 38 | | I2C | 5.16 / linux-apple (dts) | 5.16 / linux-apple (dts) | WIP | 39 | | Display Pipe | TBA | TBA | TBA | 40 | | cpufreq | 6.2 / 6.15 (dts) | 6.2 / 6.15 (dts) | 6.2 / 6.15 (dts) | 41 | | USB2 Device Mode | linux-apple | linux-apple | linux-apple | 42 | | RTC | linux-apple | linux-apple | 43 | linux-apple | 44 | | GPU | TBA | TBA | - | 45 | 46 | ## A10 devices 47 | 48 | | | iPhone 7 | iPhone 7 Plus | iPod touch 7 | iPad 6 | iPad 7 | 49 | |------------------------|:-----------:|:--------------:|:------------:|:------------:|:------------:| 50 | | DeviceTree | 6.13 | 6.13 | 6.13 | 6.13 | 6.13 | 51 | | Main Display | 6.13 | 6.13 | 6.13 | 6.13 | 6.13 | 52 | | Brightness | 6.15 | 6.15 | 6.15 | 6.15 | 6.15 | 53 | | Buttons | 6.13 | 6.13 | 6.13 | 6.13 | 6.13 | 54 | | Fake Home Button | TBA | TBA | - | - | - | 55 | 56 | ## A10X Devices 57 | 58 | | | iPad Pro (10.5-inch) | iPad Pro (12.9-inch) (2nd generation) | Apple TV 4K | 59 | |------------------------|:--------------------:|:--------------------------------------:|:------------| 60 | | DeviceTree | 6.13 | 6.13 | 6.13 | 61 | | Main Display | 6.13 | 6.13 | - | 62 | | Brightness | linux-apple | linux-apple | - | 63 | | HDMI Out (Framebuffer) | - | - | 6.13 | 64 | | Buttons | 6.13 | 6.13 | - | 65 | 66 | ## T2 Devices 67 | 68 | | | Apple T2 MacBookPro15,2 (j132) | Apple T2 iMacPro1,1 (j137) | Apple T2 MacBookAir8,2 (j140a) | Apple T2 MacBookAir8,1 (j140k) | Apple T2 MacBookPro16,1 (j152f) | Apple T2 MacPro7,1 (j160) | Apple T2 Macmini8,1 (j174) | Apple T2 iMac20,1 (j185) | Apple T2 iMac20,2 (j185f) | Apple T2 MacBookPro15,4 (j213) | Apple T2 MacBookPro16,2 (j214k) | Apple T2 MacBookPro16,4 (j215) | Apple T2 MacBookPro16,3 (j223) | Apple T2 MacBookAir9,1 (j230k) | Apple T2 MacBookPro15,1 (j680)| Apple T2 MacBookPro15,3 (j780) | 69 | |-----------------------:|:----:|:----:|:-----:|:----:|:----:|:----:|:----:|:----:|:----:|:----:|:----:|:----:|:----:|:----:|:---:|:----:| 70 | | DeviceTree | 6.15 | 6.15 | 6.15 | 6.15 | 6.15 | 6.15 | 6.15 | 6.15 | 6.15 | 6.15 | 6.15 | 6.15 | 6.15 | 6.15 | 6.15 | 6.15 | 6.15 | 71 | | Main Display | 6.15 | 6.15 | 6.15 | 6.15 | 6.15 | 6.15 | 6.15 | 6.15 | 6.15 | 6.15 | 6.15 | 6.15 | 6.15 | 6.15 | 6.15 | 6.15 | 6.15 | 72 | | Brightness | TBA | - | - | - | TBA | - | - | - | - | TBA | TBA | TBA | TBA | - | TBA | TBA | 73 | -------------------------------------------------------------------------------- /features/A11.md: -------------------------------------------------------------------------------- 1 | # A11 Feature support 2 | 3 | This page details currently supported features on all A11 devices, as well as their progress towards being upstreamed. 4 | The tables herein can be interpreted as follows: 5 | 6 | Kernel release, e.g. 6.13: the feature was incorporated upstream as of this release 7 | 8 | linux-apple (kernel release): the feature is stable, available for use in linux-apple `apple` branch, and should be upstream by the release indicated. 9 | 10 | linux-apple: the feature is (mostly) stable and available for use in linux-apple `apple` branch 11 | 12 | WIP: Development work on the feature is actively progressing, however is not yet ready for wider testing, use or distribution 13 | 14 | TBA: Active work on this feature is not being undertaken at this time 15 | 16 | -: This feature is not available on the hardware 17 | 18 | ## Table of Contents 19 | 20 | - [SoC blocks](#soc-blocks) 21 | - [A11 devices](#a11-devices) 22 | 23 | ## SoC Blocks 24 | 25 | These are features/hardware blocks that are present on all devices with the given SoC. 26 | 27 | | | A11
(T8015) | 28 | |------------------|:-------------------------------:| 29 | | AIC | 6.12 / 6.13 (dts) | 30 | | UART | 5.13 / 6.13 (dts) | 31 | | GPIO | 5.16 / 6.13 (dts) | 32 | | Watchdog | 5.17 / 6.13 (dts) | 33 | | PMGR | 5.17 / 6.15 (dts) | 34 | | SMP spin-up | 6.13 | 35 | | I2C | 5.16 / linux-apple (dts) | 36 | | Display Pipe | TBA | 37 | | CPU PMU | linux-apple | 38 | | cpufreq | 6.2 / 6.15 (dts) | 39 | | USB2 Device Mode | linux-apple | 40 | | RTC | linux-apple | 41 | | NVMe | WIP | 42 | | GPU | TBA | 43 | 44 | 45 | 46 | ## A11 devices 47 | 48 | | | iPhone 8 | iPhone 8 Plus | iPhone X | 49 | |------------------------|:-----------:|:--------------:|:-----------:| 50 | | DeviceTree | 6.13 | 6.13 | 6.13 | 51 | | Main Display | 6.13 | 6.13 | 6.13 | 52 | | Brightness | 6.15 | 6.15 | TBA | 53 | | Buttons | 6.13 | 6.13 | 6.13 | 54 | | Fake Home Button | TBA | TBA | - | 55 | -------------------------------------------------------------------------------- /features/A7.md: -------------------------------------------------------------------------------- 1 | # A7 Feature support 2 | 3 | This page details currently supported features on all A7 devices, as well as their progress towards being upstreamed. 4 | The tables herein can be interpreted as follows: 5 | 6 | Kernel release, e.g. 6.13: the feature was incorporated upstream as of this release 7 | 8 | linux-apple (kernel release): the feature is stable, available for use in linux-apple `apple` branch, and should be upstream by the release indicated. 9 | 10 | linux-apple: the feature is (mostly) stable and available for use in linux-apple `apple` branch 11 | 12 | WIP: Development work on the feature is actively progressing, however is not yet ready for wider testing, use or distribution 13 | 14 | TBA: Active work on this feature is not being undertaken at this time 15 | 16 | -: This feature is not available on the hardware 17 | 18 | ## Table of Contents 19 | 20 | - [SoC blocks](#soc-blocks) 21 | - [A7 devices](#a7-devices) 22 | 23 | ## SoC Blocks 24 | 25 | These are features/hardware blocks that are present on all devices with the given SoC. 26 | 27 | The A7 in iPad Air may be referred to as S5L8965X at times, but it is still considered as S5L8960X by software. 28 | 29 | | | A7
(S5L8960X/S5L8965X) | 30 | |------------------|:-------------------------------:| 31 | | AIC | 6.12 / 6.13 (dts) | 32 | | UART | 5.13 / 6.13 (dts) | 33 | | GPIO | 5.16 / 6.13 (dts) | 34 | | Watchdog | 5.17 / 6.13 (dts) | 35 | | PMGR | 5.17 / 6.15 (dts) | 36 | | Display Pipe | TBA | 37 | | SMP spin-up | 6.13 | 38 | | CPU PMU | linux-apple | 39 | | I2C | 5.16 / linux-apple (dts) | 40 | | cpufreq | 6.14 / 6.15 (dts) | 41 | | USB2 Device Mode | linux-apple | 42 | | RTC | linux-apple | 43 | | GPU | TBA | 44 | 45 | ## A7 devices 46 | 47 | | | iPhone 5s | iPad mini 2 | iPad mini 3 | iPad Air | 48 | |---------------------|:---------:|:-----------:|:-----------:|:------------:| 49 | | DeviceTree | 6.13 | 6.13 | 6.13 | 6.13 | 50 | | Main Display | 6.13 | 6.13 | 6.13 | 6.13 | 51 | | Brightness | 6.15 | linux-apple | linux-apple | linux-apple | 52 | | Buttons | 6.13 | 6.13 | 6.13 | 6.13 | 53 | -------------------------------------------------------------------------------- /features/A8.md: -------------------------------------------------------------------------------- 1 | # A8 Series Feature support 2 | 3 | This page details currently supported features on all A8 series (A8, A8X) devices, as well as their progress towards being upstreamed. 4 | The tables herein can be interpreted as follows: 5 | 6 | Kernel release, e.g. 6.13: the feature was incorporated upstream as of this release 7 | 8 | linux-apple (kernel release): the feature is stable, available for use in linux-apple `apple` branch, and should be upstream by the release indicated. 9 | 10 | linux-apple: the feature is (mostly) stable and available for use in linux-apple `apple` branch 11 | 12 | WIP: Development work on the feature is actively progressing, however is not yet ready for wider testing, use or distribution 13 | 14 | TBA: Active work on this feature is not being undertaken at this time 15 | 16 | -: This feature is not available on the hardware 17 | 18 | HomePod is currently unsupported due to lack of testing. 19 | 20 | ## Table of Contents 21 | 22 | - [SoC blocks](#soc-blocks) 23 | - [A8 devices](#a8-devices) 24 | - [A8X devices](#a8x-devices) 25 | 26 | 27 | ## SoC Blocks 28 | 29 | These are features/hardware blocks that are present on all devices with the given SoC. 30 | 31 | | | A8
(T7000) | A8X
(T7001) | 32 | |------------------|:-------------------------------:|:--------------------------------:| 33 | | AIC | 6.12 / 6.13 (dts) | 6.12 / 6.13 (dts) | 34 | | UART | 5.13 / 6.13 (dts) | 5.13 / 6.13 (dts) | 35 | | GPIO | 5.16 / 6.13 (dts) | 5.17 / 6.13 (dts) | 36 | | Watchdog | 5.17 / 6.13 (dts) | 5.17 / 6.13 (dts) | 37 | | PMGR | 5.17 / 6.15 (dts) | 5.17 / 6.15 (dts) | 38 | | SMP spin-up | 6.13 | 6.13 | 39 | | Display Pipe | TBA | TBA | 40 | | CPU PMU | linux-apple | linux-apple | 41 | | I2C | 5.16 / linux-apple (dts) | 5.16 / linux-apple (dts) | 42 | | cpufreq | 6.14 / 6.15 (dts) | 6.14 / 6.15 (dts) | 43 | | USB2 Device Mode | linux-apple | linux-apple | 44 | | RTC | linux-apple | linux-apple | 45 | | GPU | TBA | TBA | 46 | 47 | ## A8 devices 48 | 49 | | | iPhone 6 | iPhone 6 Plus | iPad mini 4 | iPod touch 6 | Apple TV HD | 50 | |------------------------|:-----------:|:-------------:|:------------:|:------------:|:-----------:| 51 | | DeviceTree | 6.13 | 6.13 | 6.13 | 6.13 | 6.13 | 52 | | Main Display | 6.13 | 6.13 | 6.13 | 6.13 | - | 53 | | Brightness | 6.15 | 6.15 | 6.15 | 6.15 | - | 54 | | Buttons | 6.13 | 6.13 | 6.13 | 6.13 | - | 55 | | HDMI out (Framebuffer) | - | - | - | - | 6.13 | 56 | 57 | 58 | ## A8X Devices 59 | 60 | | | iPad Air 2 | 61 | |------------------------|:-----------:| 62 | | DeviceTree | 6.13 | 63 | | Main Display | 6.13 | 64 | | Brightness | linux-apple | 65 | | Buttons | 6.13 | 66 | | HDMI out (Framebuffer) | - | 67 | -------------------------------------------------------------------------------- /features/A9.md: -------------------------------------------------------------------------------- 1 | # A9 Series Feature support 2 | 3 | This page details currently supported features on all A9 series (A9, A9X) devices, as well as their progress towards being upstreamed. 4 | The tables herein can be interpreted as follows: 5 | 6 | Kernel release, e.g. 6.13: the feature was incorporated upstream as of this release 7 | 8 | linux-apple (kernel release): the feature is stable, available for use in linux-apple `apple` branch, and should be upstream by the release indicated. 9 | 10 | linux-apple: the feature is (mostly) stable and available for use in linux-apple `apple` branch 11 | 12 | WIP: Development work on the feature is actively progressing, however is not yet ready for wider testing, use or distribution 13 | 14 | TBA: Active work on this feature is not being undertaken at this time 15 | 16 | -: This feature is not available on the hardware 17 | 18 | ## Table of Contents 19 | 20 | - [SoC blocks](#soc-blocks) 21 | - [A9 devices](#a9-devices) 22 | - [A9X devices](#a9x-devices) 23 | 24 | ## SoC Blocks 25 | 26 | These are features/hardware blocks that are present on all devices with the given SoC. 27 | 28 | There are two variants of A9, the Samsung S8000 and the TSMC S8003, known to have minor differences. (A9X is manufactured by TSMC) 29 | 30 | | | A9
(S8000/S8003) | A9X
(S8001) | 31 | |------------------|:-------------------------------:|:-------------------------------:| 32 | | AIC | 6.12 / 6.13 (dts) | 6.12 / 6.13 (dts) | 33 | | UART | 5.13 / 6.13 (dts) | 5.13 / 6.13 (dts) | 34 | | GPIO | 5.16 / 6.13 (dts) | 5.16 / 6.13 (dts) | 35 | | Watchdog | 5.17 / 6.13 (dts) | 5.17 / 6.13 (dts) | 36 | | PMGR | 5.17 / 6.15 (dts) | 5.17 / 6.15 (dts) | 37 | | SMP spin-up | 6.13 | 6.13 | 38 | | Display Pipe | TBA | TBA | 39 | | CPU PMU | linux-apple | linux-apple | 40 | | I2C | 5.16 / linux-apple (dts) | 5.16 / linux-apple (dts) | 41 | | cpufreq | 6.14 / 6.15 (dts) | 6.14 / 6.15 (dts) | 42 | | USB2 Device Mode | linux-apple | linux-apple | 43 | | RTC | linux-apple | linux-apple | 44 | | GPU | TBA | TBA | 45 | 46 | ## A9 devices 47 | 48 | | | iPhone 6s | iPhone 6s Plus | iPhone SE | iPad 5 | 49 | |------------------------|:-----------:|:--------------:|:-----------:|:------------:| 50 | | DeviceTree | 6.13 | 6.13 | 6.13 | 6.13 | 51 | | Main Display | 6.13 | 6.13 | 6.13 | 6.13 | 52 | | Brightness | 6.15 | 6.15 | 6.15 | 6.15 | 53 | | Buttons | 6.13 | 6.13 | 6.13 | 6.13 | 54 | 55 | 56 | ## A9X Devices 57 | 58 | | | iPad Pro (9.7-inch) | iPad Pro (12.9-inch) | 59 | |------------------------|:-------------------:|:--------------------:| 60 | | DeviceTree | 6.13 | 6.13 | 61 | | Main Display | 6.13 | 6.13 | 62 | | Brightness | linux-apple | linux-apple | 63 | | Buttons | 6.13 | 6.13 | 64 | -------------------------------------------------------------------------------- /hw/DART.md: -------------------------------------------------------------------------------- 1 | # DART 2 | 3 | DART, short for Device Address Resolution Table, is an IOMMU found on Apple SoCs, it is similar in function to the ARM SMMU. 4 | It maps device-visible memory addresses into CPU-visible physical addresses. It helps protect main memory from peripherals 5 | as well as allowing peripherals that are only capable of 32-bit addressing to access the memory at all, as all memory are 6 | above 32-bit on Apple SoCs. DARTs can be operated in either translation mode, where all the memory mapping functions can 7 | be used, or a simpler bypass mode where the addresses translation is merely adding a configurable offset. 8 | 9 | There are two variants used on A7-A11, T2 SoCs: 10 | 11 | dart,s5l8960x, used on A7, A8, A8X, A9X, A10, A10X and T2 12 | 13 | dart,t8015, used on A11 and T2 (yes T2 has two types of darts) 14 | 15 | These two types of DARTs share the same page table format. 16 | 17 | ## dart,s5l8960x 18 | 19 | This DART support four streams and four TTBRs (Translation Table Base register) per stream. 20 | 21 | ### Interrupts 22 | 23 | An interrupt will be delievered when a device fails to DMA while 24 | translation is enabled. This is typically the first interrupt in ADT. 25 | The handler should read [ERROR, Error indication Register](#error-error-indication-register) 26 | for more information. 27 | 28 | ### Registers 29 | | Name | Width | Offset| Short Description | Type | 30 | |-------------------|:-----:|:-----:|:------------------------------:|:----:| 31 | | [STREAM_COMMAND](#stream_command-stream-commnad-register) | 4 | 0x00 | TLB cache control | R/W | 32 | | [TCR](#tcr-translation-control-register) | 4 | 0xc | Translation Controls | R/W | 33 | | [ERROR](#error-error-indication-register) | 4 | 0x10 | Error indicator | R/W | 34 | | [ERROR_ADDR_LO](#error_addr_lo-error-address-low) | 4 | 0x10 | Error Address (Low) | R/W | 35 | | [DIAG_CONFIG](#diag_config-diagnostic-configuration) | 4 | 0x20 | Unknown Tunables | R/W | 36 | | [BYPASS_ADDR](#bypass_addr-bypass-mode-address) | 4 | 0x2c | Bit[35:32] in bypass mode | R/W | 37 | | [FETCH_CONFIG](#fetch_config-fetch-configuration) | 4 | 0x30 | Unknown Tunables | R/W | 38 | | [TTBR](#fetch_config-fetch-configuration) | 4 | 0x40 + 16 * stream + 4 * idx | Translation Table Base Address, 4 per stream | R/W | 39 | 40 | ### STREAM_COMMAND, Stream Commnad Register 41 | 42 | This register allows TLB cache of a given stream to be invalidated. 43 | 44 | | Bits | Name | Type | Description | 45 | |-------------------|:----------:|:-----:|:---------------------------------------:| 46 | | [11] | STREAM_3 | R/W | Set stream 3 as command target | 47 | | [10] | STREAM_2 | R/W | Set stream 2 as command target | 48 | | [9] | STREAM_1 | R/W | Set stream 1 as command target | 49 | | [8] | STREAM_0 | R/W | Set stream 0 as command target | 50 | | [3] | BUSY | RO | Indicate the TLB cache is being cleared | 51 | | [1] | INVALIDATE | RW | Set to invalidate the TLB cache | 52 | 53 | For example, to invalidate the TLB cache for stream 0, write `STREAM_0 | INVALIDATE` 54 | into the register, and when `BUSY` clears, the operation is completed. 55 | 56 | ### TCR, Translation Control Register 57 | 58 | This register control translation on/off. When translation is off, the DART is in 59 | bypass mode. 60 | 61 | | Bits | Name | Type | Description | 62 | |-------------------|:----------:|:-----:|:---------------------------------------:| 63 | | [31] | STREAM_3 | R/W | Translation on/off for stream 3 | 64 | | [23] | STREAM_2 | R/W | Translation on/off for stream 2 | 65 | | [15] | STREAM_1 | R/W | Translation on/off for stream 1 | 66 | | [7] | STREAM_0 | R/W | Translation on/off for stream 0 | 67 | 68 | ### ERROR, Error indication Register 69 | 70 | This register indicates an error has occured during DMA while translation is 71 | enabled. This could be because the DART is not setup properly, or the memory 72 | is write-protected. Writing the read value back to the registers clears the error. 73 | 74 | | Bits | Name | Type | Description | 75 | |-------------------|:-----------------:|:-----:|:--------------------------------------------------------:| 76 | | [31] | FLAG | R/W | When set, indicate that an error has occured | 77 | | [6] | PTE_READ_FAULT | R/W | The page table entry pointed to by TTBR cannot be read. | 78 | | [4] | WRITE_FAULT | R/W | Some memory failed to be read by the device | 79 | | [2] | NO_PTE | R/W | Page table entry invalid | 80 | | [1] | NO_PMD | R/W | Page Middle Directory invalid | 81 | | [0] | NO_TTBR | R/W | TTBR register invalid | 82 | 83 | ### ERROR_ADDR_LO, Error Address (Low) 84 | 85 | | Bits | Name | Type | Description | 86 | |-------------------|:-----------------:|:-----:|:--------------------------------------------------------:| 87 | | [31:0] | ADDR | RO | Low 32-bit of address that caused an error as indicated in the [ERROR](#error-error-indication-register) register. | 88 | 89 | ### DIAG_CONFIG, Diagnostic Configuration 90 | 91 | This registers holds tunables. However, the tunables not appear to be required for the DART to operate. 92 | A recommended value is in `diag-config` property of the ADT dart node. 93 | 94 | ### BYPASS_ADDR, Bypass Mode Address 95 | 96 | Holds bit [35:32] of the phyiscal address when operating in bypass mode. 97 | The IOVA is OR'd with the values stored in this register to get the PA. 98 | 99 | | Bits | Name | Type | Description | 100 | |-------------------|:-----------------:|:-----:|:-----------------------------------------------------------:| 101 | | [27:24] | STREAM_3 | R/W | Bit [35:32] of PA of stream 3 IOVA when in bypass mode | 102 | | [19:16] | STREAM_2 | R/W | Bit [35:32] of PA of stream 2 IOVA when in bypass mode | 103 | | [11:8] | STREAM_1 | R/W | Bit [35:32] of PA of stream 1 IOVA when in bypass mode | 104 | | [3:0] | STREAM_0 | R/W | Bit [35:32] of PA of stream 0 IOVA when in bypass mode | 105 | 106 | ### FETCH_CONFIG, Fetch Configuration 107 | 108 | This registers holds tunables. However, the tunables not appear to be required for the DART to operate. 109 | A recommended value is in `fetch-config` property of the ADT dart node. 110 | 111 | ### TTBR, Translation table base register 112 | 113 | Holds the base address of the translation table. 114 | There are 4 TTBRs per stream. Offset formula: 115 | `0x40 + 16 * stream + 4 * idx` where `stream` is the stream ID from 0-3 116 | and `idx` is the TTBR to use from `0-3`. 117 | 118 | | Bits | Name | Type | Description | 119 | |-------------------|:-------------:|:-----:|:--------------------------------:| 120 | | [31] | VALID | R/W | Indicate that this TTBR is valid | 121 | | [23:0] | ADDR | R/W | Page address (Bit [35:12]) of the translation table base. The translation table must be 4K page-aligened. | 122 | 123 | ## dart,t8015 124 | 125 | This DART has a similar register and bit layout as the `dart,t8020` as used on the M1. However, 126 | it does not support some features including locking and subpage protection. How bypass mode 127 | work is unknown. It also has a 4K page size, and only 4 streams per DART. It can be seen as a 128 | 4K page subset of the M1 DART. 129 | 130 | ## Page Table Format 131 | 132 | ### L0 133 | 134 | This represents the amount of TTBRs per stream. On both `dart,s5l8960x` and `dart,t8015` 135 | there are 4 TTBRs per stream. 136 | 137 | ### L3 138 | 139 | | Bits | Name | Type | Description | 140 | |-------------------|:-------------:|:-----:|:----------------------------------:| 141 | | [35:12] | OFFSET | R/W | 4K Page offset ([35:12] of offset) | 142 | | [7] | WPROTECT | R/W | Write protection bit. Device cannot write this page. | 143 | | [1:0] | VALID | R/W | Indicate PTE as valid | 144 | -------------------------------------------------------------------------------- /images/m1n1/README.md: -------------------------------------------------------------------------------- 1 | # m1n1 Framebuffer Dumps 2 | 3 | ## iPhone/iPod touch 4 | 5 | Text occupies the entire screen, and logo will have scrolled off the screen. 6 | 7 | ![iPhone/iPod touch m1n1](./n61.png) 8 | 9 | ## iPad 10 | 11 | The logo remains on screen, but will still scroll afterwards. 12 | 13 | ![iPad m1n1](./j171.png) 14 | 15 | 16 | ## iPhone X 17 | 18 | On iPhone X, the text and logo is much smaller. Logo will scroll afterwards but needs a lot more text for that to happen. 19 | 20 | ![iPhone/iPod touch m1n1](./d22.png) 21 | 22 | ## Apple TV 23 | 24 | Text will only be on the left side of the screen, with margins, logo does not scroll (like on Mac). 25 | 26 | ![Apple TV m1n1](./j42d.png) 27 | 28 | ## iBridge T2 29 | 30 | Text fills up the whole screen and is oriented "sideways", as the framebuffer is "sideways". 31 | T2 iBridges without a touchbar does not have a screen. 32 | 33 | ![iBridge T2 m1n1](./j680.png) 34 | -------------------------------------------------------------------------------- /images/m1n1/d22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoolockLinux/docs/d4b7785551fe89fdd08548a5530ee7701424e3f2/images/m1n1/d22.png -------------------------------------------------------------------------------- /images/m1n1/j171.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoolockLinux/docs/d4b7785551fe89fdd08548a5530ee7701424e3f2/images/m1n1/j171.png -------------------------------------------------------------------------------- /images/m1n1/j42d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoolockLinux/docs/d4b7785551fe89fdd08548a5530ee7701424e3f2/images/m1n1/j42d.png -------------------------------------------------------------------------------- /images/m1n1/j680.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoolockLinux/docs/d4b7785551fe89fdd08548a5530ee7701424e3f2/images/m1n1/j680.png -------------------------------------------------------------------------------- /images/m1n1/n61.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoolockLinux/docs/d4b7785551fe89fdd08548a5530ee7701424e3f2/images/m1n1/n61.png --------------------------------------------------------------------------------