├── .gitignore
├── COPYING
├── Makefile
├── header
├── main.c
├── n64linux
├── README
├── n64-busybox-git-config
├── n64-kernel-config
└── n64-kernel-config-upstream
└── util
├── Makefile
└── size2bin.c
/.gitignore:
--------------------------------------------------------------------------------
1 | *.bin
2 | *.elf
3 | *.z64
4 | *.[oad]
5 | size2bin
6 |
--------------------------------------------------------------------------------
/COPYING:
--------------------------------------------------------------------------------
1 | GNU GENERAL PUBLIC LICENSE
2 | Version 3, 29 June 2007
3 |
4 | Copyright (C) 2007 Free Software Foundation, Inc.
5 | Everyone is permitted to copy and distribute verbatim copies
6 | of this license document, but changing it is not allowed.
7 |
8 | Preamble
9 |
10 | The GNU General Public License is a free, copyleft license for
11 | software and other kinds of works.
12 |
13 | The licenses for most software and other practical works are designed
14 | to take away your freedom to share and change the works. By contrast,
15 | the GNU General Public License is intended to guarantee your freedom to
16 | share and change all versions of a program--to make sure it remains free
17 | software for all its users. We, the Free Software Foundation, use the
18 | GNU General Public License for most of our software; it applies also to
19 | any other work released this way by its authors. You can apply it to
20 | your programs, too.
21 |
22 | When we speak of free software, we are referring to freedom, not
23 | price. Our General Public Licenses are designed to make sure that you
24 | have the freedom to distribute copies of free software (and charge for
25 | them if you wish), that you receive source code or can get it if you
26 | want it, that you can change the software or use pieces of it in new
27 | free programs, and that you know you can do these things.
28 |
29 | To protect your rights, we need to prevent others from denying you
30 | these rights or asking you to surrender the rights. Therefore, you have
31 | certain responsibilities if you distribute copies of the software, or if
32 | you modify it: responsibilities to respect the freedom of others.
33 |
34 | For example, if you distribute copies of such a program, whether
35 | gratis or for a fee, you must pass on to the recipients the same
36 | freedoms that you received. You must make sure that they, too, receive
37 | or can get the source code. And you must show them these terms so they
38 | know their rights.
39 |
40 | Developers that use the GNU GPL protect your rights with two steps:
41 | (1) assert copyright on the software, and (2) offer you this License
42 | giving you legal permission to copy, distribute and/or modify it.
43 |
44 | For the developers' and authors' protection, the GPL clearly explains
45 | that there is no warranty for this free software. For both users' and
46 | authors' sake, the GPL requires that modified versions be marked as
47 | changed, so that their problems will not be attributed erroneously to
48 | authors of previous versions.
49 |
50 | Some devices are designed to deny users access to install or run
51 | modified versions of the software inside them, although the manufacturer
52 | can do so. This is fundamentally incompatible with the aim of
53 | protecting users' freedom to change the software. The systematic
54 | pattern of such abuse occurs in the area of products for individuals to
55 | use, which is precisely where it is most unacceptable. Therefore, we
56 | have designed this version of the GPL to prohibit the practice for those
57 | products. If such problems arise substantially in other domains, we
58 | stand ready to extend this provision to those domains in future versions
59 | of the GPL, as needed to protect the freedom of users.
60 |
61 | Finally, every program is threatened constantly by software patents.
62 | States should not allow patents to restrict development and use of
63 | software on general-purpose computers, but in those that do, we wish to
64 | avoid the special danger that patents applied to a free program could
65 | make it effectively proprietary. To prevent this, the GPL assures that
66 | patents cannot be used to render the program non-free.
67 |
68 | The precise terms and conditions for copying, distribution and
69 | modification follow.
70 |
71 | TERMS AND CONDITIONS
72 |
73 | 0. Definitions.
74 |
75 | "This License" refers to version 3 of the GNU General Public License.
76 |
77 | "Copyright" also means copyright-like laws that apply to other kinds of
78 | works, such as semiconductor masks.
79 |
80 | "The Program" refers to any copyrightable work licensed under this
81 | License. Each licensee is addressed as "you". "Licensees" and
82 | "recipients" may be individuals or organizations.
83 |
84 | To "modify" a work means to copy from or adapt all or part of the work
85 | in a fashion requiring copyright permission, other than the making of an
86 | exact copy. The resulting work is called a "modified version" of the
87 | earlier work or a work "based on" the earlier work.
88 |
89 | A "covered work" means either the unmodified Program or a work based
90 | on the Program.
91 |
92 | To "propagate" a work means to do anything with it that, without
93 | permission, would make you directly or secondarily liable for
94 | infringement under applicable copyright law, except executing it on a
95 | computer or modifying a private copy. Propagation includes copying,
96 | distribution (with or without modification), making available to the
97 | public, and in some countries other activities as well.
98 |
99 | To "convey" a work means any kind of propagation that enables other
100 | parties to make or receive copies. Mere interaction with a user through
101 | a computer network, with no transfer of a copy, is not conveying.
102 |
103 | An interactive user interface displays "Appropriate Legal Notices"
104 | to the extent that it includes a convenient and prominently visible
105 | feature that (1) displays an appropriate copyright notice, and (2)
106 | tells the user that there is no warranty for the work (except to the
107 | extent that warranties are provided), that licensees may convey the
108 | work under this License, and how to view a copy of this License. If
109 | the interface presents a list of user commands or options, such as a
110 | menu, a prominent item in the list meets this criterion.
111 |
112 | 1. Source Code.
113 |
114 | The "source code" for a work means the preferred form of the work
115 | for making modifications to it. "Object code" means any non-source
116 | form of a work.
117 |
118 | A "Standard Interface" means an interface that either is an official
119 | standard defined by a recognized standards body, or, in the case of
120 | interfaces specified for a particular programming language, one that
121 | is widely used among developers working in that language.
122 |
123 | The "System Libraries" of an executable work include anything, other
124 | than the work as a whole, that (a) is included in the normal form of
125 | packaging a Major Component, but which is not part of that Major
126 | Component, and (b) serves only to enable use of the work with that
127 | Major Component, or to implement a Standard Interface for which an
128 | implementation is available to the public in source code form. A
129 | "Major Component", in this context, means a major essential component
130 | (kernel, window system, and so on) of the specific operating system
131 | (if any) on which the executable work runs, or a compiler used to
132 | produce the work, or an object code interpreter used to run it.
133 |
134 | The "Corresponding Source" for a work in object code form means all
135 | the source code needed to generate, install, and (for an executable
136 | work) run the object code and to modify the work, including scripts to
137 | control those activities. However, it does not include the work's
138 | System Libraries, or general-purpose tools or generally available free
139 | programs which are used unmodified in performing those activities but
140 | which are not part of the work. For example, Corresponding Source
141 | includes interface definition files associated with source files for
142 | the work, and the source code for shared libraries and dynamically
143 | linked subprograms that the work is specifically designed to require,
144 | such as by intimate data communication or control flow between those
145 | subprograms and other parts of the work.
146 |
147 | The Corresponding Source need not include anything that users
148 | can regenerate automatically from other parts of the Corresponding
149 | Source.
150 |
151 | The Corresponding Source for a work in source code form is that
152 | same work.
153 |
154 | 2. Basic Permissions.
155 |
156 | All rights granted under this License are granted for the term of
157 | copyright on the Program, and are irrevocable provided the stated
158 | conditions are met. This License explicitly affirms your unlimited
159 | permission to run the unmodified Program. The output from running a
160 | covered work is covered by this License only if the output, given its
161 | content, constitutes a covered work. This License acknowledges your
162 | rights of fair use or other equivalent, as provided by copyright law.
163 |
164 | You may make, run and propagate covered works that you do not
165 | convey, without conditions so long as your license otherwise remains
166 | in force. You may convey covered works to others for the sole purpose
167 | of having them make modifications exclusively for you, or provide you
168 | with facilities for running those works, provided that you comply with
169 | the terms of this License in conveying all material for which you do
170 | not control copyright. Those thus making or running the covered works
171 | for you must do so exclusively on your behalf, under your direction
172 | and control, on terms that prohibit them from making any copies of
173 | your copyrighted material outside their relationship with you.
174 |
175 | Conveying under any other circumstances is permitted solely under
176 | the conditions stated below. Sublicensing is not allowed; section 10
177 | makes it unnecessary.
178 |
179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
180 |
181 | No covered work shall be deemed part of an effective technological
182 | measure under any applicable law fulfilling obligations under article
183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or
184 | similar laws prohibiting or restricting circumvention of such
185 | measures.
186 |
187 | When you convey a covered work, you waive any legal power to forbid
188 | circumvention of technological measures to the extent such circumvention
189 | is effected by exercising rights under this License with respect to
190 | the covered work, and you disclaim any intention to limit operation or
191 | modification of the work as a means of enforcing, against the work's
192 | users, your or third parties' legal rights to forbid circumvention of
193 | technological measures.
194 |
195 | 4. Conveying Verbatim Copies.
196 |
197 | You may convey verbatim copies of the Program's source code as you
198 | receive it, in any medium, provided that you conspicuously and
199 | appropriately publish on each copy an appropriate copyright notice;
200 | keep intact all notices stating that this License and any
201 | non-permissive terms added in accord with section 7 apply to the code;
202 | keep intact all notices of the absence of any warranty; and give all
203 | recipients a copy of this License along with the Program.
204 |
205 | You may charge any price or no price for each copy that you convey,
206 | and you may offer support or warranty protection for a fee.
207 |
208 | 5. Conveying Modified Source Versions.
209 |
210 | You may convey a work based on the Program, or the modifications to
211 | produce it from the Program, in the form of source code under the
212 | terms of section 4, provided that you also meet all of these conditions:
213 |
214 | a) The work must carry prominent notices stating that you modified
215 | it, and giving a relevant date.
216 |
217 | b) The work must carry prominent notices stating that it is
218 | released under this License and any conditions added under section
219 | 7. This requirement modifies the requirement in section 4 to
220 | "keep intact all notices".
221 |
222 | c) You must license the entire work, as a whole, under this
223 | License to anyone who comes into possession of a copy. This
224 | License will therefore apply, along with any applicable section 7
225 | additional terms, to the whole of the work, and all its parts,
226 | regardless of how they are packaged. This License gives no
227 | permission to license the work in any other way, but it does not
228 | invalidate such permission if you have separately received it.
229 |
230 | d) If the work has interactive user interfaces, each must display
231 | Appropriate Legal Notices; however, if the Program has interactive
232 | interfaces that do not display Appropriate Legal Notices, your
233 | work need not make them do so.
234 |
235 | A compilation of a covered work with other separate and independent
236 | works, which are not by their nature extensions of the covered work,
237 | and which are not combined with it such as to form a larger program,
238 | in or on a volume of a storage or distribution medium, is called an
239 | "aggregate" if the compilation and its resulting copyright are not
240 | used to limit the access or legal rights of the compilation's users
241 | beyond what the individual works permit. Inclusion of a covered work
242 | in an aggregate does not cause this License to apply to the other
243 | parts of the aggregate.
244 |
245 | 6. Conveying Non-Source Forms.
246 |
247 | You may convey a covered work in object code form under the terms
248 | of sections 4 and 5, provided that you also convey the
249 | machine-readable Corresponding Source under the terms of this License,
250 | in one of these ways:
251 |
252 | a) Convey the object code in, or embodied in, a physical product
253 | (including a physical distribution medium), accompanied by the
254 | Corresponding Source fixed on a durable physical medium
255 | customarily used for software interchange.
256 |
257 | b) Convey the object code in, or embodied in, a physical product
258 | (including a physical distribution medium), accompanied by a
259 | written offer, valid for at least three years and valid for as
260 | long as you offer spare parts or customer support for that product
261 | model, to give anyone who possesses the object code either (1) a
262 | copy of the Corresponding Source for all the software in the
263 | product that is covered by this License, on a durable physical
264 | medium customarily used for software interchange, for a price no
265 | more than your reasonable cost of physically performing this
266 | conveying of source, or (2) access to copy the
267 | Corresponding Source from a network server at no charge.
268 |
269 | c) Convey individual copies of the object code with a copy of the
270 | written offer to provide the Corresponding Source. This
271 | alternative is allowed only occasionally and noncommercially, and
272 | only if you received the object code with such an offer, in accord
273 | with subsection 6b.
274 |
275 | d) Convey the object code by offering access from a designated
276 | place (gratis or for a charge), and offer equivalent access to the
277 | Corresponding Source in the same way through the same place at no
278 | further charge. You need not require recipients to copy the
279 | Corresponding Source along with the object code. If the place to
280 | copy the object code is a network server, the Corresponding Source
281 | may be on a different server (operated by you or a third party)
282 | that supports equivalent copying facilities, provided you maintain
283 | clear directions next to the object code saying where to find the
284 | Corresponding Source. Regardless of what server hosts the
285 | Corresponding Source, you remain obligated to ensure that it is
286 | available for as long as needed to satisfy these requirements.
287 |
288 | e) Convey the object code using peer-to-peer transmission, provided
289 | you inform other peers where the object code and Corresponding
290 | Source of the work are being offered to the general public at no
291 | charge under subsection 6d.
292 |
293 | A separable portion of the object code, whose source code is excluded
294 | from the Corresponding Source as a System Library, need not be
295 | included in conveying the object code work.
296 |
297 | A "User Product" is either (1) a "consumer product", which means any
298 | tangible personal property which is normally used for personal, family,
299 | or household purposes, or (2) anything designed or sold for incorporation
300 | into a dwelling. In determining whether a product is a consumer product,
301 | doubtful cases shall be resolved in favor of coverage. For a particular
302 | product received by a particular user, "normally used" refers to a
303 | typical or common use of that class of product, regardless of the status
304 | of the particular user or of the way in which the particular user
305 | actually uses, or expects or is expected to use, the product. A product
306 | is a consumer product regardless of whether the product has substantial
307 | commercial, industrial or non-consumer uses, unless such uses represent
308 | the only significant mode of use of the product.
309 |
310 | "Installation Information" for a User Product means any methods,
311 | procedures, authorization keys, or other information required to install
312 | and execute modified versions of a covered work in that User Product from
313 | a modified version of its Corresponding Source. The information must
314 | suffice to ensure that the continued functioning of the modified object
315 | code is in no case prevented or interfered with solely because
316 | modification has been made.
317 |
318 | If you convey an object code work under this section in, or with, or
319 | specifically for use in, a User Product, and the conveying occurs as
320 | part of a transaction in which the right of possession and use of the
321 | User Product is transferred to the recipient in perpetuity or for a
322 | fixed term (regardless of how the transaction is characterized), the
323 | Corresponding Source conveyed under this section must be accompanied
324 | by the Installation Information. But this requirement does not apply
325 | if neither you nor any third party retains the ability to install
326 | modified object code on the User Product (for example, the work has
327 | been installed in ROM).
328 |
329 | The requirement to provide Installation Information does not include a
330 | requirement to continue to provide support service, warranty, or updates
331 | for a work that has been modified or installed by the recipient, or for
332 | the User Product in which it has been modified or installed. Access to a
333 | network may be denied when the modification itself materially and
334 | adversely affects the operation of the network or violates the rules and
335 | protocols for communication across the network.
336 |
337 | Corresponding Source conveyed, and Installation Information provided,
338 | in accord with this section must be in a format that is publicly
339 | documented (and with an implementation available to the public in
340 | source code form), and must require no special password or key for
341 | unpacking, reading or copying.
342 |
343 | 7. Additional Terms.
344 |
345 | "Additional permissions" are terms that supplement the terms of this
346 | License by making exceptions from one or more of its conditions.
347 | Additional permissions that are applicable to the entire Program shall
348 | be treated as though they were included in this License, to the extent
349 | that they are valid under applicable law. If additional permissions
350 | apply only to part of the Program, that part may be used separately
351 | under those permissions, but the entire Program remains governed by
352 | this License without regard to the additional permissions.
353 |
354 | When you convey a copy of a covered work, you may at your option
355 | remove any additional permissions from that copy, or from any part of
356 | it. (Additional permissions may be written to require their own
357 | removal in certain cases when you modify the work.) You may place
358 | additional permissions on material, added by you to a covered work,
359 | for which you have or can give appropriate copyright permission.
360 |
361 | Notwithstanding any other provision of this License, for material you
362 | add to a covered work, you may (if authorized by the copyright holders of
363 | that material) supplement the terms of this License with terms:
364 |
365 | a) Disclaiming warranty or limiting liability differently from the
366 | terms of sections 15 and 16 of this License; or
367 |
368 | b) Requiring preservation of specified reasonable legal notices or
369 | author attributions in that material or in the Appropriate Legal
370 | Notices displayed by works containing it; or
371 |
372 | c) Prohibiting misrepresentation of the origin of that material, or
373 | requiring that modified versions of such material be marked in
374 | reasonable ways as different from the original version; or
375 |
376 | d) Limiting the use for publicity purposes of names of licensors or
377 | authors of the material; or
378 |
379 | e) Declining to grant rights under trademark law for use of some
380 | trade names, trademarks, or service marks; or
381 |
382 | f) Requiring indemnification of licensors and authors of that
383 | material by anyone who conveys the material (or modified versions of
384 | it) with contractual assumptions of liability to the recipient, for
385 | any liability that these contractual assumptions directly impose on
386 | those licensors and authors.
387 |
388 | All other non-permissive additional terms are considered "further
389 | restrictions" within the meaning of section 10. If the Program as you
390 | received it, or any part of it, contains a notice stating that it is
391 | governed by this License along with a term that is a further
392 | restriction, you may remove that term. If a license document contains
393 | a further restriction but permits relicensing or conveying under this
394 | License, you may add to a covered work material governed by the terms
395 | of that license document, provided that the further restriction does
396 | not survive such relicensing or conveying.
397 |
398 | If you add terms to a covered work in accord with this section, you
399 | must place, in the relevant source files, a statement of the
400 | additional terms that apply to those files, or a notice indicating
401 | where to find the applicable terms.
402 |
403 | Additional terms, permissive or non-permissive, may be stated in the
404 | form of a separately written license, or stated as exceptions;
405 | the above requirements apply either way.
406 |
407 | 8. Termination.
408 |
409 | You may not propagate or modify a covered work except as expressly
410 | provided under this License. Any attempt otherwise to propagate or
411 | modify it is void, and will automatically terminate your rights under
412 | this License (including any patent licenses granted under the third
413 | paragraph of section 11).
414 |
415 | However, if you cease all violation of this License, then your
416 | license from a particular copyright holder is reinstated (a)
417 | provisionally, unless and until the copyright holder explicitly and
418 | finally terminates your license, and (b) permanently, if the copyright
419 | holder fails to notify you of the violation by some reasonable means
420 | prior to 60 days after the cessation.
421 |
422 | Moreover, your license from a particular copyright holder is
423 | reinstated permanently if the copyright holder notifies you of the
424 | violation by some reasonable means, this is the first time you have
425 | received notice of violation of this License (for any work) from that
426 | copyright holder, and you cure the violation prior to 30 days after
427 | your receipt of the notice.
428 |
429 | Termination of your rights under this section does not terminate the
430 | licenses of parties who have received copies or rights from you under
431 | this License. If your rights have been terminated and not permanently
432 | reinstated, you do not qualify to receive new licenses for the same
433 | material under section 10.
434 |
435 | 9. Acceptance Not Required for Having Copies.
436 |
437 | You are not required to accept this License in order to receive or
438 | run a copy of the Program. Ancillary propagation of a covered work
439 | occurring solely as a consequence of using peer-to-peer transmission
440 | to receive a copy likewise does not require acceptance. However,
441 | nothing other than this License grants you permission to propagate or
442 | modify any covered work. These actions infringe copyright if you do
443 | not accept this License. Therefore, by modifying or propagating a
444 | covered work, you indicate your acceptance of this License to do so.
445 |
446 | 10. Automatic Licensing of Downstream Recipients.
447 |
448 | Each time you convey a covered work, the recipient automatically
449 | receives a license from the original licensors, to run, modify and
450 | propagate that work, subject to this License. You are not responsible
451 | for enforcing compliance by third parties with this License.
452 |
453 | An "entity transaction" is a transaction transferring control of an
454 | organization, or substantially all assets of one, or subdividing an
455 | organization, or merging organizations. If propagation of a covered
456 | work results from an entity transaction, each party to that
457 | transaction who receives a copy of the work also receives whatever
458 | licenses to the work the party's predecessor in interest had or could
459 | give under the previous paragraph, plus a right to possession of the
460 | Corresponding Source of the work from the predecessor in interest, if
461 | the predecessor has it or can get it with reasonable efforts.
462 |
463 | You may not impose any further restrictions on the exercise of the
464 | rights granted or affirmed under this License. For example, you may
465 | not impose a license fee, royalty, or other charge for exercise of
466 | rights granted under this License, and you may not initiate litigation
467 | (including a cross-claim or counterclaim in a lawsuit) alleging that
468 | any patent claim is infringed by making, using, selling, offering for
469 | sale, or importing the Program or any portion of it.
470 |
471 | 11. Patents.
472 |
473 | A "contributor" is a copyright holder who authorizes use under this
474 | License of the Program or a work on which the Program is based. The
475 | work thus licensed is called the contributor's "contributor version".
476 |
477 | A contributor's "essential patent claims" are all patent claims
478 | owned or controlled by the contributor, whether already acquired or
479 | hereafter acquired, that would be infringed by some manner, permitted
480 | by this License, of making, using, or selling its contributor version,
481 | but do not include claims that would be infringed only as a
482 | consequence of further modification of the contributor version. For
483 | purposes of this definition, "control" includes the right to grant
484 | patent sublicenses in a manner consistent with the requirements of
485 | this License.
486 |
487 | Each contributor grants you a non-exclusive, worldwide, royalty-free
488 | patent license under the contributor's essential patent claims, to
489 | make, use, sell, offer for sale, import and otherwise run, modify and
490 | propagate the contents of its contributor version.
491 |
492 | In the following three paragraphs, a "patent license" is any express
493 | agreement or commitment, however denominated, not to enforce a patent
494 | (such as an express permission to practice a patent or covenant not to
495 | sue for patent infringement). To "grant" such a patent license to a
496 | party means to make such an agreement or commitment not to enforce a
497 | patent against the party.
498 |
499 | If you convey a covered work, knowingly relying on a patent license,
500 | and the Corresponding Source of the work is not available for anyone
501 | to copy, free of charge and under the terms of this License, through a
502 | publicly available network server or other readily accessible means,
503 | then you must either (1) cause the Corresponding Source to be so
504 | available, or (2) arrange to deprive yourself of the benefit of the
505 | patent license for this particular work, or (3) arrange, in a manner
506 | consistent with the requirements of this License, to extend the patent
507 | license to downstream recipients. "Knowingly relying" means you have
508 | actual knowledge that, but for the patent license, your conveying the
509 | covered work in a country, or your recipient's use of the covered work
510 | in a country, would infringe one or more identifiable patents in that
511 | country that you have reason to believe are valid.
512 |
513 | If, pursuant to or in connection with a single transaction or
514 | arrangement, you convey, or propagate by procuring conveyance of, a
515 | covered work, and grant a patent license to some of the parties
516 | receiving the covered work authorizing them to use, propagate, modify
517 | or convey a specific copy of the covered work, then the patent license
518 | you grant is automatically extended to all recipients of the covered
519 | work and works based on it.
520 |
521 | A patent license is "discriminatory" if it does not include within
522 | the scope of its coverage, prohibits the exercise of, or is
523 | conditioned on the non-exercise of one or more of the rights that are
524 | specifically granted under this License. You may not convey a covered
525 | work if you are a party to an arrangement with a third party that is
526 | in the business of distributing software, under which you make payment
527 | to the third party based on the extent of your activity of conveying
528 | the work, and under which the third party grants, to any of the
529 | parties who would receive the covered work from you, a discriminatory
530 | patent license (a) in connection with copies of the covered work
531 | conveyed by you (or copies made from those copies), or (b) primarily
532 | for and in connection with specific products or compilations that
533 | contain the covered work, unless you entered into that arrangement,
534 | or that patent license was granted, prior to 28 March 2007.
535 |
536 | Nothing in this License shall be construed as excluding or limiting
537 | any implied license or other defenses to infringement that may
538 | otherwise be available to you under applicable patent law.
539 |
540 | 12. No Surrender of Others' Freedom.
541 |
542 | If conditions are imposed on you (whether by court order, agreement or
543 | otherwise) that contradict the conditions of this License, they do not
544 | excuse you from the conditions of this License. If you cannot convey a
545 | covered work so as to satisfy simultaneously your obligations under this
546 | License and any other pertinent obligations, then as a consequence you may
547 | not convey it at all. For example, if you agree to terms that obligate you
548 | to collect a royalty for further conveying from those to whom you convey
549 | the Program, the only way you could satisfy both those terms and this
550 | License would be to refrain entirely from conveying the Program.
551 |
552 | 13. Use with the GNU Affero General Public License.
553 |
554 | Notwithstanding any other provision of this License, you have
555 | permission to link or combine any covered work with a work licensed
556 | under version 3 of the GNU Affero General Public License into a single
557 | combined work, and to convey the resulting work. The terms of this
558 | License will continue to apply to the part which is the covered work,
559 | but the special requirements of the GNU Affero General Public License,
560 | section 13, concerning interaction through a network will apply to the
561 | combination as such.
562 |
563 | 14. Revised Versions of this License.
564 |
565 | The Free Software Foundation may publish revised and/or new versions of
566 | the GNU General Public License from time to time. Such new versions will
567 | be similar in spirit to the present version, but may differ in detail to
568 | address new problems or concerns.
569 |
570 | Each version is given a distinguishing version number. If the
571 | Program specifies that a certain numbered version of the GNU General
572 | Public License "or any later version" applies to it, you have the
573 | option of following the terms and conditions either of that numbered
574 | version or of any later version published by the Free Software
575 | Foundation. If the Program does not specify a version number of the
576 | GNU General Public License, you may choose any version ever published
577 | by the Free Software Foundation.
578 |
579 | If the Program specifies that a proxy can decide which future
580 | versions of the GNU General Public License can be used, that proxy's
581 | public statement of acceptance of a version permanently authorizes you
582 | to choose that version for the Program.
583 |
584 | Later license versions may give you additional or different
585 | permissions. However, no additional obligations are imposed on any
586 | author or copyright holder as a result of your choosing to follow a
587 | later version.
588 |
589 | 15. Disclaimer of Warranty.
590 |
591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
599 |
600 | 16. Limitation of Liability.
601 |
602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
610 | SUCH DAMAGES.
611 |
612 | 17. Interpretation of Sections 15 and 16.
613 |
614 | If the disclaimer of warranty and limitation of liability provided
615 | above cannot be given local legal effect according to their terms,
616 | reviewing courts shall apply local law that most closely approximates
617 | an absolute waiver of all civil liability in connection with the
618 | Program, unless a warranty or assumption of liability accompanies a
619 | copy of the Program in return for a fee.
620 |
621 | END OF TERMS AND CONDITIONS
622 |
623 | How to Apply These Terms to Your New Programs
624 |
625 | If you develop a new program, and you want it to be of the greatest
626 | possible use to the public, the best way to achieve this is to make it
627 | free software which everyone can redistribute and change under these terms.
628 |
629 | To do so, attach the following notices to the program. It is safest
630 | to attach them to the start of each source file to most effectively
631 | state the exclusion of warranty; and each file should have at least
632 | the "copyright" line and a pointer to where the full notice is found.
633 |
634 |
635 | Copyright (C)
636 |
637 | This program is free software: you can redistribute it and/or modify
638 | it under the terms of the GNU General Public License as published by
639 | the Free Software Foundation, either version 3 of the License, or
640 | (at your option) any later version.
641 |
642 | This program is distributed in the hope that it will be useful,
643 | but WITHOUT ANY WARRANTY; without even the implied warranty of
644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
645 | GNU General Public License for more details.
646 |
647 | You should have received a copy of the GNU General Public License
648 | along with this program. If not, see .
649 |
650 | Also add information on how to contact you by electronic and paper mail.
651 |
652 | If the program does terminal interaction, make it output a short
653 | notice like this when it starts in an interactive mode:
654 |
655 | Copyright (C)
656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
657 | This is free software, and you are welcome to redistribute it
658 | under certain conditions; type `show c' for details.
659 |
660 | The hypothetical commands `show w' and `show c' should show the appropriate
661 | parts of the General Public License. Of course, your program's commands
662 | might be different; for a GUI interface, you would use an "about box".
663 |
664 | You should also get your employer (if you work as a programmer) or school,
665 | if any, to sign a "copyright disclaimer" for the program, if necessary.
666 | For more information on this, and how to apply and follow the GNU GPL, see
667 | .
668 |
669 | The GNU General Public License does not permit incorporating your program
670 | into proprietary programs. If your program is a subroutine library, you
671 | may consider it more useful to permit linking proprietary applications with
672 | the library. If this is what you want to do, use the GNU Lesser General
673 | Public License instead of this License. But first, please read
674 | .
675 |
--------------------------------------------------------------------------------
/Makefile:
--------------------------------------------------------------------------------
1 | .PHONY: all clean
2 |
3 | ROOTDIR = /opt/n64
4 | GCCN64PREFIX = mips64-elf-
5 | CHKSUM64PATH = chksum64
6 | MKDFSPATH = mkdfs
7 | N64TOOL = n64tool
8 | LINK_FLAGS = -G0 -L$(ROOTDIR)/mips64-elf/lib --start-group -ldragon \
9 | -lc -lm -ldragonsys -Tn64ld.x \
10 | /opt/n64/lib/gcc/mips64-elf/8.2.0/libgcc.a --end-group
11 | CFLAGS = -O3 -march=vr4300 -G0 -Wall -Wextra -I$(ROOTDIR)/mips64-elf/include
12 | ASFLAGS = -mtune=vr4300 -march=vr4300
13 | CC = $(GCCN64PREFIX)gcc
14 | AS = $(GCCN64PREFIX)as
15 | LD = $(GCCN64PREFIX)ld
16 | OBJCOPY = $(GCCN64PREFIX)objcopy
17 |
18 | PROG_NAME = linux
19 |
20 | ROM_EXTENSION = .z64
21 | N64_FLAGS = -l 2M -h header -o $(PROG_NAME)$(ROM_EXTENSION) $(PROG_NAME).bin
22 |
23 | FILES = $(wildcard *.c)
24 | OBJS = $(FILES:.c=.o)
25 |
26 | all: $(PROG_NAME)$(ROM_EXTENSION)
27 |
28 | -include $(wildcard *.d)
29 |
30 | vmlinux = vmlinux.32
31 | mydisk = mydisk
32 |
33 | $(PROG_NAME)$(ROM_EXTENSION): $(PROG_NAME).elf util/size2bin
34 | @$(OBJCOPY) $(PROG_NAME).elf $(PROG_NAME).bin -O binary
35 | @rm -f $(PROG_NAME)$(ROM_EXTENSION)
36 | @util/size2bin $(vmlinux) size.bin
37 | @util/size2bin $(mydisk) disksize.bin
38 | @DISKOFF=$$(ls -l $(vmlinux) | awk '{print $$5}'); \
39 | DISKOFF=$$((((DISKOFF + 4095) & ~4095) + 1048576)); \
40 | $(N64TOOL) -t "Linux" $(N64_FLAGS) \
41 | -s 1048568B disksize.bin \
42 | -s 1048572B size.bin \
43 | -s 1M $(vmlinux) \
44 | -s $${DISKOFF}B $(mydisk)
45 | @$(CHKSUM64PATH) $(PROG_NAME)$(ROM_EXTENSION) > /dev/null
46 | @rm -f $(PROG_NAME).bin
47 |
48 | $(PROG_NAME).elf : $(OBJS)
49 | $(LD) -o $(PROG_NAME).elf $(OBJS) $(LINK_FLAGS)
50 |
51 | util/size2bin:
52 | $(MAKE) -C util
53 |
54 | clean:
55 | rm -f *.v64 *.z64 *.elf $(OBJS) *.bin
56 |
57 | %.o: %.c
58 | $(CC) $(CFLAGS) $(CPPFLAGS) -c $< -o $@
59 | @$(CC) -MM -MP $(CFLAGS) $(CPPFLAGS) $*.c -o $*.d > /dev/null &2>&1
60 |
--------------------------------------------------------------------------------
/header:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/clbr/n64bootloader/d817a04a611e6dfc8fe8d2703c2b950e30abbab5/header
--------------------------------------------------------------------------------
/main.c:
--------------------------------------------------------------------------------
1 | /* n64bootloader, a Linux bootloader for the N64
2 | Copyright (C) 2020 Lauri Kasanen
3 |
4 | This program is free software: you can redistribute it and/or modify
5 | it under the terms of the GNU General Public License as published by
6 | the Free Software Foundation, version 3 of the License.
7 |
8 | This program is distributed in the hope that it will be useful,
9 | but WITHOUT ANY WARRANTY; without even the implied warranty of
10 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 | GNU General Public License for more details.
12 |
13 | You should have received a copy of the GNU General Public License
14 | along with this program. If not, see .
15 | */
16 |
17 | #include
18 | #include
19 | #include
20 | #include
21 | #include
22 |
23 | typedef uint64_t u64;
24 | typedef unsigned int u32;
25 | typedef uint16_t u16;
26 | typedef uint8_t u8;
27 |
28 | typedef int64_t s64;
29 | typedef signed int s32;
30 | typedef int16_t s16;
31 | typedef int8_t s8;
32 |
33 | /* Type for a 16-bit quantity. */
34 | typedef uint16_t Elf32_Half;
35 |
36 | /* Types for signed and unsigned 32-bit quantities. */
37 | typedef uint32_t Elf32_Word;
38 | typedef int32_t Elf32_Sword;
39 |
40 | /* Types for signed and unsigned 64-bit quantities. */
41 | typedef uint64_t Elf32_Xword;
42 | typedef int64_t Elf32_Sxword;
43 |
44 | /* Type of addresses. */
45 | typedef uint32_t Elf32_Addr;
46 |
47 | /* Type of file offsets. */
48 | typedef uint32_t Elf32_Off;
49 |
50 | /* Type for section indices, which are 16-bit quantities. */
51 | typedef uint16_t Elf32_Section;
52 |
53 | /* Type for version symbol information. */
54 | typedef Elf32_Half Elf32_Versym;
55 |
56 | #define EI_NIDENT (16)
57 |
58 | #define EI_CLASS 4 /* File class byte index */
59 | #define ELFCLASSNONE 0 /* Invalid class */
60 | #define ELFCLASS32 1 /* 32-bit objects */
61 | #define ELFCLASS64 2 /* 64-bit objects */
62 | #define ELFCLASSNUM 3
63 |
64 | typedef struct
65 | {
66 | unsigned char e_ident[EI_NIDENT]; /* Magic number and other info */
67 | Elf32_Half e_type; /* Object file type */
68 | Elf32_Half e_machine; /* Architecture */
69 | Elf32_Word e_version; /* Object file version */
70 | Elf32_Addr e_entry; /* Entry point virtual address */
71 | Elf32_Off e_phoff; /* Program header table file offset */
72 | Elf32_Off e_shoff; /* Section header table file offset */
73 | Elf32_Word e_flags; /* Processor-specific flags */
74 | Elf32_Half e_ehsize; /* ELF header size in bytes */
75 | Elf32_Half e_phentsize; /* Program header table entry size */
76 | Elf32_Half e_phnum; /* Program header table entry count */
77 | Elf32_Half e_shentsize; /* Section header table entry size */
78 | Elf32_Half e_shnum; /* Section header table entry count */
79 | Elf32_Half e_shstrndx; /* Section header string table index */
80 | } Elf32_Ehdr;
81 |
82 | typedef struct
83 | {
84 | Elf32_Word p_type; /* Segment type */
85 | Elf32_Off p_offset; /* Segment file offset */
86 | Elf32_Addr p_vaddr; /* Segment virtual address */
87 | Elf32_Addr p_paddr; /* Segment physical address */
88 | Elf32_Word p_filesz; /* Segment size in file */
89 | Elf32_Word p_memsz; /* Segment size in memory */
90 | Elf32_Word p_flags; /* Segment flags */
91 | Elf32_Word p_align; /* Segment alignment */
92 | } Elf32_Phdr;
93 |
94 | volatile u32 frames;
95 |
96 | display_context_t lockVideo(int wait)
97 | {
98 | display_context_t dc;
99 |
100 | if (wait)
101 | while (!(dc = display_lock()));
102 | else
103 | dc = display_lock();
104 | return dc;
105 | }
106 |
107 | void unlockVideo(display_context_t dc)
108 | {
109 | if (dc)
110 | display_show(dc);
111 | }
112 |
113 | /* text functions */
114 | void printText(display_context_t dc, const char *msg, int x, int y)
115 | {
116 | if (dc)
117 | graphics_draw_text(dc, x*8, y*8, msg);
118 | }
119 |
120 | /* vblank callback */
121 | void vblCallback(void)
122 | {
123 | frames++;
124 | }
125 |
126 | void delay(u32 cnt)
127 | {
128 | u32 then = frames + cnt;
129 | while (then > frames);
130 | }
131 |
132 | /* initialize console hardware */
133 | void init_n64(void)
134 | {
135 | /* enable interrupts (on the CPU) */
136 | init_interrupts();
137 |
138 | /* Initialize peripherals */
139 | display_init(RESOLUTION_320x240, DEPTH_16_BPP, 2, GAMMA_NONE, ANTIALIAS_RESAMPLE);
140 |
141 | register_VI_handler(vblCallback);
142 | }
143 |
144 | extern int __bootcic;
145 |
146 | static display_context_t disp;
147 |
148 | static void err(const char msg[]) {
149 | u32 color;
150 |
151 | disp = lockVideo(1);
152 | color = graphics_make_color(0xCC, 0xCC, 0xCC, 0xFF);
153 | graphics_fill_screen(disp, color);
154 |
155 | color = graphics_make_color(0x00, 0x00, 0x00, 0xFF);
156 | graphics_set_color(color, 0);
157 | printText(disp, msg, 4, 5);
158 | unlockVideo(disp);
159 |
160 | while (1);
161 | }
162 |
163 | static u8 hdrbuf[256] __attribute__((aligned(8)));
164 |
165 | static const char * const args[] = { "hello",
166 | (const char *) hdrbuf,
167 | (const char *) hdrbuf + 128 };
168 | static const char * const env[] = { NULL };
169 |
170 | /* main code entry point */
171 | int main(void)
172 | {
173 | init_n64();
174 |
175 | const int osMemSize = (__bootcic != 6105) ? (*(int*)0xA0000318) : (*(int*)0xA00003F0);
176 | char buf[64];
177 |
178 | u32 color;
179 |
180 | disp = lockVideo(1);
181 | color = graphics_make_color(0xCC, 0xCC, 0xCC, 0xFF);
182 | graphics_fill_screen(disp, color);
183 |
184 | color = graphics_make_color(0x00, 0x00, 0x00, 0xFF);
185 | graphics_set_color(color, 0);
186 |
187 | if (osMemSize / 1024 / 1024 != 8) {
188 | printText(disp, "Expansion pak required", 4, 4);
189 |
190 | unlockVideo(disp);
191 |
192 | while (1);
193 | }
194 |
195 | u32 kernelsize __attribute__((aligned(8)));
196 | u32 disksize __attribute__((aligned(8)));
197 | data_cache_hit_writeback_invalidate(&kernelsize, 4);
198 | dma_read(&kernelsize, 0xB0101000 - 4, 4);
199 |
200 | data_cache_hit_writeback_invalidate(&disksize, 4);
201 | dma_read(&disksize, 0xB0101000 - 8, 4);
202 |
203 | if (!kernelsize) {
204 | printText(disp, "No kernel configured", 4, 4);
205 |
206 | unlockVideo(disp);
207 |
208 | while (1);
209 | }
210 |
211 | sprintf(buf, "Booting kernel %u kb, %u kb", kernelsize / 1024,
212 | disksize / 1024);
213 | printText(disp, buf, 4, 4);
214 |
215 | unlockVideo(disp);
216 | delay(1);
217 |
218 | disable_interrupts();
219 | set_VI_interrupt(0, 0);
220 |
221 | Elf32_Ehdr * const ptr = (Elf32_Ehdr *) hdrbuf;
222 |
223 | dma_read(ptr, 0xB0101000, 256);
224 | data_cache_hit_invalidate(ptr, 256);
225 |
226 | if (ptr->e_ident[1] != 'E' ||
227 | ptr->e_ident[2] != 'L' ||
228 | ptr->e_ident[3] != 'F')
229 | err("Not an ELF kernel?");
230 |
231 | if (ptr->e_ident[EI_CLASS] != ELFCLASS32)
232 | err("Not a 32-bit kernel?");
233 |
234 | // Where is it wanted?
235 | const Elf32_Phdr *phdr = (Elf32_Phdr *) (hdrbuf + ptr->e_phoff);
236 | while (phdr->p_type != 1) phdr++;
237 |
238 | // Put it there
239 | dma_read((void *) phdr->p_paddr, 0xB0101000 + phdr->p_offset,
240 | (phdr->p_filesz + 1) & ~1);
241 | data_cache_hit_invalidate((void *) phdr->p_paddr, (phdr->p_filesz + 3) & ~3);
242 |
243 | // Zero any extra memory desired
244 | if (phdr->p_filesz < phdr->p_memsz) {
245 | memset((void *) (phdr->p_paddr + phdr->p_filesz), 0,
246 | phdr->p_memsz - phdr->p_filesz);
247 | }
248 |
249 | void (*funcptr)(int, const char * const *, const char * const *, int *) = (void *) ptr->e_entry;
250 |
251 | // Fill out our disk info
252 | sprintf((char *) hdrbuf, "n64cart.start=%u", 0xB0101000 + ((kernelsize + 4095) & ~4095));
253 | sprintf((char *) hdrbuf + 128, "n64cart.size=%u", disksize);
254 |
255 | funcptr(sizeof(args) / sizeof(args[0]), args, env, NULL /* unused */);
256 |
257 | return 0;
258 | }
259 |
--------------------------------------------------------------------------------
/n64linux/README:
--------------------------------------------------------------------------------
1 | N64 Linux
2 | =========
3 |
4 | This is a port of Linux to the N64. Only native drivers for now,
5 | that is, no Everdrive or 64drive specials. Expansion pak required.
6 |
7 | As a 64-bit MIPS BE system, it can run 32- and 64-bit kernels. The kernel
8 | included in this ROM is 64-bit.
9 |
10 | The userspace ABI supported depends on the kernel. A 32-bit kernel
11 | supports O32, 64-bit supports everything (if enabled in config).
12 | The N32 ABI is the best one, giving 64-bit regs but 32-bit pointers.
13 |
14 | I found uclibc-ng was broken for MIPS N32, so I used musl. No toolchain
15 | supplied, bring your own.
16 |
17 | The port currently runs on modern LLE emulators such as Ares and
18 | dgb-n64. A heavily patched cen64 was used during development. Even with
19 | all the patches it's unstable and buggy in cen64, a big difference to hw.
20 |
21 | And yes, it's constantly flirting with OOM.
22 |
23 | Boot order
24 | ----------
25 |
26 | Bootloader -> kernel -> small built-in initramfs -> cart disk image
27 |
28 | The bootloader only needs to be recompiled if you want to change the
29 | command line. Otherwise you can drop in new kernels and disk images
30 | into the ROM, by truncating it to the first 1mb-8kb and using n64tool.
31 |
32 | Changing the built-in initramfs requires recompiling the kernel.
33 |
34 | Components in the ROM
35 | ---------------------
36 |
37 | Linux kernel v5.10 + my n64 branch, GPL
38 | musl 1.2.1, MIT
39 | evtest git fbd7ef6fb, GPL
40 | busybox git 07abc7c6f, GPL
41 | rote 0.2.8, LGPL
42 | ncurses 6.2, MIT
43 | my joyterm git, GPL
44 |
--------------------------------------------------------------------------------
/n64linux/n64-busybox-git-config:
--------------------------------------------------------------------------------
1 | #
2 | # Automatically generated make config: don't edit
3 | # Busybox version: 1.33.0.git
4 | # Wed Dec 23 19:09:26 2020
5 | #
6 | CONFIG_HAVE_DOT_CONFIG=y
7 |
8 | #
9 | # Settings
10 | #
11 | CONFIG_DESKTOP=y
12 | # CONFIG_EXTRA_COMPAT is not set
13 | # CONFIG_FEDORA_COMPAT is not set
14 | CONFIG_INCLUDE_SUSv2=y
15 | CONFIG_LONG_OPTS=y
16 | CONFIG_SHOW_USAGE=y
17 | CONFIG_FEATURE_VERBOSE_USAGE=y
18 | CONFIG_FEATURE_COMPRESS_USAGE=y
19 | CONFIG_LFS=y
20 | # CONFIG_PAM is not set
21 | CONFIG_FEATURE_DEVPTS=y
22 | # CONFIG_FEATURE_UTMP is not set
23 | # CONFIG_FEATURE_WTMP is not set
24 | # CONFIG_FEATURE_PIDFILE is not set
25 | CONFIG_PID_FILE_PATH=""
26 | CONFIG_BUSYBOX=y
27 | CONFIG_FEATURE_SHOW_SCRIPT=y
28 | # CONFIG_FEATURE_INSTALLER is not set
29 | CONFIG_INSTALL_NO_USR=y
30 | # CONFIG_FEATURE_SUID is not set
31 | # CONFIG_FEATURE_SUID_CONFIG is not set
32 | # CONFIG_FEATURE_SUID_CONFIG_QUIET is not set
33 | CONFIG_FEATURE_PREFER_APPLETS=y
34 | CONFIG_BUSYBOX_EXEC_PATH="/proc/self/exe"
35 | # CONFIG_SELINUX is not set
36 | # CONFIG_FEATURE_CLEAN_UP is not set
37 | # CONFIG_FEATURE_SYSLOG_INFO is not set
38 | # CONFIG_FEATURE_SYSLOG is not set
39 |
40 | #
41 | # Build Options
42 | #
43 | # CONFIG_STATIC is not set
44 | # CONFIG_PIE is not set
45 | # CONFIG_NOMMU is not set
46 | # CONFIG_BUILD_LIBBUSYBOX is not set
47 | # CONFIG_FEATURE_LIBBUSYBOX_STATIC is not set
48 | # CONFIG_FEATURE_INDIVIDUAL is not set
49 | # CONFIG_FEATURE_SHARED_BUSYBOX is not set
50 | CONFIG_CROSS_COMPILER_PREFIX=""
51 | CONFIG_SYSROOT=""
52 | CONFIG_EXTRA_CFLAGS=""
53 | CONFIG_EXTRA_LDFLAGS=""
54 | CONFIG_EXTRA_LDLIBS=""
55 | # CONFIG_USE_PORTABLE_CODE is not set
56 | CONFIG_STACK_OPTIMIZATION_386=y
57 | CONFIG_STATIC_LIBGCC=y
58 |
59 | #
60 | # Installation Options ("make install" behavior)
61 | #
62 | CONFIG_INSTALL_APPLET_SYMLINKS=y
63 | # CONFIG_INSTALL_APPLET_HARDLINKS is not set
64 | # CONFIG_INSTALL_APPLET_SCRIPT_WRAPPERS is not set
65 | # CONFIG_INSTALL_APPLET_DONT is not set
66 | # CONFIG_INSTALL_SH_APPLET_SYMLINK is not set
67 | # CONFIG_INSTALL_SH_APPLET_HARDLINK is not set
68 | # CONFIG_INSTALL_SH_APPLET_SCRIPT_WRAPPER is not set
69 | CONFIG_PREFIX="./_install"
70 |
71 | #
72 | # Debugging Options
73 | #
74 | # CONFIG_DEBUG is not set
75 | # CONFIG_DEBUG_PESSIMIZE is not set
76 | # CONFIG_DEBUG_SANITIZE is not set
77 | # CONFIG_UNIT_TEST is not set
78 | # CONFIG_WERROR is not set
79 | # CONFIG_WARN_SIMPLE_MSG is not set
80 | CONFIG_NO_DEBUG_LIB=y
81 | # CONFIG_DMALLOC is not set
82 | # CONFIG_EFENCE is not set
83 |
84 | #
85 | # Library Tuning
86 | #
87 | # CONFIG_FEATURE_USE_BSS_TAIL is not set
88 | # CONFIG_FLOAT_DURATION is not set
89 | # CONFIG_FEATURE_RTMINMAX is not set
90 | # CONFIG_FEATURE_RTMINMAX_USE_LIBC_DEFINITIONS is not set
91 | CONFIG_FEATURE_BUFFERS_USE_MALLOC=y
92 | # CONFIG_FEATURE_BUFFERS_GO_ON_STACK is not set
93 | # CONFIG_FEATURE_BUFFERS_GO_IN_BSS is not set
94 | CONFIG_PASSWORD_MINLEN=6
95 | CONFIG_MD5_SMALL=1
96 | CONFIG_SHA3_SMALL=1
97 | CONFIG_FEATURE_FAST_TOP=y
98 | # CONFIG_FEATURE_ETC_NETWORKS is not set
99 | # CONFIG_FEATURE_ETC_SERVICES is not set
100 | CONFIG_FEATURE_EDITING=y
101 | CONFIG_FEATURE_EDITING_MAX_LEN=1024
102 | # CONFIG_FEATURE_EDITING_VI is not set
103 | CONFIG_FEATURE_EDITING_HISTORY=255
104 | # CONFIG_FEATURE_EDITING_SAVEHISTORY is not set
105 | # CONFIG_FEATURE_EDITING_SAVE_ON_EXIT is not set
106 | # CONFIG_FEATURE_REVERSE_SEARCH is not set
107 | CONFIG_FEATURE_TAB_COMPLETION=y
108 | # CONFIG_FEATURE_USERNAME_COMPLETION is not set
109 | CONFIG_FEATURE_EDITING_FANCY_PROMPT=y
110 | CONFIG_FEATURE_EDITING_WINCH=y
111 | # CONFIG_FEATURE_EDITING_ASK_TERMINAL is not set
112 | # CONFIG_LOCALE_SUPPORT is not set
113 | # CONFIG_UNICODE_SUPPORT is not set
114 | # CONFIG_UNICODE_USING_LOCALE is not set
115 | # CONFIG_FEATURE_CHECK_UNICODE_IN_ENV is not set
116 | CONFIG_SUBST_WCHAR=0
117 | CONFIG_LAST_SUPPORTED_WCHAR=0
118 | # CONFIG_UNICODE_COMBINING_WCHARS is not set
119 | # CONFIG_UNICODE_WIDE_WCHARS is not set
120 | # CONFIG_UNICODE_BIDI_SUPPORT is not set
121 | # CONFIG_UNICODE_NEUTRAL_TABLE is not set
122 | # CONFIG_UNICODE_PRESERVE_BROKEN is not set
123 | CONFIG_FEATURE_NON_POSIX_CP=y
124 | # CONFIG_FEATURE_VERBOSE_CP_MESSAGE is not set
125 | CONFIG_FEATURE_USE_SENDFILE=y
126 | CONFIG_FEATURE_COPYBUF_KB=4
127 | # CONFIG_FEATURE_SKIP_ROOTFS is not set
128 | CONFIG_MONOTONIC_SYSCALL=y
129 | CONFIG_IOCTL_HEX2STR_ERROR=y
130 | # CONFIG_FEATURE_HWIB is not set
131 |
132 | #
133 | # Applets
134 | #
135 |
136 | #
137 | # Archival Utilities
138 | #
139 | # CONFIG_FEATURE_SEAMLESS_XZ is not set
140 | # CONFIG_FEATURE_SEAMLESS_LZMA is not set
141 | # CONFIG_FEATURE_SEAMLESS_BZ2 is not set
142 | # CONFIG_FEATURE_SEAMLESS_GZ is not set
143 | # CONFIG_FEATURE_SEAMLESS_Z is not set
144 | # CONFIG_AR is not set
145 | # CONFIG_FEATURE_AR_LONG_FILENAMES is not set
146 | # CONFIG_FEATURE_AR_CREATE is not set
147 | # CONFIG_UNCOMPRESS is not set
148 | # CONFIG_GUNZIP is not set
149 | # CONFIG_ZCAT is not set
150 | # CONFIG_FEATURE_GUNZIP_LONG_OPTIONS is not set
151 | # CONFIG_BUNZIP2 is not set
152 | # CONFIG_BZCAT is not set
153 | # CONFIG_UNLZMA is not set
154 | # CONFIG_LZCAT is not set
155 | # CONFIG_LZMA is not set
156 | # CONFIG_UNXZ is not set
157 | # CONFIG_XZCAT is not set
158 | # CONFIG_XZ is not set
159 | # CONFIG_BZIP2 is not set
160 | CONFIG_BZIP2_SMALL=0
161 | # CONFIG_FEATURE_BZIP2_DECOMPRESS is not set
162 | # CONFIG_CPIO is not set
163 | # CONFIG_FEATURE_CPIO_O is not set
164 | # CONFIG_FEATURE_CPIO_P is not set
165 | # CONFIG_DPKG is not set
166 | # CONFIG_DPKG_DEB is not set
167 | # CONFIG_GZIP is not set
168 | # CONFIG_FEATURE_GZIP_LONG_OPTIONS is not set
169 | CONFIG_GZIP_FAST=0
170 | # CONFIG_FEATURE_GZIP_LEVELS is not set
171 | # CONFIG_FEATURE_GZIP_DECOMPRESS is not set
172 | # CONFIG_LZOP is not set
173 | # CONFIG_UNLZOP is not set
174 | # CONFIG_LZOPCAT is not set
175 | # CONFIG_LZOP_COMPR_HIGH is not set
176 | # CONFIG_RPM is not set
177 | # CONFIG_RPM2CPIO is not set
178 | # CONFIG_TAR is not set
179 | # CONFIG_FEATURE_TAR_LONG_OPTIONS is not set
180 | # CONFIG_FEATURE_TAR_CREATE is not set
181 | # CONFIG_FEATURE_TAR_AUTODETECT is not set
182 | # CONFIG_FEATURE_TAR_FROM is not set
183 | # CONFIG_FEATURE_TAR_OLDGNU_COMPATIBILITY is not set
184 | # CONFIG_FEATURE_TAR_OLDSUN_COMPATIBILITY is not set
185 | # CONFIG_FEATURE_TAR_GNU_EXTENSIONS is not set
186 | # CONFIG_FEATURE_TAR_TO_COMMAND is not set
187 | # CONFIG_FEATURE_TAR_UNAME_GNAME is not set
188 | # CONFIG_FEATURE_TAR_NOPRESERVE_TIME is not set
189 | # CONFIG_FEATURE_TAR_SELINUX is not set
190 | # CONFIG_UNZIP is not set
191 | # CONFIG_FEATURE_UNZIP_CDF is not set
192 | # CONFIG_FEATURE_UNZIP_BZIP2 is not set
193 | # CONFIG_FEATURE_UNZIP_LZMA is not set
194 | # CONFIG_FEATURE_UNZIP_XZ is not set
195 | # CONFIG_FEATURE_LZMA_FAST is not set
196 |
197 | #
198 | # Coreutils
199 | #
200 | CONFIG_BASENAME=y
201 | CONFIG_CAT=y
202 | CONFIG_FEATURE_CATN=y
203 | CONFIG_FEATURE_CATV=y
204 | # CONFIG_CHGRP is not set
205 | # CONFIG_CHMOD is not set
206 | # CONFIG_CHOWN is not set
207 | # CONFIG_FEATURE_CHOWN_LONG_OPTIONS is not set
208 | # CONFIG_CHROOT is not set
209 | # CONFIG_CKSUM is not set
210 | # CONFIG_COMM is not set
211 | CONFIG_CP=y
212 | CONFIG_FEATURE_CP_LONG_OPTIONS=y
213 | # CONFIG_FEATURE_CP_REFLINK is not set
214 | CONFIG_CUT=y
215 | CONFIG_DATE=y
216 | CONFIG_FEATURE_DATE_ISOFMT=y
217 | # CONFIG_FEATURE_DATE_NANO is not set
218 | CONFIG_FEATURE_DATE_COMPAT=y
219 | CONFIG_DD=y
220 | CONFIG_FEATURE_DD_SIGNAL_HANDLING=y
221 | CONFIG_FEATURE_DD_THIRD_STATUS_LINE=y
222 | CONFIG_FEATURE_DD_IBS_OBS=y
223 | CONFIG_FEATURE_DD_STATUS=y
224 | CONFIG_DF=y
225 | CONFIG_FEATURE_DF_FANCY=y
226 | CONFIG_DIRNAME=y
227 | # CONFIG_DOS2UNIX is not set
228 | # CONFIG_UNIX2DOS is not set
229 | CONFIG_DU=y
230 | CONFIG_FEATURE_DU_DEFAULT_BLOCKSIZE_1K=y
231 | CONFIG_ECHO=y
232 | CONFIG_FEATURE_FANCY_ECHO=y
233 | CONFIG_ENV=y
234 | CONFIG_EXPAND=y
235 | CONFIG_UNEXPAND=y
236 | CONFIG_EXPR=y
237 | CONFIG_EXPR_MATH_SUPPORT_64=y
238 | # CONFIG_FACTOR is not set
239 | CONFIG_FALSE=y
240 | # CONFIG_FOLD is not set
241 | CONFIG_HEAD=y
242 | CONFIG_FEATURE_FANCY_HEAD=y
243 | # CONFIG_HOSTID is not set
244 | # CONFIG_ID is not set
245 | # CONFIG_GROUPS is not set
246 | # CONFIG_INSTALL is not set
247 | # CONFIG_FEATURE_INSTALL_LONG_OPTIONS is not set
248 | # CONFIG_LINK is not set
249 | CONFIG_LN=y
250 | # CONFIG_LOGNAME is not set
251 | CONFIG_LS=y
252 | CONFIG_FEATURE_LS_FILETYPES=y
253 | CONFIG_FEATURE_LS_FOLLOWLINKS=y
254 | CONFIG_FEATURE_LS_RECURSIVE=y
255 | CONFIG_FEATURE_LS_WIDTH=y
256 | CONFIG_FEATURE_LS_SORTFILES=y
257 | CONFIG_FEATURE_LS_TIMESTAMPS=y
258 | CONFIG_FEATURE_LS_USERNAME=y
259 | CONFIG_FEATURE_LS_COLOR=y
260 | CONFIG_FEATURE_LS_COLOR_IS_DEFAULT=y
261 | # CONFIG_MD5SUM is not set
262 | # CONFIG_SHA1SUM is not set
263 | # CONFIG_SHA256SUM is not set
264 | # CONFIG_SHA512SUM is not set
265 | # CONFIG_SHA3SUM is not set
266 | # CONFIG_FEATURE_MD5_SHA1_SUM_CHECK is not set
267 | CONFIG_MKDIR=y
268 | # CONFIG_MKFIFO is not set
269 | CONFIG_MKNOD=y
270 | CONFIG_MKTEMP=y
271 | CONFIG_MV=y
272 | CONFIG_NICE=y
273 | # CONFIG_NL is not set
274 | # CONFIG_NOHUP is not set
275 | # CONFIG_NPROC is not set
276 | CONFIG_OD=y
277 | # CONFIG_PASTE is not set
278 | # CONFIG_PRINTENV is not set
279 | CONFIG_PRINTF=y
280 | CONFIG_PWD=y
281 | CONFIG_READLINK=y
282 | CONFIG_FEATURE_READLINK_FOLLOW=y
283 | CONFIG_REALPATH=y
284 | CONFIG_RM=y
285 | CONFIG_RMDIR=y
286 | CONFIG_SEQ=y
287 | # CONFIG_SHRED is not set
288 | # CONFIG_SHUF is not set
289 | CONFIG_SLEEP=y
290 | CONFIG_FEATURE_FANCY_SLEEP=y
291 | CONFIG_SORT=y
292 | CONFIG_FEATURE_SORT_BIG=y
293 | # CONFIG_FEATURE_SORT_OPTIMIZE_MEMORY is not set
294 | # CONFIG_SPLIT is not set
295 | # CONFIG_FEATURE_SPLIT_FANCY is not set
296 | CONFIG_STAT=y
297 | CONFIG_FEATURE_STAT_FORMAT=y
298 | CONFIG_FEATURE_STAT_FILESYSTEM=y
299 | CONFIG_STTY=y
300 | # CONFIG_SUM is not set
301 | CONFIG_SYNC=y
302 | # CONFIG_FEATURE_SYNC_FANCY is not set
303 | # CONFIG_FSYNC is not set
304 | # CONFIG_TAC is not set
305 | CONFIG_TAIL=y
306 | CONFIG_FEATURE_FANCY_TAIL=y
307 | CONFIG_TEE=y
308 | CONFIG_FEATURE_TEE_USE_BLOCK_IO=y
309 | CONFIG_TEST=y
310 | CONFIG_TEST1=y
311 | CONFIG_TEST2=y
312 | # CONFIG_FEATURE_TEST_64 is not set
313 | # CONFIG_TIMEOUT is not set
314 | CONFIG_TOUCH=y
315 | CONFIG_FEATURE_TOUCH_NODEREF=y
316 | CONFIG_FEATURE_TOUCH_SUSV3=y
317 | CONFIG_TR=y
318 | CONFIG_FEATURE_TR_CLASSES=y
319 | CONFIG_FEATURE_TR_EQUIV=y
320 | CONFIG_TRUE=y
321 | # CONFIG_TRUNCATE is not set
322 | CONFIG_TTY=y
323 | CONFIG_UNAME=y
324 | CONFIG_UNAME_OSNAME="GNU/Linux"
325 | CONFIG_BB_ARCH=y
326 | CONFIG_UNIQ=y
327 | CONFIG_UNLINK=y
328 | CONFIG_USLEEP=y
329 | # CONFIG_UUDECODE is not set
330 | # CONFIG_BASE32 is not set
331 | # CONFIG_BASE64 is not set
332 | # CONFIG_UUENCODE is not set
333 | CONFIG_WC=y
334 | CONFIG_FEATURE_WC_LARGE=y
335 | CONFIG_WHOAMI=y
336 | # CONFIG_WHO is not set
337 | # CONFIG_W is not set
338 | # CONFIG_USERS is not set
339 | CONFIG_YES=y
340 |
341 | #
342 | # Common options
343 | #
344 | CONFIG_FEATURE_VERBOSE=y
345 |
346 | #
347 | # Common options for cp and mv
348 | #
349 | CONFIG_FEATURE_PRESERVE_HARDLINKS=y
350 |
351 | #
352 | # Common options for df, du, ls
353 | #
354 | CONFIG_FEATURE_HUMAN_READABLE=y
355 |
356 | #
357 | # Console Utilities
358 | #
359 | CONFIG_CHVT=y
360 | CONFIG_CLEAR=y
361 | CONFIG_DEALLOCVT=y
362 | # CONFIG_DUMPKMAP is not set
363 | # CONFIG_FGCONSOLE is not set
364 | # CONFIG_KBD_MODE is not set
365 | # CONFIG_LOADFONT is not set
366 | # CONFIG_SETFONT is not set
367 | # CONFIG_FEATURE_SETFONT_TEXTUAL_MAP is not set
368 | CONFIG_DEFAULT_SETFONT_DIR=""
369 | # CONFIG_FEATURE_LOADFONT_PSF2 is not set
370 | # CONFIG_FEATURE_LOADFONT_RAW is not set
371 | # CONFIG_LOADKMAP is not set
372 | CONFIG_OPENVT=y
373 | CONFIG_RESET=y
374 | CONFIG_RESIZE=y
375 | CONFIG_FEATURE_RESIZE_PRINT=y
376 | # CONFIG_SETCONSOLE is not set
377 | # CONFIG_FEATURE_SETCONSOLE_LONG_OPTIONS is not set
378 | # CONFIG_SETKEYCODES is not set
379 | # CONFIG_SETLOGCONS is not set
380 | # CONFIG_SHOWKEY is not set
381 |
382 | #
383 | # Debian Utilities
384 | #
385 | # CONFIG_PIPE_PROGRESS is not set
386 | # CONFIG_RUN_PARTS is not set
387 | # CONFIG_FEATURE_RUN_PARTS_LONG_OPTIONS is not set
388 | # CONFIG_FEATURE_RUN_PARTS_FANCY is not set
389 | # CONFIG_START_STOP_DAEMON is not set
390 | # CONFIG_FEATURE_START_STOP_DAEMON_LONG_OPTIONS is not set
391 | # CONFIG_FEATURE_START_STOP_DAEMON_FANCY is not set
392 | CONFIG_WHICH=y
393 |
394 | #
395 | # klibc-utils
396 | #
397 | # CONFIG_MINIPS is not set
398 | # CONFIG_NUKE is not set
399 | # CONFIG_RESUME is not set
400 | # CONFIG_RUN_INIT is not set
401 |
402 | #
403 | # Editors
404 | #
405 | CONFIG_AWK=y
406 | CONFIG_FEATURE_AWK_LIBM=y
407 | CONFIG_FEATURE_AWK_GNU_EXTENSIONS=y
408 | CONFIG_CMP=y
409 | CONFIG_DIFF=y
410 | CONFIG_FEATURE_DIFF_LONG_OPTIONS=y
411 | CONFIG_FEATURE_DIFF_DIR=y
412 | # CONFIG_ED is not set
413 | CONFIG_PATCH=y
414 | CONFIG_SED=y
415 | # CONFIG_VI is not set
416 | CONFIG_FEATURE_VI_MAX_LEN=0
417 | # CONFIG_FEATURE_VI_8BIT is not set
418 | # CONFIG_FEATURE_VI_COLON is not set
419 | # CONFIG_FEATURE_VI_YANKMARK is not set
420 | # CONFIG_FEATURE_VI_SEARCH is not set
421 | # CONFIG_FEATURE_VI_REGEX_SEARCH is not set
422 | # CONFIG_FEATURE_VI_USE_SIGNALS is not set
423 | # CONFIG_FEATURE_VI_DOT_CMD is not set
424 | # CONFIG_FEATURE_VI_READONLY is not set
425 | # CONFIG_FEATURE_VI_SETOPTS is not set
426 | # CONFIG_FEATURE_VI_SET is not set
427 | # CONFIG_FEATURE_VI_WIN_RESIZE is not set
428 | # CONFIG_FEATURE_VI_ASK_TERMINAL is not set
429 | # CONFIG_FEATURE_VI_UNDO is not set
430 | # CONFIG_FEATURE_VI_UNDO_QUEUE is not set
431 | CONFIG_FEATURE_VI_UNDO_QUEUE_MAX=0
432 | CONFIG_FEATURE_ALLOW_EXEC=y
433 |
434 | #
435 | # Finding Utilities
436 | #
437 | CONFIG_FIND=y
438 | CONFIG_FEATURE_FIND_PRINT0=y
439 | CONFIG_FEATURE_FIND_MTIME=y
440 | CONFIG_FEATURE_FIND_MMIN=y
441 | CONFIG_FEATURE_FIND_PERM=y
442 | CONFIG_FEATURE_FIND_TYPE=y
443 | CONFIG_FEATURE_FIND_EXECUTABLE=y
444 | CONFIG_FEATURE_FIND_XDEV=y
445 | CONFIG_FEATURE_FIND_MAXDEPTH=y
446 | CONFIG_FEATURE_FIND_NEWER=y
447 | CONFIG_FEATURE_FIND_INUM=y
448 | CONFIG_FEATURE_FIND_EXEC=y
449 | CONFIG_FEATURE_FIND_EXEC_PLUS=y
450 | CONFIG_FEATURE_FIND_USER=y
451 | CONFIG_FEATURE_FIND_GROUP=y
452 | CONFIG_FEATURE_FIND_NOT=y
453 | CONFIG_FEATURE_FIND_DEPTH=y
454 | CONFIG_FEATURE_FIND_PAREN=y
455 | CONFIG_FEATURE_FIND_SIZE=y
456 | CONFIG_FEATURE_FIND_PRUNE=y
457 | CONFIG_FEATURE_FIND_QUIT=y
458 | CONFIG_FEATURE_FIND_DELETE=y
459 | CONFIG_FEATURE_FIND_EMPTY=y
460 | CONFIG_FEATURE_FIND_PATH=y
461 | CONFIG_FEATURE_FIND_REGEX=y
462 | # CONFIG_FEATURE_FIND_CONTEXT is not set
463 | CONFIG_FEATURE_FIND_LINKS=y
464 | CONFIG_GREP=y
465 | CONFIG_EGREP=y
466 | CONFIG_FGREP=y
467 | CONFIG_FEATURE_GREP_CONTEXT=y
468 | CONFIG_XARGS=y
469 | CONFIG_FEATURE_XARGS_SUPPORT_CONFIRMATION=y
470 | CONFIG_FEATURE_XARGS_SUPPORT_QUOTES=y
471 | CONFIG_FEATURE_XARGS_SUPPORT_TERMOPT=y
472 | CONFIG_FEATURE_XARGS_SUPPORT_ZERO_TERM=y
473 | CONFIG_FEATURE_XARGS_SUPPORT_REPL_STR=y
474 | CONFIG_FEATURE_XARGS_SUPPORT_PARALLEL=y
475 | CONFIG_FEATURE_XARGS_SUPPORT_ARGS_FILE=y
476 |
477 | #
478 | # Init Utilities
479 | #
480 | # CONFIG_BOOTCHARTD is not set
481 | # CONFIG_FEATURE_BOOTCHARTD_BLOATED_HEADER is not set
482 | # CONFIG_FEATURE_BOOTCHARTD_CONFIG_FILE is not set
483 | # CONFIG_HALT is not set
484 | # CONFIG_POWEROFF is not set
485 | # CONFIG_REBOOT is not set
486 | # CONFIG_FEATURE_WAIT_FOR_INIT is not set
487 | # CONFIG_FEATURE_CALL_TELINIT is not set
488 | CONFIG_TELINIT_PATH=""
489 | # CONFIG_INIT is not set
490 | # CONFIG_LINUXRC is not set
491 | # CONFIG_FEATURE_USE_INITTAB is not set
492 | # CONFIG_FEATURE_KILL_REMOVED is not set
493 | CONFIG_FEATURE_KILL_DELAY=0
494 | # CONFIG_FEATURE_INIT_SCTTY is not set
495 | # CONFIG_FEATURE_INIT_SYSLOG is not set
496 | # CONFIG_FEATURE_INIT_QUIET is not set
497 | # CONFIG_FEATURE_INIT_COREDUMPS is not set
498 | CONFIG_INIT_TERMINAL_TYPE=""
499 | # CONFIG_FEATURE_INIT_MODIFY_CMDLINE is not set
500 |
501 | #
502 | # Login/Password Management Utilities
503 | #
504 | # CONFIG_FEATURE_SHADOWPASSWDS is not set
505 | # CONFIG_USE_BB_PWD_GRP is not set
506 | # CONFIG_USE_BB_SHADOW is not set
507 | # CONFIG_USE_BB_CRYPT is not set
508 | # CONFIG_USE_BB_CRYPT_SHA is not set
509 | # CONFIG_ADDGROUP is not set
510 | # CONFIG_FEATURE_ADDUSER_TO_GROUP is not set
511 | # CONFIG_ADD_SHELL is not set
512 | # CONFIG_REMOVE_SHELL is not set
513 | # CONFIG_ADDUSER is not set
514 | # CONFIG_FEATURE_CHECK_NAMES is not set
515 | CONFIG_LAST_ID=0
516 | CONFIG_FIRST_SYSTEM_ID=0
517 | CONFIG_LAST_SYSTEM_ID=0
518 | # CONFIG_CHPASSWD is not set
519 | CONFIG_FEATURE_DEFAULT_PASSWD_ALGO=""
520 | # CONFIG_CRYPTPW is not set
521 | # CONFIG_MKPASSWD is not set
522 | # CONFIG_DELUSER is not set
523 | # CONFIG_DELGROUP is not set
524 | # CONFIG_FEATURE_DEL_USER_FROM_GROUP is not set
525 | # CONFIG_GETTY is not set
526 | # CONFIG_LOGIN is not set
527 | # CONFIG_LOGIN_SESSION_AS_CHILD is not set
528 | # CONFIG_LOGIN_SCRIPTS is not set
529 | # CONFIG_FEATURE_NOLOGIN is not set
530 | # CONFIG_FEATURE_SECURETTY is not set
531 | # CONFIG_PASSWD is not set
532 | # CONFIG_FEATURE_PASSWD_WEAK_CHECK is not set
533 | # CONFIG_SU is not set
534 | # CONFIG_FEATURE_SU_SYSLOG is not set
535 | # CONFIG_FEATURE_SU_CHECKS_SHELLS is not set
536 | # CONFIG_FEATURE_SU_BLANK_PW_NEEDS_SECURE_TTY is not set
537 | # CONFIG_SULOGIN is not set
538 | # CONFIG_VLOCK is not set
539 |
540 | #
541 | # Linux Ext2 FS Progs
542 | #
543 | # CONFIG_CHATTR is not set
544 | # CONFIG_FSCK is not set
545 | # CONFIG_LSATTR is not set
546 | # CONFIG_TUNE2FS is not set
547 |
548 | #
549 | # Linux Module Utilities
550 | #
551 | # CONFIG_MODPROBE_SMALL is not set
552 | # CONFIG_DEPMOD is not set
553 | # CONFIG_INSMOD is not set
554 | # CONFIG_LSMOD is not set
555 | # CONFIG_FEATURE_LSMOD_PRETTY_2_6_OUTPUT is not set
556 | # CONFIG_MODINFO is not set
557 | # CONFIG_MODPROBE is not set
558 | # CONFIG_FEATURE_MODPROBE_BLACKLIST is not set
559 | # CONFIG_RMMOD is not set
560 |
561 | #
562 | # Options common to multiple modutils
563 | #
564 | # CONFIG_FEATURE_CMDLINE_MODULE_OPTIONS is not set
565 | # CONFIG_FEATURE_MODPROBE_SMALL_CHECK_ALREADY_LOADED is not set
566 | # CONFIG_FEATURE_2_4_MODULES is not set
567 | # CONFIG_FEATURE_INSMOD_VERSION_CHECKING is not set
568 | # CONFIG_FEATURE_INSMOD_KSYMOOPS_SYMBOLS is not set
569 | # CONFIG_FEATURE_INSMOD_LOADINKMEM is not set
570 | # CONFIG_FEATURE_INSMOD_LOAD_MAP is not set
571 | # CONFIG_FEATURE_INSMOD_LOAD_MAP_FULL is not set
572 | # CONFIG_FEATURE_CHECK_TAINTED_MODULE is not set
573 | # CONFIG_FEATURE_INSMOD_TRY_MMAP is not set
574 | # CONFIG_FEATURE_MODUTILS_ALIAS is not set
575 | # CONFIG_FEATURE_MODUTILS_SYMBOLS is not set
576 | CONFIG_DEFAULT_MODULES_DIR=""
577 | CONFIG_DEFAULT_DEPMOD_FILE=""
578 |
579 | #
580 | # Linux System Utilities
581 | #
582 | # CONFIG_ACPID is not set
583 | # CONFIG_FEATURE_ACPID_COMPAT is not set
584 | # CONFIG_BLKDISCARD is not set
585 | CONFIG_BLKID=y
586 | CONFIG_FEATURE_BLKID_TYPE=y
587 | # CONFIG_BLOCKDEV is not set
588 | CONFIG_CAL=y
589 | # CONFIG_CHRT is not set
590 | CONFIG_DMESG=y
591 | CONFIG_FEATURE_DMESG_PRETTY=y
592 | # CONFIG_EJECT is not set
593 | # CONFIG_FEATURE_EJECT_SCSI is not set
594 | # CONFIG_FALLOCATE is not set
595 | # CONFIG_FATATTR is not set
596 | CONFIG_FBSET=y
597 | CONFIG_FEATURE_FBSET_FANCY=y
598 | CONFIG_FEATURE_FBSET_READMODE=y
599 | # CONFIG_FDFORMAT is not set
600 | # CONFIG_FDISK is not set
601 | # CONFIG_FDISK_SUPPORT_LARGE_DISKS is not set
602 | # CONFIG_FEATURE_FDISK_WRITABLE is not set
603 | # CONFIG_FEATURE_AIX_LABEL is not set
604 | # CONFIG_FEATURE_SGI_LABEL is not set
605 | # CONFIG_FEATURE_SUN_LABEL is not set
606 | # CONFIG_FEATURE_OSF_LABEL is not set
607 | # CONFIG_FEATURE_GPT_LABEL is not set
608 | # CONFIG_FEATURE_FDISK_ADVANCED is not set
609 | # CONFIG_FINDFS is not set
610 | # CONFIG_FLOCK is not set
611 | # CONFIG_FDFLUSH is not set
612 | # CONFIG_FREERAMDISK is not set
613 | # CONFIG_FSCK_MINIX is not set
614 | # CONFIG_FSFREEZE is not set
615 | # CONFIG_FSTRIM is not set
616 | CONFIG_GETOPT=y
617 | CONFIG_FEATURE_GETOPT_LONG=y
618 | CONFIG_HEXDUMP=y
619 | # CONFIG_HD is not set
620 | # CONFIG_XXD is not set
621 | CONFIG_HWCLOCK=y
622 | # CONFIG_FEATURE_HWCLOCK_ADJTIME_FHS is not set
623 | CONFIG_IONICE=y
624 | # CONFIG_IPCRM is not set
625 | # CONFIG_IPCS is not set
626 | # CONFIG_LAST is not set
627 | # CONFIG_FEATURE_LAST_FANCY is not set
628 | CONFIG_LOSETUP=y
629 | # CONFIG_LSPCI is not set
630 | # CONFIG_LSUSB is not set
631 | # CONFIG_MDEV is not set
632 | # CONFIG_FEATURE_MDEV_CONF is not set
633 | # CONFIG_FEATURE_MDEV_RENAME is not set
634 | # CONFIG_FEATURE_MDEV_RENAME_REGEXP is not set
635 | # CONFIG_FEATURE_MDEV_EXEC is not set
636 | # CONFIG_FEATURE_MDEV_LOAD_FIRMWARE is not set
637 | # CONFIG_FEATURE_MDEV_DAEMON is not set
638 | # CONFIG_MESG is not set
639 | # CONFIG_FEATURE_MESG_ENABLE_ONLY_GROUP is not set
640 | # CONFIG_MKE2FS is not set
641 | # CONFIG_MKFS_EXT2 is not set
642 | # CONFIG_MKFS_MINIX is not set
643 | # CONFIG_FEATURE_MINIX2 is not set
644 | # CONFIG_MKFS_REISER is not set
645 | # CONFIG_MKDOSFS is not set
646 | # CONFIG_MKFS_VFAT is not set
647 | # CONFIG_MKSWAP is not set
648 | # CONFIG_FEATURE_MKSWAP_UUID is not set
649 | CONFIG_MORE=y
650 | CONFIG_MOUNT=y
651 | # CONFIG_FEATURE_MOUNT_FAKE is not set
652 | CONFIG_FEATURE_MOUNT_VERBOSE=y
653 | # CONFIG_FEATURE_MOUNT_HELPERS is not set
654 | # CONFIG_FEATURE_MOUNT_LABEL is not set
655 | # CONFIG_FEATURE_MOUNT_NFS is not set
656 | # CONFIG_FEATURE_MOUNT_CIFS is not set
657 | CONFIG_FEATURE_MOUNT_FLAGS=y
658 | CONFIG_FEATURE_MOUNT_FSTAB=y
659 | # CONFIG_FEATURE_MOUNT_OTHERTAB is not set
660 | CONFIG_MOUNTPOINT=y
661 | # CONFIG_NOLOGIN is not set
662 | # CONFIG_NOLOGIN_DEPENDENCIES is not set
663 | # CONFIG_NSENTER is not set
664 | # CONFIG_PIVOT_ROOT is not set
665 | # CONFIG_RDATE is not set
666 | # CONFIG_RDEV is not set
667 | # CONFIG_READPROFILE is not set
668 | CONFIG_RENICE=y
669 | # CONFIG_REV is not set
670 | # CONFIG_RTCWAKE is not set
671 | # CONFIG_SCRIPT is not set
672 | # CONFIG_SCRIPTREPLAY is not set
673 | # CONFIG_SETARCH is not set
674 | # CONFIG_LINUX32 is not set
675 | # CONFIG_LINUX64 is not set
676 | # CONFIG_SETPRIV is not set
677 | # CONFIG_FEATURE_SETPRIV_DUMP is not set
678 | # CONFIG_FEATURE_SETPRIV_CAPABILITIES is not set
679 | # CONFIG_FEATURE_SETPRIV_CAPABILITY_NAMES is not set
680 | # CONFIG_SETSID is not set
681 | # CONFIG_SWAPON is not set
682 | # CONFIG_FEATURE_SWAPON_DISCARD is not set
683 | # CONFIG_FEATURE_SWAPON_PRI is not set
684 | # CONFIG_SWAPOFF is not set
685 | # CONFIG_FEATURE_SWAPONOFF_LABEL is not set
686 | # CONFIG_SWITCH_ROOT is not set
687 | # CONFIG_TASKSET is not set
688 | # CONFIG_FEATURE_TASKSET_FANCY is not set
689 | # CONFIG_FEATURE_TASKSET_CPULIST is not set
690 | # CONFIG_UEVENT is not set
691 | CONFIG_UMOUNT=y
692 | CONFIG_FEATURE_UMOUNT_ALL=y
693 | # CONFIG_UNSHARE is not set
694 | # CONFIG_WALL is not set
695 |
696 | #
697 | # Common options for mount/umount
698 | #
699 | CONFIG_FEATURE_MOUNT_LOOP=y
700 | CONFIG_FEATURE_MOUNT_LOOP_CREATE=y
701 | # CONFIG_FEATURE_MTAB_SUPPORT is not set
702 | CONFIG_VOLUMEID=y
703 |
704 | #
705 | # Filesystem/Volume identification
706 | #
707 | # CONFIG_FEATURE_VOLUMEID_BCACHE is not set
708 | # CONFIG_FEATURE_VOLUMEID_BTRFS is not set
709 | CONFIG_FEATURE_VOLUMEID_CRAMFS=y
710 | # CONFIG_FEATURE_VOLUMEID_EROFS is not set
711 | CONFIG_FEATURE_VOLUMEID_EXFAT=y
712 | CONFIG_FEATURE_VOLUMEID_EXT=y
713 | # CONFIG_FEATURE_VOLUMEID_F2FS is not set
714 | CONFIG_FEATURE_VOLUMEID_FAT=y
715 | # CONFIG_FEATURE_VOLUMEID_HFS is not set
716 | # CONFIG_FEATURE_VOLUMEID_ISO9660 is not set
717 | # CONFIG_FEATURE_VOLUMEID_JFS is not set
718 | # CONFIG_FEATURE_VOLUMEID_LFS is not set
719 | # CONFIG_FEATURE_VOLUMEID_LINUXRAID is not set
720 | CONFIG_FEATURE_VOLUMEID_LINUXSWAP=y
721 | # CONFIG_FEATURE_VOLUMEID_LUKS is not set
722 | # CONFIG_FEATURE_VOLUMEID_MINIX is not set
723 | # CONFIG_FEATURE_VOLUMEID_NILFS is not set
724 | # CONFIG_FEATURE_VOLUMEID_NTFS is not set
725 | # CONFIG_FEATURE_VOLUMEID_OCFS2 is not set
726 | # CONFIG_FEATURE_VOLUMEID_REISERFS is not set
727 | CONFIG_FEATURE_VOLUMEID_ROMFS=y
728 | CONFIG_FEATURE_VOLUMEID_SQUASHFS=y
729 | # CONFIG_FEATURE_VOLUMEID_SYSV is not set
730 | # CONFIG_FEATURE_VOLUMEID_UBIFS is not set
731 | # CONFIG_FEATURE_VOLUMEID_UDF is not set
732 | # CONFIG_FEATURE_VOLUMEID_XFS is not set
733 |
734 | #
735 | # Miscellaneous Utilities
736 | #
737 | # CONFIG_ADJTIMEX is not set
738 | # CONFIG_BBCONFIG is not set
739 | # CONFIG_FEATURE_COMPRESS_BBCONFIG is not set
740 | CONFIG_BC=y
741 | # CONFIG_DC is not set
742 | CONFIG_FEATURE_DC_BIG=y
743 | # CONFIG_FEATURE_DC_LIBM is not set
744 | # CONFIG_FEATURE_BC_INTERACTIVE is not set
745 | CONFIG_FEATURE_BC_LONG_OPTIONS=y
746 | # CONFIG_BEEP is not set
747 | CONFIG_FEATURE_BEEP_FREQ=0
748 | CONFIG_FEATURE_BEEP_LENGTH_MS=0
749 | # CONFIG_CHAT is not set
750 | # CONFIG_FEATURE_CHAT_NOFAIL is not set
751 | # CONFIG_FEATURE_CHAT_TTY_HIFI is not set
752 | # CONFIG_FEATURE_CHAT_IMPLICIT_CR is not set
753 | # CONFIG_FEATURE_CHAT_SWALLOW_OPTS is not set
754 | # CONFIG_FEATURE_CHAT_SEND_ESCAPES is not set
755 | # CONFIG_FEATURE_CHAT_VAR_ABORT_LEN is not set
756 | # CONFIG_FEATURE_CHAT_CLR_ABORT is not set
757 | # CONFIG_CONSPY is not set
758 | # CONFIG_CROND is not set
759 | # CONFIG_FEATURE_CROND_D is not set
760 | # CONFIG_FEATURE_CROND_CALL_SENDMAIL is not set
761 | # CONFIG_FEATURE_CROND_SPECIAL_TIMES is not set
762 | CONFIG_FEATURE_CROND_DIR=""
763 | # CONFIG_CRONTAB is not set
764 | # CONFIG_DEVFSD is not set
765 | # CONFIG_DEVFSD_MODLOAD is not set
766 | # CONFIG_DEVFSD_FG_NP is not set
767 | # CONFIG_DEVFSD_VERBOSE is not set
768 | # CONFIG_FEATURE_DEVFS is not set
769 | # CONFIG_DEVMEM is not set
770 | # CONFIG_FBSPLASH is not set
771 | # CONFIG_FLASHCP is not set
772 | # CONFIG_FLASH_ERASEALL is not set
773 | # CONFIG_FLASH_LOCK is not set
774 | # CONFIG_FLASH_UNLOCK is not set
775 | # CONFIG_HDPARM is not set
776 | # CONFIG_FEATURE_HDPARM_GET_IDENTITY is not set
777 | # CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF is not set
778 | # CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF is not set
779 | # CONFIG_FEATURE_HDPARM_HDIO_DRIVE_RESET is not set
780 | # CONFIG_FEATURE_HDPARM_HDIO_TRISTATE_HWIF is not set
781 | # CONFIG_FEATURE_HDPARM_HDIO_GETSET_DMA is not set
782 | # CONFIG_HEXEDIT is not set
783 | # CONFIG_I2CGET is not set
784 | # CONFIG_I2CSET is not set
785 | # CONFIG_I2CDUMP is not set
786 | # CONFIG_I2CDETECT is not set
787 | # CONFIG_I2CTRANSFER is not set
788 | # CONFIG_INOTIFYD is not set
789 | CONFIG_LESS=y
790 | CONFIG_FEATURE_LESS_MAXLINES=9999999
791 | CONFIG_FEATURE_LESS_BRACKETS=y
792 | CONFIG_FEATURE_LESS_FLAGS=y
793 | CONFIG_FEATURE_LESS_TRUNCATE=y
794 | CONFIG_FEATURE_LESS_MARKS=y
795 | CONFIG_FEATURE_LESS_REGEXP=y
796 | CONFIG_FEATURE_LESS_WINCH=y
797 | CONFIG_FEATURE_LESS_ASK_TERMINAL=y
798 | CONFIG_FEATURE_LESS_DASHCMD=y
799 | CONFIG_FEATURE_LESS_LINENUMS=y
800 | CONFIG_FEATURE_LESS_RAW=y
801 | CONFIG_FEATURE_LESS_ENV=y
802 | # CONFIG_LSSCSI is not set
803 | # CONFIG_MAKEDEVS is not set
804 | # CONFIG_FEATURE_MAKEDEVS_LEAF is not set
805 | # CONFIG_FEATURE_MAKEDEVS_TABLE is not set
806 | # CONFIG_MAN is not set
807 | # CONFIG_MICROCOM is not set
808 | # CONFIG_MIM is not set
809 | # CONFIG_MT is not set
810 | # CONFIG_NANDWRITE is not set
811 | # CONFIG_NANDDUMP is not set
812 | # CONFIG_PARTPROBE is not set
813 | # CONFIG_RAIDAUTORUN is not set
814 | # CONFIG_READAHEAD is not set
815 | # CONFIG_RFKILL is not set
816 | # CONFIG_RUNLEVEL is not set
817 | # CONFIG_RX is not set
818 | # CONFIG_SETFATTR is not set
819 | # CONFIG_SETSERIAL is not set
820 | CONFIG_STRINGS=y
821 | CONFIG_TIME=y
822 | # CONFIG_TS is not set
823 | # CONFIG_TTYSIZE is not set
824 | # CONFIG_UBIRENAME is not set
825 | # CONFIG_UBIATTACH is not set
826 | # CONFIG_UBIDETACH is not set
827 | # CONFIG_UBIMKVOL is not set
828 | # CONFIG_UBIRMVOL is not set
829 | # CONFIG_UBIRSVOL is not set
830 | # CONFIG_UBIUPDATEVOL is not set
831 | # CONFIG_VOLNAME is not set
832 | # CONFIG_WATCHDOG is not set
833 |
834 | #
835 | # Networking Utilities
836 | #
837 | # CONFIG_FEATURE_IPV6 is not set
838 | # CONFIG_FEATURE_UNIX_LOCAL is not set
839 | # CONFIG_FEATURE_PREFER_IPV4_ADDRESS is not set
840 | # CONFIG_VERBOSE_RESOLUTION_ERRORS is not set
841 | # CONFIG_FEATURE_TLS_SHA1 is not set
842 | # CONFIG_ARP is not set
843 | # CONFIG_ARPING is not set
844 | # CONFIG_BRCTL is not set
845 | # CONFIG_FEATURE_BRCTL_FANCY is not set
846 | # CONFIG_FEATURE_BRCTL_SHOW is not set
847 | # CONFIG_DNSD is not set
848 | # CONFIG_ETHER_WAKE is not set
849 | # CONFIG_FTPD is not set
850 | # CONFIG_FEATURE_FTPD_WRITE is not set
851 | # CONFIG_FEATURE_FTPD_ACCEPT_BROKEN_LIST is not set
852 | # CONFIG_FEATURE_FTPD_AUTHENTICATION is not set
853 | # CONFIG_FTPGET is not set
854 | # CONFIG_FTPPUT is not set
855 | # CONFIG_FEATURE_FTPGETPUT_LONG_OPTIONS is not set
856 | # CONFIG_HOSTNAME is not set
857 | # CONFIG_DNSDOMAINNAME is not set
858 | # CONFIG_HTTPD is not set
859 | # CONFIG_FEATURE_HTTPD_RANGES is not set
860 | # CONFIG_FEATURE_HTTPD_SETUID is not set
861 | # CONFIG_FEATURE_HTTPD_BASIC_AUTH is not set
862 | # CONFIG_FEATURE_HTTPD_AUTH_MD5 is not set
863 | # CONFIG_FEATURE_HTTPD_CGI is not set
864 | # CONFIG_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR is not set
865 | # CONFIG_FEATURE_HTTPD_SET_REMOTE_PORT_TO_ENV is not set
866 | # CONFIG_FEATURE_HTTPD_ENCODE_URL_STR is not set
867 | # CONFIG_FEATURE_HTTPD_ERROR_PAGES is not set
868 | # CONFIG_FEATURE_HTTPD_PROXY is not set
869 | # CONFIG_FEATURE_HTTPD_GZIP is not set
870 | # CONFIG_FEATURE_HTTPD_ETAG is not set
871 | # CONFIG_FEATURE_HTTPD_LAST_MODIFIED is not set
872 | # CONFIG_FEATURE_HTTPD_DATE is not set
873 | # CONFIG_FEATURE_HTTPD_ACL_IP is not set
874 | CONFIG_IFCONFIG=y
875 | CONFIG_FEATURE_IFCONFIG_STATUS=y
876 | # CONFIG_FEATURE_IFCONFIG_SLIP is not set
877 | # CONFIG_FEATURE_IFCONFIG_MEMSTART_IOADDR_IRQ is not set
878 | # CONFIG_FEATURE_IFCONFIG_HW is not set
879 | CONFIG_FEATURE_IFCONFIG_BROADCAST_PLUS=y
880 | # CONFIG_IFENSLAVE is not set
881 | # CONFIG_IFPLUGD is not set
882 | # CONFIG_IFUP is not set
883 | # CONFIG_IFDOWN is not set
884 | CONFIG_IFUPDOWN_IFSTATE_PATH=""
885 | # CONFIG_FEATURE_IFUPDOWN_IP is not set
886 | # CONFIG_FEATURE_IFUPDOWN_IPV4 is not set
887 | # CONFIG_FEATURE_IFUPDOWN_IPV6 is not set
888 | # CONFIG_FEATURE_IFUPDOWN_MAPPING is not set
889 | # CONFIG_FEATURE_IFUPDOWN_EXTERNAL_DHCP is not set
890 | # CONFIG_INETD is not set
891 | # CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_ECHO is not set
892 | # CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_DISCARD is not set
893 | # CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_TIME is not set
894 | # CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_DAYTIME is not set
895 | # CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN is not set
896 | # CONFIG_FEATURE_INETD_RPC is not set
897 | # CONFIG_IP is not set
898 | # CONFIG_IPADDR is not set
899 | # CONFIG_IPLINK is not set
900 | # CONFIG_IPROUTE is not set
901 | # CONFIG_IPTUNNEL is not set
902 | # CONFIG_IPRULE is not set
903 | # CONFIG_IPNEIGH is not set
904 | # CONFIG_FEATURE_IP_ADDRESS is not set
905 | # CONFIG_FEATURE_IP_LINK is not set
906 | # CONFIG_FEATURE_IP_ROUTE is not set
907 | CONFIG_FEATURE_IP_ROUTE_DIR=""
908 | # CONFIG_FEATURE_IP_TUNNEL is not set
909 | # CONFIG_FEATURE_IP_RULE is not set
910 | # CONFIG_FEATURE_IP_NEIGH is not set
911 | # CONFIG_FEATURE_IP_RARE_PROTOCOLS is not set
912 | # CONFIG_IPCALC is not set
913 | # CONFIG_FEATURE_IPCALC_LONG_OPTIONS is not set
914 | # CONFIG_FEATURE_IPCALC_FANCY is not set
915 | # CONFIG_FAKEIDENTD is not set
916 | # CONFIG_NAMEIF is not set
917 | # CONFIG_FEATURE_NAMEIF_EXTENDED is not set
918 | # CONFIG_NBDCLIENT is not set
919 | # CONFIG_NC is not set
920 | # CONFIG_NETCAT is not set
921 | # CONFIG_NC_SERVER is not set
922 | # CONFIG_NC_EXTRA is not set
923 | # CONFIG_NC_110_COMPAT is not set
924 | CONFIG_NETSTAT=y
925 | CONFIG_FEATURE_NETSTAT_WIDE=y
926 | CONFIG_FEATURE_NETSTAT_PRG=y
927 | # CONFIG_NSLOOKUP is not set
928 | # CONFIG_FEATURE_NSLOOKUP_BIG is not set
929 | # CONFIG_FEATURE_NSLOOKUP_LONG_OPTIONS is not set
930 | # CONFIG_NTPD is not set
931 | # CONFIG_FEATURE_NTPD_SERVER is not set
932 | # CONFIG_FEATURE_NTPD_CONF is not set
933 | # CONFIG_FEATURE_NTP_AUTH is not set
934 | # CONFIG_PING is not set
935 | # CONFIG_PING6 is not set
936 | # CONFIG_FEATURE_FANCY_PING is not set
937 | # CONFIG_PSCAN is not set
938 | # CONFIG_ROUTE is not set
939 | # CONFIG_SLATTACH is not set
940 | # CONFIG_SSL_CLIENT is not set
941 | # CONFIG_TC is not set
942 | # CONFIG_FEATURE_TC_INGRESS is not set
943 | # CONFIG_TCPSVD is not set
944 | # CONFIG_UDPSVD is not set
945 | # CONFIG_TELNET is not set
946 | # CONFIG_FEATURE_TELNET_TTYPE is not set
947 | # CONFIG_FEATURE_TELNET_AUTOLOGIN is not set
948 | # CONFIG_FEATURE_TELNET_WIDTH is not set
949 | # CONFIG_TELNETD is not set
950 | # CONFIG_FEATURE_TELNETD_STANDALONE is not set
951 | # CONFIG_FEATURE_TELNETD_INETD_WAIT is not set
952 | # CONFIG_TFTP is not set
953 | # CONFIG_FEATURE_TFTP_PROGRESS_BAR is not set
954 | # CONFIG_FEATURE_TFTP_HPA_COMPAT is not set
955 | # CONFIG_TFTPD is not set
956 | # CONFIG_FEATURE_TFTP_GET is not set
957 | # CONFIG_FEATURE_TFTP_PUT is not set
958 | # CONFIG_FEATURE_TFTP_BLOCKSIZE is not set
959 | # CONFIG_TFTP_DEBUG is not set
960 | # CONFIG_TLS is not set
961 | # CONFIG_TRACEROUTE is not set
962 | # CONFIG_TRACEROUTE6 is not set
963 | # CONFIG_FEATURE_TRACEROUTE_VERBOSE is not set
964 | # CONFIG_FEATURE_TRACEROUTE_USE_ICMP is not set
965 | # CONFIG_TUNCTL is not set
966 | # CONFIG_FEATURE_TUNCTL_UG is not set
967 | # CONFIG_VCONFIG is not set
968 | # CONFIG_WGET is not set
969 | # CONFIG_FEATURE_WGET_LONG_OPTIONS is not set
970 | # CONFIG_FEATURE_WGET_STATUSBAR is not set
971 | # CONFIG_FEATURE_WGET_AUTHENTICATION is not set
972 | # CONFIG_FEATURE_WGET_TIMEOUT is not set
973 | # CONFIG_FEATURE_WGET_HTTPS is not set
974 | # CONFIG_FEATURE_WGET_OPENSSL is not set
975 | # CONFIG_WHOIS is not set
976 | # CONFIG_ZCIP is not set
977 | # CONFIG_UDHCPD is not set
978 | # CONFIG_FEATURE_UDHCPD_BASE_IP_ON_MAC is not set
979 | # CONFIG_FEATURE_UDHCPD_WRITE_LEASES_EARLY is not set
980 | CONFIG_DHCPD_LEASES_FILE=""
981 | # CONFIG_DUMPLEASES is not set
982 | # CONFIG_DHCPRELAY is not set
983 | # CONFIG_UDHCPC is not set
984 | # CONFIG_FEATURE_UDHCPC_ARPING is not set
985 | # CONFIG_FEATURE_UDHCPC_SANITIZEOPT is not set
986 | CONFIG_UDHCPC_DEFAULT_SCRIPT=""
987 | # CONFIG_UDHCPC6 is not set
988 | # CONFIG_FEATURE_UDHCPC6_RFC3646 is not set
989 | # CONFIG_FEATURE_UDHCPC6_RFC4704 is not set
990 | # CONFIG_FEATURE_UDHCPC6_RFC4833 is not set
991 | # CONFIG_FEATURE_UDHCPC6_RFC5970 is not set
992 | # CONFIG_FEATURE_UDHCP_PORT is not set
993 | CONFIG_UDHCP_DEBUG=0
994 | CONFIG_UDHCPC_SLACK_FOR_BUGGY_SERVERS=0
995 | # CONFIG_FEATURE_UDHCP_RFC3397 is not set
996 | # CONFIG_FEATURE_UDHCP_8021Q is not set
997 | CONFIG_IFUPDOWN_UDHCPC_CMD_OPTIONS=""
998 |
999 | #
1000 | # Print Utilities
1001 | #
1002 | # CONFIG_LPD is not set
1003 | # CONFIG_LPR is not set
1004 | # CONFIG_LPQ is not set
1005 |
1006 | #
1007 | # Mail Utilities
1008 | #
1009 | # CONFIG_MAKEMIME is not set
1010 | # CONFIG_POPMAILDIR is not set
1011 | # CONFIG_FEATURE_POPMAILDIR_DELIVERY is not set
1012 | # CONFIG_REFORMIME is not set
1013 | # CONFIG_FEATURE_REFORMIME_COMPAT is not set
1014 | # CONFIG_SENDMAIL is not set
1015 | CONFIG_FEATURE_MIME_CHARSET=""
1016 |
1017 | #
1018 | # Process Utilities
1019 | #
1020 | CONFIG_FREE=y
1021 | CONFIG_FUSER=y
1022 | CONFIG_IOSTAT=y
1023 | CONFIG_KILL=y
1024 | CONFIG_KILLALL=y
1025 | CONFIG_KILLALL5=y
1026 | CONFIG_LSOF=y
1027 | # CONFIG_MPSTAT is not set
1028 | # CONFIG_NMETER is not set
1029 | CONFIG_PGREP=y
1030 | CONFIG_PKILL=y
1031 | CONFIG_PIDOF=y
1032 | CONFIG_FEATURE_PIDOF_SINGLE=y
1033 | CONFIG_FEATURE_PIDOF_OMIT=y
1034 | CONFIG_PMAP=y
1035 | # CONFIG_POWERTOP is not set
1036 | # CONFIG_FEATURE_POWERTOP_INTERACTIVE is not set
1037 | CONFIG_PS=y
1038 | # CONFIG_FEATURE_PS_WIDE is not set
1039 | # CONFIG_FEATURE_PS_LONG is not set
1040 | CONFIG_FEATURE_PS_TIME=y
1041 | # CONFIG_FEATURE_PS_UNUSUAL_SYSTEMS is not set
1042 | CONFIG_FEATURE_PS_ADDITIONAL_COLUMNS=y
1043 | CONFIG_PSTREE=y
1044 | # CONFIG_PWDX is not set
1045 | # CONFIG_SMEMCAP is not set
1046 | # CONFIG_BB_SYSCTL is not set
1047 | CONFIG_TOP=y
1048 | CONFIG_FEATURE_TOP_INTERACTIVE=y
1049 | CONFIG_FEATURE_TOP_CPU_USAGE_PERCENTAGE=y
1050 | CONFIG_FEATURE_TOP_CPU_GLOBAL_PERCENTS=y
1051 | CONFIG_FEATURE_TOP_SMP_CPU=y
1052 | CONFIG_FEATURE_TOP_DECIMALS=y
1053 | CONFIG_FEATURE_TOP_SMP_PROCESS=y
1054 | CONFIG_FEATURE_TOPMEM=y
1055 | CONFIG_UPTIME=y
1056 | # CONFIG_FEATURE_UPTIME_UTMP_SUPPORT is not set
1057 | CONFIG_WATCH=y
1058 | CONFIG_FEATURE_SHOW_THREADS=y
1059 |
1060 | #
1061 | # Runit Utilities
1062 | #
1063 | # CONFIG_CHPST is not set
1064 | # CONFIG_SETUIDGID is not set
1065 | # CONFIG_ENVUIDGID is not set
1066 | # CONFIG_ENVDIR is not set
1067 | # CONFIG_SOFTLIMIT is not set
1068 | # CONFIG_RUNSV is not set
1069 | # CONFIG_RUNSVDIR is not set
1070 | # CONFIG_FEATURE_RUNSVDIR_LOG is not set
1071 | # CONFIG_SV is not set
1072 | CONFIG_SV_DEFAULT_SERVICE_DIR=""
1073 | # CONFIG_SVC is not set
1074 | # CONFIG_SVOK is not set
1075 | # CONFIG_SVLOGD is not set
1076 | # CONFIG_CHCON is not set
1077 | # CONFIG_GETENFORCE is not set
1078 | # CONFIG_GETSEBOOL is not set
1079 | # CONFIG_LOAD_POLICY is not set
1080 | # CONFIG_MATCHPATHCON is not set
1081 | # CONFIG_RUNCON is not set
1082 | # CONFIG_SELINUXENABLED is not set
1083 | # CONFIG_SESTATUS is not set
1084 | # CONFIG_SETENFORCE is not set
1085 | # CONFIG_SETFILES is not set
1086 | # CONFIG_FEATURE_SETFILES_CHECK_OPTION is not set
1087 | # CONFIG_RESTORECON is not set
1088 | # CONFIG_SETSEBOOL is not set
1089 |
1090 | #
1091 | # Shells
1092 | #
1093 | CONFIG_SH_IS_ASH=y
1094 | # CONFIG_SH_IS_HUSH is not set
1095 | # CONFIG_SH_IS_NONE is not set
1096 | # CONFIG_BASH_IS_ASH is not set
1097 | # CONFIG_BASH_IS_HUSH is not set
1098 | CONFIG_BASH_IS_NONE=y
1099 | CONFIG_SHELL_ASH=y
1100 | CONFIG_ASH=y
1101 | CONFIG_ASH_OPTIMIZE_FOR_SIZE=y
1102 | CONFIG_ASH_INTERNAL_GLOB=y
1103 | CONFIG_ASH_BASH_COMPAT=y
1104 | # CONFIG_ASH_BASH_SOURCE_CURDIR is not set
1105 | # CONFIG_ASH_BASH_NOT_FOUND_HOOK is not set
1106 | CONFIG_ASH_JOB_CONTROL=y
1107 | CONFIG_ASH_ALIAS=y
1108 | CONFIG_ASH_RANDOM_SUPPORT=y
1109 | CONFIG_ASH_EXPAND_PRMT=y
1110 | CONFIG_ASH_IDLE_TIMEOUT=y
1111 | # CONFIG_ASH_MAIL is not set
1112 | CONFIG_ASH_ECHO=y
1113 | CONFIG_ASH_PRINTF=y
1114 | CONFIG_ASH_TEST=y
1115 | CONFIG_ASH_HELP=y
1116 | CONFIG_ASH_GETOPTS=y
1117 | CONFIG_ASH_CMDCMD=y
1118 | # CONFIG_CTTYHACK is not set
1119 | # CONFIG_HUSH is not set
1120 | # CONFIG_SHELL_HUSH is not set
1121 | # CONFIG_HUSH_BASH_COMPAT is not set
1122 | # CONFIG_HUSH_BRACE_EXPANSION is not set
1123 | # CONFIG_HUSH_LINENO_VAR is not set
1124 | # CONFIG_HUSH_BASH_SOURCE_CURDIR is not set
1125 | # CONFIG_HUSH_INTERACTIVE is not set
1126 | # CONFIG_HUSH_SAVEHISTORY is not set
1127 | # CONFIG_HUSH_JOB is not set
1128 | # CONFIG_HUSH_TICK is not set
1129 | # CONFIG_HUSH_IF is not set
1130 | # CONFIG_HUSH_LOOPS is not set
1131 | # CONFIG_HUSH_CASE is not set
1132 | # CONFIG_HUSH_FUNCTIONS is not set
1133 | # CONFIG_HUSH_LOCAL is not set
1134 | # CONFIG_HUSH_RANDOM_SUPPORT is not set
1135 | # CONFIG_HUSH_MODE_X is not set
1136 | # CONFIG_HUSH_ECHO is not set
1137 | # CONFIG_HUSH_PRINTF is not set
1138 | # CONFIG_HUSH_TEST is not set
1139 | # CONFIG_HUSH_HELP is not set
1140 | # CONFIG_HUSH_EXPORT is not set
1141 | # CONFIG_HUSH_EXPORT_N is not set
1142 | # CONFIG_HUSH_READONLY is not set
1143 | # CONFIG_HUSH_KILL is not set
1144 | # CONFIG_HUSH_WAIT is not set
1145 | # CONFIG_HUSH_COMMAND is not set
1146 | # CONFIG_HUSH_TRAP is not set
1147 | # CONFIG_HUSH_TYPE is not set
1148 | # CONFIG_HUSH_TIMES is not set
1149 | # CONFIG_HUSH_READ is not set
1150 | # CONFIG_HUSH_SET is not set
1151 | # CONFIG_HUSH_UNSET is not set
1152 | # CONFIG_HUSH_ULIMIT is not set
1153 | # CONFIG_HUSH_UMASK is not set
1154 | # CONFIG_HUSH_GETOPTS is not set
1155 | # CONFIG_HUSH_MEMLEAK is not set
1156 |
1157 | #
1158 | # Options common to all shells
1159 | #
1160 | CONFIG_FEATURE_SH_MATH=y
1161 | # CONFIG_FEATURE_SH_MATH_64 is not set
1162 | CONFIG_FEATURE_SH_MATH_BASE=y
1163 | CONFIG_FEATURE_SH_EXTRA_QUIET=y
1164 | CONFIG_FEATURE_SH_STANDALONE=y
1165 | # CONFIG_FEATURE_SH_NOFORK is not set
1166 | # CONFIG_FEATURE_SH_READ_FRAC is not set
1167 | # CONFIG_FEATURE_SH_HISTFILESIZE is not set
1168 | # CONFIG_FEATURE_SH_EMBEDDED_SCRIPTS is not set
1169 |
1170 | #
1171 | # System Logging Utilities
1172 | #
1173 | # CONFIG_KLOGD is not set
1174 | # CONFIG_FEATURE_KLOGD_KLOGCTL is not set
1175 | # CONFIG_LOGGER is not set
1176 | # CONFIG_LOGREAD is not set
1177 | # CONFIG_FEATURE_LOGREAD_REDUCED_LOCKING is not set
1178 | # CONFIG_SYSLOGD is not set
1179 | # CONFIG_FEATURE_ROTATE_LOGFILE is not set
1180 | # CONFIG_FEATURE_REMOTE_LOG is not set
1181 | # CONFIG_FEATURE_SYSLOGD_DUP is not set
1182 | # CONFIG_FEATURE_SYSLOGD_CFG is not set
1183 | # CONFIG_FEATURE_SYSLOGD_PRECISE_TIMESTAMPS is not set
1184 | CONFIG_FEATURE_SYSLOGD_READ_BUFFER_SIZE=0
1185 | # CONFIG_FEATURE_IPC_SYSLOG is not set
1186 | CONFIG_FEATURE_IPC_SYSLOG_BUFFER_SIZE=0
1187 | # CONFIG_FEATURE_KMSG_SYSLOG is not set
1188 |
--------------------------------------------------------------------------------
/n64linux/n64-kernel-config:
--------------------------------------------------------------------------------
1 | #
2 | # Automatically generated file; DO NOT EDIT.
3 | # Linux/mips 5.10.0 Kernel Configuration
4 | #
5 | CONFIG_CC_VERSION_TEXT="mips64-linux-musln32-gcc (GCC) 10.2.0"
6 | CONFIG_CC_IS_GCC=y
7 | CONFIG_GCC_VERSION=100200
8 | CONFIG_LD_VERSION=235010000
9 | CONFIG_CLANG_VERSION=0
10 | CONFIG_LLD_VERSION=0
11 | CONFIG_CC_CAN_LINK=y
12 | CONFIG_CC_CAN_LINK_STATIC=y
13 | CONFIG_CC_HAS_ASM_GOTO=y
14 | CONFIG_CC_HAS_ASM_INLINE=y
15 | CONFIG_IRQ_WORK=y
16 | CONFIG_BUILDTIME_TABLE_SORT=y
17 |
18 | #
19 | # General setup
20 | #
21 | CONFIG_BROKEN_ON_SMP=y
22 | CONFIG_INIT_ENV_ARG_LIMIT=32
23 | # CONFIG_COMPILE_TEST is not set
24 | CONFIG_LOCALVERSION="-n64"
25 | CONFIG_LOCALVERSION_AUTO=y
26 | CONFIG_BUILD_SALT=""
27 | CONFIG_HAVE_KERNEL_GZIP=y
28 | CONFIG_HAVE_KERNEL_BZIP2=y
29 | CONFIG_HAVE_KERNEL_LZMA=y
30 | CONFIG_HAVE_KERNEL_XZ=y
31 | CONFIG_HAVE_KERNEL_LZO=y
32 | CONFIG_HAVE_KERNEL_LZ4=y
33 | CONFIG_HAVE_KERNEL_ZSTD=y
34 | CONFIG_KERNEL_GZIP=y
35 | # CONFIG_KERNEL_BZIP2 is not set
36 | # CONFIG_KERNEL_LZMA is not set
37 | # CONFIG_KERNEL_XZ is not set
38 | # CONFIG_KERNEL_LZO is not set
39 | # CONFIG_KERNEL_LZ4 is not set
40 | # CONFIG_KERNEL_ZSTD is not set
41 | CONFIG_DEFAULT_INIT=""
42 | CONFIG_DEFAULT_HOSTNAME="(none)"
43 | CONFIG_SWAP=y
44 | CONFIG_SYSVIPC=y
45 | CONFIG_SYSVIPC_SYSCTL=y
46 | # CONFIG_WATCH_QUEUE is not set
47 | # CONFIG_CROSS_MEMORY_ATTACH is not set
48 | # CONFIG_USELIB is not set
49 |
50 | #
51 | # IRQ subsystem
52 | #
53 | CONFIG_GENERIC_IRQ_PROBE=y
54 | CONFIG_GENERIC_IRQ_SHOW=y
55 | CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y
56 | CONFIG_GENERIC_IRQ_CHIP=y
57 | CONFIG_IRQ_DOMAIN=y
58 | CONFIG_HANDLE_DOMAIN_IRQ=y
59 | CONFIG_IRQ_FORCED_THREADING=y
60 | # end of IRQ subsystem
61 |
62 | CONFIG_GENERIC_TIME_VSYSCALL=y
63 | CONFIG_GENERIC_CLOCKEVENTS=y
64 | CONFIG_GENERIC_CMOS_UPDATE=y
65 |
66 | #
67 | # Timers subsystem
68 | #
69 | CONFIG_TICK_ONESHOT=y
70 | CONFIG_NO_HZ_COMMON=y
71 | # CONFIG_HZ_PERIODIC is not set
72 | CONFIG_NO_HZ_IDLE=y
73 | # CONFIG_NO_HZ is not set
74 | # CONFIG_HIGH_RES_TIMERS is not set
75 | # end of Timers subsystem
76 |
77 | # CONFIG_PREEMPT_NONE is not set
78 | CONFIG_PREEMPT_VOLUNTARY=y
79 | # CONFIG_PREEMPT is not set
80 |
81 | #
82 | # CPU/Task time and stats accounting
83 | #
84 | CONFIG_TICK_CPU_ACCOUNTING=y
85 | # CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set
86 | # CONFIG_IRQ_TIME_ACCOUNTING is not set
87 | # CONFIG_PSI is not set
88 | # end of CPU/Task time and stats accounting
89 |
90 | #
91 | # RCU Subsystem
92 | #
93 | CONFIG_TINY_RCU=y
94 | # CONFIG_RCU_EXPERT is not set
95 | CONFIG_SRCU=y
96 | CONFIG_TINY_SRCU=y
97 | # end of RCU Subsystem
98 |
99 | # CONFIG_IKCONFIG is not set
100 | # CONFIG_IKHEADERS is not set
101 | CONFIG_LOG_BUF_SHIFT=13
102 | CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13
103 | CONFIG_GENERIC_SCHED_CLOCK=y
104 |
105 | #
106 | # Scheduler features
107 | #
108 | # end of Scheduler features
109 |
110 | CONFIG_CC_HAS_INT128=y
111 | # CONFIG_CGROUPS is not set
112 | # CONFIG_CHECKPOINT_RESTORE is not set
113 | # CONFIG_SCHED_AUTOGROUP is not set
114 | # CONFIG_SYSFS_DEPRECATED is not set
115 | # CONFIG_RELAY is not set
116 | CONFIG_BLK_DEV_INITRD=y
117 | CONFIG_INITRAMFS_SOURCE="/tmp/n64root.cpio"
118 | CONFIG_INITRAMFS_ROOT_UID=0
119 | CONFIG_INITRAMFS_ROOT_GID=0
120 | CONFIG_RD_GZIP=y
121 | # CONFIG_RD_BZIP2 is not set
122 | # CONFIG_RD_LZMA is not set
123 | # CONFIG_RD_XZ is not set
124 | # CONFIG_RD_LZO is not set
125 | # CONFIG_RD_LZ4 is not set
126 | # CONFIG_RD_ZSTD is not set
127 | CONFIG_INITRAMFS_COMPRESSION_GZIP=y
128 | # CONFIG_INITRAMFS_COMPRESSION_NONE is not set
129 | # CONFIG_BOOT_CONFIG is not set
130 | # CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set
131 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y
132 | CONFIG_HAVE_LD_DEAD_CODE_DATA_ELIMINATION=y
133 | CONFIG_LD_DEAD_CODE_DATA_ELIMINATION=y
134 | CONFIG_SYSCTL=y
135 | CONFIG_SYSCTL_EXCEPTION_TRACE=y
136 | CONFIG_EXPERT=y
137 | # CONFIG_MULTIUSER is not set
138 | # CONFIG_SGETMASK_SYSCALL is not set
139 | # CONFIG_SYSFS_SYSCALL is not set
140 | # CONFIG_FHANDLE is not set
141 | CONFIG_POSIX_TIMERS=y
142 | CONFIG_PRINTK=y
143 | CONFIG_PRINTK_NMI=y
144 | CONFIG_BUG=y
145 | # CONFIG_BASE_FULL is not set
146 | CONFIG_FUTEX=y
147 | CONFIG_FUTEX_PI=y
148 | CONFIG_EPOLL=y
149 | # CONFIG_SIGNALFD is not set
150 | # CONFIG_TIMERFD is not set
151 | # CONFIG_EVENTFD is not set
152 | CONFIG_SHMEM=y
153 | # CONFIG_AIO is not set
154 | # CONFIG_IO_URING is not set
155 | CONFIG_ADVISE_SYSCALLS=y
156 | # CONFIG_MEMBARRIER is not set
157 | # CONFIG_KALLSYMS is not set
158 | # CONFIG_BPF_SYSCALL is not set
159 | # CONFIG_USERFAULTFD is not set
160 | # CONFIG_RSEQ is not set
161 | CONFIG_EMBEDDED=y
162 | CONFIG_HAVE_PERF_EVENTS=y
163 | CONFIG_PERF_USE_VMALLOC=y
164 | # CONFIG_PC104 is not set
165 |
166 | #
167 | # Kernel Performance Events And Counters
168 | #
169 | # CONFIG_PERF_EVENTS is not set
170 | # end of Kernel Performance Events And Counters
171 |
172 | # CONFIG_VM_EVENT_COUNTERS is not set
173 | # CONFIG_COMPAT_BRK is not set
174 | # CONFIG_SLAB is not set
175 | # CONFIG_SLUB is not set
176 | CONFIG_SLOB=y
177 | CONFIG_SLAB_MERGE_DEFAULT=y
178 | # CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set
179 | # CONFIG_PROFILING is not set
180 | # end of General setup
181 |
182 | CONFIG_MIPS=y
183 |
184 | #
185 | # Machine selection
186 | #
187 | # CONFIG_MIPS_GENERIC_KERNEL is not set
188 | # CONFIG_MIPS_ALCHEMY is not set
189 | # CONFIG_AR7 is not set
190 | # CONFIG_ATH25 is not set
191 | # CONFIG_ATH79 is not set
192 | # CONFIG_BMIPS_GENERIC is not set
193 | # CONFIG_BCM47XX is not set
194 | # CONFIG_BCM63XX is not set
195 | # CONFIG_MIPS_COBALT is not set
196 | # CONFIG_MACH_DECSTATION is not set
197 | # CONFIG_MACH_JAZZ is not set
198 | # CONFIG_MACH_INGENIC_SOC is not set
199 | # CONFIG_LANTIQ is not set
200 | # CONFIG_MACH_LOONGSON32 is not set
201 | # CONFIG_MACH_LOONGSON2EF is not set
202 | # CONFIG_MACH_LOONGSON64 is not set
203 | # CONFIG_MACH_PISTACHIO is not set
204 | # CONFIG_MIPS_MALTA is not set
205 | # CONFIG_MACH_PIC32 is not set
206 | # CONFIG_MACH_VR41XX is not set
207 | CONFIG_MIPS_N64=y
208 | # CONFIG_RALINK is not set
209 | # CONFIG_SGI_IP22 is not set
210 | # CONFIG_SGI_IP27 is not set
211 | # CONFIG_SGI_IP28 is not set
212 | # CONFIG_SGI_IP30 is not set
213 | # CONFIG_SGI_IP32 is not set
214 | # CONFIG_SIBYTE_CRHINE is not set
215 | # CONFIG_SIBYTE_CARMEL is not set
216 | # CONFIG_SIBYTE_CRHONE is not set
217 | # CONFIG_SIBYTE_RHONE is not set
218 | # CONFIG_SIBYTE_SWARM is not set
219 | # CONFIG_SIBYTE_LITTLESUR is not set
220 | # CONFIG_SIBYTE_SENTOSA is not set
221 | # CONFIG_SIBYTE_BIGSUR is not set
222 | # CONFIG_SNI_RM is not set
223 | # CONFIG_MACH_TX39XX is not set
224 | # CONFIG_MACH_TX49XX is not set
225 | # CONFIG_MIKROTIK_RB532 is not set
226 | # CONFIG_CAVIUM_OCTEON_SOC is not set
227 | # CONFIG_NLM_XLR_BOARD is not set
228 | # CONFIG_NLM_XLP_BOARD is not set
229 | # end of Machine selection
230 |
231 | CONFIG_GENERIC_HWEIGHT=y
232 | CONFIG_GENERIC_CALIBRATE_DELAY=y
233 | CONFIG_SCHED_OMIT_FRAME_POINTER=y
234 | CONFIG_CEVT_R4K=y
235 | CONFIG_CSRC_R4K=y
236 | CONFIG_MIPS_CLOCK_VSYSCALL=y
237 | CONFIG_ARCH_SUPPORTS_UPROBES=y
238 | CONFIG_DMA_NONCOHERENT=y
239 | CONFIG_SYS_HAS_EARLY_PRINTK=y
240 | CONFIG_CPU_BIG_ENDIAN=y
241 | CONFIG_SYS_SUPPORTS_BIG_ENDIAN=y
242 | CONFIG_MIPS_L1_CACHE_SHIFT=5
243 |
244 | #
245 | # CPU selection
246 | #
247 | CONFIG_CPU_R4300=y
248 | CONFIG_SYS_SUPPORTS_ZBOOT=y
249 | CONFIG_SYS_HAS_CPU_R4300=y
250 | # end of CPU selection
251 |
252 | CONFIG_TARGET_ISA_REV=0
253 | CONFIG_SYS_SUPPORTS_32BIT_KERNEL=y
254 | CONFIG_SYS_SUPPORTS_64BIT_KERNEL=y
255 | CONFIG_CPU_SUPPORTS_32BIT_KERNEL=y
256 | CONFIG_CPU_SUPPORTS_64BIT_KERNEL=y
257 |
258 | #
259 | # Kernel type
260 | #
261 | # CONFIG_32BIT is not set
262 | CONFIG_64BIT=y
263 | # CONFIG_MIPS_VA_BITS_48 is not set
264 | CONFIG_PAGE_SIZE_4KB=y
265 | # CONFIG_PAGE_SIZE_16KB is not set
266 | # CONFIG_PAGE_SIZE_64KB is not set
267 | CONFIG_FORCE_MAX_ZONEORDER=11
268 | CONFIG_CPU_GENERIC_DUMP_TLB=y
269 | CONFIG_MIPS_FP_SUPPORT=y
270 | CONFIG_CPU_R4K_FPU=y
271 | CONFIG_CPU_R4K_CACHE_TLB=y
272 | CONFIG_CPU_NEEDS_NO_SMARTMIPS_OR_MICROMIPS=y
273 | CONFIG_CPU_HAS_SYNC=y
274 | CONFIG_MIPS_ASID_SHIFT=0
275 | CONFIG_MIPS_ASID_BITS=8
276 | CONFIG_ARCH_FLATMEM_ENABLE=y
277 | # CONFIG_HZ_24 is not set
278 | # CONFIG_HZ_48 is not set
279 | CONFIG_HZ_100=y
280 | # CONFIG_HZ_128 is not set
281 | # CONFIG_HZ_250 is not set
282 | # CONFIG_HZ_256 is not set
283 | # CONFIG_HZ_1000 is not set
284 | # CONFIG_HZ_1024 is not set
285 | CONFIG_SYS_SUPPORTS_ARBIT_HZ=y
286 | CONFIG_HZ=100
287 | # CONFIG_KEXEC is not set
288 | # CONFIG_CRASH_DUMP is not set
289 | CONFIG_MIPS_CMDLINE_FROM_BOOTLOADER=y
290 | # end of Kernel type
291 |
292 | CONFIG_LOCKDEP_SUPPORT=y
293 | CONFIG_STACKTRACE_SUPPORT=y
294 | CONFIG_PGTABLE_LEVELS=3
295 |
296 | #
297 | # Bus options (PCI, PCMCIA, EISA, ISA, TC)
298 | #
299 | CONFIG_PCI_DRIVERS_LEGACY=y
300 | CONFIG_MMU=y
301 | CONFIG_ARCH_MMAP_RND_BITS_MIN=12
302 | CONFIG_ARCH_MMAP_RND_BITS_MAX=18
303 | CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8
304 | CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=15
305 | # end of Bus options (PCI, PCMCIA, EISA, ISA, TC)
306 |
307 | CONFIG_MIPS32_COMPAT=y
308 | CONFIG_COMPAT=y
309 | CONFIG_SYSVIPC_COMPAT=y
310 | # CONFIG_MIPS32_O32 is not set
311 | CONFIG_MIPS32_N32=y
312 | CONFIG_BINFMT_ELF32=y
313 |
314 | #
315 | # Power management options
316 | #
317 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y
318 | CONFIG_ARCH_SUSPEND_POSSIBLE=y
319 | # CONFIG_SUSPEND is not set
320 | # CONFIG_HIBERNATION is not set
321 | # CONFIG_PM is not set
322 | # end of Power management options
323 |
324 | #
325 | # CPU Power Management
326 | #
327 |
328 | #
329 | # CPU Idle
330 | #
331 | # CONFIG_CPU_IDLE is not set
332 | # end of CPU Idle
333 | # end of CPU Power Management
334 |
335 | #
336 | # Firmware Drivers
337 | #
338 | # CONFIG_FIRMWARE_MEMMAP is not set
339 | # CONFIG_GOOGLE_FIRMWARE is not set
340 |
341 | #
342 | # Tegra firmware driver
343 | #
344 | # end of Tegra firmware driver
345 | # end of Firmware Drivers
346 |
347 | # CONFIG_VIRTUALIZATION is not set
348 | CONFIG_MIPS_LD_CAN_LINK_VDSO=y
349 |
350 | #
351 | # General architecture-dependent options
352 | #
353 | CONFIG_SET_FS=y
354 | CONFIG_HAVE_OPROFILE=y
355 | CONFIG_JUMP_LABEL=y
356 | # CONFIG_STATIC_KEYS_SELFTEST is not set
357 | CONFIG_ARCH_USE_BUILTIN_BSWAP=y
358 | CONFIG_HAVE_IOREMAP_PROT=y
359 | CONFIG_HAVE_KPROBES=y
360 | CONFIG_HAVE_KRETPROBES=y
361 | CONFIG_HAVE_NMI=y
362 | CONFIG_HAVE_ARCH_TRACEHOOK=y
363 | CONFIG_HAVE_DMA_CONTIGUOUS=y
364 | CONFIG_GENERIC_SMP_IDLE_THREAD=y
365 | CONFIG_ARCH_HAS_FORTIFY_SOURCE=y
366 | CONFIG_ARCH_HAS_DMA_SET_UNCACHED=y
367 | CONFIG_HAVE_ASM_MODVERSIONS=y
368 | CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y
369 | CONFIG_HAVE_RSEQ=y
370 | CONFIG_HAVE_ARCH_JUMP_LABEL=y
371 | CONFIG_ARCH_WANT_IPC_PARSE_VERSION=y
372 | CONFIG_ARCH_WANT_COMPAT_IPC_PARSE_VERSION=y
373 | CONFIG_HAVE_ARCH_SECCOMP=y
374 | CONFIG_HAVE_ARCH_SECCOMP_FILTER=y
375 | # CONFIG_SECCOMP is not set
376 | CONFIG_HAVE_STACKPROTECTOR=y
377 | # CONFIG_STACKPROTECTOR is not set
378 | CONFIG_HAVE_CONTEXT_TRACKING=y
379 | CONFIG_HAVE_TIF_NOHZ=y
380 | CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y
381 | CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y
382 | CONFIG_HAVE_MOD_ARCH_SPECIFIC=y
383 | CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y
384 | CONFIG_ARCH_HAS_ELF_RANDOMIZE=y
385 | CONFIG_HAVE_ARCH_MMAP_RND_BITS=y
386 | CONFIG_HAVE_EXIT_THREAD=y
387 | CONFIG_ARCH_MMAP_RND_BITS=12
388 | CONFIG_HAVE_ARCH_MMAP_RND_COMPAT_BITS=y
389 | CONFIG_ARCH_MMAP_RND_COMPAT_BITS=8
390 | CONFIG_ARCH_WANT_DEFAULT_TOPDOWN_MMAP_LAYOUT=y
391 | CONFIG_CLONE_BACKWARDS=y
392 | CONFIG_COMPAT_32BIT_TIME=y
393 | CONFIG_CPU_NO_EFFICIENT_FFS=y
394 | CONFIG_HAVE_ARCH_COMPILER_H=y
395 | CONFIG_HAVE_SPARSE_SYSCALL_NR=y
396 |
397 | #
398 | # GCOV-based kernel profiling
399 | #
400 | # end of GCOV-based kernel profiling
401 |
402 | CONFIG_HAVE_GCC_PLUGINS=y
403 | # end of General architecture-dependent options
404 |
405 | CONFIG_RT_MUTEXES=y
406 | CONFIG_BASE_SMALL=1
407 | # CONFIG_MODULES is not set
408 | CONFIG_BLOCK=y
409 | # CONFIG_BLK_DEV_BSG is not set
410 | # CONFIG_BLK_DEV_BSGLIB is not set
411 | # CONFIG_BLK_DEV_INTEGRITY is not set
412 | # CONFIG_BLK_DEV_ZONED is not set
413 | # CONFIG_BLK_CMDLINE_PARSER is not set
414 | # CONFIG_BLK_WBT is not set
415 | # CONFIG_BLK_SED_OPAL is not set
416 | # CONFIG_BLK_INLINE_ENCRYPTION is not set
417 |
418 | #
419 | # Partition Types
420 | #
421 | CONFIG_PARTITION_ADVANCED=y
422 | # CONFIG_ACORN_PARTITION is not set
423 | # CONFIG_AIX_PARTITION is not set
424 | # CONFIG_OSF_PARTITION is not set
425 | # CONFIG_AMIGA_PARTITION is not set
426 | # CONFIG_ATARI_PARTITION is not set
427 | # CONFIG_MAC_PARTITION is not set
428 | # CONFIG_MSDOS_PARTITION is not set
429 | # CONFIG_LDM_PARTITION is not set
430 | # CONFIG_SGI_PARTITION is not set
431 | # CONFIG_ULTRIX_PARTITION is not set
432 | # CONFIG_SUN_PARTITION is not set
433 | # CONFIG_KARMA_PARTITION is not set
434 | # CONFIG_EFI_PARTITION is not set
435 | # CONFIG_SYSV68_PARTITION is not set
436 | # CONFIG_CMDLINE_PARTITION is not set
437 | # end of Partition Types
438 |
439 | CONFIG_BLOCK_COMPAT=y
440 |
441 | #
442 | # IO Schedulers
443 | #
444 | # CONFIG_MQ_IOSCHED_DEADLINE is not set
445 | # CONFIG_MQ_IOSCHED_KYBER is not set
446 | # CONFIG_IOSCHED_BFQ is not set
447 | # end of IO Schedulers
448 |
449 | CONFIG_INLINE_SPIN_UNLOCK_IRQ=y
450 | CONFIG_INLINE_READ_UNLOCK=y
451 | CONFIG_INLINE_READ_UNLOCK_IRQ=y
452 | CONFIG_INLINE_WRITE_UNLOCK=y
453 | CONFIG_INLINE_WRITE_UNLOCK_IRQ=y
454 | CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y
455 | CONFIG_ARCH_USE_QUEUED_RWLOCKS=y
456 |
457 | #
458 | # Executable file formats
459 | #
460 | CONFIG_BINFMT_ELF=y
461 | CONFIG_ARCH_BINFMT_ELF_STATE=y
462 | CONFIG_ELFCORE=y
463 | CONFIG_BINFMT_SCRIPT=y
464 | # CONFIG_BINFMT_MISC is not set
465 | # CONFIG_COREDUMP is not set
466 | # end of Executable file formats
467 |
468 | #
469 | # Memory Management options
470 | #
471 | CONFIG_FLATMEM=y
472 | CONFIG_FLAT_NODE_MEM_MAP=y
473 | CONFIG_HAVE_FAST_GUP=y
474 | CONFIG_SPLIT_PTLOCK_CPUS=4
475 | CONFIG_COMPACTION=y
476 | # CONFIG_PAGE_REPORTING is not set
477 | CONFIG_MIGRATION=y
478 | CONFIG_PHYS_ADDR_T_64BIT=y
479 | CONFIG_VIRT_TO_BUS=y
480 | # CONFIG_KSM is not set
481 | CONFIG_DEFAULT_MMAP_MIN_ADDR=4096
482 | CONFIG_NEED_PER_CPU_KM=y
483 | # CONFIG_CLEANCACHE is not set
484 | # CONFIG_FRONTSWAP is not set
485 | # CONFIG_CMA is not set
486 | # CONFIG_ZPOOL is not set
487 | # CONFIG_ZBUD is not set
488 | # CONFIG_ZSMALLOC is not set
489 | # CONFIG_IDLE_PAGE_TRACKING is not set
490 | # CONFIG_PERCPU_STATS is not set
491 | # CONFIG_GUP_BENCHMARK is not set
492 | CONFIG_ARCH_HAS_PTE_SPECIAL=y
493 | # end of Memory Management options
494 |
495 | # CONFIG_NET is not set
496 |
497 | #
498 | # Device Drivers
499 | #
500 | # CONFIG_PCCARD is not set
501 |
502 | #
503 | # Generic Driver Options
504 | #
505 | # CONFIG_UEVENT_HELPER is not set
506 | CONFIG_DEVTMPFS=y
507 | # CONFIG_DEVTMPFS_MOUNT is not set
508 | CONFIG_STANDALONE=y
509 | CONFIG_PREVENT_FIRMWARE_BUILD=y
510 |
511 | #
512 | # Firmware loader
513 | #
514 | # CONFIG_FW_LOADER is not set
515 | # end of Firmware loader
516 |
517 | # CONFIG_ALLOW_DEV_COREDUMP is not set
518 | # CONFIG_DEBUG_DRIVER is not set
519 | # CONFIG_DEBUG_DEVRES is not set
520 | # CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set
521 | CONFIG_GENERIC_CPU_AUTOPROBE=y
522 | # end of Generic Driver Options
523 |
524 | #
525 | # Bus devices
526 | #
527 | # CONFIG_BRCMSTB_GISB_ARB is not set
528 | # CONFIG_MHI_BUS is not set
529 | # end of Bus devices
530 |
531 | # CONFIG_GNSS is not set
532 | # CONFIG_MTD is not set
533 | # CONFIG_OF is not set
534 | # CONFIG_PARPORT is not set
535 | CONFIG_BLK_DEV=y
536 | # CONFIG_BLK_DEV_NULL_BLK is not set
537 | CONFIG_N64CART=y
538 | CONFIG_BLK_DEV_LOOP=y
539 | CONFIG_BLK_DEV_LOOP_MIN_COUNT=4
540 | # CONFIG_BLK_DEV_CRYPTOLOOP is not set
541 |
542 | #
543 | # DRBD disabled because PROC_FS or INET not selected
544 | #
545 | # CONFIG_BLK_DEV_RAM is not set
546 | # CONFIG_CDROM_PKTCDVD is not set
547 |
548 | #
549 | # NVME Support
550 | #
551 | # CONFIG_NVME_FC is not set
552 | # end of NVME Support
553 |
554 | #
555 | # Misc devices
556 | #
557 | # CONFIG_DUMMY_IRQ is not set
558 | # CONFIG_ENCLOSURE_SERVICES is not set
559 | # CONFIG_SRAM is not set
560 | # CONFIG_XILINX_SDFEC is not set
561 | # CONFIG_C2PORT is not set
562 |
563 | #
564 | # EEPROM support
565 | #
566 | # CONFIG_EEPROM_93CX6 is not set
567 | # end of EEPROM support
568 |
569 | #
570 | # Texas Instruments shared transport line discipline
571 | #
572 | # end of Texas Instruments shared transport line discipline
573 |
574 | #
575 | # Altera FPGA firmware download module (requires I2C)
576 | #
577 | # CONFIG_ECHO is not set
578 | # end of Misc devices
579 |
580 | CONFIG_HAVE_IDE=y
581 | # CONFIG_IDE is not set
582 |
583 | #
584 | # SCSI device support
585 | #
586 | CONFIG_SCSI_MOD=y
587 | # CONFIG_RAID_ATTRS is not set
588 | # CONFIG_SCSI is not set
589 | # end of SCSI device support
590 |
591 | # CONFIG_ATA is not set
592 | # CONFIG_MD is not set
593 | # CONFIG_TARGET_CORE is not set
594 | # CONFIG_NVM is not set
595 |
596 | #
597 | # Input device support
598 | #
599 | CONFIG_INPUT=y
600 | # CONFIG_INPUT_FF_MEMLESS is not set
601 | # CONFIG_INPUT_POLLDEV is not set
602 | # CONFIG_INPUT_SPARSEKMAP is not set
603 | # CONFIG_INPUT_MATRIXKMAP is not set
604 |
605 | #
606 | # Userland interfaces
607 | #
608 | # CONFIG_INPUT_MOUSEDEV is not set
609 | CONFIG_INPUT_JOYDEV=y
610 | CONFIG_INPUT_EVDEV=y
611 | # CONFIG_INPUT_EVBUG is not set
612 |
613 | #
614 | # Input Device Drivers
615 | #
616 | # CONFIG_INPUT_KEYBOARD is not set
617 | # CONFIG_INPUT_MOUSE is not set
618 | CONFIG_INPUT_JOYSTICK=y
619 | # CONFIG_JOYSTICK_ANALOG is not set
620 | # CONFIG_JOYSTICK_A3D is not set
621 | # CONFIG_JOYSTICK_ADI is not set
622 | # CONFIG_JOYSTICK_COBRA is not set
623 | # CONFIG_JOYSTICK_GF2K is not set
624 | # CONFIG_JOYSTICK_GRIP is not set
625 | # CONFIG_JOYSTICK_GRIP_MP is not set
626 | # CONFIG_JOYSTICK_GUILLEMOT is not set
627 | # CONFIG_JOYSTICK_INTERACT is not set
628 | # CONFIG_JOYSTICK_SIDEWINDER is not set
629 | # CONFIG_JOYSTICK_TMDC is not set
630 | # CONFIG_JOYSTICK_IFORCE is not set
631 | # CONFIG_JOYSTICK_WARRIOR is not set
632 | # CONFIG_JOYSTICK_MAGELLAN is not set
633 | # CONFIG_JOYSTICK_SPACEORB is not set
634 | # CONFIG_JOYSTICK_SPACEBALL is not set
635 | # CONFIG_JOYSTICK_STINGER is not set
636 | # CONFIG_JOYSTICK_TWIDJOY is not set
637 | # CONFIG_JOYSTICK_ZHENHUA is not set
638 | # CONFIG_JOYSTICK_JOYDUMP is not set
639 | # CONFIG_JOYSTICK_FSIA6B is not set
640 | CONFIG_JOYSTICK_N64=y
641 | # CONFIG_INPUT_TABLET is not set
642 | # CONFIG_INPUT_TOUCHSCREEN is not set
643 | # CONFIG_INPUT_MISC is not set
644 | # CONFIG_RMI4_CORE is not set
645 |
646 | #
647 | # Hardware I/O ports
648 | #
649 | # CONFIG_SERIO is not set
650 | # CONFIG_GAMEPORT is not set
651 | # end of Hardware I/O ports
652 | # end of Input device support
653 |
654 | #
655 | # Character devices
656 | #
657 | CONFIG_TTY=y
658 | CONFIG_VT=y
659 | CONFIG_CONSOLE_TRANSLATIONS=y
660 | CONFIG_VT_CONSOLE=y
661 | CONFIG_HW_CONSOLE=y
662 | CONFIG_VT_HW_CONSOLE_BINDING=y
663 | CONFIG_UNIX98_PTYS=y
664 | CONFIG_LEGACY_PTYS=y
665 | CONFIG_LEGACY_PTY_COUNT=32
666 | CONFIG_LDISC_AUTOLOAD=y
667 |
668 | #
669 | # Serial drivers
670 | #
671 | # CONFIG_SERIAL_8250 is not set
672 |
673 | #
674 | # Non-8250 serial port support
675 | #
676 | # CONFIG_SERIAL_UARTLITE is not set
677 | # CONFIG_SERIAL_SCCNXP is not set
678 | # CONFIG_SERIAL_BCM63XX is not set
679 | # CONFIG_SERIAL_ALTERA_JTAGUART is not set
680 | # CONFIG_SERIAL_ALTERA_UART is not set
681 | # CONFIG_SERIAL_ARC is not set
682 | # CONFIG_SERIAL_FSL_LPUART is not set
683 | # CONFIG_SERIAL_FSL_LINFLEXUART is not set
684 | # end of Serial drivers
685 |
686 | # CONFIG_SERIAL_NONSTANDARD is not set
687 | # CONFIG_NULL_TTY is not set
688 | # CONFIG_TRACE_SINK is not set
689 | # CONFIG_SERIAL_DEV_BUS is not set
690 | # CONFIG_TTY_PRINTK is not set
691 | # CONFIG_VIRTIO_CONSOLE is not set
692 | # CONFIG_IPMI_HANDLER is not set
693 | # CONFIG_HW_RANDOM is not set
694 | CONFIG_DEVMEM=y
695 | # CONFIG_DEVKMEM is not set
696 | # CONFIG_RAW_DRIVER is not set
697 | # CONFIG_TCG_TPM is not set
698 | # end of Character devices
699 |
700 | # CONFIG_RANDOM_TRUST_BOOTLOADER is not set
701 |
702 | #
703 | # I2C support
704 | #
705 | # CONFIG_I2C is not set
706 | # end of I2C support
707 |
708 | # CONFIG_I3C is not set
709 | # CONFIG_SPI is not set
710 | # CONFIG_SPMI is not set
711 | # CONFIG_HSI is not set
712 | # CONFIG_PPS is not set
713 |
714 | #
715 | # PTP clock support
716 | #
717 |
718 | #
719 | # Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks.
720 | #
721 | # end of PTP clock support
722 |
723 | # CONFIG_PINCTRL is not set
724 | # CONFIG_GPIOLIB is not set
725 | # CONFIG_W1 is not set
726 | # CONFIG_POWER_RESET is not set
727 | # CONFIG_POWER_SUPPLY is not set
728 | # CONFIG_HWMON is not set
729 | # CONFIG_THERMAL is not set
730 | # CONFIG_WATCHDOG is not set
731 | CONFIG_SSB_POSSIBLE=y
732 | # CONFIG_SSB is not set
733 | CONFIG_BCMA_POSSIBLE=y
734 | # CONFIG_BCMA is not set
735 |
736 | #
737 | # Multifunction device drivers
738 | #
739 | # CONFIG_MFD_MADERA is not set
740 | # CONFIG_HTC_PASIC3 is not set
741 | # CONFIG_MFD_KEMPLD is not set
742 | # CONFIG_MFD_MT6397 is not set
743 | # CONFIG_MFD_SM501 is not set
744 | # CONFIG_ABX500_CORE is not set
745 | # CONFIG_MFD_SYSCON is not set
746 | # CONFIG_MFD_TI_AM335X_TSCADC is not set
747 | # CONFIG_MFD_TQMX86 is not set
748 | # end of Multifunction device drivers
749 |
750 | # CONFIG_REGULATOR is not set
751 | # CONFIG_RC_CORE is not set
752 | # CONFIG_MEDIA_CEC_SUPPORT is not set
753 | # CONFIG_MEDIA_SUPPORT is not set
754 |
755 | #
756 | # Graphics support
757 | #
758 | # CONFIG_DRM is not set
759 |
760 | #
761 | # ARM devices
762 | #
763 | # end of ARM devices
764 |
765 | #
766 | # Frame buffer Devices
767 | #
768 | CONFIG_FB_CMDLINE=y
769 | CONFIG_FB_NOTIFY=y
770 | CONFIG_FB=y
771 | # CONFIG_FIRMWARE_EDID is not set
772 | CONFIG_FB_CFB_FILLRECT=y
773 | CONFIG_FB_CFB_COPYAREA=y
774 | CONFIG_FB_CFB_IMAGEBLIT=y
775 | # CONFIG_FB_FOREIGN_ENDIAN is not set
776 | # CONFIG_FB_MODE_HELPERS is not set
777 | # CONFIG_FB_TILEBLITTING is not set
778 |
779 | #
780 | # Frame buffer hardware drivers
781 | #
782 | # CONFIG_FB_OPENCORES is not set
783 | # CONFIG_FB_S1D13XXX is not set
784 | # CONFIG_FB_IBM_GXT4500 is not set
785 | # CONFIG_FB_VIRTUAL is not set
786 | # CONFIG_FB_METRONOME is not set
787 | # CONFIG_FB_SIMPLE is not set
788 | CONFIG_FB_N64RDP=y
789 | # end of Frame buffer Devices
790 |
791 | #
792 | # Backlight & LCD device support
793 | #
794 | # CONFIG_LCD_CLASS_DEVICE is not set
795 | # CONFIG_BACKLIGHT_CLASS_DEVICE is not set
796 | # end of Backlight & LCD device support
797 |
798 | #
799 | # Console display driver support
800 | #
801 | # CONFIG_VGA_CONSOLE is not set
802 | CONFIG_DUMMY_CONSOLE=y
803 | CONFIG_DUMMY_CONSOLE_COLUMNS=40
804 | CONFIG_DUMMY_CONSOLE_ROWS=30
805 | CONFIG_FRAMEBUFFER_CONSOLE=y
806 | CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY=y
807 | # CONFIG_FRAMEBUFFER_CONSOLE_ROTATION is not set
808 | # CONFIG_FRAMEBUFFER_CONSOLE_DEFERRED_TAKEOVER is not set
809 | # end of Console display driver support
810 |
811 | CONFIG_LOGO=y
812 | # CONFIG_LOGO_LINUX_MONO is not set
813 | # CONFIG_LOGO_LINUX_VGA16 is not set
814 | CONFIG_LOGO_LINUX_CLUT224=y
815 | # end of Graphics support
816 |
817 | CONFIG_SOUND=y
818 | CONFIG_SOUND_OSS_CORE=y
819 | CONFIG_SOUND_OSS_CORE_PRECLAIM=y
820 | CONFIG_SND=y
821 | CONFIG_SND_TIMER=y
822 | CONFIG_SND_PCM=y
823 | CONFIG_SND_OSSEMUL=y
824 | CONFIG_SND_MIXER_OSS=y
825 | CONFIG_SND_PCM_OSS=y
826 | CONFIG_SND_PCM_OSS_PLUGINS=y
827 | CONFIG_SND_PCM_TIMER=y
828 | # CONFIG_SND_DYNAMIC_MINORS is not set
829 | # CONFIG_SND_SUPPORT_OLD_API is not set
830 | CONFIG_SND_PROC_FS=y
831 | # CONFIG_SND_VERBOSE_PROCFS is not set
832 | # CONFIG_SND_VERBOSE_PRINTK is not set
833 | # CONFIG_SND_DEBUG is not set
834 | # CONFIG_SND_SEQUENCER is not set
835 | # CONFIG_SND_DRIVERS is not set
836 |
837 | #
838 | # HD-Audio
839 | #
840 | # end of HD-Audio
841 |
842 | CONFIG_SND_HDA_PREALLOC_SIZE=64
843 | CONFIG_SND_MIPS=y
844 | CONFIG_SND_N64=y
845 | # CONFIG_SND_SOC is not set
846 |
847 | #
848 | # HID support
849 | #
850 | # CONFIG_HID is not set
851 | # end of HID support
852 |
853 | CONFIG_USB_OHCI_LITTLE_ENDIAN=y
854 | # CONFIG_USB_SUPPORT is not set
855 | # CONFIG_MMC is not set
856 | # CONFIG_MEMSTICK is not set
857 | # CONFIG_NEW_LEDS is not set
858 | # CONFIG_ACCESSIBILITY is not set
859 | CONFIG_RTC_LIB=y
860 | # CONFIG_RTC_CLASS is not set
861 | # CONFIG_DMADEVICES is not set
862 |
863 | #
864 | # DMABUF options
865 | #
866 | # CONFIG_SYNC_FILE is not set
867 | # CONFIG_DMABUF_MOVE_NOTIFY is not set
868 | # CONFIG_DMABUF_HEAPS is not set
869 | # end of DMABUF options
870 |
871 | # CONFIG_AUXDISPLAY is not set
872 | # CONFIG_UIO is not set
873 | # CONFIG_VIRT_DRIVERS is not set
874 | # CONFIG_VIRTIO_MENU is not set
875 | # CONFIG_VDPA is not set
876 | # CONFIG_VHOST_MENU is not set
877 |
878 | #
879 | # Microsoft Hyper-V guest support
880 | #
881 | # end of Microsoft Hyper-V guest support
882 |
883 | # CONFIG_GREYBUS is not set
884 | # CONFIG_STAGING is not set
885 | CONFIG_MIPS_PLATFORM_DEVICES=y
886 | # CONFIG_GOLDFISH is not set
887 | # CONFIG_COMMON_CLK is not set
888 | # CONFIG_HWSPINLOCK is not set
889 |
890 | #
891 | # Clock Source drivers
892 | #
893 | # end of Clock Source drivers
894 |
895 | # CONFIG_MAILBOX is not set
896 | # CONFIG_IOMMU_SUPPORT is not set
897 |
898 | #
899 | # Remoteproc drivers
900 | #
901 | # CONFIG_REMOTEPROC is not set
902 | # end of Remoteproc drivers
903 |
904 | #
905 | # Rpmsg drivers
906 | #
907 | # CONFIG_RPMSG_VIRTIO is not set
908 | # end of Rpmsg drivers
909 |
910 | #
911 | # SOC (System On Chip) specific Drivers
912 | #
913 |
914 | #
915 | # Amlogic SoC drivers
916 | #
917 | # end of Amlogic SoC drivers
918 |
919 | #
920 | # Aspeed SoC drivers
921 | #
922 | # end of Aspeed SoC drivers
923 |
924 | #
925 | # Broadcom SoC drivers
926 | #
927 | # end of Broadcom SoC drivers
928 |
929 | #
930 | # NXP/Freescale QorIQ SoC drivers
931 | #
932 | # end of NXP/Freescale QorIQ SoC drivers
933 |
934 | #
935 | # i.MX SoC drivers
936 | #
937 | # end of i.MX SoC drivers
938 |
939 | #
940 | # Qualcomm SoC drivers
941 | #
942 | # end of Qualcomm SoC drivers
943 |
944 | # CONFIG_SOC_TI is not set
945 |
946 | #
947 | # Xilinx SoC drivers
948 | #
949 | # CONFIG_XILINX_VCU is not set
950 | # end of Xilinx SoC drivers
951 | # end of SOC (System On Chip) specific Drivers
952 |
953 | # CONFIG_PM_DEVFREQ is not set
954 | # CONFIG_EXTCON is not set
955 | # CONFIG_MEMORY is not set
956 | # CONFIG_IIO is not set
957 | # CONFIG_PWM is not set
958 |
959 | #
960 | # IRQ chip support
961 | #
962 | CONFIG_IRQ_MIPS_CPU=y
963 | # CONFIG_INGENIC_TCU_IRQ is not set
964 | # end of IRQ chip support
965 |
966 | # CONFIG_IPACK_BUS is not set
967 | # CONFIG_RESET_CONTROLLER is not set
968 |
969 | #
970 | # PHY Subsystem
971 | #
972 | # CONFIG_GENERIC_PHY is not set
973 | # CONFIG_BCM_KONA_USB2_PHY is not set
974 | # CONFIG_PHY_PXA_28NM_HSIC is not set
975 | # CONFIG_PHY_PXA_28NM_USB2 is not set
976 | # end of PHY Subsystem
977 |
978 | # CONFIG_POWERCAP is not set
979 | # CONFIG_MCB is not set
980 | # CONFIG_RAS is not set
981 |
982 | #
983 | # Android
984 | #
985 | # CONFIG_ANDROID is not set
986 | # end of Android
987 |
988 | # CONFIG_LIBNVDIMM is not set
989 | # CONFIG_DAX is not set
990 | # CONFIG_NVMEM is not set
991 |
992 | #
993 | # HW tracing support
994 | #
995 | # CONFIG_STM is not set
996 | # CONFIG_INTEL_TH is not set
997 | # end of HW tracing support
998 |
999 | # CONFIG_FPGA is not set
1000 | # CONFIG_SIOX is not set
1001 | # CONFIG_SLIMBUS is not set
1002 | # CONFIG_INTERCONNECT is not set
1003 | # CONFIG_COUNTER is not set
1004 | # end of Device Drivers
1005 |
1006 | #
1007 | # File systems
1008 | #
1009 | # CONFIG_VALIDATE_FS_PARSER is not set
1010 | # CONFIG_EXT2_FS is not set
1011 | # CONFIG_EXT3_FS is not set
1012 | # CONFIG_EXT4_FS is not set
1013 | # CONFIG_REISERFS_FS is not set
1014 | # CONFIG_JFS_FS is not set
1015 | # CONFIG_XFS_FS is not set
1016 | # CONFIG_GFS2_FS is not set
1017 | # CONFIG_BTRFS_FS is not set
1018 | # CONFIG_NILFS2_FS is not set
1019 | # CONFIG_F2FS_FS is not set
1020 | CONFIG_EXPORTFS=y
1021 | # CONFIG_EXPORTFS_BLOCK_OPS is not set
1022 | # CONFIG_FILE_LOCKING is not set
1023 | # CONFIG_FS_ENCRYPTION is not set
1024 | # CONFIG_FS_VERITY is not set
1025 | CONFIG_FSNOTIFY=y
1026 | CONFIG_DNOTIFY=y
1027 | CONFIG_INOTIFY_USER=y
1028 | CONFIG_FANOTIFY=y
1029 | # CONFIG_QUOTA is not set
1030 | # CONFIG_AUTOFS4_FS is not set
1031 | # CONFIG_AUTOFS_FS is not set
1032 | # CONFIG_FUSE_FS is not set
1033 | # CONFIG_OVERLAY_FS is not set
1034 |
1035 | #
1036 | # Caches
1037 | #
1038 | # CONFIG_FSCACHE is not set
1039 | # end of Caches
1040 |
1041 | #
1042 | # CD-ROM/DVD Filesystems
1043 | #
1044 | # CONFIG_ISO9660_FS is not set
1045 | # CONFIG_UDF_FS is not set
1046 | # end of CD-ROM/DVD Filesystems
1047 |
1048 | #
1049 | # DOS/FAT/EXFAT/NT Filesystems
1050 | #
1051 | # CONFIG_MSDOS_FS is not set
1052 | # CONFIG_VFAT_FS is not set
1053 | # CONFIG_EXFAT_FS is not set
1054 | # CONFIG_NTFS_FS is not set
1055 | # end of DOS/FAT/EXFAT/NT Filesystems
1056 |
1057 | #
1058 | # Pseudo filesystems
1059 | #
1060 | CONFIG_PROC_FS=y
1061 | # CONFIG_PROC_KCORE is not set
1062 | CONFIG_PROC_SYSCTL=y
1063 | # CONFIG_PROC_PAGE_MONITOR is not set
1064 | # CONFIG_PROC_CHILDREN is not set
1065 | CONFIG_KERNFS=y
1066 | CONFIG_SYSFS=y
1067 | CONFIG_TMPFS=y
1068 | # CONFIG_TMPFS_POSIX_ACL is not set
1069 | # CONFIG_TMPFS_XATTR is not set
1070 | # CONFIG_TMPFS_INODE64 is not set
1071 | CONFIG_MEMFD_CREATE=y
1072 | # CONFIG_CONFIGFS_FS is not set
1073 | # end of Pseudo filesystems
1074 |
1075 | CONFIG_MISC_FILESYSTEMS=y
1076 | # CONFIG_ORANGEFS_FS is not set
1077 | # CONFIG_ADFS_FS is not set
1078 | # CONFIG_AFFS_FS is not set
1079 | # CONFIG_HFS_FS is not set
1080 | # CONFIG_HFSPLUS_FS is not set
1081 | # CONFIG_BEFS_FS is not set
1082 | # CONFIG_BFS_FS is not set
1083 | # CONFIG_EFS_FS is not set
1084 | # CONFIG_CRAMFS is not set
1085 | CONFIG_SQUASHFS=y
1086 | # CONFIG_SQUASHFS_FILE_CACHE is not set
1087 | CONFIG_SQUASHFS_FILE_DIRECT=y
1088 | CONFIG_SQUASHFS_DECOMP_SINGLE=y
1089 | # CONFIG_SQUASHFS_DECOMP_MULTI is not set
1090 | # CONFIG_SQUASHFS_DECOMP_MULTI_PERCPU is not set
1091 | # CONFIG_SQUASHFS_XATTR is not set
1092 | CONFIG_SQUASHFS_ZLIB=y
1093 | # CONFIG_SQUASHFS_LZ4 is not set
1094 | # CONFIG_SQUASHFS_LZO is not set
1095 | # CONFIG_SQUASHFS_XZ is not set
1096 | # CONFIG_SQUASHFS_ZSTD is not set
1097 | # CONFIG_SQUASHFS_4K_DEVBLK_SIZE is not set
1098 | # CONFIG_SQUASHFS_EMBEDDED is not set
1099 | CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3
1100 | # CONFIG_VXFS_FS is not set
1101 | # CONFIG_MINIX_FS is not set
1102 | # CONFIG_OMFS_FS is not set
1103 | # CONFIG_HPFS_FS is not set
1104 | # CONFIG_QNX4FS_FS is not set
1105 | # CONFIG_QNX6FS_FS is not set
1106 | # CONFIG_ROMFS_FS is not set
1107 | # CONFIG_PSTORE is not set
1108 | # CONFIG_SYSV_FS is not set
1109 | # CONFIG_UFS_FS is not set
1110 | # CONFIG_EROFS_FS is not set
1111 | # CONFIG_NLS is not set
1112 | # CONFIG_UNICODE is not set
1113 | # end of File systems
1114 |
1115 | #
1116 | # Security options
1117 | #
1118 | # CONFIG_KEYS is not set
1119 | # CONFIG_SECURITY_DMESG_RESTRICT is not set
1120 | # CONFIG_SECURITYFS is not set
1121 | # CONFIG_FORTIFY_SOURCE is not set
1122 | # CONFIG_STATIC_USERMODEHELPER is not set
1123 | CONFIG_DEFAULT_SECURITY_DAC=y
1124 | CONFIG_LSM="lockdown,yama,loadpin,safesetid,integrity,bpf"
1125 |
1126 | #
1127 | # Kernel hardening options
1128 | #
1129 |
1130 | #
1131 | # Memory initialization
1132 | #
1133 | CONFIG_INIT_STACK_NONE=y
1134 | # CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set
1135 | # CONFIG_INIT_ON_FREE_DEFAULT_ON is not set
1136 | # end of Memory initialization
1137 | # end of Kernel hardening options
1138 | # end of Security options
1139 |
1140 | # CONFIG_CRYPTO is not set
1141 |
1142 | #
1143 | # Library routines
1144 | #
1145 | # CONFIG_PACKING is not set
1146 | CONFIG_BITREVERSE=y
1147 | # CONFIG_CORDIC is not set
1148 | # CONFIG_PRIME_NUMBERS is not set
1149 | CONFIG_NO_GENERIC_PCI_IOPORT_MAP=y
1150 | CONFIG_GENERIC_PCI_IOMAP=y
1151 | CONFIG_GENERIC_IOMAP=y
1152 | CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y
1153 | # CONFIG_CRC_CCITT is not set
1154 | # CONFIG_CRC16 is not set
1155 | # CONFIG_CRC_T10DIF is not set
1156 | # CONFIG_CRC_ITU_T is not set
1157 | CONFIG_CRC32=y
1158 | # CONFIG_CRC32_SELFTEST is not set
1159 | # CONFIG_CRC32_SLICEBY8 is not set
1160 | CONFIG_CRC32_SLICEBY4=y
1161 | # CONFIG_CRC32_SARWATE is not set
1162 | # CONFIG_CRC32_BIT is not set
1163 | # CONFIG_CRC64 is not set
1164 | # CONFIG_CRC4 is not set
1165 | # CONFIG_CRC7 is not set
1166 | # CONFIG_LIBCRC32C is not set
1167 | # CONFIG_CRC8 is not set
1168 | # CONFIG_RANDOM32_SELFTEST is not set
1169 | CONFIG_ZLIB_INFLATE=y
1170 | # CONFIG_XZ_DEC is not set
1171 | CONFIG_DECOMPRESS_GZIP=y
1172 | CONFIG_HAS_IOMEM=y
1173 | CONFIG_HAS_IOPORT_MAP=y
1174 | CONFIG_HAS_DMA=y
1175 | CONFIG_NEED_DMA_MAP_STATE=y
1176 | CONFIG_ARCH_DMA_ADDR_T_64BIT=y
1177 | CONFIG_ARCH_HAS_DMA_WRITE_COMBINE=y
1178 | CONFIG_ARCH_HAS_SYNC_DMA_FOR_DEVICE=y
1179 | CONFIG_ARCH_HAS_DMA_PREP_COHERENT=y
1180 | CONFIG_DMA_NONCOHERENT_MMAP=y
1181 | # CONFIG_DMA_API_DEBUG is not set
1182 | # CONFIG_IRQ_POLL is not set
1183 | CONFIG_HAVE_GENERIC_VDSO=y
1184 | CONFIG_GENERIC_GETTIMEOFDAY=y
1185 | CONFIG_FONT_SUPPORT=y
1186 | CONFIG_FONTS=y
1187 | CONFIG_FONT_8x8=y
1188 | # CONFIG_FONT_8x16 is not set
1189 | # CONFIG_FONT_6x11 is not set
1190 | # CONFIG_FONT_7x14 is not set
1191 | # CONFIG_FONT_PEARL_8x8 is not set
1192 | # CONFIG_FONT_ACORN_8x8 is not set
1193 | # CONFIG_FONT_MINI_4x6 is not set
1194 | # CONFIG_FONT_6x10 is not set
1195 | # CONFIG_FONT_10x18 is not set
1196 | # CONFIG_FONT_SUN8x16 is not set
1197 | # CONFIG_FONT_SUN12x22 is not set
1198 | # CONFIG_FONT_TER16x32 is not set
1199 | # CONFIG_FONT_6x8 is not set
1200 | CONFIG_SBITMAP=y
1201 | # CONFIG_STRING_SELFTEST is not set
1202 | # end of Library routines
1203 |
1204 | CONFIG_GENERIC_LIB_ASHLDI3=y
1205 | CONFIG_GENERIC_LIB_ASHRDI3=y
1206 | CONFIG_GENERIC_LIB_LSHRDI3=y
1207 | CONFIG_GENERIC_LIB_CMPDI2=y
1208 | CONFIG_GENERIC_LIB_UCMPDI2=y
1209 |
1210 | #
1211 | # Kernel hacking
1212 | #
1213 |
1214 | #
1215 | # printk and dmesg options
1216 | #
1217 | CONFIG_PRINTK_TIME=y
1218 | # CONFIG_PRINTK_CALLER is not set
1219 | CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7
1220 | CONFIG_CONSOLE_LOGLEVEL_QUIET=4
1221 | CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4
1222 | # CONFIG_BOOT_PRINTK_DELAY is not set
1223 | # CONFIG_DYNAMIC_DEBUG is not set
1224 | # CONFIG_DYNAMIC_DEBUG_CORE is not set
1225 | CONFIG_SYMBOLIC_ERRNAME=y
1226 | # end of printk and dmesg options
1227 |
1228 | #
1229 | # Compile-time checks and compiler options
1230 | #
1231 | # CONFIG_DEBUG_INFO is not set
1232 | CONFIG_ENABLE_MUST_CHECK=y
1233 | CONFIG_FRAME_WARN=1024
1234 | # CONFIG_STRIP_ASM_SYMS is not set
1235 | # CONFIG_READABLE_ASM is not set
1236 | # CONFIG_HEADERS_INSTALL is not set
1237 | # CONFIG_DEBUG_SECTION_MISMATCH is not set
1238 | CONFIG_SECTION_MISMATCH_WARN_ONLY=y
1239 | # CONFIG_DEBUG_FORCE_FUNCTION_ALIGN_32B is not set
1240 | # CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set
1241 | # end of Compile-time checks and compiler options
1242 |
1243 | #
1244 | # Generic Kernel Debugging Instruments
1245 | #
1246 | # CONFIG_MAGIC_SYSRQ is not set
1247 | # CONFIG_DEBUG_FS is not set
1248 | CONFIG_HAVE_ARCH_KGDB=y
1249 | # CONFIG_KGDB is not set
1250 | CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y
1251 | # CONFIG_UBSAN is not set
1252 | # end of Generic Kernel Debugging Instruments
1253 |
1254 | CONFIG_DEBUG_KERNEL=y
1255 | # CONFIG_DEBUG_MISC is not set
1256 |
1257 | #
1258 | # Memory Debugging
1259 | #
1260 | # CONFIG_PAGE_EXTENSION is not set
1261 | # CONFIG_DEBUG_PAGEALLOC is not set
1262 | # CONFIG_PAGE_OWNER is not set
1263 | # CONFIG_PAGE_POISONING is not set
1264 | # CONFIG_DEBUG_OBJECTS is not set
1265 | CONFIG_HAVE_DEBUG_KMEMLEAK=y
1266 | # CONFIG_DEBUG_KMEMLEAK is not set
1267 | # CONFIG_DEBUG_STACK_USAGE is not set
1268 | # CONFIG_SCHED_STACK_END_CHECK is not set
1269 | # CONFIG_DEBUG_VM is not set
1270 | # CONFIG_DEBUG_MEMORY_INIT is not set
1271 | CONFIG_HAVE_DEBUG_STACKOVERFLOW=y
1272 | # CONFIG_DEBUG_STACKOVERFLOW is not set
1273 | CONFIG_CC_HAS_KASAN_GENERIC=y
1274 | CONFIG_CC_HAS_WORKING_NOSANITIZE_ADDRESS=y
1275 | # end of Memory Debugging
1276 |
1277 | # CONFIG_DEBUG_SHIRQ is not set
1278 |
1279 | #
1280 | # Debug Oops, Lockups and Hangs
1281 | #
1282 | CONFIG_PANIC_ON_OOPS=y
1283 | CONFIG_PANIC_ON_OOPS_VALUE=1
1284 | CONFIG_PANIC_TIMEOUT=0
1285 | # CONFIG_SOFTLOCKUP_DETECTOR is not set
1286 | # CONFIG_DETECT_HUNG_TASK is not set
1287 | # CONFIG_WQ_WATCHDOG is not set
1288 | # end of Debug Oops, Lockups and Hangs
1289 |
1290 | #
1291 | # Scheduler Debugging
1292 | #
1293 | # CONFIG_SCHED_DEBUG is not set
1294 | # CONFIG_SCHEDSTATS is not set
1295 | # end of Scheduler Debugging
1296 |
1297 | # CONFIG_DEBUG_TIMEKEEPING is not set
1298 |
1299 | #
1300 | # Lock Debugging (spinlocks, mutexes, etc...)
1301 | #
1302 | CONFIG_LOCK_DEBUGGING_SUPPORT=y
1303 | # CONFIG_PROVE_LOCKING is not set
1304 | # CONFIG_LOCK_STAT is not set
1305 | # CONFIG_DEBUG_RT_MUTEXES is not set
1306 | # CONFIG_DEBUG_SPINLOCK is not set
1307 | # CONFIG_DEBUG_MUTEXES is not set
1308 | # CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set
1309 | # CONFIG_DEBUG_RWSEMS is not set
1310 | # CONFIG_DEBUG_LOCK_ALLOC is not set
1311 | # CONFIG_DEBUG_ATOMIC_SLEEP is not set
1312 | # CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set
1313 | # CONFIG_LOCK_TORTURE_TEST is not set
1314 | # CONFIG_WW_MUTEX_SELFTEST is not set
1315 | # CONFIG_SCF_TORTURE_TEST is not set
1316 | # CONFIG_CSD_LOCK_WAIT_DEBUG is not set
1317 | # end of Lock Debugging (spinlocks, mutexes, etc...)
1318 |
1319 | # CONFIG_STACKTRACE is not set
1320 | # CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set
1321 | # CONFIG_DEBUG_KOBJECT is not set
1322 |
1323 | #
1324 | # Debug kernel data structures
1325 | #
1326 | # CONFIG_DEBUG_LIST is not set
1327 | # CONFIG_DEBUG_PLIST is not set
1328 | # CONFIG_DEBUG_SG is not set
1329 | # CONFIG_DEBUG_NOTIFIERS is not set
1330 | # CONFIG_BUG_ON_DATA_CORRUPTION is not set
1331 | # end of Debug kernel data structures
1332 |
1333 | # CONFIG_DEBUG_CREDENTIALS is not set
1334 |
1335 | #
1336 | # RCU Debugging
1337 | #
1338 | # CONFIG_RCU_SCALE_TEST is not set
1339 | # CONFIG_RCU_TORTURE_TEST is not set
1340 | # CONFIG_RCU_REF_SCALE_TEST is not set
1341 | # CONFIG_RCU_TRACE is not set
1342 | # CONFIG_RCU_EQS_DEBUG is not set
1343 | # end of RCU Debugging
1344 |
1345 | # CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set
1346 | # CONFIG_DEBUG_BLOCK_EXT_DEVT is not set
1347 | # CONFIG_LATENCYTOP is not set
1348 | CONFIG_HAVE_FUNCTION_TRACER=y
1349 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y
1350 | CONFIG_HAVE_DYNAMIC_FTRACE=y
1351 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y
1352 | CONFIG_HAVE_SYSCALL_TRACEPOINTS=y
1353 | CONFIG_HAVE_C_RECORDMCOUNT=y
1354 | CONFIG_TRACING_SUPPORT=y
1355 | # CONFIG_FTRACE is not set
1356 | # CONFIG_SAMPLES is not set
1357 |
1358 | #
1359 | # mips Debugging
1360 | #
1361 | CONFIG_TRACE_IRQFLAGS_SUPPORT=y
1362 | CONFIG_EARLY_PRINTK=y
1363 | # CONFIG_CMDLINE_BOOL is not set
1364 | # CONFIG_DEBUG_ZBOOT is not set
1365 | # end of mips Debugging
1366 |
1367 | #
1368 | # Kernel Testing and Coverage
1369 | #
1370 | # CONFIG_KUNIT is not set
1371 | # CONFIG_NOTIFIER_ERROR_INJECTION is not set
1372 | # CONFIG_FAULT_INJECTION is not set
1373 | CONFIG_ARCH_HAS_KCOV=y
1374 | CONFIG_CC_HAS_SANCOV_TRACE_PC=y
1375 | # CONFIG_KCOV is not set
1376 | # CONFIG_RUNTIME_TESTING_MENU is not set
1377 | # CONFIG_MEMTEST is not set
1378 | # end of Kernel Testing and Coverage
1379 | # end of Kernel hacking
1380 |
--------------------------------------------------------------------------------
/n64linux/n64-kernel-config-upstream:
--------------------------------------------------------------------------------
1 | #
2 | # Automatically generated file; DO NOT EDIT.
3 | # Linux/mips 5.10.0 Kernel Configuration
4 | #
5 | CONFIG_CC_VERSION_TEXT="mips64-linux-musln32-gcc (GCC) 10.2.0"
6 | CONFIG_CC_IS_GCC=y
7 | CONFIG_GCC_VERSION=100200
8 | CONFIG_LD_VERSION=235010000
9 | CONFIG_CLANG_VERSION=0
10 | CONFIG_LLD_VERSION=0
11 | CONFIG_CC_CAN_LINK=y
12 | CONFIG_CC_CAN_LINK_STATIC=y
13 | CONFIG_CC_HAS_ASM_GOTO=y
14 | CONFIG_CC_HAS_ASM_INLINE=y
15 | CONFIG_IRQ_WORK=y
16 | CONFIG_BUILDTIME_TABLE_SORT=y
17 |
18 | #
19 | # General setup
20 | #
21 | CONFIG_BROKEN_ON_SMP=y
22 | CONFIG_INIT_ENV_ARG_LIMIT=32
23 | # CONFIG_COMPILE_TEST is not set
24 | CONFIG_LOCALVERSION="-n64"
25 | CONFIG_LOCALVERSION_AUTO=y
26 | CONFIG_BUILD_SALT=""
27 | CONFIG_HAVE_KERNEL_GZIP=y
28 | CONFIG_HAVE_KERNEL_BZIP2=y
29 | CONFIG_HAVE_KERNEL_LZMA=y
30 | CONFIG_HAVE_KERNEL_XZ=y
31 | CONFIG_HAVE_KERNEL_LZO=y
32 | CONFIG_HAVE_KERNEL_LZ4=y
33 | CONFIG_HAVE_KERNEL_ZSTD=y
34 | CONFIG_KERNEL_GZIP=y
35 | # CONFIG_KERNEL_BZIP2 is not set
36 | # CONFIG_KERNEL_LZMA is not set
37 | # CONFIG_KERNEL_XZ is not set
38 | # CONFIG_KERNEL_LZO is not set
39 | # CONFIG_KERNEL_LZ4 is not set
40 | # CONFIG_KERNEL_ZSTD is not set
41 | CONFIG_DEFAULT_INIT=""
42 | CONFIG_DEFAULT_HOSTNAME="(none)"
43 | CONFIG_SWAP=y
44 | CONFIG_SYSVIPC=y
45 | CONFIG_SYSVIPC_SYSCTL=y
46 | # CONFIG_WATCH_QUEUE is not set
47 | # CONFIG_CROSS_MEMORY_ATTACH is not set
48 | # CONFIG_USELIB is not set
49 |
50 | #
51 | # IRQ subsystem
52 | #
53 | CONFIG_GENERIC_IRQ_PROBE=y
54 | CONFIG_GENERIC_IRQ_SHOW=y
55 | CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y
56 | CONFIG_GENERIC_IRQ_CHIP=y
57 | CONFIG_IRQ_DOMAIN=y
58 | CONFIG_HANDLE_DOMAIN_IRQ=y
59 | CONFIG_IRQ_FORCED_THREADING=y
60 | # end of IRQ subsystem
61 |
62 | CONFIG_GENERIC_TIME_VSYSCALL=y
63 | CONFIG_GENERIC_CLOCKEVENTS=y
64 | CONFIG_GENERIC_CMOS_UPDATE=y
65 |
66 | #
67 | # Timers subsystem
68 | #
69 | CONFIG_TICK_ONESHOT=y
70 | CONFIG_NO_HZ_COMMON=y
71 | # CONFIG_HZ_PERIODIC is not set
72 | CONFIG_NO_HZ_IDLE=y
73 | # CONFIG_NO_HZ is not set
74 | # CONFIG_HIGH_RES_TIMERS is not set
75 | # end of Timers subsystem
76 |
77 | # CONFIG_PREEMPT_NONE is not set
78 | CONFIG_PREEMPT_VOLUNTARY=y
79 | # CONFIG_PREEMPT is not set
80 |
81 | #
82 | # CPU/Task time and stats accounting
83 | #
84 | CONFIG_TICK_CPU_ACCOUNTING=y
85 | # CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set
86 | # CONFIG_IRQ_TIME_ACCOUNTING is not set
87 | # CONFIG_PSI is not set
88 | # end of CPU/Task time and stats accounting
89 |
90 | #
91 | # RCU Subsystem
92 | #
93 | CONFIG_TINY_RCU=y
94 | # CONFIG_RCU_EXPERT is not set
95 | CONFIG_SRCU=y
96 | CONFIG_TINY_SRCU=y
97 | # end of RCU Subsystem
98 |
99 | # CONFIG_IKCONFIG is not set
100 | # CONFIG_IKHEADERS is not set
101 | CONFIG_LOG_BUF_SHIFT=13
102 | CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13
103 | CONFIG_GENERIC_SCHED_CLOCK=y
104 |
105 | #
106 | # Scheduler features
107 | #
108 | # end of Scheduler features
109 |
110 | CONFIG_CC_HAS_INT128=y
111 | # CONFIG_CGROUPS is not set
112 | # CONFIG_CHECKPOINT_RESTORE is not set
113 | # CONFIG_SCHED_AUTOGROUP is not set
114 | # CONFIG_SYSFS_DEPRECATED is not set
115 | # CONFIG_RELAY is not set
116 | CONFIG_BLK_DEV_INITRD=y
117 | CONFIG_INITRAMFS_SOURCE="/tmp/n64root.cpio"
118 | CONFIG_INITRAMFS_ROOT_UID=0
119 | CONFIG_INITRAMFS_ROOT_GID=0
120 | CONFIG_RD_GZIP=y
121 | # CONFIG_RD_BZIP2 is not set
122 | # CONFIG_RD_LZMA is not set
123 | # CONFIG_RD_XZ is not set
124 | # CONFIG_RD_LZO is not set
125 | # CONFIG_RD_LZ4 is not set
126 | # CONFIG_RD_ZSTD is not set
127 | CONFIG_INITRAMFS_COMPRESSION_GZIP=y
128 | # CONFIG_INITRAMFS_COMPRESSION_NONE is not set
129 | # CONFIG_BOOT_CONFIG is not set
130 | # CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set
131 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y
132 | CONFIG_HAVE_LD_DEAD_CODE_DATA_ELIMINATION=y
133 | CONFIG_LD_DEAD_CODE_DATA_ELIMINATION=y
134 | CONFIG_SYSCTL=y
135 | CONFIG_SYSCTL_EXCEPTION_TRACE=y
136 | CONFIG_EXPERT=y
137 | # CONFIG_MULTIUSER is not set
138 | # CONFIG_SGETMASK_SYSCALL is not set
139 | # CONFIG_SYSFS_SYSCALL is not set
140 | # CONFIG_FHANDLE is not set
141 | CONFIG_POSIX_TIMERS=y
142 | CONFIG_PRINTK=y
143 | CONFIG_PRINTK_NMI=y
144 | CONFIG_BUG=y
145 | # CONFIG_BASE_FULL is not set
146 | CONFIG_FUTEX=y
147 | CONFIG_FUTEX_PI=y
148 | CONFIG_EPOLL=y
149 | # CONFIG_SIGNALFD is not set
150 | # CONFIG_TIMERFD is not set
151 | # CONFIG_EVENTFD is not set
152 | CONFIG_SHMEM=y
153 | # CONFIG_AIO is not set
154 | # CONFIG_IO_URING is not set
155 | CONFIG_ADVISE_SYSCALLS=y
156 | # CONFIG_MEMBARRIER is not set
157 | # CONFIG_KALLSYMS is not set
158 | # CONFIG_BPF_SYSCALL is not set
159 | # CONFIG_USERFAULTFD is not set
160 | # CONFIG_RSEQ is not set
161 | CONFIG_EMBEDDED=y
162 | CONFIG_HAVE_PERF_EVENTS=y
163 | CONFIG_PERF_USE_VMALLOC=y
164 | # CONFIG_PC104 is not set
165 |
166 | #
167 | # Kernel Performance Events And Counters
168 | #
169 | # CONFIG_PERF_EVENTS is not set
170 | # end of Kernel Performance Events And Counters
171 |
172 | # CONFIG_VM_EVENT_COUNTERS is not set
173 | # CONFIG_COMPAT_BRK is not set
174 | # CONFIG_SLAB is not set
175 | # CONFIG_SLUB is not set
176 | CONFIG_SLOB=y
177 | CONFIG_SLAB_MERGE_DEFAULT=y
178 | # CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set
179 | # CONFIG_PROFILING is not set
180 | # end of General setup
181 |
182 | CONFIG_MIPS=y
183 |
184 | #
185 | # Machine selection
186 | #
187 | # CONFIG_MIPS_GENERIC_KERNEL is not set
188 | # CONFIG_MIPS_ALCHEMY is not set
189 | # CONFIG_AR7 is not set
190 | # CONFIG_ATH25 is not set
191 | # CONFIG_ATH79 is not set
192 | # CONFIG_BMIPS_GENERIC is not set
193 | # CONFIG_BCM47XX is not set
194 | # CONFIG_BCM63XX is not set
195 | # CONFIG_MIPS_COBALT is not set
196 | # CONFIG_MACH_DECSTATION is not set
197 | # CONFIG_MACH_JAZZ is not set
198 | # CONFIG_MACH_INGENIC_SOC is not set
199 | # CONFIG_LANTIQ is not set
200 | # CONFIG_MACH_LOONGSON32 is not set
201 | # CONFIG_MACH_LOONGSON2EF is not set
202 | # CONFIG_MACH_LOONGSON64 is not set
203 | # CONFIG_MACH_PISTACHIO is not set
204 | # CONFIG_MIPS_MALTA is not set
205 | # CONFIG_MACH_PIC32 is not set
206 | # CONFIG_MACH_VR41XX is not set
207 | CONFIG_MACH_NINTENDO64=y
208 | # CONFIG_RALINK is not set
209 | # CONFIG_SGI_IP22 is not set
210 | # CONFIG_SGI_IP27 is not set
211 | # CONFIG_SGI_IP28 is not set
212 | # CONFIG_SGI_IP30 is not set
213 | # CONFIG_SGI_IP32 is not set
214 | # CONFIG_SIBYTE_CRHINE is not set
215 | # CONFIG_SIBYTE_CARMEL is not set
216 | # CONFIG_SIBYTE_CRHONE is not set
217 | # CONFIG_SIBYTE_RHONE is not set
218 | # CONFIG_SIBYTE_SWARM is not set
219 | # CONFIG_SIBYTE_LITTLESUR is not set
220 | # CONFIG_SIBYTE_SENTOSA is not set
221 | # CONFIG_SIBYTE_BIGSUR is not set
222 | # CONFIG_SNI_RM is not set
223 | # CONFIG_MACH_TX39XX is not set
224 | # CONFIG_MACH_TX49XX is not set
225 | # CONFIG_MIKROTIK_RB532 is not set
226 | # CONFIG_CAVIUM_OCTEON_SOC is not set
227 | # CONFIG_NLM_XLR_BOARD is not set
228 | # CONFIG_NLM_XLP_BOARD is not set
229 | # end of Machine selection
230 |
231 | CONFIG_GENERIC_HWEIGHT=y
232 | CONFIG_GENERIC_CALIBRATE_DELAY=y
233 | CONFIG_SCHED_OMIT_FRAME_POINTER=y
234 | CONFIG_CEVT_R4K=y
235 | CONFIG_CSRC_R4K=y
236 | CONFIG_MIPS_CLOCK_VSYSCALL=y
237 | CONFIG_ARCH_SUPPORTS_UPROBES=y
238 | CONFIG_DMA_NONCOHERENT=y
239 | CONFIG_SYS_HAS_EARLY_PRINTK=y
240 | CONFIG_CPU_BIG_ENDIAN=y
241 | CONFIG_SYS_SUPPORTS_BIG_ENDIAN=y
242 | CONFIG_MIPS_L1_CACHE_SHIFT=5
243 |
244 | #
245 | # CPU selection
246 | #
247 | CONFIG_CPU_R4300=y
248 | CONFIG_SYS_SUPPORTS_ZBOOT=y
249 | CONFIG_SYS_HAS_CPU_R4300=y
250 | # end of CPU selection
251 |
252 | CONFIG_TARGET_ISA_REV=0
253 | CONFIG_SYS_SUPPORTS_32BIT_KERNEL=y
254 | CONFIG_SYS_SUPPORTS_64BIT_KERNEL=y
255 | CONFIG_CPU_SUPPORTS_32BIT_KERNEL=y
256 | CONFIG_CPU_SUPPORTS_64BIT_KERNEL=y
257 |
258 | #
259 | # Kernel type
260 | #
261 | # CONFIG_32BIT is not set
262 | CONFIG_64BIT=y
263 | # CONFIG_MIPS_VA_BITS_48 is not set
264 | CONFIG_PAGE_SIZE_4KB=y
265 | # CONFIG_PAGE_SIZE_16KB is not set
266 | # CONFIG_PAGE_SIZE_64KB is not set
267 | CONFIG_FORCE_MAX_ZONEORDER=11
268 | CONFIG_CPU_GENERIC_DUMP_TLB=y
269 | CONFIG_MIPS_FP_SUPPORT=y
270 | CONFIG_CPU_R4K_FPU=y
271 | CONFIG_CPU_R4K_CACHE_TLB=y
272 | CONFIG_CPU_NEEDS_NO_SMARTMIPS_OR_MICROMIPS=y
273 | CONFIG_CPU_HAS_SYNC=y
274 | CONFIG_MIPS_ASID_SHIFT=0
275 | CONFIG_MIPS_ASID_BITS=8
276 | CONFIG_ARCH_FLATMEM_ENABLE=y
277 | # CONFIG_HZ_24 is not set
278 | # CONFIG_HZ_48 is not set
279 | CONFIG_HZ_100=y
280 | # CONFIG_HZ_128 is not set
281 | # CONFIG_HZ_250 is not set
282 | # CONFIG_HZ_256 is not set
283 | # CONFIG_HZ_1000 is not set
284 | # CONFIG_HZ_1024 is not set
285 | CONFIG_SYS_SUPPORTS_ARBIT_HZ=y
286 | CONFIG_HZ=100
287 | # CONFIG_KEXEC is not set
288 | # CONFIG_CRASH_DUMP is not set
289 | CONFIG_MIPS_CMDLINE_FROM_BOOTLOADER=y
290 | # end of Kernel type
291 |
292 | CONFIG_LOCKDEP_SUPPORT=y
293 | CONFIG_STACKTRACE_SUPPORT=y
294 | CONFIG_PGTABLE_LEVELS=3
295 |
296 | #
297 | # Bus options (PCI, PCMCIA, EISA, ISA, TC)
298 | #
299 | CONFIG_PCI_DRIVERS_LEGACY=y
300 | CONFIG_MMU=y
301 | CONFIG_ARCH_MMAP_RND_BITS_MIN=12
302 | CONFIG_ARCH_MMAP_RND_BITS_MAX=18
303 | CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8
304 | CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=15
305 | # end of Bus options (PCI, PCMCIA, EISA, ISA, TC)
306 |
307 | CONFIG_MIPS32_COMPAT=y
308 | CONFIG_COMPAT=y
309 | CONFIG_SYSVIPC_COMPAT=y
310 | # CONFIG_MIPS32_O32 is not set
311 | CONFIG_MIPS32_N32=y
312 | CONFIG_BINFMT_ELF32=y
313 |
314 | #
315 | # Power management options
316 | #
317 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y
318 | CONFIG_ARCH_SUSPEND_POSSIBLE=y
319 | # CONFIG_SUSPEND is not set
320 | # CONFIG_HIBERNATION is not set
321 | # CONFIG_PM is not set
322 | # end of Power management options
323 |
324 | #
325 | # CPU Power Management
326 | #
327 |
328 | #
329 | # CPU Idle
330 | #
331 | # CONFIG_CPU_IDLE is not set
332 | # end of CPU Idle
333 | # end of CPU Power Management
334 |
335 | #
336 | # Firmware Drivers
337 | #
338 | # CONFIG_FIRMWARE_MEMMAP is not set
339 | # CONFIG_GOOGLE_FIRMWARE is not set
340 |
341 | #
342 | # Tegra firmware driver
343 | #
344 | # end of Tegra firmware driver
345 | # end of Firmware Drivers
346 |
347 | # CONFIG_VIRTUALIZATION is not set
348 | CONFIG_MIPS_LD_CAN_LINK_VDSO=y
349 |
350 | #
351 | # General architecture-dependent options
352 | #
353 | CONFIG_SET_FS=y
354 | CONFIG_HAVE_OPROFILE=y
355 | CONFIG_JUMP_LABEL=y
356 | # CONFIG_STATIC_KEYS_SELFTEST is not set
357 | CONFIG_ARCH_USE_BUILTIN_BSWAP=y
358 | CONFIG_HAVE_IOREMAP_PROT=y
359 | CONFIG_HAVE_KPROBES=y
360 | CONFIG_HAVE_KRETPROBES=y
361 | CONFIG_HAVE_NMI=y
362 | CONFIG_HAVE_ARCH_TRACEHOOK=y
363 | CONFIG_HAVE_DMA_CONTIGUOUS=y
364 | CONFIG_GENERIC_SMP_IDLE_THREAD=y
365 | CONFIG_ARCH_HAS_FORTIFY_SOURCE=y
366 | CONFIG_ARCH_HAS_DMA_SET_UNCACHED=y
367 | CONFIG_HAVE_ASM_MODVERSIONS=y
368 | CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y
369 | CONFIG_HAVE_RSEQ=y
370 | CONFIG_HAVE_ARCH_JUMP_LABEL=y
371 | CONFIG_ARCH_WANT_IPC_PARSE_VERSION=y
372 | CONFIG_ARCH_WANT_COMPAT_IPC_PARSE_VERSION=y
373 | CONFIG_HAVE_ARCH_SECCOMP=y
374 | CONFIG_HAVE_ARCH_SECCOMP_FILTER=y
375 | # CONFIG_SECCOMP is not set
376 | CONFIG_HAVE_STACKPROTECTOR=y
377 | # CONFIG_STACKPROTECTOR is not set
378 | CONFIG_HAVE_CONTEXT_TRACKING=y
379 | CONFIG_HAVE_TIF_NOHZ=y
380 | CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y
381 | CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y
382 | CONFIG_HAVE_MOD_ARCH_SPECIFIC=y
383 | CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y
384 | CONFIG_ARCH_HAS_ELF_RANDOMIZE=y
385 | CONFIG_HAVE_ARCH_MMAP_RND_BITS=y
386 | CONFIG_HAVE_EXIT_THREAD=y
387 | CONFIG_ARCH_MMAP_RND_BITS=12
388 | CONFIG_HAVE_ARCH_MMAP_RND_COMPAT_BITS=y
389 | CONFIG_ARCH_MMAP_RND_COMPAT_BITS=8
390 | CONFIG_ARCH_WANT_DEFAULT_TOPDOWN_MMAP_LAYOUT=y
391 | CONFIG_CLONE_BACKWARDS=y
392 | CONFIG_COMPAT_32BIT_TIME=y
393 | CONFIG_CPU_NO_EFFICIENT_FFS=y
394 | CONFIG_HAVE_ARCH_COMPILER_H=y
395 | CONFIG_HAVE_SPARSE_SYSCALL_NR=y
396 |
397 | #
398 | # GCOV-based kernel profiling
399 | #
400 | # end of GCOV-based kernel profiling
401 |
402 | CONFIG_HAVE_GCC_PLUGINS=y
403 | # end of General architecture-dependent options
404 |
405 | CONFIG_RT_MUTEXES=y
406 | CONFIG_BASE_SMALL=1
407 | # CONFIG_MODULES is not set
408 | CONFIG_BLOCK=y
409 | # CONFIG_BLK_DEV_BSG is not set
410 | # CONFIG_BLK_DEV_BSGLIB is not set
411 | # CONFIG_BLK_DEV_INTEGRITY is not set
412 | # CONFIG_BLK_DEV_ZONED is not set
413 | # CONFIG_BLK_CMDLINE_PARSER is not set
414 | # CONFIG_BLK_WBT is not set
415 | # CONFIG_BLK_SED_OPAL is not set
416 | # CONFIG_BLK_INLINE_ENCRYPTION is not set
417 |
418 | #
419 | # Partition Types
420 | #
421 | CONFIG_PARTITION_ADVANCED=y
422 | # CONFIG_ACORN_PARTITION is not set
423 | # CONFIG_AIX_PARTITION is not set
424 | # CONFIG_OSF_PARTITION is not set
425 | # CONFIG_AMIGA_PARTITION is not set
426 | # CONFIG_ATARI_PARTITION is not set
427 | # CONFIG_MAC_PARTITION is not set
428 | # CONFIG_MSDOS_PARTITION is not set
429 | # CONFIG_LDM_PARTITION is not set
430 | # CONFIG_SGI_PARTITION is not set
431 | # CONFIG_ULTRIX_PARTITION is not set
432 | # CONFIG_SUN_PARTITION is not set
433 | # CONFIG_KARMA_PARTITION is not set
434 | # CONFIG_EFI_PARTITION is not set
435 | # CONFIG_SYSV68_PARTITION is not set
436 | # CONFIG_CMDLINE_PARTITION is not set
437 | # end of Partition Types
438 |
439 | CONFIG_BLOCK_COMPAT=y
440 |
441 | #
442 | # IO Schedulers
443 | #
444 | # CONFIG_MQ_IOSCHED_DEADLINE is not set
445 | # CONFIG_MQ_IOSCHED_KYBER is not set
446 | # CONFIG_IOSCHED_BFQ is not set
447 | # end of IO Schedulers
448 |
449 | CONFIG_INLINE_SPIN_UNLOCK_IRQ=y
450 | CONFIG_INLINE_READ_UNLOCK=y
451 | CONFIG_INLINE_READ_UNLOCK_IRQ=y
452 | CONFIG_INLINE_WRITE_UNLOCK=y
453 | CONFIG_INLINE_WRITE_UNLOCK_IRQ=y
454 | CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y
455 | CONFIG_ARCH_USE_QUEUED_RWLOCKS=y
456 |
457 | #
458 | # Executable file formats
459 | #
460 | CONFIG_BINFMT_ELF=y
461 | CONFIG_ARCH_BINFMT_ELF_STATE=y
462 | CONFIG_ELFCORE=y
463 | CONFIG_BINFMT_SCRIPT=y
464 | # CONFIG_BINFMT_MISC is not set
465 | # CONFIG_COREDUMP is not set
466 | # end of Executable file formats
467 |
468 | #
469 | # Memory Management options
470 | #
471 | CONFIG_FLATMEM=y
472 | CONFIG_FLAT_NODE_MEM_MAP=y
473 | CONFIG_HAVE_FAST_GUP=y
474 | CONFIG_SPLIT_PTLOCK_CPUS=4
475 | CONFIG_COMPACTION=y
476 | # CONFIG_PAGE_REPORTING is not set
477 | CONFIG_MIGRATION=y
478 | CONFIG_PHYS_ADDR_T_64BIT=y
479 | CONFIG_VIRT_TO_BUS=y
480 | # CONFIG_KSM is not set
481 | CONFIG_DEFAULT_MMAP_MIN_ADDR=4096
482 | CONFIG_NEED_PER_CPU_KM=y
483 | # CONFIG_CLEANCACHE is not set
484 | # CONFIG_FRONTSWAP is not set
485 | # CONFIG_CMA is not set
486 | # CONFIG_ZPOOL is not set
487 | # CONFIG_ZBUD is not set
488 | # CONFIG_ZSMALLOC is not set
489 | # CONFIG_IDLE_PAGE_TRACKING is not set
490 | # CONFIG_PERCPU_STATS is not set
491 | # CONFIG_GUP_BENCHMARK is not set
492 | CONFIG_ARCH_HAS_PTE_SPECIAL=y
493 | # end of Memory Management options
494 |
495 | # CONFIG_NET is not set
496 |
497 | #
498 | # Device Drivers
499 | #
500 | # CONFIG_PCCARD is not set
501 |
502 | #
503 | # Generic Driver Options
504 | #
505 | # CONFIG_UEVENT_HELPER is not set
506 | CONFIG_DEVTMPFS=y
507 | # CONFIG_DEVTMPFS_MOUNT is not set
508 | CONFIG_STANDALONE=y
509 | CONFIG_PREVENT_FIRMWARE_BUILD=y
510 |
511 | #
512 | # Firmware loader
513 | #
514 | # CONFIG_FW_LOADER is not set
515 | # end of Firmware loader
516 |
517 | # CONFIG_ALLOW_DEV_COREDUMP is not set
518 | # CONFIG_DEBUG_DRIVER is not set
519 | # CONFIG_DEBUG_DEVRES is not set
520 | # CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set
521 | CONFIG_GENERIC_CPU_AUTOPROBE=y
522 | # end of Generic Driver Options
523 |
524 | #
525 | # Bus devices
526 | #
527 | # CONFIG_BRCMSTB_GISB_ARB is not set
528 | # CONFIG_MHI_BUS is not set
529 | # end of Bus devices
530 |
531 | # CONFIG_GNSS is not set
532 | # CONFIG_MTD is not set
533 | # CONFIG_OF is not set
534 | # CONFIG_PARPORT is not set
535 | CONFIG_BLK_DEV=y
536 | # CONFIG_BLK_DEV_NULL_BLK is not set
537 | CONFIG_N64CART=y
538 | CONFIG_BLK_DEV_LOOP=y
539 | CONFIG_BLK_DEV_LOOP_MIN_COUNT=4
540 | # CONFIG_BLK_DEV_CRYPTOLOOP is not set
541 |
542 | #
543 | # DRBD disabled because PROC_FS or INET not selected
544 | #
545 | # CONFIG_BLK_DEV_RAM is not set
546 | # CONFIG_CDROM_PKTCDVD is not set
547 |
548 | #
549 | # NVME Support
550 | #
551 | # CONFIG_NVME_FC is not set
552 | # end of NVME Support
553 |
554 | #
555 | # Misc devices
556 | #
557 | # CONFIG_DUMMY_IRQ is not set
558 | # CONFIG_ENCLOSURE_SERVICES is not set
559 | # CONFIG_SRAM is not set
560 | # CONFIG_XILINX_SDFEC is not set
561 | # CONFIG_C2PORT is not set
562 |
563 | #
564 | # EEPROM support
565 | #
566 | # CONFIG_EEPROM_93CX6 is not set
567 | # end of EEPROM support
568 |
569 | #
570 | # Texas Instruments shared transport line discipline
571 | #
572 | # end of Texas Instruments shared transport line discipline
573 |
574 | #
575 | # Altera FPGA firmware download module (requires I2C)
576 | #
577 | # CONFIG_ECHO is not set
578 | # end of Misc devices
579 |
580 | CONFIG_HAVE_IDE=y
581 | # CONFIG_IDE is not set
582 |
583 | #
584 | # SCSI device support
585 | #
586 | CONFIG_SCSI_MOD=y
587 | # CONFIG_RAID_ATTRS is not set
588 | # CONFIG_SCSI is not set
589 | # end of SCSI device support
590 |
591 | # CONFIG_ATA is not set
592 | # CONFIG_MD is not set
593 | # CONFIG_TARGET_CORE is not set
594 | # CONFIG_NVM is not set
595 |
596 | #
597 | # Input device support
598 | #
599 | CONFIG_INPUT=y
600 | # CONFIG_INPUT_FF_MEMLESS is not set
601 | # CONFIG_INPUT_POLLDEV is not set
602 | # CONFIG_INPUT_SPARSEKMAP is not set
603 | # CONFIG_INPUT_MATRIXKMAP is not set
604 |
605 | #
606 | # Userland interfaces
607 | #
608 | # CONFIG_INPUT_MOUSEDEV is not set
609 | CONFIG_INPUT_JOYDEV=y
610 | CONFIG_INPUT_EVDEV=y
611 | # CONFIG_INPUT_EVBUG is not set
612 |
613 | #
614 | # Input Device Drivers
615 | #
616 | # CONFIG_INPUT_KEYBOARD is not set
617 | # CONFIG_INPUT_MOUSE is not set
618 | CONFIG_INPUT_JOYSTICK=y
619 | # CONFIG_JOYSTICK_ANALOG is not set
620 | # CONFIG_JOYSTICK_A3D is not set
621 | # CONFIG_JOYSTICK_ADI is not set
622 | # CONFIG_JOYSTICK_COBRA is not set
623 | # CONFIG_JOYSTICK_GF2K is not set
624 | # CONFIG_JOYSTICK_GRIP is not set
625 | # CONFIG_JOYSTICK_GRIP_MP is not set
626 | # CONFIG_JOYSTICK_GUILLEMOT is not set
627 | # CONFIG_JOYSTICK_INTERACT is not set
628 | # CONFIG_JOYSTICK_SIDEWINDER is not set
629 | # CONFIG_JOYSTICK_TMDC is not set
630 | # CONFIG_JOYSTICK_IFORCE is not set
631 | # CONFIG_JOYSTICK_WARRIOR is not set
632 | # CONFIG_JOYSTICK_MAGELLAN is not set
633 | # CONFIG_JOYSTICK_SPACEORB is not set
634 | # CONFIG_JOYSTICK_SPACEBALL is not set
635 | # CONFIG_JOYSTICK_STINGER is not set
636 | # CONFIG_JOYSTICK_TWIDJOY is not set
637 | # CONFIG_JOYSTICK_ZHENHUA is not set
638 | # CONFIG_JOYSTICK_JOYDUMP is not set
639 | # CONFIG_JOYSTICK_FSIA6B is not set
640 | CONFIG_JOYSTICK_N64=y
641 | # CONFIG_INPUT_TABLET is not set
642 | # CONFIG_INPUT_TOUCHSCREEN is not set
643 | # CONFIG_INPUT_MISC is not set
644 | # CONFIG_RMI4_CORE is not set
645 |
646 | #
647 | # Hardware I/O ports
648 | #
649 | # CONFIG_SERIO is not set
650 | # CONFIG_GAMEPORT is not set
651 | # end of Hardware I/O ports
652 | # end of Input device support
653 |
654 | #
655 | # Character devices
656 | #
657 | CONFIG_TTY=y
658 | CONFIG_VT=y
659 | CONFIG_CONSOLE_TRANSLATIONS=y
660 | CONFIG_VT_CONSOLE=y
661 | CONFIG_HW_CONSOLE=y
662 | CONFIG_VT_HW_CONSOLE_BINDING=y
663 | CONFIG_UNIX98_PTYS=y
664 | CONFIG_LEGACY_PTYS=y
665 | CONFIG_LEGACY_PTY_COUNT=32
666 | CONFIG_LDISC_AUTOLOAD=y
667 |
668 | #
669 | # Serial drivers
670 | #
671 | # CONFIG_SERIAL_8250 is not set
672 |
673 | #
674 | # Non-8250 serial port support
675 | #
676 | # CONFIG_SERIAL_UARTLITE is not set
677 | # CONFIG_SERIAL_SCCNXP is not set
678 | # CONFIG_SERIAL_BCM63XX is not set
679 | # CONFIG_SERIAL_ALTERA_JTAGUART is not set
680 | # CONFIG_SERIAL_ALTERA_UART is not set
681 | # CONFIG_SERIAL_ARC is not set
682 | # CONFIG_SERIAL_FSL_LPUART is not set
683 | # CONFIG_SERIAL_FSL_LINFLEXUART is not set
684 | # end of Serial drivers
685 |
686 | # CONFIG_SERIAL_NONSTANDARD is not set
687 | # CONFIG_NULL_TTY is not set
688 | # CONFIG_TRACE_SINK is not set
689 | # CONFIG_SERIAL_DEV_BUS is not set
690 | # CONFIG_TTY_PRINTK is not set
691 | # CONFIG_VIRTIO_CONSOLE is not set
692 | # CONFIG_IPMI_HANDLER is not set
693 | # CONFIG_HW_RANDOM is not set
694 | CONFIG_DEVMEM=y
695 | # CONFIG_DEVKMEM is not set
696 | # CONFIG_RAW_DRIVER is not set
697 | # CONFIG_TCG_TPM is not set
698 | # end of Character devices
699 |
700 | # CONFIG_RANDOM_TRUST_BOOTLOADER is not set
701 |
702 | #
703 | # I2C support
704 | #
705 | # CONFIG_I2C is not set
706 | # end of I2C support
707 |
708 | # CONFIG_I3C is not set
709 | # CONFIG_SPI is not set
710 | # CONFIG_SPMI is not set
711 | # CONFIG_HSI is not set
712 | # CONFIG_PPS is not set
713 |
714 | #
715 | # PTP clock support
716 | #
717 |
718 | #
719 | # Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks.
720 | #
721 | # end of PTP clock support
722 |
723 | # CONFIG_PINCTRL is not set
724 | # CONFIG_GPIOLIB is not set
725 | # CONFIG_W1 is not set
726 | # CONFIG_POWER_RESET is not set
727 | # CONFIG_POWER_SUPPLY is not set
728 | # CONFIG_HWMON is not set
729 | # CONFIG_THERMAL is not set
730 | # CONFIG_WATCHDOG is not set
731 | CONFIG_SSB_POSSIBLE=y
732 | # CONFIG_SSB is not set
733 | CONFIG_BCMA_POSSIBLE=y
734 | # CONFIG_BCMA is not set
735 |
736 | #
737 | # Multifunction device drivers
738 | #
739 | # CONFIG_MFD_MADERA is not set
740 | # CONFIG_HTC_PASIC3 is not set
741 | # CONFIG_MFD_KEMPLD is not set
742 | # CONFIG_MFD_MT6397 is not set
743 | # CONFIG_MFD_SM501 is not set
744 | # CONFIG_ABX500_CORE is not set
745 | # CONFIG_MFD_SYSCON is not set
746 | # CONFIG_MFD_TI_AM335X_TSCADC is not set
747 | # CONFIG_MFD_TQMX86 is not set
748 | # end of Multifunction device drivers
749 |
750 | # CONFIG_REGULATOR is not set
751 | # CONFIG_RC_CORE is not set
752 | # CONFIG_MEDIA_CEC_SUPPORT is not set
753 | # CONFIG_MEDIA_SUPPORT is not set
754 |
755 | #
756 | # Graphics support
757 | #
758 | # CONFIG_DRM is not set
759 |
760 | #
761 | # ARM devices
762 | #
763 | # end of ARM devices
764 |
765 | #
766 | # Frame buffer Devices
767 | #
768 | CONFIG_FB_CMDLINE=y
769 | CONFIG_FB_NOTIFY=y
770 | CONFIG_FB=y
771 | # CONFIG_FIRMWARE_EDID is not set
772 | CONFIG_FB_CFB_FILLRECT=y
773 | CONFIG_FB_CFB_COPYAREA=y
774 | CONFIG_FB_CFB_IMAGEBLIT=y
775 | # CONFIG_FB_FOREIGN_ENDIAN is not set
776 | # CONFIG_FB_MODE_HELPERS is not set
777 | # CONFIG_FB_TILEBLITTING is not set
778 |
779 | #
780 | # Frame buffer hardware drivers
781 | #
782 | # CONFIG_FB_OPENCORES is not set
783 | # CONFIG_FB_S1D13XXX is not set
784 | # CONFIG_FB_IBM_GXT4500 is not set
785 | # CONFIG_FB_VIRTUAL is not set
786 | # CONFIG_FB_METRONOME is not set
787 | CONFIG_FB_SIMPLE=y
788 | # end of Frame buffer Devices
789 |
790 | #
791 | # Backlight & LCD device support
792 | #
793 | # CONFIG_LCD_CLASS_DEVICE is not set
794 | # CONFIG_BACKLIGHT_CLASS_DEVICE is not set
795 | # end of Backlight & LCD device support
796 |
797 | #
798 | # Console display driver support
799 | #
800 | # CONFIG_VGA_CONSOLE is not set
801 | CONFIG_DUMMY_CONSOLE=y
802 | CONFIG_DUMMY_CONSOLE_COLUMNS=40
803 | CONFIG_DUMMY_CONSOLE_ROWS=30
804 | CONFIG_FRAMEBUFFER_CONSOLE=y
805 | CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY=y
806 | # CONFIG_FRAMEBUFFER_CONSOLE_ROTATION is not set
807 | # CONFIG_FRAMEBUFFER_CONSOLE_DEFERRED_TAKEOVER is not set
808 | # end of Console display driver support
809 |
810 | CONFIG_LOGO=y
811 | # CONFIG_LOGO_LINUX_MONO is not set
812 | # CONFIG_LOGO_LINUX_VGA16 is not set
813 | CONFIG_LOGO_LINUX_CLUT224=y
814 | # end of Graphics support
815 |
816 | CONFIG_SOUND=y
817 | CONFIG_SOUND_OSS_CORE=y
818 | CONFIG_SOUND_OSS_CORE_PRECLAIM=y
819 | CONFIG_SND=y
820 | CONFIG_SND_TIMER=y
821 | CONFIG_SND_PCM=y
822 | CONFIG_SND_OSSEMUL=y
823 | CONFIG_SND_MIXER_OSS=y
824 | CONFIG_SND_PCM_OSS=y
825 | CONFIG_SND_PCM_OSS_PLUGINS=y
826 | CONFIG_SND_PCM_TIMER=y
827 | # CONFIG_SND_DYNAMIC_MINORS is not set
828 | # CONFIG_SND_SUPPORT_OLD_API is not set
829 | CONFIG_SND_PROC_FS=y
830 | # CONFIG_SND_VERBOSE_PROCFS is not set
831 | # CONFIG_SND_VERBOSE_PRINTK is not set
832 | # CONFIG_SND_DEBUG is not set
833 | # CONFIG_SND_SEQUENCER is not set
834 | # CONFIG_SND_DRIVERS is not set
835 |
836 | #
837 | # HD-Audio
838 | #
839 | # end of HD-Audio
840 |
841 | CONFIG_SND_HDA_PREALLOC_SIZE=64
842 | CONFIG_SND_MIPS=y
843 | CONFIG_SND_N64=y
844 | # CONFIG_SND_SOC is not set
845 |
846 | #
847 | # HID support
848 | #
849 | # CONFIG_HID is not set
850 | # end of HID support
851 |
852 | CONFIG_USB_OHCI_LITTLE_ENDIAN=y
853 | # CONFIG_USB_SUPPORT is not set
854 | # CONFIG_MMC is not set
855 | # CONFIG_MEMSTICK is not set
856 | # CONFIG_NEW_LEDS is not set
857 | # CONFIG_ACCESSIBILITY is not set
858 | CONFIG_RTC_LIB=y
859 | # CONFIG_RTC_CLASS is not set
860 | # CONFIG_DMADEVICES is not set
861 |
862 | #
863 | # DMABUF options
864 | #
865 | # CONFIG_SYNC_FILE is not set
866 | # CONFIG_DMABUF_MOVE_NOTIFY is not set
867 | # CONFIG_DMABUF_HEAPS is not set
868 | # end of DMABUF options
869 |
870 | # CONFIG_AUXDISPLAY is not set
871 | # CONFIG_UIO is not set
872 | # CONFIG_VIRT_DRIVERS is not set
873 | # CONFIG_VIRTIO_MENU is not set
874 | # CONFIG_VDPA is not set
875 | # CONFIG_VHOST_MENU is not set
876 |
877 | #
878 | # Microsoft Hyper-V guest support
879 | #
880 | # end of Microsoft Hyper-V guest support
881 |
882 | # CONFIG_GREYBUS is not set
883 | # CONFIG_STAGING is not set
884 | CONFIG_MIPS_PLATFORM_DEVICES=y
885 | # CONFIG_GOLDFISH is not set
886 | # CONFIG_COMMON_CLK is not set
887 | # CONFIG_HWSPINLOCK is not set
888 |
889 | #
890 | # Clock Source drivers
891 | #
892 | # end of Clock Source drivers
893 |
894 | # CONFIG_MAILBOX is not set
895 | # CONFIG_IOMMU_SUPPORT is not set
896 |
897 | #
898 | # Remoteproc drivers
899 | #
900 | # CONFIG_REMOTEPROC is not set
901 | # end of Remoteproc drivers
902 |
903 | #
904 | # Rpmsg drivers
905 | #
906 | # CONFIG_RPMSG_VIRTIO is not set
907 | # end of Rpmsg drivers
908 |
909 | #
910 | # SOC (System On Chip) specific Drivers
911 | #
912 |
913 | #
914 | # Amlogic SoC drivers
915 | #
916 | # end of Amlogic SoC drivers
917 |
918 | #
919 | # Aspeed SoC drivers
920 | #
921 | # end of Aspeed SoC drivers
922 |
923 | #
924 | # Broadcom SoC drivers
925 | #
926 | # end of Broadcom SoC drivers
927 |
928 | #
929 | # NXP/Freescale QorIQ SoC drivers
930 | #
931 | # end of NXP/Freescale QorIQ SoC drivers
932 |
933 | #
934 | # i.MX SoC drivers
935 | #
936 | # end of i.MX SoC drivers
937 |
938 | #
939 | # Qualcomm SoC drivers
940 | #
941 | # end of Qualcomm SoC drivers
942 |
943 | # CONFIG_SOC_TI is not set
944 |
945 | #
946 | # Xilinx SoC drivers
947 | #
948 | # CONFIG_XILINX_VCU is not set
949 | # end of Xilinx SoC drivers
950 | # end of SOC (System On Chip) specific Drivers
951 |
952 | # CONFIG_PM_DEVFREQ is not set
953 | # CONFIG_EXTCON is not set
954 | # CONFIG_MEMORY is not set
955 | # CONFIG_IIO is not set
956 | # CONFIG_PWM is not set
957 |
958 | #
959 | # IRQ chip support
960 | #
961 | CONFIG_IRQ_MIPS_CPU=y
962 | # CONFIG_INGENIC_TCU_IRQ is not set
963 | # end of IRQ chip support
964 |
965 | # CONFIG_IPACK_BUS is not set
966 | # CONFIG_RESET_CONTROLLER is not set
967 |
968 | #
969 | # PHY Subsystem
970 | #
971 | # CONFIG_GENERIC_PHY is not set
972 | # CONFIG_BCM_KONA_USB2_PHY is not set
973 | # CONFIG_PHY_PXA_28NM_HSIC is not set
974 | # CONFIG_PHY_PXA_28NM_USB2 is not set
975 | # end of PHY Subsystem
976 |
977 | # CONFIG_POWERCAP is not set
978 | # CONFIG_MCB is not set
979 | # CONFIG_RAS is not set
980 |
981 | #
982 | # Android
983 | #
984 | # CONFIG_ANDROID is not set
985 | # end of Android
986 |
987 | # CONFIG_LIBNVDIMM is not set
988 | # CONFIG_DAX is not set
989 | # CONFIG_NVMEM is not set
990 |
991 | #
992 | # HW tracing support
993 | #
994 | # CONFIG_STM is not set
995 | # CONFIG_INTEL_TH is not set
996 | # end of HW tracing support
997 |
998 | # CONFIG_FPGA is not set
999 | # CONFIG_SIOX is not set
1000 | # CONFIG_SLIMBUS is not set
1001 | # CONFIG_INTERCONNECT is not set
1002 | # CONFIG_COUNTER is not set
1003 | # end of Device Drivers
1004 |
1005 | #
1006 | # File systems
1007 | #
1008 | # CONFIG_VALIDATE_FS_PARSER is not set
1009 | # CONFIG_EXT2_FS is not set
1010 | # CONFIG_EXT3_FS is not set
1011 | # CONFIG_EXT4_FS is not set
1012 | # CONFIG_REISERFS_FS is not set
1013 | # CONFIG_JFS_FS is not set
1014 | # CONFIG_XFS_FS is not set
1015 | # CONFIG_GFS2_FS is not set
1016 | # CONFIG_BTRFS_FS is not set
1017 | # CONFIG_NILFS2_FS is not set
1018 | # CONFIG_F2FS_FS is not set
1019 | CONFIG_EXPORTFS=y
1020 | # CONFIG_EXPORTFS_BLOCK_OPS is not set
1021 | # CONFIG_FILE_LOCKING is not set
1022 | # CONFIG_FS_ENCRYPTION is not set
1023 | # CONFIG_FS_VERITY is not set
1024 | CONFIG_FSNOTIFY=y
1025 | CONFIG_DNOTIFY=y
1026 | CONFIG_INOTIFY_USER=y
1027 | CONFIG_FANOTIFY=y
1028 | # CONFIG_QUOTA is not set
1029 | # CONFIG_AUTOFS4_FS is not set
1030 | # CONFIG_AUTOFS_FS is not set
1031 | # CONFIG_FUSE_FS is not set
1032 | # CONFIG_OVERLAY_FS is not set
1033 |
1034 | #
1035 | # Caches
1036 | #
1037 | # CONFIG_FSCACHE is not set
1038 | # end of Caches
1039 |
1040 | #
1041 | # CD-ROM/DVD Filesystems
1042 | #
1043 | # CONFIG_ISO9660_FS is not set
1044 | # CONFIG_UDF_FS is not set
1045 | # end of CD-ROM/DVD Filesystems
1046 |
1047 | #
1048 | # DOS/FAT/EXFAT/NT Filesystems
1049 | #
1050 | # CONFIG_MSDOS_FS is not set
1051 | # CONFIG_VFAT_FS is not set
1052 | # CONFIG_EXFAT_FS is not set
1053 | # CONFIG_NTFS_FS is not set
1054 | # end of DOS/FAT/EXFAT/NT Filesystems
1055 |
1056 | #
1057 | # Pseudo filesystems
1058 | #
1059 | CONFIG_PROC_FS=y
1060 | # CONFIG_PROC_KCORE is not set
1061 | CONFIG_PROC_SYSCTL=y
1062 | # CONFIG_PROC_PAGE_MONITOR is not set
1063 | # CONFIG_PROC_CHILDREN is not set
1064 | CONFIG_KERNFS=y
1065 | CONFIG_SYSFS=y
1066 | CONFIG_TMPFS=y
1067 | # CONFIG_TMPFS_POSIX_ACL is not set
1068 | # CONFIG_TMPFS_XATTR is not set
1069 | # CONFIG_TMPFS_INODE64 is not set
1070 | CONFIG_MEMFD_CREATE=y
1071 | # CONFIG_CONFIGFS_FS is not set
1072 | # end of Pseudo filesystems
1073 |
1074 | CONFIG_MISC_FILESYSTEMS=y
1075 | # CONFIG_ORANGEFS_FS is not set
1076 | # CONFIG_ADFS_FS is not set
1077 | # CONFIG_AFFS_FS is not set
1078 | # CONFIG_HFS_FS is not set
1079 | # CONFIG_HFSPLUS_FS is not set
1080 | # CONFIG_BEFS_FS is not set
1081 | # CONFIG_BFS_FS is not set
1082 | # CONFIG_EFS_FS is not set
1083 | # CONFIG_CRAMFS is not set
1084 | CONFIG_SQUASHFS=y
1085 | # CONFIG_SQUASHFS_FILE_CACHE is not set
1086 | CONFIG_SQUASHFS_FILE_DIRECT=y
1087 | CONFIG_SQUASHFS_DECOMP_SINGLE=y
1088 | # CONFIG_SQUASHFS_DECOMP_MULTI is not set
1089 | # CONFIG_SQUASHFS_DECOMP_MULTI_PERCPU is not set
1090 | # CONFIG_SQUASHFS_XATTR is not set
1091 | CONFIG_SQUASHFS_ZLIB=y
1092 | # CONFIG_SQUASHFS_LZ4 is not set
1093 | # CONFIG_SQUASHFS_LZO is not set
1094 | # CONFIG_SQUASHFS_XZ is not set
1095 | # CONFIG_SQUASHFS_ZSTD is not set
1096 | # CONFIG_SQUASHFS_4K_DEVBLK_SIZE is not set
1097 | # CONFIG_SQUASHFS_EMBEDDED is not set
1098 | CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3
1099 | # CONFIG_VXFS_FS is not set
1100 | # CONFIG_MINIX_FS is not set
1101 | # CONFIG_OMFS_FS is not set
1102 | # CONFIG_HPFS_FS is not set
1103 | # CONFIG_QNX4FS_FS is not set
1104 | # CONFIG_QNX6FS_FS is not set
1105 | # CONFIG_ROMFS_FS is not set
1106 | # CONFIG_PSTORE is not set
1107 | # CONFIG_SYSV_FS is not set
1108 | # CONFIG_UFS_FS is not set
1109 | # CONFIG_EROFS_FS is not set
1110 | # CONFIG_NLS is not set
1111 | # CONFIG_UNICODE is not set
1112 | # end of File systems
1113 |
1114 | #
1115 | # Security options
1116 | #
1117 | # CONFIG_KEYS is not set
1118 | # CONFIG_SECURITY_DMESG_RESTRICT is not set
1119 | # CONFIG_SECURITYFS is not set
1120 | # CONFIG_FORTIFY_SOURCE is not set
1121 | # CONFIG_STATIC_USERMODEHELPER is not set
1122 | CONFIG_DEFAULT_SECURITY_DAC=y
1123 | CONFIG_LSM="lockdown,yama,loadpin,safesetid,integrity,bpf"
1124 |
1125 | #
1126 | # Kernel hardening options
1127 | #
1128 |
1129 | #
1130 | # Memory initialization
1131 | #
1132 | CONFIG_INIT_STACK_NONE=y
1133 | # CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set
1134 | # CONFIG_INIT_ON_FREE_DEFAULT_ON is not set
1135 | # end of Memory initialization
1136 | # end of Kernel hardening options
1137 | # end of Security options
1138 |
1139 | # CONFIG_CRYPTO is not set
1140 |
1141 | #
1142 | # Library routines
1143 | #
1144 | # CONFIG_PACKING is not set
1145 | CONFIG_BITREVERSE=y
1146 | # CONFIG_CORDIC is not set
1147 | # CONFIG_PRIME_NUMBERS is not set
1148 | CONFIG_NO_GENERIC_PCI_IOPORT_MAP=y
1149 | CONFIG_GENERIC_PCI_IOMAP=y
1150 | CONFIG_GENERIC_IOMAP=y
1151 | CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y
1152 | # CONFIG_CRC_CCITT is not set
1153 | # CONFIG_CRC16 is not set
1154 | # CONFIG_CRC_T10DIF is not set
1155 | # CONFIG_CRC_ITU_T is not set
1156 | CONFIG_CRC32=y
1157 | # CONFIG_CRC32_SELFTEST is not set
1158 | # CONFIG_CRC32_SLICEBY8 is not set
1159 | CONFIG_CRC32_SLICEBY4=y
1160 | # CONFIG_CRC32_SARWATE is not set
1161 | # CONFIG_CRC32_BIT is not set
1162 | # CONFIG_CRC64 is not set
1163 | # CONFIG_CRC4 is not set
1164 | # CONFIG_CRC7 is not set
1165 | # CONFIG_LIBCRC32C is not set
1166 | # CONFIG_CRC8 is not set
1167 | # CONFIG_RANDOM32_SELFTEST is not set
1168 | CONFIG_ZLIB_INFLATE=y
1169 | # CONFIG_XZ_DEC is not set
1170 | CONFIG_DECOMPRESS_GZIP=y
1171 | CONFIG_HAS_IOMEM=y
1172 | CONFIG_HAS_IOPORT_MAP=y
1173 | CONFIG_HAS_DMA=y
1174 | CONFIG_NEED_DMA_MAP_STATE=y
1175 | CONFIG_ARCH_DMA_ADDR_T_64BIT=y
1176 | CONFIG_ARCH_HAS_DMA_WRITE_COMBINE=y
1177 | CONFIG_ARCH_HAS_SYNC_DMA_FOR_DEVICE=y
1178 | CONFIG_ARCH_HAS_DMA_PREP_COHERENT=y
1179 | CONFIG_DMA_NONCOHERENT_MMAP=y
1180 | # CONFIG_DMA_API_DEBUG is not set
1181 | # CONFIG_IRQ_POLL is not set
1182 | CONFIG_HAVE_GENERIC_VDSO=y
1183 | CONFIG_GENERIC_GETTIMEOFDAY=y
1184 | CONFIG_FONT_SUPPORT=y
1185 | CONFIG_FONTS=y
1186 | CONFIG_FONT_8x8=y
1187 | # CONFIG_FONT_8x16 is not set
1188 | # CONFIG_FONT_6x11 is not set
1189 | # CONFIG_FONT_7x14 is not set
1190 | # CONFIG_FONT_PEARL_8x8 is not set
1191 | # CONFIG_FONT_ACORN_8x8 is not set
1192 | # CONFIG_FONT_MINI_4x6 is not set
1193 | # CONFIG_FONT_6x10 is not set
1194 | # CONFIG_FONT_10x18 is not set
1195 | # CONFIG_FONT_SUN8x16 is not set
1196 | # CONFIG_FONT_SUN12x22 is not set
1197 | # CONFIG_FONT_TER16x32 is not set
1198 | # CONFIG_FONT_6x8 is not set
1199 | CONFIG_SBITMAP=y
1200 | # CONFIG_STRING_SELFTEST is not set
1201 | # end of Library routines
1202 |
1203 | CONFIG_GENERIC_LIB_ASHLDI3=y
1204 | CONFIG_GENERIC_LIB_ASHRDI3=y
1205 | CONFIG_GENERIC_LIB_LSHRDI3=y
1206 | CONFIG_GENERIC_LIB_CMPDI2=y
1207 | CONFIG_GENERIC_LIB_UCMPDI2=y
1208 |
1209 | #
1210 | # Kernel hacking
1211 | #
1212 |
1213 | #
1214 | # printk and dmesg options
1215 | #
1216 | CONFIG_PRINTK_TIME=y
1217 | # CONFIG_PRINTK_CALLER is not set
1218 | CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7
1219 | CONFIG_CONSOLE_LOGLEVEL_QUIET=4
1220 | CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4
1221 | # CONFIG_BOOT_PRINTK_DELAY is not set
1222 | # CONFIG_DYNAMIC_DEBUG is not set
1223 | # CONFIG_DYNAMIC_DEBUG_CORE is not set
1224 | CONFIG_SYMBOLIC_ERRNAME=y
1225 | # end of printk and dmesg options
1226 |
1227 | #
1228 | # Compile-time checks and compiler options
1229 | #
1230 | # CONFIG_DEBUG_INFO is not set
1231 | CONFIG_ENABLE_MUST_CHECK=y
1232 | CONFIG_FRAME_WARN=1024
1233 | # CONFIG_STRIP_ASM_SYMS is not set
1234 | # CONFIG_READABLE_ASM is not set
1235 | # CONFIG_HEADERS_INSTALL is not set
1236 | # CONFIG_DEBUG_SECTION_MISMATCH is not set
1237 | CONFIG_SECTION_MISMATCH_WARN_ONLY=y
1238 | # CONFIG_DEBUG_FORCE_FUNCTION_ALIGN_32B is not set
1239 | # CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set
1240 | # end of Compile-time checks and compiler options
1241 |
1242 | #
1243 | # Generic Kernel Debugging Instruments
1244 | #
1245 | # CONFIG_MAGIC_SYSRQ is not set
1246 | # CONFIG_DEBUG_FS is not set
1247 | CONFIG_HAVE_ARCH_KGDB=y
1248 | # CONFIG_KGDB is not set
1249 | CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y
1250 | # CONFIG_UBSAN is not set
1251 | # end of Generic Kernel Debugging Instruments
1252 |
1253 | CONFIG_DEBUG_KERNEL=y
1254 | # CONFIG_DEBUG_MISC is not set
1255 |
1256 | #
1257 | # Memory Debugging
1258 | #
1259 | # CONFIG_PAGE_EXTENSION is not set
1260 | # CONFIG_DEBUG_PAGEALLOC is not set
1261 | # CONFIG_PAGE_OWNER is not set
1262 | # CONFIG_PAGE_POISONING is not set
1263 | # CONFIG_DEBUG_OBJECTS is not set
1264 | CONFIG_HAVE_DEBUG_KMEMLEAK=y
1265 | # CONFIG_DEBUG_KMEMLEAK is not set
1266 | # CONFIG_DEBUG_STACK_USAGE is not set
1267 | # CONFIG_SCHED_STACK_END_CHECK is not set
1268 | # CONFIG_DEBUG_VM is not set
1269 | # CONFIG_DEBUG_MEMORY_INIT is not set
1270 | CONFIG_HAVE_DEBUG_STACKOVERFLOW=y
1271 | # CONFIG_DEBUG_STACKOVERFLOW is not set
1272 | CONFIG_CC_HAS_KASAN_GENERIC=y
1273 | CONFIG_CC_HAS_WORKING_NOSANITIZE_ADDRESS=y
1274 | # end of Memory Debugging
1275 |
1276 | # CONFIG_DEBUG_SHIRQ is not set
1277 |
1278 | #
1279 | # Debug Oops, Lockups and Hangs
1280 | #
1281 | CONFIG_PANIC_ON_OOPS=y
1282 | CONFIG_PANIC_ON_OOPS_VALUE=1
1283 | CONFIG_PANIC_TIMEOUT=0
1284 | # CONFIG_SOFTLOCKUP_DETECTOR is not set
1285 | # CONFIG_DETECT_HUNG_TASK is not set
1286 | # CONFIG_WQ_WATCHDOG is not set
1287 | # end of Debug Oops, Lockups and Hangs
1288 |
1289 | #
1290 | # Scheduler Debugging
1291 | #
1292 | # CONFIG_SCHED_DEBUG is not set
1293 | # CONFIG_SCHEDSTATS is not set
1294 | # end of Scheduler Debugging
1295 |
1296 | # CONFIG_DEBUG_TIMEKEEPING is not set
1297 |
1298 | #
1299 | # Lock Debugging (spinlocks, mutexes, etc...)
1300 | #
1301 | CONFIG_LOCK_DEBUGGING_SUPPORT=y
1302 | # CONFIG_PROVE_LOCKING is not set
1303 | # CONFIG_LOCK_STAT is not set
1304 | # CONFIG_DEBUG_RT_MUTEXES is not set
1305 | # CONFIG_DEBUG_SPINLOCK is not set
1306 | # CONFIG_DEBUG_MUTEXES is not set
1307 | # CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set
1308 | # CONFIG_DEBUG_RWSEMS is not set
1309 | # CONFIG_DEBUG_LOCK_ALLOC is not set
1310 | # CONFIG_DEBUG_ATOMIC_SLEEP is not set
1311 | # CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set
1312 | # CONFIG_LOCK_TORTURE_TEST is not set
1313 | # CONFIG_WW_MUTEX_SELFTEST is not set
1314 | # CONFIG_SCF_TORTURE_TEST is not set
1315 | # CONFIG_CSD_LOCK_WAIT_DEBUG is not set
1316 | # end of Lock Debugging (spinlocks, mutexes, etc...)
1317 |
1318 | # CONFIG_STACKTRACE is not set
1319 | # CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set
1320 | # CONFIG_DEBUG_KOBJECT is not set
1321 |
1322 | #
1323 | # Debug kernel data structures
1324 | #
1325 | # CONFIG_DEBUG_LIST is not set
1326 | # CONFIG_DEBUG_PLIST is not set
1327 | # CONFIG_DEBUG_SG is not set
1328 | # CONFIG_DEBUG_NOTIFIERS is not set
1329 | # CONFIG_BUG_ON_DATA_CORRUPTION is not set
1330 | # end of Debug kernel data structures
1331 |
1332 | # CONFIG_DEBUG_CREDENTIALS is not set
1333 |
1334 | #
1335 | # RCU Debugging
1336 | #
1337 | # CONFIG_RCU_SCALE_TEST is not set
1338 | # CONFIG_RCU_TORTURE_TEST is not set
1339 | # CONFIG_RCU_REF_SCALE_TEST is not set
1340 | # CONFIG_RCU_TRACE is not set
1341 | # CONFIG_RCU_EQS_DEBUG is not set
1342 | # end of RCU Debugging
1343 |
1344 | # CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set
1345 | # CONFIG_DEBUG_BLOCK_EXT_DEVT is not set
1346 | # CONFIG_LATENCYTOP is not set
1347 | CONFIG_HAVE_FUNCTION_TRACER=y
1348 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y
1349 | CONFIG_HAVE_DYNAMIC_FTRACE=y
1350 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y
1351 | CONFIG_HAVE_SYSCALL_TRACEPOINTS=y
1352 | CONFIG_HAVE_C_RECORDMCOUNT=y
1353 | CONFIG_TRACING_SUPPORT=y
1354 | # CONFIG_FTRACE is not set
1355 | # CONFIG_SAMPLES is not set
1356 |
1357 | #
1358 | # mips Debugging
1359 | #
1360 | CONFIG_TRACE_IRQFLAGS_SUPPORT=y
1361 | CONFIG_EARLY_PRINTK=y
1362 | # CONFIG_CMDLINE_BOOL is not set
1363 | # CONFIG_DEBUG_ZBOOT is not set
1364 | # end of mips Debugging
1365 |
1366 | #
1367 | # Kernel Testing and Coverage
1368 | #
1369 | # CONFIG_KUNIT is not set
1370 | # CONFIG_NOTIFIER_ERROR_INJECTION is not set
1371 | # CONFIG_FAULT_INJECTION is not set
1372 | CONFIG_ARCH_HAS_KCOV=y
1373 | CONFIG_CC_HAS_SANCOV_TRACE_PC=y
1374 | # CONFIG_KCOV is not set
1375 | # CONFIG_RUNTIME_TESTING_MENU is not set
1376 | # CONFIG_MEMTEST is not set
1377 | # end of Kernel Testing and Coverage
1378 | # end of Kernel hacking
1379 |
--------------------------------------------------------------------------------
/util/Makefile:
--------------------------------------------------------------------------------
1 | .PHONY: all clean
2 |
3 | all: size2bin
4 |
5 | CFLAGS = -Os -s -Wall -Wextra
6 |
7 | size2bin: size2bin.o
8 | $(CC) -o $@ $< $(CFLAGS)
9 |
10 | clean:
11 | rm -f size2bin *.o
12 |
--------------------------------------------------------------------------------
/util/size2bin.c:
--------------------------------------------------------------------------------
1 | #include
2 | #include
3 | #include
4 | #include
5 | #include
6 | #include
7 | #include
8 |
9 | int main(int argc, char **argv) {
10 |
11 | if (argc != 3) {
12 | printf("Usage: %s file size.bin\n", argv[0]);
13 | return 1;
14 | }
15 |
16 | struct stat st;
17 | if (stat(argv[1], &st)) {
18 | puts("Can't stat");
19 | return 1;
20 | }
21 |
22 | uint32_t size = st.st_size;
23 | size = bswap_32(size);
24 |
25 | FILE *f = fopen(argv[2], "w");
26 | if (fwrite(&size, 4, 1, f) != 1)
27 | abort();
28 | fclose(f);
29 |
30 | return 0;
31 | }
32 |
--------------------------------------------------------------------------------