├── .gitignore ├── CONTENTS ├── COPYING ├── README.md ├── configs ├── b3_baseline_config ├── b3_interstitial_config ├── b3_shipped_config ├── b3_stock_config └── usb_interstitial_config ├── reference ├── buildkernel-b3.pdf ├── fstab-on-b3 ├── fstab-on-live-usb ├── genup.pdf ├── installed-packages ├── interstitial-init-on-b3 ├── interstitial-init-on-live-usb ├── kexec-on-b3.sh ├── kexec-on-live-usb.sh ├── kirkwood-b3-earlyled.dtb ├── kirkwood-b3-earlyled.dts ├── kirkwood-b3.dtb ├── kirkwood-b3.dts ├── porthash.pdf ├── setethermac └── showem.pdf └── utils └── README /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *.xz 3 | *.sig 4 | *.asc 5 | -------------------------------------------------------------------------------- /CONTENTS: -------------------------------------------------------------------------------- 1 | The following is a brief description of the files in the project: 2 | 3 | .gitignore 4 | Specifies files to ignore under the git version control system. 5 | CONTENTS 6 | This file. 7 | COPYING 8 | GPL 3.0 license text. 9 | README.md 10 | Brief description of the project, image installation and use. 11 | configs/usb_interstitial_config 12 | The .config used to build the kernel on the boot partition of the 13 | USB image; essentially a glorified bootloader, whose job is to run kexec.sh 14 | (which will load and kexec the 'real' kernel). 15 | configs/b3_interstitial_config 16 | The .config used to build the kernel shipped in the 17 | /root/root-on-sda3-kernel directory of the USB image; similar to the above, 18 | but specifies a different initramfs. (You can grab a tarball of the 19 | two initramfs from the project releases page on GitHub.) 20 | configs/b3_baseline_config 21 | The baseline .config used when autobuilding the 'real' kernel zImage 22 | (for which please see the gentoo-b3-kernel GitHub project, and also its 23 | corresponding sys-kernel/gentoo-b3-kernel-bin package in the 24 | gentoo-b3-overlay GitHub project). Note that the kernel version shown in 25 | this file will be _lower_ than the version shipped on any (modern) 26 | version of the image. 27 | configs/b3_shipped_config 28 | The config of the 'real' kernel shipped on the current image. Note that 29 | this kernel is provided by a binary package on the image, and so may 30 | be updated during a future genup run. 31 | configs/b3_stock_config 32 | The .config from a standard B3, on which the above three were based 33 | (way back when ^-^). 34 | reference/buildkernel-b3.pdf 35 | A PDF of the manpage for the buildkernel-b3 utility (which replaces 36 | the old prep_arm_image<...>.sh scripts) 37 | reference/fstab-on-b3 38 | The /etc/fstab used when installing to HDD; has boot, swap and root on 39 | /dev/sda{1,2,3}. /boot is mounted by default now. 40 | reference/fstab-on-live-usb 41 | The /etc/fstab from the main USB image; has boot, swap and root 42 | indexed by UUID. /boot is mounted by default now. 43 | reference/genup.pdf 44 | A PDF of the manpage for the genup utility, which can be used 45 | to keep your B3 Gentoo system up-to-date easily. 46 | reference/installed-packages 47 | Full list of installed packages, from eix-installed all; the version numbers 48 | are Gentoo ebuilds, but they generally map 1-to-1 onto upstream versions 49 | reference/interstitial-init-on-b3 50 | The init script run from the interstitial (bootloader) kernel when deployed 51 | onto HDD; the main job of which is to locate and mount the boot partition 52 | and source the kexec.sh script therein. 53 | reference/interstitial-init-on-live-usb 54 | Ditto, but used by the intersitital kernel on the live-USB; the 55 | difference is how the /boot partition is located (here, by UUID). 56 | reference/kexec-on-b3.sh 57 | The sourced kexec script when booting from HDD. It will load and patch the 58 | kernel (assumed to be a vanilla zImage), load the DTB, load the initramfs 59 | (if supplied), then boot the kernel using kexec. Contains an editable kernel 60 | command line which specifies root as /dev/sda3. No boot delay. 61 | reference/kexec-on-live-usb.sh 62 | The sourced kexec script when booting from USB. It will load and patch the 63 | kernel (assumed to be a vanilla zImage), load the DTB, load the initramfs 64 | (if supplied), then boot the kernel using kexec. Contains an editable kernel 65 | command line which specifies root by UUID, so it will work even in a 66 | diskless chassis. 5 seconds boot delay. 67 | reference/kirkwood-b3.dt{b,s}. 68 | Device tree source (and compiled device tree blob) for the B3, lifted from 69 | arch/arm/boot/dts/kirkwood-b3.dts in the 4.11.5 kernel source directory; 70 | this file describes the B3-specific hardware (such as LEDs) to the 71 | kernel; see the file /etc/init.d/bootled for an example of use. 72 | reference/kirkwood-b3-earlyled.dt{b,s} 73 | As above, but slightly modified to turn the purple front LED on 74 | during early boot; used in the current live-USB image to avoid having a 75 | long gap where the front LED is off, when kexec-ing the 'real' kernel. 76 | reference/porthash.pdf 77 | A PDF of the manpage for the porthash utility, which allows a signed 78 | "master" hash of a Portage repo to be created or verified; useful when 79 | distributing a snapshot via an unauthenticated channel, such as rsync. 80 | reference/setethermac 81 | The simple boot-time OpenRC service used to ensure that the B3's ethernet 82 | interfaces have the correct MACs set (because, if the kernel was 83 | kexec-booted, the MACs will initally both be be 0, and networking will not 84 | start unless this is corrected). 85 | reference/showem.pdf 86 | A PDF of the manpage for the showem utility, which allows parallel 87 | Gentoo emerge runs to be easily monitored. 88 | utils/README 89 | A short explanation of what has happened to the prep_arm_image.sh 90 | and prep_arm_image_on_b3.sh scripts (hint - they've been replaced by 91 | buildkernel-b3). 92 | -------------------------------------------------------------------------------- /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 | {one line to give the program's name and a brief idea of what it does.} 635 | Copyright (C) {year} {name of author} 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 | {project} Copyright (C) {year} {fullname} 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 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # gentoo-on-b3 2 | 3 | Bootable live-USB of Gentoo Linux for the Excito B3 miniserver, with weekly-autobuild binhost (inc. kernel), profile 17.0 4 | 5 | ## Description 6 | 7 | Excito B3 8 | 9 | This project contains a bootable, live-USB image for the Excito B3 miniserver. You can use it as a rescue disk, to play with Gentoo Linux, or as the starting point to install Gentoo Linux on your B3's main hard drive. You can even use it on a diskless B3. No soldering, compilation, or [U-Boot](http://www.denx.de/wiki/U-Boot/WebHome) flashing is required! You can run it without harming your B3's existing software; however, any changes you make while running the system *will* be saved to the USB (i.e., there is persistence). A number of useful software packages (web server, mail server etc.) are included precompiled with the image (in their 'freshly emerged' configuration state), for convenience. 10 | 11 | As of version 2.1.0: 12 | * an "interstitial" kernel is now used during early boot, a strategy that has been succesfully used for a number of years now on my [archlinux-on-b3](https://github.com/sakaki-/archlinux-on-b3/) image. Under this approach, the B3's U-Boot loader actually starts a fixed-version kernel (the "interstitial kernel") which, together with its [initramfs](https://github.com/sakaki-/gentoo-on-b3/releases/tag/2.0.0#downloads), then acts as a second-stage bootloader for the kernel proper (chainloaded via `kexec`). This allows the "real" kernel to be distributed as a vanilla zImage, and also enables you to change the kernel command line easily (by editing the file `/boot/kexec.sh`), *without* having to flash any U-Boot variables; 13 | * the current, weekly-autobuild [gentoo-b3-kernel](https://github.com/sakaki-/gentoo-b3-kernel) kernel is utilized as the "real" kernel, via the binary package [gentoo-b3-kernel-bin](https://github.com/sakaki-/gentoo-b3-overlay/tree/master/sys-kernel/gentoo-b3-kernel-bin). Accordingly, your kernel (and module set) will automatically be updated (along with all other packages on the system) whenever you issue `genup` (of which more [later](#genup); the initial kernel version shipped on the image is **4.18.5-gentoo-b3**, derived from [gentoo-sources](https://wiki.gentoo.org/wiki/Kernel/Overview#General_purpose:_gentoo-sources) and [this baseline config](https://github.com/sakaki-/gentoo-on-b3/blob/master/configs/b3_baseline_config); 14 | * a (profile 17.0) [Gentoo binhost](https://wiki.gentoo.org/wiki/Binary_package_guide) (automatically updated weekly) has been provided (at https://isshoni.org/b3pie), to allow your B3 to perform fast updates via binary packages where possible, only falling back to local source-based compilation where necessary (using this facility is optional; it is activated by default in the live-USB, but instructions for turning it off are provided [below](#binhost_unsubscribe)). The binhost additionally provides an rsync mirror for the main `gentoo` repo (with `gemato` authentication), used to keep the B3's ebuild tree in lockstep; and 15 | * a custom Gentoo profile, `gentoo-b3:default/linux/arm/17.0/armv5te/b3`, is provided, which supplies many of the default build settings, USE flags etc., required for Gentoo on the B3, keeping them also in lockstep with the binhost. You can view this profile (provided via the [gentoo-b3](https://github.com/sakaki-/gentoo-b3-overlay) overlay) [here](https://github.com/sakaki-/gentoo-b3-overlay/tree/master/profiles/targets/b3). 16 | 17 | The image may be downloaded from the link below (or via `wget`, per the following instructions). (Incidentally, the image is 'universal', and should work, without modification, whether your B3 has an internal hard drive fitted or not.) 18 | 19 | Variant | Version | Image | Digital Signature 20 | :--- | ---: | ---: | ---: 21 | B3 with or without Internal Drive | 2.1.1 | [genb3img.xz](https://github.com/sakaki-/gentoo-on-b3/releases/download/2.1.1/genb3img.xz) | [genb3img.xz.asc](https://github.com/sakaki-/gentoo-on-b3/releases/download/2.1.1/genb3img.xz.asc) 22 | 23 | The older images are still available (together with a short changelog) [here](https://github.com/sakaki-/gentoo-on-b3/releases). 24 | 25 | > Please read the instructions below before proceeding. Also please note that all images are provided 'as is' and without warranty. 26 | 27 | ## Prerequisites 28 | 29 | To try this out, you will need: 30 | * A USB key of at least 8GB capacity (the *compressed* (.xz) image is 364MiB, the *uncompressed* image is 14,813,184 (512 byte) sectors = 7,584,350,208 bytes). Unfortunately, not all USB keys work with the version of [U-Boot](http://www.denx.de/wiki/U-Boot/WebHome) on the B3 (2010.06 on my device). Most SanDisk and Lexar USB keys appear to work reliably, but others (e.g., Verbatim keys) will not boot properly. (You may find the list of known-good USB keys [in this post](http://forum.doozan.com/read.php?2,1915,page=1) useful.) 31 | * An Excito B3 (obviously!). As of version 1.3.0, the *same* image will work both for the case where you have an internal hard drive in your B3 (the normal situation), *and* for the case where you are running a diskless B3 chassis. 32 | * A PC to decompress the image and write it to the USB key (of course, you can also use your B3 for this, assuming it is currently running the standard Excito / Debian Squeeze system). This is most easily done on a Linux machine of some sort, but tools are also available for Windows (see [here](http://tukaani.org/xz/) and [here](http://sourceforge.net/projects/win32diskimager/), for example). In the instructions below I'm going to assume you're using Linux. 33 | 34 | > Incidentally, I also have an [Arch Linux](https://www.archlinux.org/) live USB for the B3, available [here](https://github.com/sakaki-/archlinux-on-b3), a [RedSleeve](https://en.wikipedia.org/wiki/RedSleeve) v7 live USB for the B3, available [here](https://github.com/sakaki-/redsleeve-on-b3), and a (profile 17.0) Gentoo Linux live USB for the B2, available [here](https://github.com/sakaki-/gentoo-on-b2). 35 | 36 | ## Downloading and Writing the Image 37 | 38 | On your Linux box, issue: 39 | ```console 40 | # wget -c https://github.com/sakaki-/gentoo-on-b3/releases/download/2.1.1/genb3img.xz 41 | # wget -c https://github.com/sakaki-/gentoo-on-b3/releases/download/2.1.1/genb3img.xz.asc 42 | ``` 43 | to fetch the compressed disk image file (364MiB) and its signature. 44 | 45 | Next, if you like, verify the image using `gpg` (this step is optional): 46 | ```console 47 | # gpg --keyserver pool.sks-keyservers.net --recv-key DDE76CEA 48 | # gpg --verify genb3img.xz.asc genb3img.xz 49 | ``` 50 | 51 | Assuming that reports 'Good signature', you can proceed. 52 | 53 | Next, insert (into your Linux box) the USB key on which you want to install the image, and determine its device path (this will be something like `/dev/sdb`, `/dev/sdc` etc.; the actual path will depend on your system, you can use the `lsblk` tool to help you). Unmount any existing partitions of the USB key that may have automounted (using `umount`). Then issue: 54 | 55 | > **Warning** - this will *destroy* all existing data on the target drive, so please double-check that you have the path correct! 56 | 57 | ```console 58 | # xzcat genb3img.xz > /dev/sdX && sync 59 | ``` 60 | 61 | Substitute the actual USB key device path, for example `/dev/sdc`, for `/dev/sdX` in the above command. Make sure to reference the device, **not** a partition within it (so e.g., `/dev/sdc` and not `/dev/sdc1`; `/dev/sdd` and not `/dev/sdd1` etc.) 62 | 63 | The above `xzcat` to the USB key will take some time, due to the decompression (it takes between 8 and 20 minutes on my machine, depending on the USB key used). It should exit cleanly when done - if you get a message saying 'No space left on device', then your USB key is too small for the image, and you should try again with a larger capacity one. 64 | 65 | ## Booting! 66 | 67 | Begin with your B3 powered off and the power cable removed. Insert the USB key into either of the USB slots on the back of the B3, and make sure the other USB slot is unoccupied. Connect your B3 into your local network (or directly to your ADSL router, cable modem etc., if you wish) using the **wan** Ethernet port. Then, *while holding down the button on the back of the B3*, apply power (insert the power cable). After two seconds or so, release the button. If all is well, the B3 should boot the interstitial ("bootloader") kernel off of the USB key (rather than the internal drive), and then proceed to patch, load and `kexec` the [gentoo-b3-kernel](https://github.com/sakaki-/gentoo-b3-kernel), mount the root partition (also from the USB key) and start Gentoo. This will all take about 60 seconds or so. The LED on the front of the B3 should: 68 | 69 | 1. first, turn **green**, for about 20 seconds, and then briefly **purple**, as the interstitial kernel loads; then 70 | 1. turn **off** for about 10 seconds, as the ['real'](https://github.com/sakaki-/gentoo-b3-kernel) kernel is patched and loaded; then 71 | 1. turn **purple** again for about 20 seconds, as the real kernel boots, and then 72 | 1. turn **green** again as Gentoo comes up (enters [runlevel](https://en.wikipedia.org/wiki/Runlevel) 3). 73 | 74 | About 60 seconds after the LED turns green in step 4, above, you should be able to log in, via `ssh`, per the following instructions. 75 | 76 | > The image uses a solid green LED as its 'normal' state, so that you can easily tell at a glance whether your B3 is running an Excito/Debian system (blue LED) or a Gentoo one (green LED). 77 | 78 | > Also, please note that if you have installed Gentoo Linux to your internal HDD (per the instructions given [later](#hdd_install)), and are booting from the HDD, that the front LED will be **purple**, not green-then-purple, throughout phase 1. 79 | 80 | ## Connecting to the B3 81 | 82 | Once booted, you can log into the B3 as follows. 83 | 84 | First, connect your client PC (or Mac etc.) to the **lan** Ethernet port of your B3 (you can use a regular Ethernet cable for this, the B3's ports are autosensing). Alternatively, if you have a WiFi enabled B3, you can connect to the "b3" WiFi network which should now be visible (the passphrase is **changeme**). 85 | 86 | Then, on your client PC, issue: 87 | ```console 88 | $ ssh root@b3 89 | The authenticity of host 'b3 (192.168.50.1)' can't be established. 90 | ED25519 key fingerprint is 0c:b5:1c:66:19:8a:dc:81:0e:dc:1c:f5:25:57:7e:66. 91 | Are you sure you want to continue connecting (yes/no)? 92 | Warning: Permanently added 'b3,192.168.50.1' (ED25519) to the list of known hosts. 93 | Password: 94 | b3 ~ # 95 | ``` 96 | and you're in! You may receive a different fingerprint type, depending on what your `ssh` client supports. Also, please note that as of version 1.3.1, the `ssh` host keys are generated on first boot (for security), and so the fingerprint you get will be different from that shown above. 97 | 98 | > If you have trouble with `ssh root@b3`, you can also try using `ssh root@192.168.50.1` instead. 99 | 100 | If you have previously connected to a *different* machine with the *same* IP address as your B3 via `ssh` from the client PC, you may need to delete its host fingerprint (from `~/.ssh/known_hosts` on the PC) before `ssh` will allow you to connect. 101 | 102 | > Incidentally, you should also be able to browse the web etc. from your client (assuming that you connected the B3's `wan` port prior to boot), because the image has a forwarding `shorewall` firewall setup, as of version 1.7.0. 103 | 104 | ## Using Gentoo 105 | 106 | The supplied image contains a fully-configured Gentoo system (*not* simply a [minimal install](https://wiki.gentoo.org/wiki/Handbook:AMD64/Installation/Media#Minimal_installation_CD) or [stage 3](https://wiki.gentoo.org/wiki/Handbook:AMD64/Installation/Media#What_are_stages_then.3F)), with a complete Portage tree already downloaded, so you can immediately perform `emerge` operations (Gentoo's equivalent of `apt-get`) etc. Be aware that, as shipped, it uses UK locale settings and timezone; however, these are easily changed if desired. See the [Gentoo Handbook](https://wiki.gentoo.org/wiki/Handbook:AMD64/Installation/Base#Timezone) for details. 107 | 108 | The full set of packages in the image may be viewed [here](https://github.com/sakaki-/gentoo-on-b3/blob/master/reference/installed-packages) (note that the version numbers shown in this list are Gentoo ebuilds, but they generally map 1-to-1 onto upstream package versions). 109 | 110 | It is based on the 5 June 2014 stage 3 release and minimal install system from Gentoo (armv5tel), with all packages brought up to date against the Gentoo tree as of 4 September 2018 (and fully rebuilt for profile 17.0). 111 | 112 | The initial networking setup of the live-USB is as follows (patterned on the setup laid out in my Gentoo wiki page [here](https://wiki.gentoo.org/wiki/Ethernet_plus_WiFi_Bridge_Router_and_Firewall)): 113 | 114 | ![Initial B3 Networking Setup](https://raw.githubusercontent.com/sakaki-/resources/master/excito/b3/b3_initial_networking_setup.png) 115 | 116 | Feel free to change this as desired; see [this volume](https://wiki.gentoo.org/wiki/Handbook:AMD64#Gentoo_network_configuration) of the Gentoo Handbook for further details. 117 | > If you have used previous versions of this live-USB, please note that the initial networking setup has changed. There is no need to specify the `/install/net` or `/install/resolv.conf` files, and the `copynetsetup` service is now disabled. 118 | 119 | Note that the initial setup assumes you have a DHCP server on your network (on your ADSL router etc.). However, even if you do not (or have not hooked up your **wan** Ethernet port on boot), you *should* still be able to log in to your B3 (via the `lan` port, or, if available, over WiFi). You can then specify appropriate networking settings in `/etc/conf.d/net` for the `wan` port (`eth0`). Having done so, ensure the `wan` port is connected, and issue (as root) `/etc/init.d/net.eth0 restart` to bring the interface up. 120 | 121 | When you are done using your Gentoo system, you can simply issue: 122 | ```console 123 | b3 ~ # reboot 124 | ``` 125 | and your machine will cleanly restart back into your existing (Excito) system off the hard drive. At this point, you can remove the USB key if you like. You can then, at any later time, simply repeat the 'power up with USB key inserted and button pressed' process to come back into Gentoo - any changes you made will still be present on the USB key. This makes for an easy way to migrate across gradually to Gentoo if you like, without having to disrupt your normal Excito Debian setup (which you can always just reboot back into at any time). 126 | 127 | To power off cleanly (rather than rebooting), you have two options. First, as the image includes Tor's [bubba-buttond](https://github.com/Excito/bubba-buttond) (courtesy of Gordon's [ebuild](https://github.com/sakaki-/gentoo-b3-overlay/tree/master/sys-power/bubba-buttond), migrated into the [gentoo-b3 overlay](https://github.com/sakaki-/gentoo-b3-overlay) as of version 2.0.0), you can simply press the B3's rear button for around 5 seconds, then release it (just as you would on a regular Excito system). The front LED will turn from green to purple after around 20 seconds, then turn off once it is safe to physically remove the power cable. 128 | 129 | Second, if you'd rather use the command line, you can issue: 130 | ```console 131 | b3 ~ # poweroff-b3 132 | ``` 133 | which will have the same effect (and follow the same power-down LED sequence). 134 | 135 | Have fun! ^-^ 136 | 137 | ## Miscellaneous Points 138 | 139 | * The specific B3 devices (LEDs, buzzer, rear button etc.) are described by the file `arch/arm/boot/dts/kirkwood-b3.dts` in the main kernel source directory (and included in the [git archive too](https://github.com/sakaki-/gentoo-on-b3/blob/master/reference/kirkwood-b3.dts), for reference). You can see an example of using the defined devices in `/etc/init.d/bootled`, which turns on the green LED as Gentoo starts up, and back to purple again on shutdown (this replaces the previous [approach](http://wiki.mybubba.org/wiki/index.php?title=Let_your_B3_beep_and_change_the_LED_color), which required an Excito-patched kernel). Note that the USB image uses a slightly patched version of the DTS (available [here](https://github.com/sakaki-/gentoo-on-b3/blob/master/reference/kirkwood-b3-earlyled.dts)), to ensure that the front LED is purple during early boot; (if for some reason you don't want to use this, simply rename or delete the file `kirkwood-b3-earlyled.dtb` in the first partition of the live USB, and the standard `kirkwood-b3.dtb` will be used instead; note that in this case the B3's LED will be off for around 30-40 seconds during boot, which some users find disconcerting). 140 | * The live USB works because the B3's firmware boot loader will automatically try to run a file called `/install/install.itb` from the first partition of the USB drive when the system is powered up with the rear button depressed. In the provided image, we have placed a bootable (interstitial) kernel uImage in that location. Despite the name, no 'installation' takes place, of course! 141 | * As mentioned, *two* kernels are actually used during the boot process. The first, "interstitial" (aka "bootloader") kernel has an integral `busybox`-based initramfs (an archive of which is available [here](https://github.com/sakaki-/gentoo-on-b3/releases/tag/2.0.0#downloads)), within which is a simple init script (which you can see [here](https://github.com/sakaki-/gentoo-on-b3/blob/master/reference/interstitial-init-on-live-usb)); this script attempts to mount the first partition of the USB key (by UUID, so it will work even on a diskless chassis) and then sources the file `/boot/kexec.sh` within it (which you can see [here](https://github.com/sakaki-/gentoo-on-b3/blob/master/reference/kexec-on-live-usb.sh)). This script in turn loads the 'real' kernel zImage from `/boot` (provided, by default, from [gentoo-b3-kernel](https://github.com/sakaki-/gentoo-b3-kernel) via the [gentoo-b3-kernel-bin](https://github.com/sakaki-/gentoo-b3-overlay/tree/master/sys-kernel/gentoo-b3-kernel-bin) package on the image), applies a small [workaround patch](https://lists.debian.org/debian-boot/2012/08/msg00804.html), sets up the kernel command line, loads the device tree blob and (optional) initramfs, and then switches to this 'real' kernel (using `kexec`). You can easily modify the script fragment `/boot/kexec.sh` if you like, for example to change the kernel command line settings. 142 | * The image is subscribed to the following overlays: 143 | * [`sakaki-tools`](https://github.com/sakaki-/sakaki-tools): this provides the tools `showem` ([source](https://github.com/sakaki-/showem), [manpage](https://github.com/sakaki-/gentoo-on-b3/raw/master/reference/showem.pdf)) and `genup` ([source](https://github.com/sakaki-/genup), [manpage](https://github.com/sakaki-/gentoo-on-b3/raw/master/reference/genup.pdf)). (Note - these replace the old `showem-lite` and `genup-lite` tools.) It also provides the `porthash` tool ([source](https://github.com/sakaki-/porthash), [manpage](https://github.com/sakaki-/gentoo-on-b3/raw/master/reference/porthash.pdf)). 144 | * [`gentoo-b3`](https://github.com/sakaki-/gentoo-b3-overlay): this provides the `b3-init-scripts` package ([source](https://github.com/sakaki-/gentoo-b3-overlay/tree/master/sys-apps/b3-init-scripts/files)), a modern version of the `lzo` package ([upstream](http://www.oberhumer.com/opensource/lzo/download/); required because of an [alignment bug](https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=757037#32)), and the `buildkernel-b3` tool ([source](https://github.com/sakaki-/buildkernel-b3), [manpage](https://github.com/sakaki-/gentoo-on-b3/raw/master/reference/buildkernel-b3.pdf)). It also provides the `b3-check-porthash` package ([source](https://github.com/sakaki-/gentoo-b3-overlay/tree/master/app-portage/b3-check-porthash/files); retired as of 2.1.0) and the `gentoo-b3-kernel-bin` package ([ebuild](https://github.com/sakaki-/gentoo-b3-overlay/tree/master/sys-kernel/gentoo-b3-kernel-bin)), used to install the autobuilt [gentoo-b3-kernel](https://github.com/sakaki-/gentoo-b3-kernel) binaries. 145 | * As of version 2.0.0, Gordon's [`bubba`](https://github.com/gordonb3/bubba-overlay) overlay, which provides ebuilds to provide the original Excito web-based interface on the B3 under Gentoo, is not pre-installed on the image (his [bubba-buttond](https://github.com/sakaki-/gentoo-b3-overlay/tree/master/sys-power/bubba-buttond) ebuild having been migrated into the [gentoo-b3](https://github.com/sakaki-/gentoo-b3-overlay) overlay). If you *do* wish to use this repo, simply move the file `/etc/portage/bubba.conf` into `/etc/portage/repos.conf`, and then issue `emaint sync --repo bubba` (or similar update command). Interested users are also encouraged to check out Gordon's excellent [bubbagen](https://github.com/gordonb3/bubbagen) bootable images for the B3. 146 | * A cron-scripted weekly autobuild (`genup`) binhost has been set up at https://isshoni.org/b3pie, and the image is configured to use this by default (see `/etc/portage/make.conf`: `FEATURES="${FEATURES} getbinpkg"` and `PORTAGE_BINHOST="https://isshoni.org/b3pie"`; simply comment out these lines if you do not wish to use this facility). Furthermore, to ensure that the Portage ebuild tree is kept in sync with the binhost, a `rsync` mirror has been provided at `rsync://isshoni.org/gentoo-portage-b3`. This mirror is slaved off the binhost's tree (itself based upon a `webrsync-gpg` authenticated snapshot) and updated at the same time the new binary packages are uploaded each week. The image is configured to use this mirror for its main Portage tree (see `/etc/portage/repos.conf/gentoo.conf`), and uses Portage's `rsync-verify` signature checking (as of release 2.1.0). 147 | 148 | If you would rather use a standard Gentoo `rysnc` source instead, simply edit `/etc/portage/repos.conf/gentoo.conf` and set e.g. `sync-uri = rsync://rsync.us.gentoo.org/gentoo-portage`. Be aware that if you *do* do this, *and* use the `isshoni.org` binhost for updates, you may still end up building quite a lot from source on your own machine, should e.g. a new version of a large package like `gcc` be posted to the "gentoo" tree in-between the weekly binhost updates (using the custom `rsync` source prevents this kind of thing from happening). 149 | 150 | * Also, since, by default, Gentoo will *not* use a binary package for update unless the USE flags selected when building it match those on your machine, a custom profile, `gentoo-b3:default/linux/arm/17.0/armv5te/b3`, has been provided, which helps keep these (and some other critical build settings) in sync. You can view this profile (provided via the [gentoo-b3](https://github.com/sakaki-/gentoo-b3-overlay) overlay) [here](https://github.com/sakaki-/gentoo-b3-overlay/tree/master/profiles/targets/b3). In addition to USE flags, the custom profile also provides package masks, certain `make.conf` settings, package keywording etc. The profile is sync'd by the binhost as part of the weekly build cycle, and will be picked up on the B3 during a `genup` run, so any USE flag modifications, new masks etc. required to build an updated version of a package can be distributed to your machine without manual intervention; again, simplifying the update process. Note that any settings you make in `/etc/portage/...` override those in the profile, so you always have control. 151 | 152 | Nevertheless, if you *don't* want to use this facility, simply issue `eselect profile set default/linux/arm/17.0/armv5te` to revert back to the vanilla profile. You'll need to merge back some changes into your `/etc/portage/make.conf`, `/etc/portage/package.use` etc. if you do so however, in order to continue to build packages on your B3 under Gentoo. Refer to the various files [in the custom profile](https://github.com/sakaki-/gentoo-b3-overlay/tree/master/profiles/targets/b3) to see which edits must be made. 153 | 154 | * As of version 1.7.0, the `shorewall` firewall (front-end) is included and enabled. If you wish to run e.g. a web server on your B3, please remember to add the appropriate firewall rules (see my Gentoo wiki page [here](https://wiki.gentoo.org/wiki/Ethernet_plus_WiFi_Bridge_Router_and_Firewall) for some further information). 155 | * Please note that the firewall, as initially configured, will allow `ssh` traffic on the `wan` port also. Note also that `sshd` (see `/etc/ssh/ssdh_config`) is initially configured to *allow* password-based login for `root` (you may wish to change this, once you have created at least one regular user with the ability to `su` to `root`). 156 | * To allow additional inbound traffic to your B3, the file you need to edit is `/etc/shorewall/rules`. Add new entries to the bottom of this file. For example, to allow inbound port 8000/TCP from `br0` (the `loc` zone) and 8001/UDP, 8001/TCP from `eth0` (the `net` zone), you would add: 157 | ``` 158 | ACCEPT loc $FW tcp 8000 159 | ACCEPT net $FW udp 8001 160 | ACCEPT net $FW tcp 8001 161 | ``` 162 | Then simply reboot your B3, or issue `/etc/init.d/shorewall restart` to pick up the changes. 163 | * If you have a WiFi-enabled B3, the corresponding network interface is named `wlan0` (there is a `udev` rule that does this, namely `/etc/udev/rules.d/70-net-name-use-custom.rules`). Please note that this rule will **not** work correctly if you have more than one WiFi adaptor on your B3 (an unusual case). 164 | * The WiFi settings are controlled by `hostapd`, and my be modified by editing `/etc/hostapd.d/b3.conf`. I recommend that you at least change the passphrase (if you have a WiFi-enabled B3)! 165 | * The image now includes a 1GiB swap partition, and (since a minimum 8GB key is now required, rather than 4GB) also has sufficient space in its root partition to e.g., perform a kernel compilation, should you so desire. 166 | * If you have a USB key larger than the minimum 8GB, after writing the image you can easily extend the size of the second partition (using `fdisk` and `resize2fs`), so you have more space to work in. See [these instructions](http://geekpeek.net/resize-filesystem-fdisk-resize2fs/), for example. 167 | * As of release 2.1.0, a weekly cron job (`/etc/cron.weekly/genup`) has been installed, to automate the process of keeping your B3 up-to-date (this can be deleted if you prefer). 168 | 169 | ## Installing Gentoo on your B3's Internal Drive (Optional) 170 | 171 | If you like Gentoo, and want to set it up permanently on the B3's internal hard drive, you can do so easily (it takes less than 5 minutes). The full process is described below. (Note, this is strictly optional, you can simply run Gentoo from the USB key, if you are just experimenting, or using it as a rescue system.) 172 | 173 | > **Warning** - the below process will wipe all existing software and data from your internal drive, so be sure to back that up first, before proceeding. It will set up: 174 | * /dev/sda1 as a 64MiB boot partition, and format it `ext3`; 175 | * /dev/sda2 as a 1GiB swap partition; 176 | * /dev/sda3 as a root partition using the rest of the drive, and format it `ext4`. 177 | 178 | > Note also that the script [`/root/install_on_sda.sh`](https://github.com/sakaki-/gentoo-b3-overlay/blob/master/sys-apps/b3-init-scripts/files/install_on_sda.sh-3) will install using a DOS partition table (max 2TiB); if you'd rather use GPT, then use [`/root/install_on_sda_gpt.sh`](https://github.com/sakaki-/gentoo-b3-overlay/blob/master/sys-apps/b3-init-scripts/files/install_on_sda_gpt.sh-3) instead. [All B3s](http://forum.mybubba.org/viewtopic.php?f=7&t=5755) can boot from a GPT-partitioned drive; however, please note that if your HDD has a capacity > 2TiB, then only those B3s with a [relatively modern](http://forum.mybubba.org/viewtopic.php?f=9&t=5745) U-Boot will work correctly. The DOS partition table version should work for any size drive (but will be constrained to a maximum of 2TiB). 179 | 180 | OK, first, boot into the image and then connect to your B3 via `ssh`, as described above. Then, (as of version 1.4.0) you can simply run the supplied script to install onto your hard drive: 181 | ```console 182 | b3 ~ # /root/install_on_sda.sh 183 | Install Gentoo -> /dev/sda (B3's internal HDD) 184 | 185 | WARNING - will delete anything currently on HDD 186 | (including any existing Excito Debian system) 187 | Please make sure you have adequate backups before proceeding 188 | 189 | Type (upper case) INSTALL and press Enter to continue 190 | Any other entry quits without installing: 191 | Installing: check '/var/log/gentoo_install.log' in case of errors 192 | Step 1 of 5: creating partition table on /dev/sda... 193 | Step 2 of 5: formatting partitions on /dev/sda... 194 | Step 3 of 5: mounting boot and root partitions from /dev/sda... 195 | Step 4 of 5: copying system and bootfiles (please be patient)... 196 | Step 5 of 5: syncing filesystems and unmounting... 197 | All done! You can reboot into your new system now. 198 | ``` 199 | 200 | That's it! You can now try rebooting your new system (it will have the same initial network settings as the USB version, since we've just copied them over). Issue: 201 | ```console 202 | b3 ~ # reboot 203 | ``` 204 | And let the system shut down and come back up. **Don't** press the B3's back-panel button this time. The system should boot directly off the hard drive. You can now remove the USB key, if you like, as it's no longer needed. Wait 60 seconds or so, then from your PC on the same subnet issue: 205 | ```console 206 | $ ssh root@b3 207 | Password: 208 | b3 ~ # 209 | ``` 210 | Of course, if you changed root's password in the USB image, use that new password rather than `gentoob3` in the above. 211 | 212 | Once logged in, feel free to configure your system as you like! Of course, if you're intending to use the B3 as an externally visible server, you should take the usual precautions, such as changing `root`'s password, configuring the firewall, possibly [changing the `ssh` host keys](https://missingm.co/2013/07/identical-droplets-in-the-digitalocean-regenerate-your-ubuntu-ssh-host-keys-now/#how-to-generate-new-host-keys-on-an-existing-server), etc. 213 | 214 | ## Compiling Your Own Kernel (Optional) 215 | 216 | As shipped, the image uses the [gentoo-b3-kernel-bin](https://github.com/sakaki-/gentoo-b3-overlay/tree/master/sys-kernel/gentoo-b3-kernel-bin) package to follow the [gentoo-b3-kernel](https://github.com/sakaki-/gentoo-b3-kernel) binary, which is autobuilt and released on a weekly basis, tracking the most modern `~arm` [gentoo-sources](https://wiki.gentoo.org/wiki/Kernel/Overview#General_purpose:_gentoo-sources) kernel available in the Gentoo tree. As such, your "real" kernel will automatically be updated (along with the userland packages in your system) whenever you run `genup` (see [below](#genup)). 217 | 218 | However, if you'd like to compile your *own* kernel for your new system (for example, to set specific config options), you can do so easily (even if still running from the USB - it has sufficient free space). Note that you **must** use at least version 3.15 of the kernel, as this is when the B3's device-tree information (the `arch/arm/boot/dts/kirkwood-b3.dts` file discussed earlier) was integrated into the mainline. 219 | 220 | Suppose you wish to build the most modern version available using the standard Gentoo-patched sources. Then you would issue: 221 | ```console 222 | b3 ~ # emerge --ask --verbose gentoo-sources 223 | (confirm when prompted; this will take some time to complete, depending on your network connection) 224 | b3 ~ # eselect kernel list 225 | (this will show a numbered list of available kernels) 226 | b3 ~ # eselect kernel set 1 227 | (replace '1' in the above command with the number of the desired kernel from the list) 228 | b3 ~ # cd /usr/src/linux 229 | ``` 230 | Now remove the provided binary kernel (if you have not already done so): 231 | ```console 232 | b3 linux # emerge --unmerge gentoo-b3-kernel-bin 233 | ``` 234 | Next, whether running Gentoo from your B3's internal hard drive or live-USB, issue: 235 | ```console 236 | b3 linux # buildkernel-b3 --menuconfig --zimage 237 | ``` 238 | The `buildkernel-b3` script (supplied) will build the kernel, modules and device tree blob, and copy them to the appropriate directories for you (see its manpage [here](https://github.com/sakaki-/gentoo-on-b3/raw/master/reference/buildkernel-b3.pdf)). It will, by default, use your running kernel's config as a basis, and (if you specify `--menuconfig` when invoking it, as above), offer you the chance to modify the kernel configuration using the standard editor. Once completed, when you restart, you'll be using your new kernel! 239 | 240 | > **NB: if the kernel build *fails* for some reason, be sure to re-install your original binary kernel, before proceeding.** To do so, issue `emerge gentoo-b3-kernel-bin`. Do not attempt to reboot until this command has completed. 241 | 242 | > Note - if you are familiar with the standard Linux kernel build workflow, you can use that instead - there's no need to use `buildkernel-b3`. Just make sure to: 1) uninstall `gentoo-b3-kernel-bin` before you begin; 2) place the resulting `zImage` and `kirkwood-b3.dtb` files in the `/boot` directory (at the top level, *not* in `/boot/boot` or `/boot/install` where the insterstitial kernel lives), and 3) install the modules into `/lib/modules`, before rebooting. The `zImage` does *not* need to be patched in any way - the interstitial ("bootloader") kernel will take care of all that for you. Similarly, there's no need to append the DTB to the kernel, or hardcode the command line (you can change these things via the file `/boot/kexec.sh`, after the kernel is built). 243 | 244 | Of course, you can easily adapt the above process, if you wish to use Gentoo's hardened sources etc. 245 | 246 | > Please note that there was a major re-organization of the Marvell architecture in version 3.17 of the kernel, with [mach-kirkwood being removed](https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=ba364fc752daeded072a5ef31e43b84cb1f9e5fd). As a result, the required format of the config file changed signficantly (for the B3), such that a simple `make olddefconfig` on a < 3.17 kernel config will no longer generate a bootable kernel. As such, if building a >= 3.17 kernel, you should use the [v2.1.0 configs](https://github.com/sakaki-/gentoo-on-b3/tree/2.1.0/configs) from this project as a basis (as these have the new schema); however, if building 3.15 <= x < 3.17, use the [v1.1.0 configs](https://github.com/sakaki-/gentoo-on-b3/tree/1.1.0/configs) instead. Versions < 3.15 do not have device-tree support for the B3, and should not be used. 247 | 248 | It is also possible to cross-compile a kernel on your (Gentoo) PC, which is *much* faster than doing it directly on the B3. Please see the instructions at the tail of this document. 249 | 250 | > Alternatively, if you set up `distcc` (also covered in the instructions below), an invocation of `buildkernel-b3` on your B3 will *automatically* offload kernel compilation workload to your PC. However, if you do use `distcc` in this way, be aware that not all kernel files can be successfully built in this manner; a small number (particularly, at the start of the kernel build) may fall back to using local compilation. This is normal, and the vast majority of files *will* distribute OK. 251 | 252 | ## Keeping Your Gentoo System Up-To-Date 253 | 254 | You can update your system at any time (whether you are running Gentoo from USB or the B3's internal drive). As there are quite a few steps involved to do this correctly on Gentoo, I have provided a convenience script, `genup` to do this as part of the image. So, to update your system, simply issue: 255 | ```console 256 | b3 ~ # genup 257 | (this will take some time to complete) 258 | ``` 259 | This is loosely equivalent to `apt-get update && apt-get upgrade` on Debian. See the [manpage](https://github.com/sakaki-/gentoo-on-b3/raw/master/reference/genup.pdf) for full details of the process followed, and the options available for the command. 260 | 261 | As of version 2.1.0, the live-USB will attempt to use (profile 17.0) binary packages from the binhost https://isshoni.org/b3pie where these files are available (and USE-flag compatible), only falling back to local (source-based) compilation where necessary. Because the image (by default) keeps its main Portage tree and installed-package USE flags in lockstep with the binhost (see [earlier](#binhost_unsubscribe)), local compilation should *only* be necessary for packages you explicitly add to the default set (or whose USE flags you explicitly change, for example, by setting `-bindist`). 262 | 263 | > The https://isshoni.org/b3pie binhost is updated automatically on a weekly basis by a B3 running a `cron`-scripted [`genup`](https://github.com/sakaki-/genup) job, as is the autobuilt [gentoo-b3-kernel](https://github.com/sakaki-/gentoo-b3-kernel). Although I make no guarantees about the future availability of either service, I currently use this infrastructure for my own production B3s, so it should be around for a while. Use the supplied binary packages (and kernels) at your own risk. 264 | 265 | > Note that, if you have installed many packages in addition to those shipped with the live-USB, or have [chosen *not* to use the binhost](#binhost_unsubscribe) then, because Gentoo is a source-based distribution, and the B3 is not a particularly fast machine, updating may take a number of hours, if many packages have changed. However, `genup` will automatically take advantage of distributed cross-compiling, using `distcc`, if you have that set up (see the next section for details). 266 | 267 | > Even with the binhost backing, be aware that a full `genup` run will take around an hour to complete on your B3 (due to time taken by `rsync`, `Portage`'s dependency tree processing etc.). 268 | 269 | When the update has completed, if promped to do so by `genup`, then issue: 270 | ```console 271 | b3 ~ # dispatch-conf 272 | ``` 273 | to deal with any config file clashes that may have been introduced by the upgrade process. 274 | 275 | If your kernel has been upgraded during the genup process, reboot your B3 to start using it. 276 | 277 | For more information about Gentoo's package management, see [my notes here](https://wiki.gentoo.org/wiki/Sakaki's_EFI_Install_Guide/Installing_the_Gentoo_Stage_3_Files#Gentoo.2C_Portage.2C_Ebuilds_and_emerge_.28Background_Reading.29). 278 | 279 | > You may also find it useful to keep an eye on the 'Development' forum at [excito.com](http://forum.excito.com/index.php), as I occasionally post information about this live-USB there. 280 | 281 | ### Automated genup 282 | 283 | Because of the binhost backing (assuming you choose to retain it), running `genup` is not a particularly onerous process, a script has been placed in `/etc/cron.weekly/genup` to run this process weekly. If you don't wish to use this facility, simply delete this file. 284 | 285 | ## Have your Gentoo PC Do the Heavy Lifting! 286 | 287 | The B3 does not have a particularly fast processor when compared to a modern PC. While this is fine when running the device in day-to-day mode (as a mailserver, for example), it does pose a bit of an issue with a primarily-source-based distribution like Gentoo, where you must compile any packages not provided by your binhost to install or upgrade them. Everything works, but an install of a new package can often take hours, which soon gets tiresome. 288 | 289 | However, there is a solution to this, and it is not as scary as it sounds - leverage the power of your PC (assuming it too is running Gentoo Linux) as a cross-compilation host! 290 | 291 | For example, you can cross-compile kernels for your B3 on your PC very quickly (around 5-15 minutes from scratch), by using Gentoo's [`crossdev`](http://gentoo-en.vfose.ru/wiki/Crossdev) tool. See my full instructions [here](https://github.com/sakaki-/gentoo-on-b3/wiki/Set-Up-Your-Gentoo-PC-for-Cross-Compilation-with-crossdev) and [here](https://github.com/sakaki-/gentoo-on-b3/wiki/Build-a-B3-Kernel-on-your-crossdev-PC) on this project's [wiki](https://github.com/sakaki-/gentoo-on-b3/wiki). 292 | 293 | Should you setup crossdev on your PC in this manner, you can then take things a step further, by leveraging your PC as a `distcc` server (instructions [here](https://github.com/sakaki-/gentoo-on-b3/wiki/Set-Up-Your-crossdev-PC-for-Distributed-Compilation-with-distcc) on the wiki). Then, with just some simple configuration changes on your B3 (see [these notes](https://github.com/sakaki-/gentoo-on-b3/wiki/Set-Up-Your-B3-as-a-distcc-Client)), you can distribute C/C++ compilation (and header preprocessing) to your remote machine, which makes system updates a *lot* quicker (and the provided tools [`genup`](https://github.com/sakaki-/genup) and [`buildkernel-b3`](https://github.com/sakaki-/buildkernel-b3) will automatically take advantage of this distributed compilation ability, if available). 294 | 295 | ## Feedback Welcome! 296 | 297 | If you have any problems, questions or comments regarding this project, feel free to drop me a line! (sakaki@deciban.com) 298 | -------------------------------------------------------------------------------- /configs/b3_stock_config: -------------------------------------------------------------------------------- 1 | # 2 | # Automatically generated make config: don't edit 3 | # Linux/arm 2.6.39.4 Kernel Configuration 4 | # Tue Apr 3 18:44:04 2012 5 | # 6 | CONFIG_ARM=y 7 | CONFIG_SYS_SUPPORTS_APM_EMULATION=y 8 | CONFIG_HAVE_SCHED_CLOCK=y 9 | CONFIG_GENERIC_GPIO=y 10 | # CONFIG_ARCH_USES_GETTIMEOFFSET is not set 11 | CONFIG_GENERIC_CLOCKEVENTS=y 12 | CONFIG_KTIME_SCALAR=y 13 | CONFIG_HAVE_PROC_CPU=y 14 | CONFIG_STACKTRACE_SUPPORT=y 15 | CONFIG_HAVE_LATENCYTOP_SUPPORT=y 16 | CONFIG_LOCKDEP_SUPPORT=y 17 | CONFIG_TRACE_IRQFLAGS_SUPPORT=y 18 | CONFIG_HARDIRQS_SW_RESEND=y 19 | CONFIG_GENERIC_IRQ_PROBE=y 20 | CONFIG_RWSEM_GENERIC_SPINLOCK=y 21 | CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y 22 | CONFIG_GENERIC_HWEIGHT=y 23 | CONFIG_GENERIC_CALIBRATE_DELAY=y 24 | CONFIG_NEED_DMA_MAP_STATE=y 25 | CONFIG_VECTORS_BASE=0xffff0000 26 | # CONFIG_ARM_PATCH_PHYS_VIRT is not set 27 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" 28 | CONFIG_CONSTRUCTORS=y 29 | CONFIG_HAVE_IRQ_WORK=y 30 | 31 | # 32 | # General setup 33 | # 34 | CONFIG_EXPERIMENTAL=y 35 | CONFIG_BROKEN_ON_SMP=y 36 | CONFIG_INIT_ENV_ARG_LIMIT=32 37 | CONFIG_CROSS_COMPILE="" 38 | CONFIG_LOCALVERSION="" 39 | CONFIG_LOCALVERSION_AUTO=y 40 | CONFIG_HAVE_KERNEL_GZIP=y 41 | CONFIG_HAVE_KERNEL_LZMA=y 42 | CONFIG_HAVE_KERNEL_LZO=y 43 | CONFIG_KERNEL_GZIP=y 44 | # CONFIG_KERNEL_LZMA is not set 45 | # CONFIG_KERNEL_LZO is not set 46 | CONFIG_SWAP=y 47 | CONFIG_SYSVIPC=y 48 | CONFIG_SYSVIPC_SYSCTL=y 49 | CONFIG_POSIX_MQUEUE=y 50 | CONFIG_POSIX_MQUEUE_SYSCTL=y 51 | # CONFIG_BSD_PROCESS_ACCT is not set 52 | # CONFIG_FHANDLE is not set 53 | CONFIG_TASKSTATS=y 54 | CONFIG_TASK_DELAY_ACCT=y 55 | CONFIG_TASK_XACCT=y 56 | CONFIG_TASK_IO_ACCOUNTING=y 57 | # CONFIG_AUDIT is not set 58 | CONFIG_HAVE_GENERIC_HARDIRQS=y 59 | 60 | # 61 | # IRQ subsystem 62 | # 63 | CONFIG_GENERIC_HARDIRQS=y 64 | CONFIG_HAVE_SPARSE_IRQ=y 65 | CONFIG_GENERIC_IRQ_SHOW=y 66 | # CONFIG_SPARSE_IRQ is not set 67 | 68 | # 69 | # RCU Subsystem 70 | # 71 | CONFIG_TINY_RCU=y 72 | # CONFIG_PREEMPT_RCU is not set 73 | # CONFIG_RCU_TRACE is not set 74 | # CONFIG_TREE_RCU_TRACE is not set 75 | CONFIG_IKCONFIG=y 76 | CONFIG_IKCONFIG_PROC=y 77 | CONFIG_LOG_BUF_SHIFT=15 78 | # CONFIG_CGROUPS is not set 79 | # CONFIG_NAMESPACES is not set 80 | # CONFIG_SCHED_AUTOGROUP is not set 81 | # CONFIG_SYSFS_DEPRECATED is not set 82 | # CONFIG_RELAY is not set 83 | CONFIG_BLK_DEV_INITRD=y 84 | CONFIG_INITRAMFS_SOURCE="" 85 | CONFIG_RD_GZIP=y 86 | # CONFIG_RD_BZIP2 is not set 87 | # CONFIG_RD_LZMA is not set 88 | # CONFIG_RD_XZ is not set 89 | # CONFIG_RD_LZO is not set 90 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set 91 | CONFIG_SYSCTL=y 92 | CONFIG_ANON_INODES=y 93 | CONFIG_EXPERT=y 94 | CONFIG_UID16=y 95 | CONFIG_SYSCTL_SYSCALL=y 96 | CONFIG_KALLSYMS=y 97 | # CONFIG_KALLSYMS_EXTRA_PASS is not set 98 | CONFIG_HOTPLUG=y 99 | CONFIG_PRINTK=y 100 | CONFIG_BUG=y 101 | CONFIG_ELF_CORE=y 102 | CONFIG_BASE_FULL=y 103 | CONFIG_FUTEX=y 104 | CONFIG_EPOLL=y 105 | CONFIG_SIGNALFD=y 106 | CONFIG_TIMERFD=y 107 | CONFIG_EVENTFD=y 108 | CONFIG_SHMEM=y 109 | CONFIG_AIO=y 110 | CONFIG_EMBEDDED=y 111 | CONFIG_HAVE_PERF_EVENTS=y 112 | CONFIG_PERF_USE_VMALLOC=y 113 | 114 | # 115 | # Kernel Performance Events And Counters 116 | # 117 | # CONFIG_PERF_EVENTS is not set 118 | # CONFIG_PERF_COUNTERS is not set 119 | CONFIG_VM_EVENT_COUNTERS=y 120 | CONFIG_PCI_QUIRKS=y 121 | CONFIG_SLUB_DEBUG=y 122 | CONFIG_COMPAT_BRK=y 123 | # CONFIG_SLAB is not set 124 | CONFIG_SLUB=y 125 | # CONFIG_SLOB is not set 126 | # CONFIG_PROFILING is not set 127 | CONFIG_HAVE_OPROFILE=y 128 | # CONFIG_KPROBES is not set 129 | CONFIG_HAVE_KPROBES=y 130 | CONFIG_HAVE_KRETPROBES=y 131 | CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y 132 | CONFIG_HAVE_DMA_API_DEBUG=y 133 | 134 | # 135 | # GCOV-based kernel profiling 136 | # 137 | CONFIG_HAVE_GENERIC_DMA_COHERENT=y 138 | CONFIG_SLABINFO=y 139 | CONFIG_RT_MUTEXES=y 140 | CONFIG_BASE_SMALL=0 141 | CONFIG_MODULES=y 142 | # CONFIG_MODULE_FORCE_LOAD is not set 143 | CONFIG_MODULE_UNLOAD=y 144 | # CONFIG_MODULE_FORCE_UNLOAD is not set 145 | # CONFIG_MODVERSIONS is not set 146 | # CONFIG_MODULE_SRCVERSION_ALL is not set 147 | CONFIG_BLOCK=y 148 | CONFIG_LBDAF=y 149 | CONFIG_BLK_DEV_BSG=y 150 | # CONFIG_BLK_DEV_INTEGRITY is not set 151 | 152 | # 153 | # IO Schedulers 154 | # 155 | CONFIG_IOSCHED_NOOP=y 156 | CONFIG_IOSCHED_DEADLINE=m 157 | CONFIG_IOSCHED_CFQ=y 158 | CONFIG_DEFAULT_CFQ=y 159 | # CONFIG_DEFAULT_NOOP is not set 160 | CONFIG_DEFAULT_IOSCHED="cfq" 161 | # CONFIG_INLINE_SPIN_TRYLOCK is not set 162 | # CONFIG_INLINE_SPIN_TRYLOCK_BH is not set 163 | # CONFIG_INLINE_SPIN_LOCK is not set 164 | # CONFIG_INLINE_SPIN_LOCK_BH is not set 165 | # CONFIG_INLINE_SPIN_LOCK_IRQ is not set 166 | # CONFIG_INLINE_SPIN_LOCK_IRQSAVE is not set 167 | CONFIG_INLINE_SPIN_UNLOCK=y 168 | # CONFIG_INLINE_SPIN_UNLOCK_BH is not set 169 | CONFIG_INLINE_SPIN_UNLOCK_IRQ=y 170 | # CONFIG_INLINE_SPIN_UNLOCK_IRQRESTORE is not set 171 | # CONFIG_INLINE_READ_TRYLOCK is not set 172 | # CONFIG_INLINE_READ_LOCK is not set 173 | # CONFIG_INLINE_READ_LOCK_BH is not set 174 | # CONFIG_INLINE_READ_LOCK_IRQ is not set 175 | # CONFIG_INLINE_READ_LOCK_IRQSAVE is not set 176 | CONFIG_INLINE_READ_UNLOCK=y 177 | # CONFIG_INLINE_READ_UNLOCK_BH is not set 178 | CONFIG_INLINE_READ_UNLOCK_IRQ=y 179 | # CONFIG_INLINE_READ_UNLOCK_IRQRESTORE is not set 180 | # CONFIG_INLINE_WRITE_TRYLOCK is not set 181 | # CONFIG_INLINE_WRITE_LOCK is not set 182 | # CONFIG_INLINE_WRITE_LOCK_BH is not set 183 | # CONFIG_INLINE_WRITE_LOCK_IRQ is not set 184 | # CONFIG_INLINE_WRITE_LOCK_IRQSAVE is not set 185 | CONFIG_INLINE_WRITE_UNLOCK=y 186 | # CONFIG_INLINE_WRITE_UNLOCK_BH is not set 187 | CONFIG_INLINE_WRITE_UNLOCK_IRQ=y 188 | # CONFIG_INLINE_WRITE_UNLOCK_IRQRESTORE is not set 189 | # CONFIG_MUTEX_SPIN_ON_OWNER is not set 190 | # CONFIG_FREEZER is not set 191 | 192 | # 193 | # System Type 194 | # 195 | CONFIG_MMU=y 196 | # CONFIG_ARCH_INTEGRATOR is not set 197 | # CONFIG_ARCH_REALVIEW is not set 198 | # CONFIG_ARCH_VERSATILE is not set 199 | # CONFIG_ARCH_VEXPRESS is not set 200 | # CONFIG_ARCH_AT91 is not set 201 | # CONFIG_ARCH_BCMRING is not set 202 | # CONFIG_ARCH_CLPS711X is not set 203 | # CONFIG_ARCH_CNS3XXX is not set 204 | # CONFIG_ARCH_GEMINI is not set 205 | # CONFIG_ARCH_EBSA110 is not set 206 | # CONFIG_ARCH_EP93XX is not set 207 | # CONFIG_ARCH_FOOTBRIDGE is not set 208 | # CONFIG_ARCH_MXC is not set 209 | # CONFIG_ARCH_MXS is not set 210 | # CONFIG_ARCH_STMP3XXX is not set 211 | # CONFIG_ARCH_NETX is not set 212 | # CONFIG_ARCH_H720X is not set 213 | # CONFIG_ARCH_IOP13XX is not set 214 | # CONFIG_ARCH_IOP32X is not set 215 | # CONFIG_ARCH_IOP33X is not set 216 | # CONFIG_ARCH_IXP23XX is not set 217 | # CONFIG_ARCH_IXP2000 is not set 218 | # CONFIG_ARCH_IXP4XX is not set 219 | # CONFIG_ARCH_DOVE is not set 220 | CONFIG_ARCH_KIRKWOOD=y 221 | # CONFIG_ARCH_LOKI is not set 222 | # CONFIG_ARCH_LPC32XX is not set 223 | # CONFIG_ARCH_MV78XX0 is not set 224 | # CONFIG_ARCH_ORION5X is not set 225 | # CONFIG_ARCH_MMP is not set 226 | # CONFIG_ARCH_KS8695 is not set 227 | # CONFIG_ARCH_NS9XXX is not set 228 | # CONFIG_ARCH_W90X900 is not set 229 | # CONFIG_ARCH_NUC93X is not set 230 | # CONFIG_ARCH_TEGRA is not set 231 | # CONFIG_ARCH_PNX4008 is not set 232 | # CONFIG_ARCH_PXA is not set 233 | # CONFIG_ARCH_MSM is not set 234 | # CONFIG_ARCH_SHMOBILE is not set 235 | # CONFIG_ARCH_RPC is not set 236 | # CONFIG_ARCH_SA1100 is not set 237 | # CONFIG_ARCH_S3C2410 is not set 238 | # CONFIG_ARCH_S3C64XX is not set 239 | # CONFIG_ARCH_S5P64X0 is not set 240 | # CONFIG_ARCH_S5P6442 is not set 241 | # CONFIG_ARCH_S5PC100 is not set 242 | # CONFIG_ARCH_S5PV210 is not set 243 | # CONFIG_ARCH_EXYNOS4 is not set 244 | # CONFIG_ARCH_SHARK is not set 245 | # CONFIG_ARCH_TCC_926 is not set 246 | # CONFIG_ARCH_U300 is not set 247 | # CONFIG_ARCH_U8500 is not set 248 | # CONFIG_ARCH_NOMADIK is not set 249 | # CONFIG_ARCH_DAVINCI is not set 250 | # CONFIG_ARCH_OMAP is not set 251 | # CONFIG_PLAT_SPEAR is not set 252 | # CONFIG_ARCH_VT8500 is not set 253 | # CONFIG_GPIO_PCA953X is not set 254 | # CONFIG_KEYBOARD_GPIO_POLLED is not set 255 | 256 | # 257 | # Marvell Kirkwood Implementations 258 | # 259 | # CONFIG_MACH_DB88F6281_BP is not set 260 | # CONFIG_MACH_RD88F6192_NAS is not set 261 | # CONFIG_MACH_RD88F6281 is not set 262 | # CONFIG_MACH_MV88F6281GTW_GE is not set 263 | # CONFIG_MACH_SHEEVAPLUG is not set 264 | # CONFIG_MACH_ESATA_SHEEVAPLUG is not set 265 | # CONFIG_MACH_GURUPLUG is not set 266 | # CONFIG_MACH_TS219 is not set 267 | # CONFIG_MACH_TS41X is not set 268 | # CONFIG_MACH_DOCKSTAR is not set 269 | # CONFIG_MACH_OPENRD_BASE is not set 270 | # CONFIG_MACH_OPENRD_CLIENT is not set 271 | # CONFIG_MACH_OPENRD_ULTIMATE is not set 272 | CONFIG_MACH_BUBBA3=y 273 | # CONFIG_BUBBA3_INSTALL is not set 274 | # CONFIG_MACH_NETSPACE_V2 is not set 275 | # CONFIG_MACH_INETSPACE_V2 is not set 276 | # CONFIG_MACH_NETSPACE_MAX_V2 is not set 277 | # CONFIG_MACH_D2NET_V2 is not set 278 | # CONFIG_MACH_NET2BIG_V2 is not set 279 | # CONFIG_MACH_NET5BIG_V2 is not set 280 | # CONFIG_MACH_T5325 is not set 281 | 282 | # 283 | # System MMU 284 | # 285 | CONFIG_PLAT_ORION=y 286 | 287 | # 288 | # Processor Type 289 | # 290 | CONFIG_CPU_FEROCEON=y 291 | # CONFIG_CPU_FEROCEON_OLD_ID is not set 292 | CONFIG_CPU_32v5=y 293 | CONFIG_CPU_ABRT_EV5T=y 294 | CONFIG_CPU_PABRT_LEGACY=y 295 | CONFIG_CPU_CACHE_VIVT=y 296 | CONFIG_CPU_COPY_FEROCEON=y 297 | CONFIG_CPU_TLB_FEROCEON=y 298 | CONFIG_CPU_CP15=y 299 | CONFIG_CPU_CP15_MMU=y 300 | CONFIG_CPU_USE_DOMAINS=y 301 | 302 | # 303 | # Processor Features 304 | # 305 | CONFIG_ARM_THUMB=y 306 | # CONFIG_CPU_ICACHE_DISABLE is not set 307 | # CONFIG_CPU_DCACHE_DISABLE is not set 308 | CONFIG_OUTER_CACHE=y 309 | CONFIG_CACHE_FEROCEON_L2=y 310 | # CONFIG_CACHE_FEROCEON_L2_WRITETHROUGH is not set 311 | CONFIG_ARM_L1_CACHE_SHIFT=5 312 | 313 | # 314 | # Bus support 315 | # 316 | CONFIG_PCI=y 317 | CONFIG_PCI_SYSCALL=y 318 | # CONFIG_ARCH_SUPPORTS_MSI is not set 319 | # CONFIG_PCI_STUB is not set 320 | # CONFIG_PCI_IOV is not set 321 | # CONFIG_PCCARD is not set 322 | 323 | # 324 | # Kernel Features 325 | # 326 | CONFIG_TICK_ONESHOT=y 327 | CONFIG_NO_HZ=y 328 | CONFIG_HIGH_RES_TIMERS=y 329 | CONFIG_GENERIC_CLOCKEVENTS_BUILD=y 330 | CONFIG_VMSPLIT_3G=y 331 | # CONFIG_VMSPLIT_2G is not set 332 | # CONFIG_VMSPLIT_1G is not set 333 | CONFIG_PAGE_OFFSET=0xC0000000 334 | CONFIG_PREEMPT_NONE=y 335 | # CONFIG_PREEMPT_VOLUNTARY is not set 336 | # CONFIG_PREEMPT is not set 337 | CONFIG_HZ=100 338 | CONFIG_AEABI=y 339 | # CONFIG_OABI_COMPAT is not set 340 | # CONFIG_ARCH_SPARSEMEM_DEFAULT is not set 341 | # CONFIG_ARCH_SELECT_MEMORY_MODEL is not set 342 | # CONFIG_HIGHMEM is not set 343 | CONFIG_SELECT_MEMORY_MODEL=y 344 | CONFIG_FLATMEM_MANUAL=y 345 | CONFIG_FLATMEM=y 346 | CONFIG_FLAT_NODE_MEM_MAP=y 347 | CONFIG_HAVE_MEMBLOCK=y 348 | CONFIG_PAGEFLAGS_EXTENDED=y 349 | CONFIG_SPLIT_PTLOCK_CPUS=999999 350 | # CONFIG_COMPACTION is not set 351 | # CONFIG_PHYS_ADDR_T_64BIT is not set 352 | CONFIG_ZONE_DMA_FLAG=0 353 | CONFIG_VIRT_TO_BUS=y 354 | # CONFIG_KSM is not set 355 | CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 356 | CONFIG_NEED_PER_CPU_KM=y 357 | CONFIG_FORCE_MAX_ZONEORDER=11 358 | CONFIG_ALIGNMENT_TRAP=y 359 | # CONFIG_UACCESS_WITH_MEMCPY is not set 360 | # CONFIG_SECCOMP is not set 361 | # CONFIG_CC_STACKPROTECTOR is not set 362 | # CONFIG_DEPRECATED_PARAM_STRUCT is not set 363 | 364 | # 365 | # Boot options 366 | # 367 | CONFIG_ZBOOT_ROM_TEXT=0x0 368 | CONFIG_ZBOOT_ROM_BSS=0x0 369 | CONFIG_CMDLINE="" 370 | # CONFIG_XIP_KERNEL is not set 371 | # CONFIG_KEXEC is not set 372 | # CONFIG_CRASH_DUMP is not set 373 | # CONFIG_AUTO_ZRELADDR is not set 374 | 375 | # 376 | # CPU Power Management 377 | # 378 | CONFIG_CPU_IDLE=y 379 | CONFIG_CPU_IDLE_GOV_LADDER=y 380 | CONFIG_CPU_IDLE_GOV_MENU=y 381 | 382 | # 383 | # Floating point emulation 384 | # 385 | 386 | # 387 | # At least one emulation must be selected 388 | # 389 | # CONFIG_VFP is not set 390 | 391 | # 392 | # Userspace binary formats 393 | # 394 | CONFIG_BINFMT_ELF=y 395 | # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set 396 | CONFIG_HAVE_AOUT=y 397 | # CONFIG_BINFMT_AOUT is not set 398 | # CONFIG_BINFMT_MISC is not set 399 | 400 | # 401 | # Power management options 402 | # 403 | CONFIG_PM_RUNTIME=y 404 | CONFIG_PM=y 405 | # CONFIG_PM_DEBUG is not set 406 | # CONFIG_APM_EMULATION is not set 407 | CONFIG_NET=y 408 | 409 | # 410 | # Networking options 411 | # 412 | CONFIG_PACKET=y 413 | CONFIG_UNIX=y 414 | CONFIG_XFRM=y 415 | CONFIG_XFRM_USER=y 416 | # CONFIG_XFRM_SUB_POLICY is not set 417 | # CONFIG_XFRM_MIGRATE is not set 418 | # CONFIG_XFRM_STATISTICS is not set 419 | CONFIG_XFRM_IPCOMP=m 420 | CONFIG_NET_KEY=y 421 | # CONFIG_NET_KEY_MIGRATE is not set 422 | CONFIG_INET=y 423 | CONFIG_IP_MULTICAST=y 424 | # CONFIG_IP_ADVANCED_ROUTER is not set 425 | CONFIG_IP_ROUTE_CLASSID=y 426 | CONFIG_IP_PNP=y 427 | CONFIG_IP_PNP_DHCP=y 428 | CONFIG_IP_PNP_BOOTP=y 429 | # CONFIG_IP_PNP_RARP is not set 430 | CONFIG_NET_IPIP=m 431 | # CONFIG_NET_IPGRE_DEMUX is not set 432 | CONFIG_IP_MROUTE=y 433 | CONFIG_IP_PIMSM_V1=y 434 | # CONFIG_IP_PIMSM_V2 is not set 435 | # CONFIG_ARPD is not set 436 | CONFIG_SYN_COOKIES=y 437 | CONFIG_INET_AH=m 438 | CONFIG_INET_ESP=m 439 | CONFIG_INET_IPCOMP=m 440 | CONFIG_INET_XFRM_TUNNEL=m 441 | CONFIG_INET_TUNNEL=m 442 | CONFIG_INET_XFRM_MODE_TRANSPORT=m 443 | CONFIG_INET_XFRM_MODE_TUNNEL=m 444 | CONFIG_INET_XFRM_MODE_BEET=m 445 | CONFIG_INET_LRO=y 446 | CONFIG_INET_DIAG=y 447 | CONFIG_INET_TCP_DIAG=y 448 | # CONFIG_TCP_CONG_ADVANCED is not set 449 | CONFIG_TCP_CONG_CUBIC=y 450 | CONFIG_DEFAULT_TCP_CONG="cubic" 451 | # CONFIG_TCP_MD5SIG is not set 452 | CONFIG_IPV6=m 453 | CONFIG_IPV6_PRIVACY=y 454 | CONFIG_IPV6_ROUTER_PREF=y 455 | # CONFIG_IPV6_ROUTE_INFO is not set 456 | # CONFIG_IPV6_OPTIMISTIC_DAD is not set 457 | CONFIG_INET6_AH=m 458 | CONFIG_INET6_ESP=m 459 | CONFIG_INET6_IPCOMP=m 460 | CONFIG_IPV6_MIP6=m 461 | CONFIG_INET6_XFRM_TUNNEL=m 462 | CONFIG_INET6_TUNNEL=m 463 | CONFIG_INET6_XFRM_MODE_TRANSPORT=m 464 | CONFIG_INET6_XFRM_MODE_TUNNEL=m 465 | CONFIG_INET6_XFRM_MODE_BEET=m 466 | CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION=m 467 | CONFIG_IPV6_SIT=m 468 | # CONFIG_IPV6_SIT_6RD is not set 469 | CONFIG_IPV6_NDISC_NODETYPE=y 470 | # CONFIG_IPV6_TUNNEL is not set 471 | # CONFIG_IPV6_MULTIPLE_TABLES is not set 472 | # CONFIG_IPV6_MROUTE is not set 473 | # CONFIG_NETWORK_SECMARK is not set 474 | # CONFIG_NETWORK_PHY_TIMESTAMPING is not set 475 | CONFIG_NETFILTER=y 476 | # CONFIG_NETFILTER_DEBUG is not set 477 | CONFIG_NETFILTER_ADVANCED=y 478 | CONFIG_BRIDGE_NETFILTER=y 479 | 480 | # 481 | # Core Netfilter Configuration 482 | # 483 | CONFIG_NETFILTER_NETLINK=m 484 | CONFIG_NETFILTER_NETLINK_QUEUE=m 485 | CONFIG_NETFILTER_NETLINK_LOG=m 486 | CONFIG_NF_CONNTRACK=m 487 | CONFIG_NF_CONNTRACK_MARK=y 488 | CONFIG_NF_CONNTRACK_EVENTS=y 489 | # CONFIG_NF_CONNTRACK_TIMESTAMP is not set 490 | CONFIG_NF_CT_PROTO_DCCP=m 491 | CONFIG_NF_CT_PROTO_GRE=m 492 | CONFIG_NF_CT_PROTO_SCTP=m 493 | CONFIG_NF_CT_PROTO_UDPLITE=m 494 | CONFIG_NF_CONNTRACK_AMANDA=m 495 | CONFIG_NF_CONNTRACK_FTP=m 496 | CONFIG_NF_CONNTRACK_H323=m 497 | CONFIG_NF_CONNTRACK_IRC=m 498 | CONFIG_NF_CONNTRACK_BROADCAST=m 499 | CONFIG_NF_CONNTRACK_NETBIOS_NS=m 500 | # CONFIG_NF_CONNTRACK_SNMP is not set 501 | CONFIG_NF_CONNTRACK_PPTP=m 502 | CONFIG_NF_CONNTRACK_SANE=m 503 | CONFIG_NF_CONNTRACK_SIP=m 504 | CONFIG_NF_CONNTRACK_TFTP=m 505 | CONFIG_NF_CT_NETLINK=m 506 | # CONFIG_NETFILTER_TPROXY is not set 507 | CONFIG_NETFILTER_XTABLES=m 508 | 509 | # 510 | # Xtables combined modules 511 | # 512 | CONFIG_NETFILTER_XT_MARK=m 513 | CONFIG_NETFILTER_XT_CONNMARK=m 514 | 515 | # 516 | # Xtables targets 517 | # 518 | # CONFIG_NETFILTER_XT_TARGET_CHECKSUM is not set 519 | CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m 520 | CONFIG_NETFILTER_XT_TARGET_CONNMARK=m 521 | # CONFIG_NETFILTER_XT_TARGET_CT is not set 522 | # CONFIG_NETFILTER_XT_TARGET_DSCP is not set 523 | CONFIG_NETFILTER_XT_TARGET_HL=m 524 | # CONFIG_NETFILTER_XT_TARGET_IDLETIMER is not set 525 | # CONFIG_NETFILTER_XT_TARGET_LED is not set 526 | CONFIG_NETFILTER_XT_TARGET_MARK=m 527 | CONFIG_NETFILTER_XT_TARGET_NFLOG=m 528 | CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m 529 | # CONFIG_NETFILTER_XT_TARGET_NOTRACK is not set 530 | CONFIG_NETFILTER_XT_TARGET_RATEEST=m 531 | # CONFIG_NETFILTER_XT_TARGET_TEE is not set 532 | # CONFIG_NETFILTER_XT_TARGET_TRACE is not set 533 | CONFIG_NETFILTER_XT_TARGET_TCPMSS=m 534 | # CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP is not set 535 | 536 | # 537 | # Xtables matches 538 | # 539 | # CONFIG_NETFILTER_XT_MATCH_ADDRTYPE is not set 540 | # CONFIG_NETFILTER_XT_MATCH_CLUSTER is not set 541 | CONFIG_NETFILTER_XT_MATCH_COMMENT=m 542 | CONFIG_NETFILTER_XT_MATCH_CONNBYTES=m 543 | CONFIG_NETFILTER_XT_MATCH_CONNLIMIT=m 544 | CONFIG_NETFILTER_XT_MATCH_CONNMARK=m 545 | CONFIG_NETFILTER_XT_MATCH_CONNTRACK=m 546 | # CONFIG_NETFILTER_XT_MATCH_CPU is not set 547 | CONFIG_NETFILTER_XT_MATCH_DCCP=m 548 | # CONFIG_NETFILTER_XT_MATCH_DEVGROUP is not set 549 | CONFIG_NETFILTER_XT_MATCH_DSCP=m 550 | CONFIG_NETFILTER_XT_MATCH_ESP=m 551 | CONFIG_NETFILTER_XT_MATCH_HASHLIMIT=m 552 | CONFIG_NETFILTER_XT_MATCH_HELPER=m 553 | CONFIG_NETFILTER_XT_MATCH_HL=m 554 | CONFIG_NETFILTER_XT_MATCH_IPRANGE=m 555 | CONFIG_NETFILTER_XT_MATCH_LENGTH=m 556 | CONFIG_NETFILTER_XT_MATCH_LIMIT=m 557 | CONFIG_NETFILTER_XT_MATCH_MAC=m 558 | CONFIG_NETFILTER_XT_MATCH_MARK=m 559 | CONFIG_NETFILTER_XT_MATCH_MULTIPORT=m 560 | CONFIG_NETFILTER_XT_MATCH_OSF=m 561 | CONFIG_NETFILTER_XT_MATCH_OWNER=m 562 | CONFIG_NETFILTER_XT_MATCH_POLICY=m 563 | # CONFIG_NETFILTER_XT_MATCH_PHYSDEV is not set 564 | CONFIG_NETFILTER_XT_MATCH_PKTTYPE=m 565 | CONFIG_NETFILTER_XT_MATCH_QUOTA=m 566 | CONFIG_NETFILTER_XT_MATCH_RATEEST=m 567 | CONFIG_NETFILTER_XT_MATCH_REALM=m 568 | CONFIG_NETFILTER_XT_MATCH_RECENT=m 569 | CONFIG_NETFILTER_XT_MATCH_SCTP=m 570 | CONFIG_NETFILTER_XT_MATCH_STATE=m 571 | CONFIG_NETFILTER_XT_MATCH_STATISTIC=m 572 | CONFIG_NETFILTER_XT_MATCH_STRING=m 573 | CONFIG_NETFILTER_XT_MATCH_TCPMSS=m 574 | CONFIG_NETFILTER_XT_MATCH_TIME=m 575 | CONFIG_NETFILTER_XT_MATCH_U32=m 576 | # CONFIG_IP_SET is not set 577 | # CONFIG_IP_VS is not set 578 | 579 | # 580 | # IP: Netfilter Configuration 581 | # 582 | CONFIG_NF_DEFRAG_IPV4=m 583 | CONFIG_NF_CONNTRACK_IPV4=m 584 | CONFIG_NF_CONNTRACK_PROC_COMPAT=y 585 | # CONFIG_IP_NF_QUEUE is not set 586 | CONFIG_IP_NF_IPTABLES=m 587 | CONFIG_IP_NF_MATCH_AH=m 588 | CONFIG_IP_NF_MATCH_ECN=m 589 | CONFIG_IP_NF_MATCH_TTL=m 590 | CONFIG_IP_NF_FILTER=m 591 | CONFIG_IP_NF_TARGET_REJECT=m 592 | CONFIG_IP_NF_TARGET_LOG=m 593 | CONFIG_IP_NF_TARGET_ULOG=m 594 | CONFIG_NF_NAT=m 595 | CONFIG_NF_NAT_NEEDED=y 596 | CONFIG_IP_NF_TARGET_MASQUERADE=m 597 | CONFIG_IP_NF_TARGET_NETMAP=m 598 | CONFIG_IP_NF_TARGET_REDIRECT=m 599 | CONFIG_NF_NAT_PROTO_DCCP=m 600 | CONFIG_NF_NAT_PROTO_GRE=m 601 | CONFIG_NF_NAT_PROTO_UDPLITE=m 602 | CONFIG_NF_NAT_PROTO_SCTP=m 603 | CONFIG_NF_NAT_FTP=m 604 | CONFIG_NF_NAT_IRC=m 605 | CONFIG_NF_NAT_TFTP=m 606 | CONFIG_NF_NAT_AMANDA=m 607 | CONFIG_NF_NAT_PPTP=m 608 | CONFIG_NF_NAT_H323=m 609 | CONFIG_NF_NAT_SIP=m 610 | CONFIG_IP_NF_MANGLE=m 611 | CONFIG_IP_NF_TARGET_CLUSTERIP=m 612 | CONFIG_IP_NF_TARGET_ECN=m 613 | CONFIG_IP_NF_TARGET_TTL=m 614 | CONFIG_IP_NF_RAW=m 615 | CONFIG_IP_NF_ARPTABLES=m 616 | CONFIG_IP_NF_ARPFILTER=m 617 | CONFIG_IP_NF_ARP_MANGLE=m 618 | 619 | # 620 | # IPv6: Netfilter Configuration 621 | # 622 | CONFIG_NF_DEFRAG_IPV6=m 623 | CONFIG_NF_CONNTRACK_IPV6=m 624 | # CONFIG_IP6_NF_QUEUE is not set 625 | CONFIG_IP6_NF_IPTABLES=m 626 | CONFIG_IP6_NF_MATCH_AH=m 627 | CONFIG_IP6_NF_MATCH_EUI64=m 628 | CONFIG_IP6_NF_MATCH_FRAG=m 629 | CONFIG_IP6_NF_MATCH_OPTS=m 630 | CONFIG_IP6_NF_MATCH_HL=m 631 | CONFIG_IP6_NF_MATCH_IPV6HEADER=m 632 | CONFIG_IP6_NF_MATCH_MH=m 633 | CONFIG_IP6_NF_MATCH_RT=m 634 | CONFIG_IP6_NF_TARGET_HL=m 635 | CONFIG_IP6_NF_TARGET_LOG=m 636 | CONFIG_IP6_NF_FILTER=m 637 | CONFIG_IP6_NF_TARGET_REJECT=m 638 | CONFIG_IP6_NF_MANGLE=m 639 | CONFIG_IP6_NF_RAW=m 640 | CONFIG_BRIDGE_NF_EBTABLES=m 641 | CONFIG_BRIDGE_EBT_BROUTE=m 642 | CONFIG_BRIDGE_EBT_T_FILTER=m 643 | CONFIG_BRIDGE_EBT_T_NAT=m 644 | CONFIG_BRIDGE_EBT_802_3=m 645 | CONFIG_BRIDGE_EBT_AMONG=m 646 | CONFIG_BRIDGE_EBT_ARP=m 647 | CONFIG_BRIDGE_EBT_IP=m 648 | CONFIG_BRIDGE_EBT_IP6=m 649 | CONFIG_BRIDGE_EBT_LIMIT=m 650 | CONFIG_BRIDGE_EBT_MARK=m 651 | CONFIG_BRIDGE_EBT_PKTTYPE=m 652 | CONFIG_BRIDGE_EBT_STP=m 653 | CONFIG_BRIDGE_EBT_VLAN=m 654 | CONFIG_BRIDGE_EBT_ARPREPLY=m 655 | CONFIG_BRIDGE_EBT_DNAT=m 656 | CONFIG_BRIDGE_EBT_MARK_T=m 657 | CONFIG_BRIDGE_EBT_REDIRECT=m 658 | CONFIG_BRIDGE_EBT_SNAT=m 659 | CONFIG_BRIDGE_EBT_LOG=m 660 | # CONFIG_BRIDGE_EBT_ULOG is not set 661 | CONFIG_BRIDGE_EBT_NFLOG=m 662 | # CONFIG_IP_DCCP is not set 663 | # CONFIG_IP_SCTP is not set 664 | # CONFIG_RDS is not set 665 | # CONFIG_TIPC is not set 666 | CONFIG_ATM=m 667 | CONFIG_ATM_CLIP=m 668 | # CONFIG_ATM_CLIP_NO_ICMP is not set 669 | # CONFIG_ATM_LANE is not set 670 | CONFIG_ATM_BR2684=m 671 | # CONFIG_ATM_BR2684_IPFILTER is not set 672 | # CONFIG_L2TP is not set 673 | CONFIG_STP=m 674 | CONFIG_BRIDGE=m 675 | CONFIG_BRIDGE_IGMP_SNOOPING=y 676 | # CONFIG_NET_DSA is not set 677 | CONFIG_VLAN_8021Q=m 678 | # CONFIG_VLAN_8021Q_GVRP is not set 679 | # CONFIG_DECNET is not set 680 | CONFIG_LLC=m 681 | # CONFIG_LLC2 is not set 682 | # CONFIG_IPX is not set 683 | # CONFIG_ATALK is not set 684 | # CONFIG_X25 is not set 685 | # CONFIG_LAPB is not set 686 | # CONFIG_ECONET is not set 687 | # CONFIG_WAN_ROUTER is not set 688 | # CONFIG_PHONET is not set 689 | # CONFIG_IEEE802154 is not set 690 | CONFIG_NET_SCHED=y 691 | 692 | # 693 | # Queueing/Scheduling 694 | # 695 | CONFIG_NET_SCH_CBQ=m 696 | CONFIG_NET_SCH_HTB=m 697 | CONFIG_NET_SCH_HFSC=m 698 | CONFIG_NET_SCH_ATM=m 699 | CONFIG_NET_SCH_PRIO=m 700 | CONFIG_NET_SCH_MULTIQ=m 701 | CONFIG_NET_SCH_RED=m 702 | # CONFIG_NET_SCH_SFB is not set 703 | CONFIG_NET_SCH_SFQ=m 704 | CONFIG_NET_SCH_TEQL=m 705 | CONFIG_NET_SCH_TBF=m 706 | CONFIG_NET_SCH_GRED=m 707 | CONFIG_NET_SCH_DSMARK=m 708 | CONFIG_NET_SCH_NETEM=m 709 | CONFIG_NET_SCH_DRR=m 710 | # CONFIG_NET_SCH_MQPRIO is not set 711 | # CONFIG_NET_SCH_CHOKE is not set 712 | 713 | # 714 | # Classification 715 | # 716 | CONFIG_NET_CLS=y 717 | CONFIG_NET_CLS_BASIC=m 718 | CONFIG_NET_CLS_TCINDEX=m 719 | CONFIG_NET_CLS_ROUTE4=m 720 | CONFIG_NET_CLS_FW=m 721 | # CONFIG_NET_CLS_U32 is not set 722 | CONFIG_NET_CLS_RSVP=m 723 | CONFIG_NET_CLS_RSVP6=m 724 | CONFIG_NET_CLS_FLOW=m 725 | # CONFIG_NET_EMATCH is not set 726 | # CONFIG_NET_CLS_ACT is not set 727 | # CONFIG_NET_CLS_IND is not set 728 | CONFIG_NET_SCH_FIFO=y 729 | # CONFIG_DCB is not set 730 | CONFIG_DNS_RESOLVER=y 731 | # CONFIG_BATMAN_ADV is not set 732 | 733 | # 734 | # Network testing 735 | # 736 | # CONFIG_NET_PKTGEN is not set 737 | # CONFIG_HAMRADIO is not set 738 | # CONFIG_CAN is not set 739 | # CONFIG_IRDA is not set 740 | CONFIG_BT=m 741 | # CONFIG_BT_L2CAP is not set 742 | # CONFIG_BT_SCO is not set 743 | 744 | # 745 | # Bluetooth device drivers 746 | # 747 | CONFIG_BT_HCIBTUSB=m 748 | CONFIG_BT_HCIUART=m 749 | CONFIG_BT_HCIUART_H4=y 750 | CONFIG_BT_HCIUART_BCSP=y 751 | # CONFIG_BT_HCIUART_ATH3K is not set 752 | CONFIG_BT_HCIUART_LL=y 753 | CONFIG_BT_HCIBCM203X=m 754 | CONFIG_BT_HCIBPA10X=m 755 | CONFIG_BT_HCIBFUSB=m 756 | CONFIG_BT_HCIVHCI=m 757 | # CONFIG_BT_MRVL is not set 758 | # CONFIG_BT_ATH3K is not set 759 | # CONFIG_AF_RXRPC is not set 760 | CONFIG_WIRELESS=y 761 | CONFIG_WIRELESS_EXT=y 762 | CONFIG_WEXT_CORE=y 763 | CONFIG_WEXT_PROC=y 764 | CONFIG_WEXT_SPY=y 765 | CONFIG_WEXT_PRIV=y 766 | CONFIG_CFG80211=m 767 | # CONFIG_NL80211_TESTMODE is not set 768 | # CONFIG_CFG80211_DEVELOPER_WARNINGS is not set 769 | # CONFIG_CFG80211_REG_DEBUG is not set 770 | CONFIG_CFG80211_DEFAULT_PS=y 771 | # CONFIG_CFG80211_INTERNAL_REGDB is not set 772 | CONFIG_CFG80211_WEXT=y 773 | CONFIG_WIRELESS_EXT_SYSFS=y 774 | CONFIG_LIB80211=m 775 | CONFIG_LIB80211_CRYPT_WEP=m 776 | CONFIG_LIB80211_CRYPT_CCMP=m 777 | CONFIG_LIB80211_CRYPT_TKIP=m 778 | # CONFIG_LIB80211_DEBUG is not set 779 | CONFIG_MAC80211=m 780 | CONFIG_MAC80211_HAS_RC=y 781 | # CONFIG_MAC80211_RC_PID is not set 782 | CONFIG_MAC80211_RC_MINSTREL=y 783 | CONFIG_MAC80211_RC_MINSTREL_HT=y 784 | CONFIG_MAC80211_RC_DEFAULT_MINSTREL=y 785 | CONFIG_MAC80211_RC_DEFAULT="minstrel_ht" 786 | # CONFIG_MAC80211_MESH is not set 787 | CONFIG_MAC80211_LEDS=y 788 | # CONFIG_MAC80211_DEBUG_MENU is not set 789 | # CONFIG_WIMAX is not set 790 | # CONFIG_RFKILL is not set 791 | # CONFIG_NET_9P is not set 792 | # CONFIG_CAIF is not set 793 | # CONFIG_CEPH_LIB is not set 794 | 795 | # 796 | # Device Drivers 797 | # 798 | 799 | # 800 | # Generic Driver Options 801 | # 802 | CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug" 803 | CONFIG_DEVTMPFS=y 804 | # CONFIG_DEVTMPFS_MOUNT is not set 805 | CONFIG_STANDALONE=y 806 | CONFIG_PREVENT_FIRMWARE_BUILD=y 807 | CONFIG_FW_LOADER=y 808 | CONFIG_FIRMWARE_IN_KERNEL=y 809 | CONFIG_EXTRA_FIRMWARE="" 810 | # CONFIG_SYS_HYPERVISOR is not set 811 | CONFIG_CONNECTOR=m 812 | CONFIG_MTD=y 813 | # CONFIG_MTD_DEBUG is not set 814 | # CONFIG_MTD_TESTS is not set 815 | CONFIG_MTD_PARTITIONS=y 816 | # CONFIG_MTD_REDBOOT_PARTS is not set 817 | CONFIG_MTD_CMDLINE_PARTS=y 818 | # CONFIG_MTD_AFS_PARTS is not set 819 | # CONFIG_MTD_AR7_PARTS is not set 820 | 821 | # 822 | # User Modules And Translation Layers 823 | # 824 | CONFIG_MTD_CHAR=y 825 | CONFIG_MTD_BLKDEVS=y 826 | CONFIG_MTD_BLOCK=y 827 | # CONFIG_FTL is not set 828 | # CONFIG_NFTL is not set 829 | # CONFIG_INFTL is not set 830 | # CONFIG_RFD_FTL is not set 831 | # CONFIG_SSFDC is not set 832 | # CONFIG_SM_FTL is not set 833 | # CONFIG_MTD_OOPS is not set 834 | # CONFIG_MTD_SWAP is not set 835 | 836 | # 837 | # RAM/ROM/Flash chip drivers 838 | # 839 | CONFIG_MTD_CFI=y 840 | CONFIG_MTD_JEDECPROBE=y 841 | CONFIG_MTD_GEN_PROBE=y 842 | CONFIG_MTD_CFI_ADV_OPTIONS=y 843 | CONFIG_MTD_CFI_NOSWAP=y 844 | # CONFIG_MTD_CFI_BE_BYTE_SWAP is not set 845 | # CONFIG_MTD_CFI_LE_BYTE_SWAP is not set 846 | CONFIG_MTD_CFI_GEOMETRY=y 847 | CONFIG_MTD_MAP_BANK_WIDTH_1=y 848 | CONFIG_MTD_MAP_BANK_WIDTH_2=y 849 | # CONFIG_MTD_MAP_BANK_WIDTH_4 is not set 850 | # CONFIG_MTD_MAP_BANK_WIDTH_8 is not set 851 | # CONFIG_MTD_MAP_BANK_WIDTH_16 is not set 852 | # CONFIG_MTD_MAP_BANK_WIDTH_32 is not set 853 | CONFIG_MTD_CFI_I1=y 854 | # CONFIG_MTD_CFI_I2 is not set 855 | # CONFIG_MTD_CFI_I4 is not set 856 | # CONFIG_MTD_CFI_I8 is not set 857 | # CONFIG_MTD_OTP is not set 858 | # CONFIG_MTD_CFI_INTELEXT is not set 859 | # CONFIG_MTD_CFI_AMDSTD is not set 860 | # CONFIG_MTD_CFI_STAA is not set 861 | CONFIG_MTD_CFI_UTIL=y 862 | # CONFIG_MTD_RAM is not set 863 | # CONFIG_MTD_ROM is not set 864 | # CONFIG_MTD_ABSENT is not set 865 | 866 | # 867 | # Mapping drivers for chip access 868 | # 869 | # CONFIG_MTD_COMPLEX_MAPPINGS is not set 870 | # CONFIG_MTD_PHYSMAP is not set 871 | # CONFIG_MTD_ARM_INTEGRATOR is not set 872 | # CONFIG_MTD_IMPA7 is not set 873 | # CONFIG_MTD_INTEL_VR_NOR is not set 874 | # CONFIG_MTD_PLATRAM is not set 875 | 876 | # 877 | # Self-contained MTD device drivers 878 | # 879 | # CONFIG_MTD_PMC551 is not set 880 | # CONFIG_MTD_DATAFLASH is not set 881 | CONFIG_MTD_M25P80=y 882 | CONFIG_M25PXX_USE_FAST_READ=y 883 | # CONFIG_MTD_SST25L is not set 884 | # CONFIG_MTD_SLRAM is not set 885 | # CONFIG_MTD_PHRAM is not set 886 | # CONFIG_MTD_MTDRAM is not set 887 | # CONFIG_MTD_BLOCK2MTD is not set 888 | 889 | # 890 | # Disk-On-Chip Device Drivers 891 | # 892 | # CONFIG_MTD_DOC2000 is not set 893 | # CONFIG_MTD_DOC2001 is not set 894 | # CONFIG_MTD_DOC2001PLUS is not set 895 | # CONFIG_MTD_NAND is not set 896 | # CONFIG_MTD_ONENAND is not set 897 | 898 | # 899 | # LPDDR flash memory drivers 900 | # 901 | # CONFIG_MTD_LPDDR is not set 902 | # CONFIG_MTD_UBI is not set 903 | # CONFIG_PARPORT is not set 904 | CONFIG_BLK_DEV=y 905 | # CONFIG_BLK_CPQ_DA is not set 906 | # CONFIG_BLK_CPQ_CISS_DA is not set 907 | # CONFIG_BLK_DEV_DAC960 is not set 908 | # CONFIG_BLK_DEV_UMEM is not set 909 | # CONFIG_BLK_DEV_COW_COMMON is not set 910 | CONFIG_BLK_DEV_LOOP=y 911 | CONFIG_BLK_DEV_CRYPTOLOOP=m 912 | # CONFIG_BLK_DEV_DRBD is not set 913 | CONFIG_BLK_DEV_NBD=m 914 | # CONFIG_BLK_DEV_SX8 is not set 915 | # CONFIG_BLK_DEV_UB is not set 916 | CONFIG_BLK_DEV_RAM=y 917 | CONFIG_BLK_DEV_RAM_COUNT=16 918 | CONFIG_BLK_DEV_RAM_SIZE=4096 919 | # CONFIG_BLK_DEV_XIP is not set 920 | CONFIG_CDROM_PKTCDVD=m 921 | CONFIG_CDROM_PKTCDVD_BUFFERS=8 922 | # CONFIG_CDROM_PKTCDVD_WCACHE is not set 923 | CONFIG_ATA_OVER_ETH=m 924 | # CONFIG_MG_DISK is not set 925 | # CONFIG_BLK_DEV_RBD is not set 926 | # CONFIG_SENSORS_LIS3LV02D is not set 927 | CONFIG_MISC_DEVICES=y 928 | # CONFIG_AD525X_DPOT is not set 929 | # CONFIG_PHANTOM is not set 930 | # CONFIG_SGI_IOC4 is not set 931 | # CONFIG_TIFM_CORE is not set 932 | # CONFIG_ICS932S401 is not set 933 | CONFIG_ENCLOSURE_SERVICES=m 934 | # CONFIG_HP_ILO is not set 935 | # CONFIG_APDS9802ALS is not set 936 | # CONFIG_ISL29003 is not set 937 | # CONFIG_ISL29020 is not set 938 | # CONFIG_SENSORS_TSL2550 is not set 939 | # CONFIG_SENSORS_BH1780 is not set 940 | # CONFIG_SENSORS_BH1770 is not set 941 | # CONFIG_SENSORS_APDS990X is not set 942 | # CONFIG_HMC6352 is not set 943 | # CONFIG_DS1682 is not set 944 | # CONFIG_TI_DAC7512 is not set 945 | # CONFIG_BMP085 is not set 946 | # CONFIG_PCH_PHUB is not set 947 | # CONFIG_C2PORT is not set 948 | 949 | # 950 | # EEPROM support 951 | # 952 | # CONFIG_EEPROM_AT24 is not set 953 | # CONFIG_EEPROM_AT25 is not set 954 | # CONFIG_EEPROM_LEGACY is not set 955 | # CONFIG_EEPROM_MAX6875 is not set 956 | CONFIG_EEPROM_93CX6=m 957 | # CONFIG_CB710_CORE is not set 958 | 959 | # 960 | # Texas Instruments shared transport line discipline 961 | # 962 | # CONFIG_SENSORS_LIS3_SPI is not set 963 | # CONFIG_SENSORS_LIS3_I2C is not set 964 | CONFIG_HAVE_IDE=y 965 | # CONFIG_IDE is not set 966 | 967 | # 968 | # SCSI device support 969 | # 970 | CONFIG_SCSI_MOD=y 971 | # CONFIG_RAID_ATTRS is not set 972 | CONFIG_SCSI=y 973 | CONFIG_SCSI_DMA=y 974 | # CONFIG_SCSI_TGT is not set 975 | # CONFIG_SCSI_NETLINK is not set 976 | CONFIG_SCSI_PROC_FS=y 977 | 978 | # 979 | # SCSI support type (disk, tape, CD-ROM) 980 | # 981 | CONFIG_BLK_DEV_SD=y 982 | CONFIG_CHR_DEV_ST=m 983 | # CONFIG_CHR_DEV_OSST is not set 984 | CONFIG_BLK_DEV_SR=y 985 | CONFIG_BLK_DEV_SR_VENDOR=y 986 | CONFIG_CHR_DEV_SG=y 987 | CONFIG_CHR_DEV_SCH=m 988 | CONFIG_SCSI_ENCLOSURE=m 989 | CONFIG_SCSI_MULTI_LUN=y 990 | # CONFIG_SCSI_CONSTANTS is not set 991 | # CONFIG_SCSI_LOGGING is not set 992 | # CONFIG_SCSI_SCAN_ASYNC is not set 993 | CONFIG_SCSI_WAIT_SCAN=m 994 | 995 | # 996 | # SCSI Transports 997 | # 998 | CONFIG_SCSI_SPI_ATTRS=m 999 | # CONFIG_SCSI_FC_ATTRS is not set 1000 | # CONFIG_SCSI_ISCSI_ATTRS is not set 1001 | # CONFIG_SCSI_SAS_ATTRS is not set 1002 | # CONFIG_SCSI_SAS_LIBSAS is not set 1003 | # CONFIG_SCSI_SRP_ATTRS is not set 1004 | # CONFIG_SCSI_LOWLEVEL is not set 1005 | # CONFIG_SCSI_DH is not set 1006 | # CONFIG_SCSI_OSD_INITIATOR is not set 1007 | CONFIG_ATA=y 1008 | # CONFIG_ATA_NONSTANDARD is not set 1009 | CONFIG_ATA_VERBOSE_ERROR=y 1010 | CONFIG_SATA_PMP=y 1011 | 1012 | # 1013 | # Controllers with non-SFF native interface 1014 | # 1015 | # CONFIG_SATA_AHCI is not set 1016 | # CONFIG_SATA_AHCI_PLATFORM is not set 1017 | # CONFIG_SATA_INIC162X is not set 1018 | # CONFIG_SATA_ACARD_AHCI is not set 1019 | # CONFIG_SATA_SIL24 is not set 1020 | CONFIG_ATA_SFF=y 1021 | 1022 | # 1023 | # SFF controllers with custom DMA interface 1024 | # 1025 | # CONFIG_PDC_ADMA is not set 1026 | # CONFIG_SATA_QSTOR is not set 1027 | # CONFIG_SATA_SX4 is not set 1028 | CONFIG_ATA_BMDMA=y 1029 | 1030 | # 1031 | # SATA SFF controllers with BMDMA 1032 | # 1033 | # CONFIG_ATA_PIIX is not set 1034 | CONFIG_SATA_MV=y 1035 | # CONFIG_SATA_NV is not set 1036 | # CONFIG_SATA_PROMISE is not set 1037 | # CONFIG_SATA_SIL is not set 1038 | # CONFIG_SATA_SIS is not set 1039 | # CONFIG_SATA_SVW is not set 1040 | # CONFIG_SATA_ULI is not set 1041 | # CONFIG_SATA_VIA is not set 1042 | # CONFIG_SATA_VITESSE is not set 1043 | 1044 | # 1045 | # PATA SFF controllers with BMDMA 1046 | # 1047 | # CONFIG_PATA_ALI is not set 1048 | # CONFIG_PATA_AMD is not set 1049 | # CONFIG_PATA_ARASAN_CF is not set 1050 | # CONFIG_PATA_ARTOP is not set 1051 | # CONFIG_PATA_ATIIXP is not set 1052 | # CONFIG_PATA_ATP867X is not set 1053 | # CONFIG_PATA_CMD64X is not set 1054 | # CONFIG_PATA_CS5520 is not set 1055 | # CONFIG_PATA_CS5530 is not set 1056 | # CONFIG_PATA_CS5536 is not set 1057 | # CONFIG_PATA_CYPRESS is not set 1058 | # CONFIG_PATA_EFAR is not set 1059 | # CONFIG_PATA_HPT366 is not set 1060 | # CONFIG_PATA_HPT37X is not set 1061 | # CONFIG_PATA_HPT3X2N is not set 1062 | # CONFIG_PATA_HPT3X3 is not set 1063 | # CONFIG_PATA_IT8213 is not set 1064 | # CONFIG_PATA_IT821X is not set 1065 | # CONFIG_PATA_JMICRON is not set 1066 | # CONFIG_PATA_MARVELL is not set 1067 | # CONFIG_PATA_NETCELL is not set 1068 | # CONFIG_PATA_NINJA32 is not set 1069 | # CONFIG_PATA_NS87415 is not set 1070 | # CONFIG_PATA_OLDPIIX is not set 1071 | # CONFIG_PATA_OPTIDMA is not set 1072 | # CONFIG_PATA_PDC2027X is not set 1073 | # CONFIG_PATA_PDC_OLD is not set 1074 | # CONFIG_PATA_RADISYS is not set 1075 | # CONFIG_PATA_RDC is not set 1076 | # CONFIG_PATA_SC1200 is not set 1077 | # CONFIG_PATA_SCH is not set 1078 | # CONFIG_PATA_SERVERWORKS is not set 1079 | # CONFIG_PATA_SIL680 is not set 1080 | # CONFIG_PATA_SIS is not set 1081 | # CONFIG_PATA_TOSHIBA is not set 1082 | # CONFIG_PATA_TRIFLEX is not set 1083 | # CONFIG_PATA_VIA is not set 1084 | # CONFIG_PATA_WINBOND is not set 1085 | 1086 | # 1087 | # PIO-only SFF controllers 1088 | # 1089 | # CONFIG_PATA_CMD640_PCI is not set 1090 | # CONFIG_PATA_MPIIX is not set 1091 | # CONFIG_PATA_NS87410 is not set 1092 | # CONFIG_PATA_OPTI is not set 1093 | # CONFIG_PATA_PLATFORM is not set 1094 | # CONFIG_PATA_RZ1000 is not set 1095 | 1096 | # 1097 | # Generic fallback / legacy drivers 1098 | # 1099 | # CONFIG_ATA_GENERIC is not set 1100 | # CONFIG_PATA_LEGACY is not set 1101 | CONFIG_MD=y 1102 | CONFIG_BLK_DEV_MD=y 1103 | CONFIG_MD_AUTODETECT=y 1104 | CONFIG_MD_LINEAR=m 1105 | CONFIG_MD_RAID0=y 1106 | CONFIG_MD_RAID1=y 1107 | CONFIG_MD_RAID10=m 1108 | CONFIG_MD_RAID456=m 1109 | # CONFIG_MD_MULTIPATH is not set 1110 | # CONFIG_MD_FAULTY is not set 1111 | CONFIG_BLK_DEV_DM=y 1112 | # CONFIG_DM_DEBUG is not set 1113 | CONFIG_DM_CRYPT=m 1114 | CONFIG_DM_SNAPSHOT=m 1115 | CONFIG_DM_MIRROR=m 1116 | # CONFIG_DM_RAID is not set 1117 | # CONFIG_DM_LOG_USERSPACE is not set 1118 | CONFIG_DM_ZERO=m 1119 | CONFIG_DM_MULTIPATH=m 1120 | # CONFIG_DM_MULTIPATH_QL is not set 1121 | # CONFIG_DM_MULTIPATH_ST is not set 1122 | # CONFIG_DM_DELAY is not set 1123 | # CONFIG_DM_UEVENT is not set 1124 | # CONFIG_DM_FLAKEY is not set 1125 | # CONFIG_TARGET_CORE is not set 1126 | # CONFIG_FUSION is not set 1127 | 1128 | # 1129 | # IEEE 1394 (FireWire) support 1130 | # 1131 | # CONFIG_FIREWIRE is not set 1132 | # CONFIG_FIREWIRE_NOSY is not set 1133 | # CONFIG_I2O is not set 1134 | CONFIG_NETDEVICES=y 1135 | # CONFIG_DUMMY is not set 1136 | CONFIG_BONDING=m 1137 | # CONFIG_MACVLAN is not set 1138 | CONFIG_EQUALIZER=m 1139 | CONFIG_TUN=m 1140 | CONFIG_VETH=m 1141 | # CONFIG_ARCNET is not set 1142 | CONFIG_MII=m 1143 | CONFIG_PHYLIB=y 1144 | 1145 | # 1146 | # MII PHY device drivers 1147 | # 1148 | CONFIG_MARVELL_PHY=y 1149 | CONFIG_MARVELL_PHY_REVERSE=y 1150 | # CONFIG_DAVICOM_PHY is not set 1151 | # CONFIG_QSEMI_PHY is not set 1152 | # CONFIG_LXT_PHY is not set 1153 | # CONFIG_CICADA_PHY is not set 1154 | # CONFIG_VITESSE_PHY is not set 1155 | # CONFIG_VITESSE_PHY_8601_SKEW is not set 1156 | # CONFIG_SMSC_PHY is not set 1157 | # CONFIG_BROADCOM_PHY is not set 1158 | # CONFIG_BCM63XX_PHY is not set 1159 | # CONFIG_ICPLUS_PHY is not set 1160 | # CONFIG_REALTEK_PHY is not set 1161 | # CONFIG_NATIONAL_PHY is not set 1162 | # CONFIG_STE10XP is not set 1163 | # CONFIG_LSI_ET1011C_PHY is not set 1164 | # CONFIG_MICREL_PHY is not set 1165 | # CONFIG_FIXED_PHY is not set 1166 | # CONFIG_MDIO_BITBANG is not set 1167 | # CONFIG_NET_ETHERNET is not set 1168 | CONFIG_NETDEV_1000=y 1169 | # CONFIG_ACENIC is not set 1170 | # CONFIG_DL2K is not set 1171 | # CONFIG_E1000 is not set 1172 | # CONFIG_E1000E is not set 1173 | # CONFIG_IP1000 is not set 1174 | # CONFIG_IGB is not set 1175 | # CONFIG_IGBVF is not set 1176 | # CONFIG_NS83820 is not set 1177 | # CONFIG_HAMACHI is not set 1178 | # CONFIG_YELLOWFIN is not set 1179 | # CONFIG_R8169 is not set 1180 | # CONFIG_SIS190 is not set 1181 | # CONFIG_SKGE is not set 1182 | # CONFIG_SKY2 is not set 1183 | # CONFIG_VIA_VELOCITY is not set 1184 | # CONFIG_TIGON3 is not set 1185 | # CONFIG_BNX2 is not set 1186 | # CONFIG_CNIC is not set 1187 | CONFIG_MV643XX_ETH=y 1188 | # CONFIG_QLA3XXX is not set 1189 | # CONFIG_ATL1 is not set 1190 | # CONFIG_ATL1E is not set 1191 | # CONFIG_ATL1C is not set 1192 | # CONFIG_JME is not set 1193 | # CONFIG_STMMAC_ETH is not set 1194 | # CONFIG_PCH_GBE is not set 1195 | # CONFIG_NETDEV_10000 is not set 1196 | # CONFIG_TR is not set 1197 | CONFIG_WLAN=y 1198 | # CONFIG_LIBERTAS_THINFIRM is not set 1199 | # CONFIG_ATMEL is not set 1200 | CONFIG_AT76C50X_USB=m 1201 | # CONFIG_PRISM54 is not set 1202 | CONFIG_USB_ZD1201=m 1203 | CONFIG_USB_NET_RNDIS_WLAN=m 1204 | # CONFIG_RTL8180 is not set 1205 | CONFIG_RTL8187=m 1206 | CONFIG_RTL8187_LEDS=y 1207 | # CONFIG_ADM8211 is not set 1208 | # CONFIG_MAC80211_HWSIM is not set 1209 | # CONFIG_MWL8K is not set 1210 | CONFIG_ATH_COMMON=m 1211 | CONFIG_ATH_USER_REGD=y 1212 | # CONFIG_ATH_DEBUG is not set 1213 | CONFIG_ATH5K=m 1214 | # CONFIG_ATH5K_DEBUG is not set 1215 | CONFIG_ATH5K_PCI=y 1216 | CONFIG_ATH9K_HW=m 1217 | CONFIG_ATH9K_COMMON=m 1218 | CONFIG_ATH9K=m 1219 | CONFIG_ATH9K_RATE_CONTROL=y 1220 | CONFIG_ATH9K_HTC=m 1221 | CONFIG_AR9170_USB=m 1222 | CONFIG_AR9170_LEDS=y 1223 | CONFIG_CARL9170=m 1224 | CONFIG_CARL9170_LEDS=y 1225 | CONFIG_CARL9170_WPC=y 1226 | # CONFIG_B43 is not set 1227 | # CONFIG_B43LEGACY is not set 1228 | # CONFIG_HOSTAP is not set 1229 | CONFIG_IPW2100=m 1230 | # CONFIG_IPW2100_MONITOR is not set 1231 | # CONFIG_IPW2100_DEBUG is not set 1232 | CONFIG_IPW2200=m 1233 | # CONFIG_IPW2200_MONITOR is not set 1234 | # CONFIG_IPW2200_QOS is not set 1235 | # CONFIG_IPW2200_DEBUG is not set 1236 | CONFIG_LIBIPW=m 1237 | # CONFIG_LIBIPW_DEBUG is not set 1238 | CONFIG_IWLAGN=m 1239 | 1240 | # 1241 | # Debugging Options 1242 | # 1243 | # CONFIG_IWLWIFI_DEBUG is not set 1244 | # CONFIG_IWL_P2P is not set 1245 | CONFIG_IWLWIFI_LEGACY=m 1246 | 1247 | # 1248 | # Debugging Options 1249 | # 1250 | # CONFIG_IWLWIFI_LEGACY_DEBUG is not set 1251 | CONFIG_IWL4965=m 1252 | # CONFIG_IWL3945 is not set 1253 | # CONFIG_LIBERTAS is not set 1254 | # CONFIG_HERMES is not set 1255 | # CONFIG_P54_COMMON is not set 1256 | CONFIG_RT2X00=m 1257 | # CONFIG_RT2400PCI is not set 1258 | # CONFIG_RT2500PCI is not set 1259 | # CONFIG_RT61PCI is not set 1260 | CONFIG_RT2800PCI=m 1261 | # CONFIG_RT2800PCI_RT33XX is not set 1262 | CONFIG_RT2800PCI_RT35XX=y 1263 | # CONFIG_RT2800PCI_RT53XX is not set 1264 | CONFIG_RT2500USB=m 1265 | CONFIG_RT73USB=m 1266 | CONFIG_RT2800USB=m 1267 | # CONFIG_RT2800USB_RT33XX is not set 1268 | CONFIG_RT2800USB_RT35XX=y 1269 | CONFIG_RT2800USB_UNKNOWN=y 1270 | CONFIG_RT2800_LIB=m 1271 | CONFIG_RT2X00_LIB_PCI=m 1272 | CONFIG_RT2X00_LIB_USB=m 1273 | CONFIG_RT2X00_LIB=m 1274 | CONFIG_RT2X00_LIB_HT=y 1275 | CONFIG_RT2X00_LIB_FIRMWARE=y 1276 | CONFIG_RT2X00_LIB_CRYPTO=y 1277 | CONFIG_RT2X00_LIB_LEDS=y 1278 | # CONFIG_RT2X00_DEBUG is not set 1279 | # CONFIG_RTL8192CE is not set 1280 | # CONFIG_RTL8192CU is not set 1281 | # CONFIG_WL1251 is not set 1282 | # CONFIG_WL12XX_MENU is not set 1283 | CONFIG_ZD1211RW=m 1284 | # CONFIG_ZD1211RW_DEBUG is not set 1285 | 1286 | # 1287 | # Enable WiMAX (Networking options) to see the WiMAX drivers 1288 | # 1289 | 1290 | # 1291 | # USB Network Adapters 1292 | # 1293 | CONFIG_USB_CATC=m 1294 | CONFIG_USB_KAWETH=m 1295 | CONFIG_USB_PEGASUS=m 1296 | CONFIG_USB_RTL8150=m 1297 | CONFIG_USB_USBNET=m 1298 | CONFIG_USB_NET_AX8817X=m 1299 | CONFIG_USB_NET_CDCETHER=m 1300 | CONFIG_USB_NET_CDC_EEM=m 1301 | CONFIG_USB_NET_CDC_NCM=m 1302 | CONFIG_USB_NET_DM9601=m 1303 | CONFIG_USB_NET_SMSC75XX=m 1304 | CONFIG_USB_NET_SMSC95XX=m 1305 | CONFIG_USB_NET_GL620A=m 1306 | CONFIG_USB_NET_NET1080=m 1307 | CONFIG_USB_NET_PLUSB=m 1308 | CONFIG_USB_NET_MCS7830=m 1309 | CONFIG_USB_NET_RNDIS_HOST=m 1310 | CONFIG_USB_NET_CDC_SUBSET=m 1311 | CONFIG_USB_ALI_M5632=y 1312 | CONFIG_USB_AN2720=y 1313 | CONFIG_USB_BELKIN=y 1314 | CONFIG_USB_ARMLINUX=y 1315 | CONFIG_USB_EPSON2888=y 1316 | CONFIG_USB_KC2190=y 1317 | CONFIG_USB_NET_ZAURUS=m 1318 | CONFIG_USB_NET_CX82310_ETH=m 1319 | CONFIG_USB_NET_INT51X1=m 1320 | CONFIG_USB_IPHETH=m 1321 | CONFIG_USB_SIERRA_NET=m 1322 | # CONFIG_USB_VL600 is not set 1323 | # CONFIG_WAN is not set 1324 | CONFIG_ATM_DRIVERS=y 1325 | # CONFIG_ATM_DUMMY is not set 1326 | # CONFIG_ATM_TCP is not set 1327 | # CONFIG_ATM_LANAI is not set 1328 | # CONFIG_ATM_ENI is not set 1329 | # CONFIG_ATM_FIRESTREAM is not set 1330 | # CONFIG_ATM_ZATM is not set 1331 | # CONFIG_ATM_NICSTAR is not set 1332 | # CONFIG_ATM_IDT77252 is not set 1333 | # CONFIG_ATM_AMBASSADOR is not set 1334 | # CONFIG_ATM_HORIZON is not set 1335 | # CONFIG_ATM_IA is not set 1336 | # CONFIG_ATM_FORE200E is not set 1337 | # CONFIG_ATM_HE is not set 1338 | # CONFIG_ATM_SOLOS is not set 1339 | 1340 | # 1341 | # CAIF transport drivers 1342 | # 1343 | # CONFIG_FDDI is not set 1344 | # CONFIG_HIPPI is not set 1345 | CONFIG_PPP=m 1346 | CONFIG_PPP_MULTILINK=y 1347 | CONFIG_PPP_FILTER=y 1348 | CONFIG_PPP_ASYNC=m 1349 | CONFIG_PPP_SYNC_TTY=m 1350 | CONFIG_PPP_DEFLATE=m 1351 | CONFIG_PPP_BSDCOMP=m 1352 | CONFIG_PPP_MPPE=m 1353 | CONFIG_PPPOE=m 1354 | CONFIG_PPPOATM=m 1355 | # CONFIG_SLIP is not set 1356 | CONFIG_SLHC=m 1357 | # CONFIG_NET_FC is not set 1358 | # CONFIG_NETCONSOLE is not set 1359 | # CONFIG_NETPOLL is not set 1360 | # CONFIG_NET_POLL_CONTROLLER is not set 1361 | # CONFIG_VMXNET3 is not set 1362 | # CONFIG_ISDN is not set 1363 | # CONFIG_PHONE is not set 1364 | 1365 | # 1366 | # Input device support 1367 | # 1368 | CONFIG_INPUT=y 1369 | # CONFIG_INPUT_FF_MEMLESS is not set 1370 | # CONFIG_INPUT_POLLDEV is not set 1371 | # CONFIG_INPUT_SPARSEKMAP is not set 1372 | 1373 | # 1374 | # Userland interfaces 1375 | # 1376 | CONFIG_INPUT_MOUSEDEV=m 1377 | CONFIG_INPUT_MOUSEDEV_PSAUX=y 1378 | CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024 1379 | CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768 1380 | CONFIG_INPUT_JOYDEV=m 1381 | CONFIG_INPUT_EVDEV=m 1382 | CONFIG_INPUT_EVBUG=m 1383 | 1384 | # 1385 | # Input Device Drivers 1386 | # 1387 | CONFIG_INPUT_KEYBOARD=y 1388 | # CONFIG_KEYBOARD_ADP5588 is not set 1389 | # CONFIG_KEYBOARD_ATKBD is not set 1390 | # CONFIG_KEYBOARD_QT1070 is not set 1391 | # CONFIG_KEYBOARD_QT2160 is not set 1392 | # CONFIG_KEYBOARD_LKKBD is not set 1393 | CONFIG_KEYBOARD_GPIO=m 1394 | # CONFIG_KEYBOARD_TCA6416 is not set 1395 | # CONFIG_KEYBOARD_MATRIX is not set 1396 | # CONFIG_KEYBOARD_LM8323 is not set 1397 | # CONFIG_KEYBOARD_MAX7359 is not set 1398 | # CONFIG_KEYBOARD_MCS is not set 1399 | # CONFIG_KEYBOARD_NEWTON is not set 1400 | # CONFIG_KEYBOARD_OPENCORES is not set 1401 | # CONFIG_KEYBOARD_STOWAWAY is not set 1402 | # CONFIG_KEYBOARD_SUNKBD is not set 1403 | # CONFIG_KEYBOARD_XTKBD is not set 1404 | CONFIG_INPUT_MOUSE=y 1405 | # CONFIG_MOUSE_PS2 is not set 1406 | # CONFIG_MOUSE_SERIAL is not set 1407 | # CONFIG_MOUSE_APPLETOUCH is not set 1408 | # CONFIG_MOUSE_BCM5974 is not set 1409 | # CONFIG_MOUSE_VSXXXAA is not set 1410 | # CONFIG_MOUSE_GPIO is not set 1411 | # CONFIG_MOUSE_SYNAPTICS_I2C is not set 1412 | # CONFIG_INPUT_JOYSTICK is not set 1413 | # CONFIG_INPUT_TABLET is not set 1414 | # CONFIG_INPUT_TOUCHSCREEN is not set 1415 | CONFIG_INPUT_MISC=y 1416 | # CONFIG_INPUT_AD714X is not set 1417 | CONFIG_INPUT_ATI_REMOTE=m 1418 | CONFIG_INPUT_ATI_REMOTE2=m 1419 | CONFIG_INPUT_KEYSPAN_REMOTE=m 1420 | CONFIG_INPUT_POWERMATE=m 1421 | CONFIG_INPUT_YEALINK=m 1422 | CONFIG_INPUT_CM109=m 1423 | CONFIG_INPUT_UINPUT=m 1424 | # CONFIG_INPUT_PCF8574 is not set 1425 | # CONFIG_INPUT_GPIO_ROTARY_ENCODER is not set 1426 | # CONFIG_INPUT_ADXL34X is not set 1427 | # CONFIG_INPUT_CMA3000 is not set 1428 | 1429 | # 1430 | # Hardware I/O ports 1431 | # 1432 | # CONFIG_SERIO is not set 1433 | # CONFIG_GAMEPORT is not set 1434 | 1435 | # 1436 | # Character devices 1437 | # 1438 | # CONFIG_VT is not set 1439 | CONFIG_UNIX98_PTYS=y 1440 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set 1441 | CONFIG_LEGACY_PTYS=y 1442 | CONFIG_LEGACY_PTY_COUNT=16 1443 | # CONFIG_SERIAL_NONSTANDARD is not set 1444 | # CONFIG_NOZOMI is not set 1445 | # CONFIG_N_GSM is not set 1446 | # CONFIG_DEVKMEM is not set 1447 | 1448 | # 1449 | # Serial drivers 1450 | # 1451 | CONFIG_SERIAL_8250=y 1452 | CONFIG_SERIAL_8250_CONSOLE=y 1453 | CONFIG_SERIAL_8250_PCI=y 1454 | CONFIG_SERIAL_8250_NR_UARTS=4 1455 | CONFIG_SERIAL_8250_RUNTIME_UARTS=2 1456 | # CONFIG_SERIAL_8250_EXTENDED is not set 1457 | 1458 | # 1459 | # Non-8250 serial port support 1460 | # 1461 | # CONFIG_SERIAL_MAX3100 is not set 1462 | # CONFIG_SERIAL_MAX3107 is not set 1463 | # CONFIG_SERIAL_MFD_HSU is not set 1464 | CONFIG_SERIAL_CORE=y 1465 | CONFIG_SERIAL_CORE_CONSOLE=y 1466 | # CONFIG_SERIAL_JSM is not set 1467 | # CONFIG_SERIAL_TIMBERDALE is not set 1468 | # CONFIG_SERIAL_ALTERA_JTAGUART is not set 1469 | # CONFIG_SERIAL_ALTERA_UART is not set 1470 | # CONFIG_SERIAL_IFX6X60 is not set 1471 | # CONFIG_SERIAL_PCH_UART is not set 1472 | # CONFIG_TTY_PRINTK is not set 1473 | # CONFIG_HVC_DCC is not set 1474 | # CONFIG_IPMI_HANDLER is not set 1475 | CONFIG_HW_RANDOM=m 1476 | # CONFIG_HW_RANDOM_TIMERIOMEM is not set 1477 | # CONFIG_R3964 is not set 1478 | # CONFIG_APPLICOM is not set 1479 | # CONFIG_RAW_DRIVER is not set 1480 | # CONFIG_TCG_TPM is not set 1481 | CONFIG_DEVPORT=y 1482 | # CONFIG_RAMOOPS is not set 1483 | CONFIG_I2C=y 1484 | CONFIG_I2C_BOARDINFO=y 1485 | CONFIG_I2C_COMPAT=y 1486 | CONFIG_I2C_CHARDEV=y 1487 | # CONFIG_I2C_MUX is not set 1488 | CONFIG_I2C_HELPER_AUTO=y 1489 | 1490 | # 1491 | # I2C Hardware Bus support 1492 | # 1493 | 1494 | # 1495 | # PC SMBus host controller drivers 1496 | # 1497 | # CONFIG_I2C_ALI1535 is not set 1498 | # CONFIG_I2C_ALI1563 is not set 1499 | # CONFIG_I2C_ALI15X3 is not set 1500 | # CONFIG_I2C_AMD756 is not set 1501 | # CONFIG_I2C_AMD8111 is not set 1502 | # CONFIG_I2C_I801 is not set 1503 | # CONFIG_I2C_ISCH is not set 1504 | # CONFIG_I2C_PIIX4 is not set 1505 | # CONFIG_I2C_NFORCE2 is not set 1506 | # CONFIG_I2C_SIS5595 is not set 1507 | # CONFIG_I2C_SIS630 is not set 1508 | # CONFIG_I2C_SIS96X is not set 1509 | # CONFIG_I2C_VIA is not set 1510 | # CONFIG_I2C_VIAPRO is not set 1511 | 1512 | # 1513 | # I2C system bus drivers (mostly embedded / system-on-chip) 1514 | # 1515 | # CONFIG_I2C_GPIO is not set 1516 | # CONFIG_I2C_INTEL_MID is not set 1517 | CONFIG_I2C_MV64XXX=y 1518 | # CONFIG_I2C_OCORES is not set 1519 | # CONFIG_I2C_PCA_PLATFORM is not set 1520 | # CONFIG_I2C_PXA_PCI is not set 1521 | # CONFIG_I2C_SIMTEC is not set 1522 | # CONFIG_I2C_XILINX is not set 1523 | # CONFIG_I2C_EG20T is not set 1524 | 1525 | # 1526 | # External I2C/SMBus adapter drivers 1527 | # 1528 | # CONFIG_I2C_DIOLAN_U2C is not set 1529 | # CONFIG_I2C_PARPORT_LIGHT is not set 1530 | # CONFIG_I2C_TAOS_EVM is not set 1531 | # CONFIG_I2C_TINY_USB is not set 1532 | 1533 | # 1534 | # Other I2C/SMBus bus drivers 1535 | # 1536 | # CONFIG_I2C_STUB is not set 1537 | # CONFIG_I2C_DEBUG_CORE is not set 1538 | # CONFIG_I2C_DEBUG_ALGO is not set 1539 | # CONFIG_I2C_DEBUG_BUS is not set 1540 | CONFIG_SPI=y 1541 | CONFIG_SPI_MASTER=y 1542 | 1543 | # 1544 | # SPI Master Controller Drivers 1545 | # 1546 | # CONFIG_SPI_ALTERA is not set 1547 | # CONFIG_SPI_BITBANG is not set 1548 | # CONFIG_SPI_GPIO is not set 1549 | # CONFIG_SPI_OC_TINY is not set 1550 | CONFIG_SPI_ORION=y 1551 | # CONFIG_SPI_PXA2XX_PCI is not set 1552 | # CONFIG_SPI_TOPCLIFF_PCH is not set 1553 | # CONFIG_SPI_XILINX is not set 1554 | # CONFIG_SPI_DESIGNWARE is not set 1555 | 1556 | # 1557 | # SPI Protocol Masters 1558 | # 1559 | # CONFIG_SPI_SPIDEV is not set 1560 | # CONFIG_SPI_TLE62X0 is not set 1561 | 1562 | # 1563 | # PPS support 1564 | # 1565 | # CONFIG_PPS is not set 1566 | 1567 | # 1568 | # PPS generators support 1569 | # 1570 | CONFIG_ARCH_REQUIRE_GPIOLIB=y 1571 | CONFIG_GPIOLIB=y 1572 | CONFIG_GPIO_SYSFS=y 1573 | 1574 | # 1575 | # Memory mapped GPIO expanders: 1576 | # 1577 | # CONFIG_GPIO_BASIC_MMIO is not set 1578 | # CONFIG_GPIO_IT8761E is not set 1579 | # CONFIG_GPIO_VX855 is not set 1580 | 1581 | # 1582 | # I2C GPIO expanders: 1583 | # 1584 | # CONFIG_GPIO_MAX7300 is not set 1585 | # CONFIG_GPIO_MAX732X is not set 1586 | # CONFIG_GPIO_PCF857X is not set 1587 | # CONFIG_GPIO_SX150X is not set 1588 | # CONFIG_GPIO_ADP5588 is not set 1589 | 1590 | # 1591 | # PCI GPIO expanders: 1592 | # 1593 | # CONFIG_GPIO_BT8XX is not set 1594 | # CONFIG_GPIO_ML_IOH is not set 1595 | # CONFIG_GPIO_RDC321X is not set 1596 | 1597 | # 1598 | # SPI GPIO expanders: 1599 | # 1600 | # CONFIG_GPIO_MAX7301 is not set 1601 | # CONFIG_GPIO_MCP23S08 is not set 1602 | # CONFIG_GPIO_MC33880 is not set 1603 | # CONFIG_GPIO_74X164 is not set 1604 | 1605 | # 1606 | # AC97 GPIO expanders: 1607 | # 1608 | 1609 | # 1610 | # MODULbus GPIO expanders: 1611 | # 1612 | # CONFIG_W1 is not set 1613 | # CONFIG_POWER_SUPPLY is not set 1614 | # CONFIG_HWMON is not set 1615 | # CONFIG_THERMAL is not set 1616 | CONFIG_WATCHDOG=y 1617 | # CONFIG_WATCHDOG_NOWAYOUT is not set 1618 | 1619 | # 1620 | # Watchdog Device Drivers 1621 | # 1622 | # CONFIG_SOFT_WATCHDOG is not set 1623 | CONFIG_ORION_WATCHDOG=y 1624 | # CONFIG_MAX63XX_WATCHDOG is not set 1625 | # CONFIG_ALIM7101_WDT is not set 1626 | 1627 | # 1628 | # PCI-based Watchdog Cards 1629 | # 1630 | # CONFIG_PCIPCWATCHDOG is not set 1631 | # CONFIG_WDTPCI is not set 1632 | 1633 | # 1634 | # USB-based Watchdog Cards 1635 | # 1636 | # CONFIG_USBPCWATCHDOG is not set 1637 | CONFIG_SSB_POSSIBLE=y 1638 | 1639 | # 1640 | # Sonics Silicon Backplane 1641 | # 1642 | # CONFIG_SSB is not set 1643 | CONFIG_MFD_SUPPORT=y 1644 | # CONFIG_MFD_CORE is not set 1645 | # CONFIG_MFD_88PM860X is not set 1646 | # CONFIG_MFD_SM501 is not set 1647 | # CONFIG_MFD_ASIC3 is not set 1648 | # CONFIG_HTC_EGPIO is not set 1649 | # CONFIG_HTC_PASIC3 is not set 1650 | # CONFIG_HTC_I2CPLD is not set 1651 | # CONFIG_TPS6105X is not set 1652 | # CONFIG_TPS65010 is not set 1653 | # CONFIG_TPS6507X is not set 1654 | # CONFIG_TWL4030_CORE is not set 1655 | # CONFIG_MFD_STMPE is not set 1656 | # CONFIG_MFD_TC3589X is not set 1657 | # CONFIG_MFD_TMIO is not set 1658 | # CONFIG_MFD_TC6393XB is not set 1659 | # CONFIG_PMIC_DA903X is not set 1660 | # CONFIG_PMIC_ADP5520 is not set 1661 | # CONFIG_MFD_MAX8925 is not set 1662 | # CONFIG_MFD_MAX8997 is not set 1663 | # CONFIG_MFD_MAX8998 is not set 1664 | # CONFIG_MFD_WM8400 is not set 1665 | # CONFIG_MFD_WM831X_I2C is not set 1666 | # CONFIG_MFD_WM831X_SPI is not set 1667 | # CONFIG_MFD_WM8350_I2C is not set 1668 | # CONFIG_MFD_WM8994 is not set 1669 | # CONFIG_MFD_PCF50633 is not set 1670 | # CONFIG_MFD_MC13XXX is not set 1671 | # CONFIG_ABX500_CORE is not set 1672 | # CONFIG_EZX_PCAP is not set 1673 | # CONFIG_MFD_TIMBERDALE is not set 1674 | # CONFIG_LPC_SCH is not set 1675 | # CONFIG_MFD_RDC321X is not set 1676 | # CONFIG_MFD_JANZ_CMODIO is not set 1677 | # CONFIG_MFD_TPS6586X is not set 1678 | # CONFIG_MFD_VX855 is not set 1679 | # CONFIG_MFD_WL1273_CORE is not set 1680 | # CONFIG_REGULATOR is not set 1681 | CONFIG_MEDIA_SUPPORT=m 1682 | 1683 | # 1684 | # Multimedia core support 1685 | # 1686 | # CONFIG_MEDIA_CONTROLLER is not set 1687 | CONFIG_VIDEO_DEV=m 1688 | CONFIG_VIDEO_V4L2_COMMON=m 1689 | CONFIG_DVB_CORE=m 1690 | CONFIG_VIDEO_MEDIA=m 1691 | 1692 | # 1693 | # Multimedia drivers 1694 | # 1695 | CONFIG_RC_CORE=m 1696 | CONFIG_LIRC=m 1697 | CONFIG_RC_MAP=m 1698 | CONFIG_IR_NEC_DECODER=m 1699 | CONFIG_IR_RC5_DECODER=m 1700 | CONFIG_IR_RC6_DECODER=m 1701 | CONFIG_IR_JVC_DECODER=m 1702 | CONFIG_IR_SONY_DECODER=m 1703 | CONFIG_IR_RC5_SZ_DECODER=m 1704 | CONFIG_IR_LIRC_CODEC=m 1705 | # CONFIG_IR_IMON is not set 1706 | # CONFIG_IR_MCEUSB is not set 1707 | # CONFIG_IR_STREAMZAP is not set 1708 | # CONFIG_RC_LOOPBACK is not set 1709 | CONFIG_MEDIA_ATTACH=y 1710 | CONFIG_MEDIA_TUNER=m 1711 | # CONFIG_MEDIA_TUNER_CUSTOMISE is not set 1712 | CONFIG_MEDIA_TUNER_SIMPLE=m 1713 | CONFIG_MEDIA_TUNER_TDA8290=m 1714 | CONFIG_MEDIA_TUNER_TDA827X=m 1715 | CONFIG_MEDIA_TUNER_TDA18271=m 1716 | CONFIG_MEDIA_TUNER_TDA9887=m 1717 | CONFIG_MEDIA_TUNER_TEA5761=m 1718 | CONFIG_MEDIA_TUNER_TEA5767=m 1719 | CONFIG_MEDIA_TUNER_MT20XX=m 1720 | CONFIG_MEDIA_TUNER_MT2060=m 1721 | CONFIG_MEDIA_TUNER_MT2266=m 1722 | CONFIG_MEDIA_TUNER_QT1010=m 1723 | CONFIG_MEDIA_TUNER_XC2028=m 1724 | CONFIG_MEDIA_TUNER_XC5000=m 1725 | CONFIG_MEDIA_TUNER_MXL5005S=m 1726 | CONFIG_MEDIA_TUNER_MXL5007T=m 1727 | CONFIG_MEDIA_TUNER_MC44S803=m 1728 | CONFIG_MEDIA_TUNER_MAX2165=m 1729 | CONFIG_MEDIA_TUNER_TDA18218=m 1730 | CONFIG_VIDEO_V4L2=m 1731 | CONFIG_VIDEOBUF_GEN=m 1732 | CONFIG_VIDEOBUF_VMALLOC=m 1733 | CONFIG_VIDEOBUF_DVB=m 1734 | CONFIG_VIDEO_TVEEPROM=m 1735 | CONFIG_VIDEO_TUNER=m 1736 | CONFIG_VIDEO_CAPTURE_DRIVERS=y 1737 | # CONFIG_VIDEO_ADV_DEBUG is not set 1738 | # CONFIG_VIDEO_FIXED_MINOR_RANGES is not set 1739 | CONFIG_VIDEO_HELPER_CHIPS_AUTO=y 1740 | CONFIG_VIDEO_IR_I2C=m 1741 | 1742 | # 1743 | # Audio decoders 1744 | # 1745 | CONFIG_VIDEO_MSP3400=m 1746 | CONFIG_VIDEO_CS53L32A=m 1747 | CONFIG_VIDEO_WM8775=m 1748 | 1749 | # 1750 | # RDS decoders 1751 | # 1752 | 1753 | # 1754 | # Video decoders 1755 | # 1756 | CONFIG_VIDEO_MT9V011=m 1757 | CONFIG_VIDEO_SAA711X=m 1758 | CONFIG_VIDEO_TVP5150=m 1759 | 1760 | # 1761 | # Video and audio decoders 1762 | # 1763 | CONFIG_VIDEO_CX25840=m 1764 | 1765 | # 1766 | # MPEG video encoders 1767 | # 1768 | CONFIG_VIDEO_CX2341X=m 1769 | 1770 | # 1771 | # Video encoders 1772 | # 1773 | 1774 | # 1775 | # Video improvement chips 1776 | # 1777 | # CONFIG_VIDEO_BT848 is not set 1778 | # CONFIG_VIDEO_CPIA2 is not set 1779 | # CONFIG_VIDEO_SAA7134 is not set 1780 | # CONFIG_VIDEO_MXB is not set 1781 | # CONFIG_VIDEO_HEXIUM_ORION is not set 1782 | # CONFIG_VIDEO_HEXIUM_GEMINI is not set 1783 | # CONFIG_VIDEO_TIMBERDALE is not set 1784 | # CONFIG_VIDEO_CX88 is not set 1785 | # CONFIG_VIDEO_CX23885 is not set 1786 | # CONFIG_VIDEO_AU0828 is not set 1787 | # CONFIG_VIDEO_IVTV is not set 1788 | # CONFIG_VIDEO_CX18 is not set 1789 | # CONFIG_VIDEO_SAA7164 is not set 1790 | # CONFIG_VIDEO_CAFE_CCIC is not set 1791 | # CONFIG_VIDEO_SR030PC30 is not set 1792 | # CONFIG_VIDEO_NOON010PC30 is not set 1793 | # CONFIG_SOC_CAMERA is not set 1794 | CONFIG_V4L_USB_DRIVERS=y 1795 | CONFIG_USB_VIDEO_CLASS=m 1796 | CONFIG_USB_VIDEO_CLASS_INPUT_EVDEV=y 1797 | CONFIG_USB_GSPCA=m 1798 | CONFIG_USB_M5602=m 1799 | CONFIG_USB_STV06XX=m 1800 | CONFIG_USB_GL860=m 1801 | CONFIG_USB_GSPCA_BENQ=m 1802 | CONFIG_USB_GSPCA_CONEX=m 1803 | CONFIG_USB_GSPCA_CPIA1=m 1804 | CONFIG_USB_GSPCA_ETOMS=m 1805 | CONFIG_USB_GSPCA_FINEPIX=m 1806 | CONFIG_USB_GSPCA_JEILINJ=m 1807 | # CONFIG_USB_GSPCA_KONICA is not set 1808 | CONFIG_USB_GSPCA_MARS=m 1809 | CONFIG_USB_GSPCA_MR97310A=m 1810 | # CONFIG_USB_GSPCA_NW80X is not set 1811 | CONFIG_USB_GSPCA_OV519=m 1812 | CONFIG_USB_GSPCA_OV534=m 1813 | CONFIG_USB_GSPCA_OV534_9=m 1814 | CONFIG_USB_GSPCA_PAC207=m 1815 | CONFIG_USB_GSPCA_PAC7302=m 1816 | CONFIG_USB_GSPCA_PAC7311=m 1817 | CONFIG_USB_GSPCA_SN9C2028=m 1818 | CONFIG_USB_GSPCA_SN9C20X=m 1819 | CONFIG_USB_GSPCA_SONIXB=m 1820 | CONFIG_USB_GSPCA_SONIXJ=m 1821 | CONFIG_USB_GSPCA_SPCA500=m 1822 | CONFIG_USB_GSPCA_SPCA501=m 1823 | CONFIG_USB_GSPCA_SPCA505=m 1824 | CONFIG_USB_GSPCA_SPCA506=m 1825 | CONFIG_USB_GSPCA_SPCA508=m 1826 | CONFIG_USB_GSPCA_SPCA561=m 1827 | # CONFIG_USB_GSPCA_SPCA1528 is not set 1828 | CONFIG_USB_GSPCA_SQ905=m 1829 | CONFIG_USB_GSPCA_SQ905C=m 1830 | # CONFIG_USB_GSPCA_SQ930X is not set 1831 | CONFIG_USB_GSPCA_STK014=m 1832 | CONFIG_USB_GSPCA_STV0680=m 1833 | CONFIG_USB_GSPCA_SUNPLUS=m 1834 | CONFIG_USB_GSPCA_T613=m 1835 | CONFIG_USB_GSPCA_TV8532=m 1836 | CONFIG_USB_GSPCA_VC032X=m 1837 | # CONFIG_USB_GSPCA_VICAM is not set 1838 | # CONFIG_USB_GSPCA_XIRLINK_CIT is not set 1839 | CONFIG_USB_GSPCA_ZC3XX=m 1840 | CONFIG_VIDEO_PVRUSB2=m 1841 | CONFIG_VIDEO_PVRUSB2_SYSFS=y 1842 | CONFIG_VIDEO_PVRUSB2_DVB=y 1843 | # CONFIG_VIDEO_PVRUSB2_DEBUGIFC is not set 1844 | CONFIG_VIDEO_HDPVR=m 1845 | CONFIG_VIDEO_EM28XX=m 1846 | CONFIG_VIDEO_EM28XX_ALSA=m 1847 | CONFIG_VIDEO_EM28XX_DVB=m 1848 | CONFIG_VIDEO_TLG2300=m 1849 | CONFIG_VIDEO_CX231XX=m 1850 | CONFIG_VIDEO_CX231XX_RC=y 1851 | CONFIG_VIDEO_CX231XX_ALSA=m 1852 | CONFIG_VIDEO_CX231XX_DVB=m 1853 | CONFIG_VIDEO_USBVISION=m 1854 | # CONFIG_USB_ET61X251 is not set 1855 | # CONFIG_USB_SN9C102 is not set 1856 | CONFIG_USB_PWC=m 1857 | # CONFIG_USB_PWC_DEBUG is not set 1858 | CONFIG_USB_PWC_INPUT_EVDEV=y 1859 | CONFIG_USB_ZR364XX=m 1860 | CONFIG_USB_STKWEBCAM=m 1861 | CONFIG_USB_S2255=m 1862 | # CONFIG_V4L_MEM2MEM_DRIVERS is not set 1863 | CONFIG_RADIO_ADAPTERS=y 1864 | # CONFIG_RADIO_MAXIRADIO is not set 1865 | # CONFIG_RADIO_MAESTRO is not set 1866 | # CONFIG_I2C_SI4713 is not set 1867 | # CONFIG_RADIO_SI4713 is not set 1868 | # CONFIG_USB_DSBR is not set 1869 | # CONFIG_RADIO_SI470X is not set 1870 | # CONFIG_USB_MR800 is not set 1871 | # CONFIG_RADIO_TEA5764 is not set 1872 | # CONFIG_RADIO_SAA7706H is not set 1873 | # CONFIG_RADIO_TEF6862 is not set 1874 | # CONFIG_RADIO_WL1273 is not set 1875 | 1876 | # 1877 | # Texas Instruments WL128x FM driver (ST based) 1878 | # 1879 | CONFIG_DVB_MAX_ADAPTERS=8 1880 | # CONFIG_DVB_DYNAMIC_MINORS is not set 1881 | CONFIG_DVB_CAPTURE_DRIVERS=y 1882 | 1883 | # 1884 | # Supported SAA7146 based PCI Adapters 1885 | # 1886 | # CONFIG_TTPCI_EEPROM is not set 1887 | # CONFIG_DVB_AV7110 is not set 1888 | # CONFIG_DVB_BUDGET_CORE is not set 1889 | 1890 | # 1891 | # Supported USB Adapters 1892 | # 1893 | CONFIG_DVB_USB=m 1894 | # CONFIG_DVB_USB_DEBUG is not set 1895 | CONFIG_DVB_USB_A800=m 1896 | CONFIG_DVB_USB_DIBUSB_MB=m 1897 | CONFIG_DVB_USB_DIBUSB_MB_FAULTY=y 1898 | CONFIG_DVB_USB_DIBUSB_MC=m 1899 | CONFIG_DVB_USB_DIB0700=m 1900 | CONFIG_DVB_USB_UMT_010=m 1901 | CONFIG_DVB_USB_CXUSB=m 1902 | CONFIG_DVB_USB_M920X=m 1903 | CONFIG_DVB_USB_GL861=m 1904 | CONFIG_DVB_USB_AU6610=m 1905 | CONFIG_DVB_USB_DIGITV=m 1906 | CONFIG_DVB_USB_VP7045=m 1907 | CONFIG_DVB_USB_VP702X=m 1908 | CONFIG_DVB_USB_GP8PSK=m 1909 | CONFIG_DVB_USB_NOVA_T_USB2=m 1910 | CONFIG_DVB_USB_TTUSB2=m 1911 | CONFIG_DVB_USB_DTT200U=m 1912 | CONFIG_DVB_USB_OPERA1=m 1913 | CONFIG_DVB_USB_AF9005=m 1914 | CONFIG_DVB_USB_AF9005_REMOTE=m 1915 | CONFIG_DVB_USB_DW2102=m 1916 | CONFIG_DVB_USB_CINERGY_T2=m 1917 | CONFIG_DVB_USB_ANYSEE=m 1918 | CONFIG_DVB_USB_DTV5100=m 1919 | CONFIG_DVB_USB_AF9015=m 1920 | CONFIG_DVB_USB_CE6230=m 1921 | CONFIG_DVB_USB_FRIIO=m 1922 | CONFIG_DVB_USB_EC168=m 1923 | CONFIG_DVB_USB_AZ6027=m 1924 | # CONFIG_DVB_USB_LME2510 is not set 1925 | # CONFIG_DVB_USB_TECHNISAT_USB2 is not set 1926 | CONFIG_DVB_TTUSB_BUDGET=m 1927 | CONFIG_DVB_TTUSB_DEC=m 1928 | CONFIG_SMS_SIANO_MDTV=m 1929 | 1930 | # 1931 | # Siano module components 1932 | # 1933 | CONFIG_SMS_USB_DRV=m 1934 | 1935 | # 1936 | # Supported FlexCopII (B2C2) Adapters 1937 | # 1938 | # CONFIG_DVB_B2C2_FLEXCOP is not set 1939 | 1940 | # 1941 | # Supported BT878 Adapters 1942 | # 1943 | 1944 | # 1945 | # Supported Pluto2 Adapters 1946 | # 1947 | # CONFIG_DVB_PLUTO2 is not set 1948 | 1949 | # 1950 | # Supported SDMC DM1105 Adapters 1951 | # 1952 | # CONFIG_DVB_DM1105 is not set 1953 | 1954 | # 1955 | # Supported Earthsoft PT1 Adapters 1956 | # 1957 | # CONFIG_DVB_PT1 is not set 1958 | 1959 | # 1960 | # Supported Mantis Adapters 1961 | # 1962 | # CONFIG_MANTIS_CORE is not set 1963 | 1964 | # 1965 | # Supported nGene Adapters 1966 | # 1967 | # CONFIG_DVB_NGENE is not set 1968 | 1969 | # 1970 | # Supported DVB Frontends 1971 | # 1972 | # CONFIG_DVB_FE_CUSTOMISE is not set 1973 | 1974 | # 1975 | # Multistandard (satellite) frontends 1976 | # 1977 | CONFIG_DVB_STB0899=m 1978 | CONFIG_DVB_STB6100=m 1979 | 1980 | # 1981 | # DVB-S (satellite) frontends 1982 | # 1983 | CONFIG_DVB_MT312=m 1984 | CONFIG_DVB_ZL10039=m 1985 | CONFIG_DVB_STV0288=m 1986 | CONFIG_DVB_STB6000=m 1987 | CONFIG_DVB_STV0299=m 1988 | CONFIG_DVB_STV6110=m 1989 | CONFIG_DVB_STV0900=m 1990 | CONFIG_DVB_TDA8083=m 1991 | CONFIG_DVB_TDA10086=m 1992 | CONFIG_DVB_TDA826X=m 1993 | CONFIG_DVB_CX24116=m 1994 | CONFIG_DVB_SI21XX=m 1995 | CONFIG_DVB_DS3000=m 1996 | 1997 | # 1998 | # DVB-T (terrestrial) frontends 1999 | # 2000 | CONFIG_DVB_CX22700=m 2001 | CONFIG_DVB_CX22702=m 2002 | CONFIG_DVB_TDA1004X=m 2003 | CONFIG_DVB_NXT6000=m 2004 | CONFIG_DVB_MT352=m 2005 | CONFIG_DVB_ZL10353=m 2006 | CONFIG_DVB_DIB3000MB=m 2007 | CONFIG_DVB_DIB3000MC=m 2008 | CONFIG_DVB_DIB7000M=m 2009 | CONFIG_DVB_DIB7000P=m 2010 | CONFIG_DVB_TDA10048=m 2011 | CONFIG_DVB_AF9013=m 2012 | CONFIG_DVB_EC100=m 2013 | 2014 | # 2015 | # DVB-C (cable) frontends 2016 | # 2017 | CONFIG_DVB_VES1820=m 2018 | CONFIG_DVB_TDA10023=m 2019 | CONFIG_DVB_STV0297=m 2020 | 2021 | # 2022 | # ATSC (North American/Korean Terrestrial/Cable DTV) frontends 2023 | # 2024 | CONFIG_DVB_LGDT330X=m 2025 | CONFIG_DVB_LGDT3305=m 2026 | CONFIG_DVB_S5H1409=m 2027 | CONFIG_DVB_S5H1411=m 2028 | 2029 | # 2030 | # ISDB-T (terrestrial) frontends 2031 | # 2032 | CONFIG_DVB_S921=m 2033 | CONFIG_DVB_DIB8000=m 2034 | CONFIG_DVB_MB86A20S=m 2035 | 2036 | # 2037 | # Digital terrestrial only tuners/PLL 2038 | # 2039 | CONFIG_DVB_PLL=m 2040 | CONFIG_DVB_TUNER_DIB0070=m 2041 | CONFIG_DVB_TUNER_DIB0090=m 2042 | 2043 | # 2044 | # SEC control devices for DVB-S 2045 | # 2046 | CONFIG_DVB_LNBP21=m 2047 | CONFIG_DVB_LGS8GXX=m 2048 | CONFIG_DVB_ATBM8830=m 2049 | 2050 | # 2051 | # Tools to develop new frontends 2052 | # 2053 | # CONFIG_DVB_DUMMY_FE is not set 2054 | 2055 | # 2056 | # Graphics support 2057 | # 2058 | CONFIG_VGA_ARB=y 2059 | CONFIG_VGA_ARB_MAX_GPUS=16 2060 | # CONFIG_DRM is not set 2061 | # CONFIG_STUB_POULSBO is not set 2062 | # CONFIG_VGASTATE is not set 2063 | # CONFIG_VIDEO_OUTPUT_CONTROL is not set 2064 | # CONFIG_FB is not set 2065 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set 2066 | 2067 | # 2068 | # Display device support 2069 | # 2070 | # CONFIG_DISPLAY_SUPPORT is not set 2071 | CONFIG_SOUND=m 2072 | CONFIG_SOUND_OSS_CORE=y 2073 | CONFIG_SOUND_OSS_CORE_PRECLAIM=y 2074 | CONFIG_SND=m 2075 | CONFIG_SND_TIMER=m 2076 | CONFIG_SND_PCM=m 2077 | CONFIG_SND_HWDEP=m 2078 | CONFIG_SND_RAWMIDI=m 2079 | CONFIG_SND_SEQUENCER=m 2080 | # CONFIG_SND_SEQ_DUMMY is not set 2081 | CONFIG_SND_OSSEMUL=y 2082 | CONFIG_SND_MIXER_OSS=m 2083 | CONFIG_SND_PCM_OSS=m 2084 | CONFIG_SND_PCM_OSS_PLUGINS=y 2085 | CONFIG_SND_SEQUENCER_OSS=y 2086 | # CONFIG_SND_HRTIMER is not set 2087 | # CONFIG_SND_DYNAMIC_MINORS is not set 2088 | CONFIG_SND_SUPPORT_OLD_API=y 2089 | CONFIG_SND_VERBOSE_PROCFS=y 2090 | # CONFIG_SND_VERBOSE_PRINTK is not set 2091 | # CONFIG_SND_DEBUG is not set 2092 | CONFIG_SND_RAWMIDI_SEQ=m 2093 | # CONFIG_SND_OPL3_LIB_SEQ is not set 2094 | # CONFIG_SND_OPL4_LIB_SEQ is not set 2095 | # CONFIG_SND_SBAWE_SEQ is not set 2096 | # CONFIG_SND_EMU10K1_SEQ is not set 2097 | # CONFIG_SND_DRIVERS is not set 2098 | # CONFIG_SND_PCI is not set 2099 | # CONFIG_SND_ARM is not set 2100 | # CONFIG_SND_SPI is not set 2101 | CONFIG_SND_USB=y 2102 | CONFIG_SND_USB_AUDIO=m 2103 | # CONFIG_SND_USB_UA101 is not set 2104 | # CONFIG_SND_USB_CAIAQ is not set 2105 | # CONFIG_SND_USB_6FIRE is not set 2106 | # CONFIG_SND_SOC is not set 2107 | # CONFIG_SOUND_PRIME is not set 2108 | CONFIG_HID_SUPPORT=y 2109 | CONFIG_HID=y 2110 | CONFIG_HIDRAW=y 2111 | 2112 | # 2113 | # USB Input Devices 2114 | # 2115 | CONFIG_USB_HID=y 2116 | # CONFIG_HID_PID is not set 2117 | CONFIG_USB_HIDDEV=y 2118 | 2119 | # 2120 | # Special HID drivers 2121 | # 2122 | CONFIG_HID_3M_PCT=m 2123 | CONFIG_HID_A4TECH=m 2124 | # CONFIG_HID_ACRUX is not set 2125 | CONFIG_HID_APPLE=m 2126 | CONFIG_HID_BELKIN=m 2127 | # CONFIG_HID_CANDO is not set 2128 | CONFIG_HID_CHERRY=m 2129 | CONFIG_HID_CHICONY=m 2130 | # CONFIG_HID_PRODIKEYS is not set 2131 | CONFIG_HID_CYPRESS=m 2132 | CONFIG_HID_DRAGONRISE=m 2133 | # CONFIG_DRAGONRISE_FF is not set 2134 | # CONFIG_HID_EMS_FF is not set 2135 | CONFIG_HID_EZKEY=m 2136 | # CONFIG_HID_KEYTOUCH is not set 2137 | CONFIG_HID_KYE=m 2138 | # CONFIG_HID_UCLOGIC is not set 2139 | # CONFIG_HID_WALTOP is not set 2140 | CONFIG_HID_GYRATION=m 2141 | CONFIG_HID_TWINHAN=m 2142 | CONFIG_HID_KENSINGTON=m 2143 | # CONFIG_HID_LCPOWER is not set 2144 | CONFIG_HID_LOGITECH=m 2145 | # CONFIG_LOGITECH_FF is not set 2146 | # CONFIG_LOGIRUMBLEPAD2_FF is not set 2147 | # CONFIG_LOGIG940_FF is not set 2148 | # CONFIG_LOGIWII_FF is not set 2149 | CONFIG_HID_MICROSOFT=m 2150 | CONFIG_HID_MOSART=m 2151 | CONFIG_HID_MONTEREY=m 2152 | # CONFIG_HID_MULTITOUCH is not set 2153 | CONFIG_HID_NTRIG=m 2154 | CONFIG_HID_ORTEK=m 2155 | CONFIG_HID_PANTHERLORD=m 2156 | # CONFIG_PANTHERLORD_FF is not set 2157 | CONFIG_HID_PETALYNX=m 2158 | # CONFIG_HID_PICOLCD is not set 2159 | CONFIG_HID_QUANTA=m 2160 | # CONFIG_HID_ROCCAT is not set 2161 | # CONFIG_HID_ROCCAT_ARVO is not set 2162 | # CONFIG_HID_ROCCAT_KONE is not set 2163 | # CONFIG_HID_ROCCAT_KONEPLUS is not set 2164 | # CONFIG_HID_ROCCAT_KOVAPLUS is not set 2165 | # CONFIG_HID_ROCCAT_PYRA is not set 2166 | CONFIG_HID_SAMSUNG=m 2167 | CONFIG_HID_SONY=m 2168 | CONFIG_HID_STANTUM=m 2169 | CONFIG_HID_SUNPLUS=m 2170 | CONFIG_HID_GREENASIA=m 2171 | # CONFIG_GREENASIA_FF is not set 2172 | CONFIG_HID_SMARTJOYPLUS=m 2173 | # CONFIG_SMARTJOYPLUS_FF is not set 2174 | CONFIG_HID_TOPSEED=m 2175 | CONFIG_HID_THRUSTMASTER=m 2176 | # CONFIG_THRUSTMASTER_FF is not set 2177 | CONFIG_HID_ZEROPLUS=m 2178 | # CONFIG_ZEROPLUS_FF is not set 2179 | # CONFIG_HID_ZYDACRON is not set 2180 | CONFIG_USB_SUPPORT=y 2181 | CONFIG_USB_ARCH_HAS_HCD=y 2182 | CONFIG_USB_ARCH_HAS_OHCI=y 2183 | CONFIG_USB_ARCH_HAS_EHCI=y 2184 | CONFIG_USB=y 2185 | # CONFIG_USB_DEBUG is not set 2186 | # CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set 2187 | 2188 | # 2189 | # Miscellaneous USB options 2190 | # 2191 | CONFIG_USB_DEVICEFS=y 2192 | CONFIG_USB_DEVICE_CLASS=y 2193 | # CONFIG_USB_DYNAMIC_MINORS is not set 2194 | # CONFIG_USB_SUSPEND is not set 2195 | # CONFIG_USB_OTG_WHITELIST is not set 2196 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set 2197 | CONFIG_USB_MON=m 2198 | # CONFIG_USB_WUSB is not set 2199 | # CONFIG_USB_WUSB_CBAF is not set 2200 | 2201 | # 2202 | # USB Host Controller Drivers 2203 | # 2204 | # CONFIG_USB_C67X00_HCD is not set 2205 | # CONFIG_USB_XHCI_HCD is not set 2206 | CONFIG_USB_EHCI_HCD=y 2207 | CONFIG_USB_EHCI_ROOT_HUB_TT=y 2208 | CONFIG_USB_EHCI_TT_NEWSCHED=y 2209 | # CONFIG_USB_OXU210HP_HCD is not set 2210 | # CONFIG_USB_ISP116X_HCD is not set 2211 | # CONFIG_USB_ISP1760_HCD is not set 2212 | # CONFIG_USB_ISP1362_HCD is not set 2213 | # CONFIG_USB_OHCI_HCD is not set 2214 | # CONFIG_USB_UHCI_HCD is not set 2215 | # CONFIG_USB_U132_HCD is not set 2216 | # CONFIG_USB_SL811_HCD is not set 2217 | # CONFIG_USB_R8A66597_HCD is not set 2218 | # CONFIG_USB_WHCI_HCD is not set 2219 | # CONFIG_USB_HWA_HCD is not set 2220 | # CONFIG_USB_MUSB_HDRC is not set 2221 | 2222 | # 2223 | # USB Device Class drivers 2224 | # 2225 | CONFIG_USB_ACM=m 2226 | CONFIG_USB_PRINTER=m 2227 | CONFIG_USB_WDM=m 2228 | # CONFIG_USB_TMC is not set 2229 | 2230 | # 2231 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may 2232 | # 2233 | 2234 | # 2235 | # also be needed; see USB_STORAGE Help for more info 2236 | # 2237 | CONFIG_USB_STORAGE=y 2238 | # CONFIG_USB_STORAGE_DEBUG is not set 2239 | # CONFIG_USB_STORAGE_REALTEK is not set 2240 | CONFIG_USB_STORAGE_DATAFAB=m 2241 | CONFIG_USB_STORAGE_FREECOM=m 2242 | CONFIG_USB_STORAGE_ISD200=m 2243 | CONFIG_USB_STORAGE_USBAT=m 2244 | CONFIG_USB_STORAGE_SDDR09=m 2245 | CONFIG_USB_STORAGE_SDDR55=m 2246 | CONFIG_USB_STORAGE_JUMPSHOT=m 2247 | CONFIG_USB_STORAGE_ALAUDA=m 2248 | CONFIG_USB_STORAGE_ONETOUCH=m 2249 | CONFIG_USB_STORAGE_KARMA=m 2250 | CONFIG_USB_STORAGE_CYPRESS_ATACB=m 2251 | # CONFIG_USB_STORAGE_ENE_UB6250 is not set 2252 | # CONFIG_USB_UAS is not set 2253 | CONFIG_USB_LIBUSUAL=y 2254 | 2255 | # 2256 | # USB Imaging devices 2257 | # 2258 | CONFIG_USB_MDC800=m 2259 | CONFIG_USB_MICROTEK=m 2260 | 2261 | # 2262 | # USB port drivers 2263 | # 2264 | CONFIG_USB_SERIAL=m 2265 | CONFIG_USB_EZUSB=y 2266 | CONFIG_USB_SERIAL_GENERIC=y 2267 | CONFIG_USB_SERIAL_AIRCABLE=m 2268 | CONFIG_USB_SERIAL_ARK3116=m 2269 | CONFIG_USB_SERIAL_BELKIN=m 2270 | CONFIG_USB_SERIAL_CH341=m 2271 | CONFIG_USB_SERIAL_WHITEHEAT=m 2272 | CONFIG_USB_SERIAL_DIGI_ACCELEPORT=m 2273 | CONFIG_USB_SERIAL_CP210X=m 2274 | CONFIG_USB_SERIAL_CYPRESS_M8=m 2275 | CONFIG_USB_SERIAL_EMPEG=m 2276 | CONFIG_USB_SERIAL_FTDI_SIO=m 2277 | CONFIG_USB_SERIAL_FUNSOFT=m 2278 | CONFIG_USB_SERIAL_VISOR=m 2279 | CONFIG_USB_SERIAL_IPAQ=m 2280 | CONFIG_USB_SERIAL_IR=m 2281 | CONFIG_USB_SERIAL_EDGEPORT=m 2282 | CONFIG_USB_SERIAL_EDGEPORT_TI=m 2283 | CONFIG_USB_SERIAL_GARMIN=m 2284 | CONFIG_USB_SERIAL_IPW=m 2285 | CONFIG_USB_SERIAL_IUU=m 2286 | CONFIG_USB_SERIAL_KEYSPAN_PDA=m 2287 | # CONFIG_USB_SERIAL_KEYSPAN is not set 2288 | CONFIG_USB_SERIAL_KLSI=m 2289 | CONFIG_USB_SERIAL_KOBIL_SCT=m 2290 | CONFIG_USB_SERIAL_MCT_U232=m 2291 | CONFIG_USB_SERIAL_MOS7720=m 2292 | CONFIG_USB_SERIAL_MOS7840=m 2293 | CONFIG_USB_SERIAL_MOTOROLA=m 2294 | CONFIG_USB_SERIAL_NAVMAN=m 2295 | CONFIG_USB_SERIAL_PL2303=m 2296 | CONFIG_USB_SERIAL_OTI6858=m 2297 | CONFIG_USB_SERIAL_QCAUX=m 2298 | CONFIG_USB_SERIAL_QUALCOMM=m 2299 | CONFIG_USB_SERIAL_SPCP8X5=m 2300 | CONFIG_USB_SERIAL_HP4X=m 2301 | # CONFIG_USB_SERIAL_SAFE is not set 2302 | # CONFIG_USB_SERIAL_SAMBA is not set 2303 | CONFIG_USB_SERIAL_SIEMENS_MPI=m 2304 | CONFIG_USB_SERIAL_SIERRAWIRELESS=m 2305 | CONFIG_USB_SERIAL_SYMBOL=m 2306 | CONFIG_USB_SERIAL_TI=m 2307 | CONFIG_USB_SERIAL_CYBERJACK=m 2308 | CONFIG_USB_SERIAL_XIRCOM=m 2309 | CONFIG_USB_SERIAL_WWAN=m 2310 | CONFIG_USB_SERIAL_OPTION=m 2311 | CONFIG_USB_SERIAL_OMNINET=m 2312 | CONFIG_USB_SERIAL_OPTICON=m 2313 | CONFIG_USB_SERIAL_VIVOPAY_SERIAL=m 2314 | # CONFIG_USB_SERIAL_ZIO is not set 2315 | # CONFIG_USB_SERIAL_SSU100 is not set 2316 | # CONFIG_USB_SERIAL_DEBUG is not set 2317 | 2318 | # 2319 | # USB Miscellaneous drivers 2320 | # 2321 | CONFIG_USB_EMI62=m 2322 | CONFIG_USB_EMI26=m 2323 | CONFIG_USB_ADUTUX=m 2324 | CONFIG_USB_SEVSEG=m 2325 | CONFIG_USB_RIO500=m 2326 | CONFIG_USB_LEGOTOWER=m 2327 | CONFIG_USB_LCD=m 2328 | CONFIG_USB_LED=m 2329 | CONFIG_USB_CYPRESS_CY7C63=m 2330 | CONFIG_USB_CYTHERM=m 2331 | CONFIG_USB_IDMOUSE=m 2332 | CONFIG_USB_FTDI_ELAN=m 2333 | # CONFIG_USB_APPLEDISPLAY is not set 2334 | CONFIG_USB_SISUSBVGA=m 2335 | CONFIG_USB_LD=m 2336 | # CONFIG_USB_TRANCEVIBRATOR is not set 2337 | CONFIG_USB_IOWARRIOR=m 2338 | # CONFIG_USB_TEST is not set 2339 | # CONFIG_USB_ISIGHTFW is not set 2340 | # CONFIG_USB_YUREX is not set 2341 | CONFIG_USB_ATM=m 2342 | CONFIG_USB_SPEEDTOUCH=m 2343 | CONFIG_USB_CXACRU=m 2344 | CONFIG_USB_UEAGLEATM=m 2345 | CONFIG_USB_XUSBATM=m 2346 | # CONFIG_USB_GADGET is not set 2347 | 2348 | # 2349 | # OTG and related infrastructure 2350 | # 2351 | # CONFIG_USB_GPIO_VBUS is not set 2352 | # CONFIG_USB_ULPI is not set 2353 | # CONFIG_NOP_USB_XCEIV is not set 2354 | # CONFIG_UWB is not set 2355 | # CONFIG_MMC is not set 2356 | # CONFIG_MEMSTICK is not set 2357 | CONFIG_NEW_LEDS=y 2358 | CONFIG_LEDS_CLASS=y 2359 | 2360 | # 2361 | # LED drivers 2362 | # 2363 | # CONFIG_LEDS_LM3530 is not set 2364 | # CONFIG_LEDS_PCA9532 is not set 2365 | CONFIG_LEDS_GPIO=y 2366 | CONFIG_LEDS_GPIO_PLATFORM=y 2367 | # CONFIG_LEDS_LP3944 is not set 2368 | # CONFIG_LEDS_LP5521 is not set 2369 | # CONFIG_LEDS_LP5523 is not set 2370 | # CONFIG_LEDS_PCA955X is not set 2371 | # CONFIG_LEDS_DAC124S085 is not set 2372 | # CONFIG_LEDS_BD2802 is not set 2373 | # CONFIG_LEDS_LT3593 is not set 2374 | CONFIG_LEDS_TRIGGERS=y 2375 | 2376 | # 2377 | # LED Triggers 2378 | # 2379 | CONFIG_LEDS_TRIGGER_TIMER=y 2380 | CONFIG_LEDS_TRIGGER_HEARTBEAT=y 2381 | # CONFIG_LEDS_TRIGGER_BACKLIGHT is not set 2382 | # CONFIG_LEDS_TRIGGER_GPIO is not set 2383 | CONFIG_LEDS_TRIGGER_DEFAULT_ON=y 2384 | 2385 | # 2386 | # iptables trigger is under Netfilter config (LED target) 2387 | # 2388 | # CONFIG_NFC_DEVICES is not set 2389 | # CONFIG_ACCESSIBILITY is not set 2390 | # CONFIG_INFINIBAND is not set 2391 | CONFIG_RTC_LIB=y 2392 | CONFIG_RTC_CLASS=y 2393 | CONFIG_RTC_HCTOSYS=y 2394 | CONFIG_RTC_HCTOSYS_DEVICE="rtc0" 2395 | # CONFIG_RTC_DEBUG is not set 2396 | 2397 | # 2398 | # RTC interfaces 2399 | # 2400 | CONFIG_RTC_INTF_SYSFS=y 2401 | CONFIG_RTC_INTF_PROC=y 2402 | CONFIG_RTC_INTF_DEV=y 2403 | # CONFIG_RTC_INTF_DEV_UIE_EMUL is not set 2404 | # CONFIG_RTC_DRV_TEST is not set 2405 | 2406 | # 2407 | # I2C RTC drivers 2408 | # 2409 | # CONFIG_RTC_DRV_DS1307 is not set 2410 | # CONFIG_RTC_DRV_DS1374 is not set 2411 | # CONFIG_RTC_DRV_DS1672 is not set 2412 | # CONFIG_RTC_DRV_DS3232 is not set 2413 | # CONFIG_RTC_DRV_MAX6900 is not set 2414 | # CONFIG_RTC_DRV_RS5C372 is not set 2415 | # CONFIG_RTC_DRV_ISL1208 is not set 2416 | # CONFIG_RTC_DRV_ISL12022 is not set 2417 | # CONFIG_RTC_DRV_X1205 is not set 2418 | # CONFIG_RTC_DRV_PCF8563 is not set 2419 | # CONFIG_RTC_DRV_PCF8583 is not set 2420 | # CONFIG_RTC_DRV_M41T80 is not set 2421 | # CONFIG_RTC_DRV_BQ32K is not set 2422 | # CONFIG_RTC_DRV_S35390A is not set 2423 | # CONFIG_RTC_DRV_FM3130 is not set 2424 | # CONFIG_RTC_DRV_RX8581 is not set 2425 | # CONFIG_RTC_DRV_RX8025 is not set 2426 | 2427 | # 2428 | # SPI RTC drivers 2429 | # 2430 | # CONFIG_RTC_DRV_M41T94 is not set 2431 | # CONFIG_RTC_DRV_DS1305 is not set 2432 | # CONFIG_RTC_DRV_DS1390 is not set 2433 | # CONFIG_RTC_DRV_MAX6902 is not set 2434 | # CONFIG_RTC_DRV_R9701 is not set 2435 | # CONFIG_RTC_DRV_RS5C348 is not set 2436 | # CONFIG_RTC_DRV_DS3234 is not set 2437 | # CONFIG_RTC_DRV_PCF2123 is not set 2438 | 2439 | # 2440 | # Platform RTC drivers 2441 | # 2442 | # CONFIG_RTC_DRV_CMOS is not set 2443 | # CONFIG_RTC_DRV_DS1286 is not set 2444 | # CONFIG_RTC_DRV_DS1511 is not set 2445 | # CONFIG_RTC_DRV_DS1553 is not set 2446 | # CONFIG_RTC_DRV_DS1742 is not set 2447 | # CONFIG_RTC_DRV_STK17TA8 is not set 2448 | # CONFIG_RTC_DRV_M48T86 is not set 2449 | # CONFIG_RTC_DRV_M48T35 is not set 2450 | # CONFIG_RTC_DRV_M48T59 is not set 2451 | # CONFIG_RTC_DRV_MSM6242 is not set 2452 | # CONFIG_RTC_DRV_BQ4802 is not set 2453 | # CONFIG_RTC_DRV_RP5C01 is not set 2454 | # CONFIG_RTC_DRV_V3020 is not set 2455 | 2456 | # 2457 | # on-CPU RTC drivers 2458 | # 2459 | CONFIG_RTC_DRV_MV=y 2460 | CONFIG_DMADEVICES=y 2461 | # CONFIG_DMADEVICES_DEBUG is not set 2462 | 2463 | # 2464 | # DMA Devices 2465 | # 2466 | CONFIG_ASYNC_TX_ENABLE_CHANNEL_SWITCH=y 2467 | CONFIG_MV_XOR=y 2468 | # CONFIG_TIMB_DMA is not set 2469 | CONFIG_DMA_ENGINE=y 2470 | 2471 | # 2472 | # DMA Clients 2473 | # 2474 | # CONFIG_NET_DMA is not set 2475 | CONFIG_ASYNC_TX_DMA=y 2476 | # CONFIG_DMATEST is not set 2477 | # CONFIG_AUXDISPLAY is not set 2478 | # CONFIG_UIO is not set 2479 | # CONFIG_STAGING is not set 2480 | 2481 | # 2482 | # File systems 2483 | # 2484 | # CONFIG_EXT2_FS is not set 2485 | CONFIG_EXT3_FS=y 2486 | # CONFIG_EXT3_DEFAULTS_TO_ORDERED is not set 2487 | CONFIG_EXT3_FS_XATTR=y 2488 | CONFIG_EXT3_FS_POSIX_ACL=y 2489 | CONFIG_EXT3_FS_SECURITY=y 2490 | CONFIG_EXT4_FS=m 2491 | CONFIG_EXT4_USE_FOR_EXT23=y 2492 | CONFIG_EXT4_FS_XATTR=y 2493 | CONFIG_EXT4_FS_POSIX_ACL=y 2494 | CONFIG_EXT4_FS_SECURITY=y 2495 | # CONFIG_EXT4_DEBUG is not set 2496 | CONFIG_JBD=y 2497 | CONFIG_JBD2=m 2498 | CONFIG_FS_MBCACHE=y 2499 | CONFIG_REISERFS_FS=m 2500 | # CONFIG_REISERFS_CHECK is not set 2501 | # CONFIG_REISERFS_PROC_INFO is not set 2502 | # CONFIG_REISERFS_FS_XATTR is not set 2503 | # CONFIG_JFS_FS is not set 2504 | # CONFIG_XFS_FS is not set 2505 | # CONFIG_GFS2_FS is not set 2506 | CONFIG_BTRFS_FS=m 2507 | CONFIG_BTRFS_FS_POSIX_ACL=y 2508 | # CONFIG_NILFS2_FS is not set 2509 | CONFIG_FS_POSIX_ACL=y 2510 | CONFIG_EXPORTFS=y 2511 | CONFIG_FILE_LOCKING=y 2512 | CONFIG_FSNOTIFY=y 2513 | CONFIG_DNOTIFY=y 2514 | CONFIG_INOTIFY_USER=y 2515 | # CONFIG_FANOTIFY is not set 2516 | # CONFIG_QUOTA is not set 2517 | # CONFIG_QUOTACTL is not set 2518 | # CONFIG_AUTOFS4_FS is not set 2519 | CONFIG_FUSE_FS=m 2520 | CONFIG_CUSE=m 2521 | 2522 | # 2523 | # Caches 2524 | # 2525 | CONFIG_FSCACHE=y 2526 | # CONFIG_FSCACHE_STATS is not set 2527 | # CONFIG_FSCACHE_HISTOGRAM is not set 2528 | # CONFIG_FSCACHE_DEBUG is not set 2529 | # CONFIG_FSCACHE_OBJECT_LIST is not set 2530 | # CONFIG_CACHEFILES is not set 2531 | 2532 | # 2533 | # CD-ROM/DVD Filesystems 2534 | # 2535 | CONFIG_ISO9660_FS=y 2536 | CONFIG_JOLIET=y 2537 | CONFIG_ZISOFS=y 2538 | CONFIG_UDF_FS=y 2539 | CONFIG_UDF_NLS=y 2540 | 2541 | # 2542 | # DOS/FAT/NT Filesystems 2543 | # 2544 | CONFIG_FAT_FS=y 2545 | CONFIG_MSDOS_FS=y 2546 | CONFIG_VFAT_FS=y 2547 | CONFIG_FAT_DEFAULT_CODEPAGE=850 2548 | CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" 2549 | CONFIG_NTFS_FS=m 2550 | # CONFIG_NTFS_DEBUG is not set 2551 | CONFIG_NTFS_RW=y 2552 | 2553 | # 2554 | # Pseudo filesystems 2555 | # 2556 | CONFIG_PROC_FS=y 2557 | CONFIG_PROC_SYSCTL=y 2558 | CONFIG_PROC_PAGE_MONITOR=y 2559 | CONFIG_SYSFS=y 2560 | CONFIG_TMPFS=y 2561 | # CONFIG_TMPFS_POSIX_ACL is not set 2562 | # CONFIG_HUGETLB_PAGE is not set 2563 | # CONFIG_CONFIGFS_FS is not set 2564 | CONFIG_MISC_FILESYSTEMS=y 2565 | # CONFIG_ADFS_FS is not set 2566 | # CONFIG_AFFS_FS is not set 2567 | CONFIG_ECRYPT_FS=m 2568 | CONFIG_HFS_FS=m 2569 | CONFIG_HFSPLUS_FS=m 2570 | # CONFIG_BEFS_FS is not set 2571 | # CONFIG_BFS_FS is not set 2572 | # CONFIG_EFS_FS is not set 2573 | # CONFIG_JFFS2_FS is not set 2574 | # CONFIG_LOGFS is not set 2575 | # CONFIG_CRAMFS is not set 2576 | # CONFIG_SQUASHFS is not set 2577 | # CONFIG_VXFS_FS is not set 2578 | # CONFIG_MINIX_FS is not set 2579 | # CONFIG_OMFS_FS is not set 2580 | # CONFIG_HPFS_FS is not set 2581 | # CONFIG_QNX4FS_FS is not set 2582 | # CONFIG_ROMFS_FS is not set 2583 | # CONFIG_PSTORE is not set 2584 | # CONFIG_SYSV_FS is not set 2585 | # CONFIG_UFS_FS is not set 2586 | CONFIG_NETWORK_FILESYSTEMS=y 2587 | CONFIG_NFS_FS=y 2588 | CONFIG_NFS_V3=y 2589 | # CONFIG_NFS_V3_ACL is not set 2590 | CONFIG_NFS_V4=y 2591 | CONFIG_NFS_V4_1=y 2592 | CONFIG_PNFS_FILE_LAYOUT=y 2593 | CONFIG_ROOT_NFS=y 2594 | CONFIG_NFS_FSCACHE=y 2595 | # CONFIG_NFS_USE_LEGACY_DNS is not set 2596 | CONFIG_NFS_USE_KERNEL_DNS=y 2597 | # CONFIG_NFS_USE_NEW_IDMAPPER is not set 2598 | CONFIG_NFSD=y 2599 | CONFIG_NFSD_DEPRECATED=y 2600 | CONFIG_NFSD_V2_ACL=y 2601 | CONFIG_NFSD_V3=y 2602 | CONFIG_NFSD_V3_ACL=y 2603 | CONFIG_NFSD_V4=y 2604 | CONFIG_LOCKD=y 2605 | CONFIG_LOCKD_V4=y 2606 | CONFIG_NFS_ACL_SUPPORT=y 2607 | CONFIG_NFS_COMMON=y 2608 | CONFIG_SUNRPC=y 2609 | CONFIG_SUNRPC_GSS=y 2610 | CONFIG_RPCSEC_GSS_KRB5=m 2611 | # CONFIG_CEPH_FS is not set 2612 | CONFIG_CIFS=m 2613 | # CONFIG_CIFS_STATS is not set 2614 | # CONFIG_CIFS_WEAK_PW_HASH is not set 2615 | # CONFIG_CIFS_UPCALL is not set 2616 | CONFIG_CIFS_XATTR=y 2617 | CONFIG_CIFS_POSIX=y 2618 | # CONFIG_CIFS_DEBUG2 is not set 2619 | # CONFIG_CIFS_DFS_UPCALL is not set 2620 | # CONFIG_CIFS_FSCACHE is not set 2621 | # CONFIG_CIFS_ACL is not set 2622 | # CONFIG_CIFS_EXPERIMENTAL is not set 2623 | # CONFIG_NCP_FS is not set 2624 | # CONFIG_CODA_FS is not set 2625 | # CONFIG_AFS_FS is not set 2626 | 2627 | # 2628 | # Partition Types 2629 | # 2630 | CONFIG_PARTITION_ADVANCED=y 2631 | # CONFIG_ACORN_PARTITION is not set 2632 | # CONFIG_OSF_PARTITION is not set 2633 | # CONFIG_AMIGA_PARTITION is not set 2634 | # CONFIG_ATARI_PARTITION is not set 2635 | # CONFIG_MAC_PARTITION is not set 2636 | CONFIG_MSDOS_PARTITION=y 2637 | # CONFIG_BSD_DISKLABEL is not set 2638 | # CONFIG_MINIX_SUBPARTITION is not set 2639 | # CONFIG_SOLARIS_X86_PARTITION is not set 2640 | # CONFIG_UNIXWARE_DISKLABEL is not set 2641 | # CONFIG_LDM_PARTITION is not set 2642 | # CONFIG_SGI_PARTITION is not set 2643 | # CONFIG_ULTRIX_PARTITION is not set 2644 | # CONFIG_SUN_PARTITION is not set 2645 | # CONFIG_KARMA_PARTITION is not set 2646 | CONFIG_EFI_PARTITION=y 2647 | # CONFIG_SYSV68_PARTITION is not set 2648 | CONFIG_NLS=y 2649 | CONFIG_NLS_DEFAULT="iso8859-1" 2650 | CONFIG_NLS_CODEPAGE_437=y 2651 | # CONFIG_NLS_CODEPAGE_737 is not set 2652 | # CONFIG_NLS_CODEPAGE_775 is not set 2653 | CONFIG_NLS_CODEPAGE_850=y 2654 | # CONFIG_NLS_CODEPAGE_852 is not set 2655 | # CONFIG_NLS_CODEPAGE_855 is not set 2656 | # CONFIG_NLS_CODEPAGE_857 is not set 2657 | # CONFIG_NLS_CODEPAGE_860 is not set 2658 | # CONFIG_NLS_CODEPAGE_861 is not set 2659 | # CONFIG_NLS_CODEPAGE_862 is not set 2660 | # CONFIG_NLS_CODEPAGE_863 is not set 2661 | # CONFIG_NLS_CODEPAGE_864 is not set 2662 | # CONFIG_NLS_CODEPAGE_865 is not set 2663 | # CONFIG_NLS_CODEPAGE_866 is not set 2664 | # CONFIG_NLS_CODEPAGE_869 is not set 2665 | # CONFIG_NLS_CODEPAGE_936 is not set 2666 | # CONFIG_NLS_CODEPAGE_950 is not set 2667 | # CONFIG_NLS_CODEPAGE_932 is not set 2668 | # CONFIG_NLS_CODEPAGE_949 is not set 2669 | # CONFIG_NLS_CODEPAGE_874 is not set 2670 | # CONFIG_NLS_ISO8859_8 is not set 2671 | # CONFIG_NLS_CODEPAGE_1250 is not set 2672 | # CONFIG_NLS_CODEPAGE_1251 is not set 2673 | # CONFIG_NLS_ASCII is not set 2674 | CONFIG_NLS_ISO8859_1=y 2675 | # CONFIG_NLS_ISO8859_2 is not set 2676 | # CONFIG_NLS_ISO8859_3 is not set 2677 | # CONFIG_NLS_ISO8859_4 is not set 2678 | # CONFIG_NLS_ISO8859_5 is not set 2679 | # CONFIG_NLS_ISO8859_6 is not set 2680 | # CONFIG_NLS_ISO8859_7 is not set 2681 | # CONFIG_NLS_ISO8859_9 is not set 2682 | # CONFIG_NLS_ISO8859_13 is not set 2683 | # CONFIG_NLS_ISO8859_14 is not set 2684 | # CONFIG_NLS_ISO8859_15 is not set 2685 | # CONFIG_NLS_KOI8_R is not set 2686 | # CONFIG_NLS_KOI8_U is not set 2687 | CONFIG_NLS_UTF8=m 2688 | 2689 | # 2690 | # Kernel hacking 2691 | # 2692 | CONFIG_PRINTK_TIME=y 2693 | CONFIG_DEFAULT_MESSAGE_LOGLEVEL=4 2694 | # CONFIG_ENABLE_WARN_DEPRECATED is not set 2695 | # CONFIG_ENABLE_MUST_CHECK is not set 2696 | CONFIG_FRAME_WARN=1024 2697 | CONFIG_MAGIC_SYSRQ=y 2698 | # CONFIG_STRIP_ASM_SYMS is not set 2699 | # CONFIG_UNUSED_SYMBOLS is not set 2700 | # CONFIG_DEBUG_FS is not set 2701 | # CONFIG_HEADERS_CHECK is not set 2702 | # CONFIG_DEBUG_SECTION_MISMATCH is not set 2703 | # CONFIG_DEBUG_KERNEL is not set 2704 | # CONFIG_HARDLOCKUP_DETECTOR is not set 2705 | # CONFIG_SLUB_DEBUG_ON is not set 2706 | # CONFIG_SLUB_STATS is not set 2707 | # CONFIG_SPARSE_RCU_POINTER is not set 2708 | CONFIG_DEBUG_BUGVERBOSE=y 2709 | # CONFIG_DEBUG_MEMORY_INIT is not set 2710 | CONFIG_FRAME_POINTER=y 2711 | # CONFIG_SYSCTL_SYSCALL_CHECK is not set 2712 | CONFIG_HAVE_FUNCTION_TRACER=y 2713 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y 2714 | CONFIG_HAVE_DYNAMIC_FTRACE=y 2715 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y 2716 | CONFIG_HAVE_C_RECORDMCOUNT=y 2717 | CONFIG_TRACING_SUPPORT=y 2718 | # CONFIG_FTRACE is not set 2719 | # CONFIG_DMA_API_DEBUG is not set 2720 | # CONFIG_ATOMIC64_SELFTEST is not set 2721 | # CONFIG_ASYNC_RAID6_TEST is not set 2722 | # CONFIG_SAMPLES is not set 2723 | CONFIG_HAVE_ARCH_KGDB=y 2724 | # CONFIG_TEST_KSTRTOX is not set 2725 | # CONFIG_STRICT_DEVMEM is not set 2726 | # CONFIG_ARM_UNWIND is not set 2727 | # CONFIG_DEBUG_USER is not set 2728 | # CONFIG_OC_ETM is not set 2729 | 2730 | # 2731 | # Security options 2732 | # 2733 | CONFIG_KEYS=y 2734 | # CONFIG_KEYS_DEBUG_PROC_KEYS is not set 2735 | # CONFIG_SECURITY_DMESG_RESTRICT is not set 2736 | # CONFIG_SECURITY is not set 2737 | # CONFIG_SECURITYFS is not set 2738 | CONFIG_DEFAULT_SECURITY_DAC=y 2739 | CONFIG_DEFAULT_SECURITY="" 2740 | CONFIG_XOR_BLOCKS=m 2741 | CONFIG_ASYNC_CORE=m 2742 | CONFIG_ASYNC_MEMCPY=m 2743 | CONFIG_ASYNC_XOR=m 2744 | CONFIG_ASYNC_PQ=m 2745 | CONFIG_ASYNC_RAID6_RECOV=m 2746 | CONFIG_CRYPTO=y 2747 | 2748 | # 2749 | # Crypto core or helper 2750 | # 2751 | CONFIG_CRYPTO_ALGAPI=y 2752 | CONFIG_CRYPTO_ALGAPI2=y 2753 | CONFIG_CRYPTO_AEAD=m 2754 | CONFIG_CRYPTO_AEAD2=y 2755 | CONFIG_CRYPTO_BLKCIPHER=y 2756 | CONFIG_CRYPTO_BLKCIPHER2=y 2757 | CONFIG_CRYPTO_HASH=y 2758 | CONFIG_CRYPTO_HASH2=y 2759 | CONFIG_CRYPTO_RNG=m 2760 | CONFIG_CRYPTO_RNG2=y 2761 | CONFIG_CRYPTO_PCOMP=m 2762 | CONFIG_CRYPTO_PCOMP2=y 2763 | CONFIG_CRYPTO_MANAGER=y 2764 | CONFIG_CRYPTO_MANAGER2=y 2765 | CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y 2766 | CONFIG_CRYPTO_GF128MUL=m 2767 | # CONFIG_CRYPTO_NULL is not set 2768 | CONFIG_CRYPTO_WORKQUEUE=y 2769 | CONFIG_CRYPTO_CRYPTD=m 2770 | CONFIG_CRYPTO_AUTHENC=m 2771 | # CONFIG_CRYPTO_TEST is not set 2772 | 2773 | # 2774 | # Authenticated Encryption with Associated Data 2775 | # 2776 | CONFIG_CRYPTO_CCM=m 2777 | CONFIG_CRYPTO_GCM=m 2778 | CONFIG_CRYPTO_SEQIV=m 2779 | 2780 | # 2781 | # Block modes 2782 | # 2783 | CONFIG_CRYPTO_CBC=y 2784 | CONFIG_CRYPTO_CTR=m 2785 | CONFIG_CRYPTO_CTS=m 2786 | CONFIG_CRYPTO_ECB=m 2787 | CONFIG_CRYPTO_LRW=m 2788 | CONFIG_CRYPTO_PCBC=m 2789 | CONFIG_CRYPTO_XTS=m 2790 | 2791 | # 2792 | # Hash modes 2793 | # 2794 | CONFIG_CRYPTO_HMAC=m 2795 | CONFIG_CRYPTO_XCBC=m 2796 | CONFIG_CRYPTO_VMAC=m 2797 | 2798 | # 2799 | # Digest 2800 | # 2801 | CONFIG_CRYPTO_CRC32C=m 2802 | CONFIG_CRYPTO_GHASH=m 2803 | CONFIG_CRYPTO_MD4=m 2804 | CONFIG_CRYPTO_MD5=y 2805 | CONFIG_CRYPTO_MICHAEL_MIC=m 2806 | CONFIG_CRYPTO_RMD128=m 2807 | CONFIG_CRYPTO_RMD160=m 2808 | CONFIG_CRYPTO_RMD256=m 2809 | CONFIG_CRYPTO_RMD320=m 2810 | CONFIG_CRYPTO_SHA1=m 2811 | CONFIG_CRYPTO_SHA256=m 2812 | CONFIG_CRYPTO_SHA512=m 2813 | CONFIG_CRYPTO_TGR192=m 2814 | CONFIG_CRYPTO_WP512=m 2815 | 2816 | # 2817 | # Ciphers 2818 | # 2819 | CONFIG_CRYPTO_AES=m 2820 | CONFIG_CRYPTO_ANUBIS=m 2821 | CONFIG_CRYPTO_ARC4=m 2822 | CONFIG_CRYPTO_BLOWFISH=m 2823 | CONFIG_CRYPTO_CAMELLIA=m 2824 | CONFIG_CRYPTO_CAST5=m 2825 | CONFIG_CRYPTO_CAST6=m 2826 | CONFIG_CRYPTO_DES=y 2827 | CONFIG_CRYPTO_FCRYPT=m 2828 | CONFIG_CRYPTO_KHAZAD=m 2829 | CONFIG_CRYPTO_SALSA20=m 2830 | CONFIG_CRYPTO_SEED=m 2831 | CONFIG_CRYPTO_SERPENT=m 2832 | CONFIG_CRYPTO_TEA=m 2833 | CONFIG_CRYPTO_TWOFISH=m 2834 | CONFIG_CRYPTO_TWOFISH_COMMON=m 2835 | 2836 | # 2837 | # Compression 2838 | # 2839 | CONFIG_CRYPTO_DEFLATE=m 2840 | CONFIG_CRYPTO_ZLIB=m 2841 | CONFIG_CRYPTO_LZO=m 2842 | 2843 | # 2844 | # Random Number Generation 2845 | # 2846 | CONFIG_CRYPTO_ANSI_CPRNG=m 2847 | # CONFIG_CRYPTO_USER_API_HASH is not set 2848 | # CONFIG_CRYPTO_USER_API_SKCIPHER is not set 2849 | CONFIG_CRYPTO_HW=y 2850 | CONFIG_CRYPTO_DEV_MV_CESA=m 2851 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set 2852 | # CONFIG_BINARY_PRINTF is not set 2853 | 2854 | # 2855 | # Library routines 2856 | # 2857 | CONFIG_RAID6_PQ=m 2858 | CONFIG_BITREVERSE=y 2859 | CONFIG_GENERIC_FIND_LAST_BIT=y 2860 | CONFIG_CRC_CCITT=m 2861 | CONFIG_CRC16=m 2862 | # CONFIG_CRC_T10DIF is not set 2863 | CONFIG_CRC_ITU_T=y 2864 | CONFIG_CRC32=y 2865 | # CONFIG_CRC7 is not set 2866 | CONFIG_LIBCRC32C=m 2867 | CONFIG_ZLIB_INFLATE=y 2868 | CONFIG_ZLIB_DEFLATE=m 2869 | CONFIG_LZO_COMPRESS=m 2870 | CONFIG_LZO_DECOMPRESS=m 2871 | # CONFIG_XZ_DEC is not set 2872 | # CONFIG_XZ_DEC_BCJ is not set 2873 | CONFIG_DECOMPRESS_GZIP=y 2874 | CONFIG_TEXTSEARCH=y 2875 | CONFIG_TEXTSEARCH_KMP=m 2876 | CONFIG_TEXTSEARCH_BM=m 2877 | CONFIG_TEXTSEARCH_FSM=m 2878 | CONFIG_HAS_IOMEM=y 2879 | CONFIG_HAS_IOPORT=y 2880 | CONFIG_HAS_DMA=y 2881 | CONFIG_NLATTR=y 2882 | CONFIG_GENERIC_ATOMIC64=y 2883 | CONFIG_AVERAGE=y 2884 | -------------------------------------------------------------------------------- /reference/buildkernel-b3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakaki-/gentoo-on-b3/0967462e7513e6d4f7ebe157cd35e344862588fb/reference/buildkernel-b3.pdf -------------------------------------------------------------------------------- /reference/fstab-on-b3: -------------------------------------------------------------------------------- 1 | # /etc/fstab: static file system information. 2 | # 3 | # noatime turns off atimes for increased performance (atimes normally aren't 4 | # needed); notail increases performance of ReiserFS (at the expense of storage 5 | # efficiency). It's safe to drop the noatime options if you want and to 6 | # switch between notail / tail freely. 7 | # 8 | # The root filesystem should have a pass number of either 0 or 1. 9 | # All other filesystems should have a pass number of 0 or greater than 1. 10 | # 11 | # See the manpage fstab(5) for more information. 12 | # 13 | 14 | # 15 | 16 | # NOTE: If your BOOT partition is ReiserFS, add the notail option to opts. 17 | /dev/sda1 /boot ext3 noatime 0 2 18 | /dev/sda2 none swap sw 0 0 19 | /dev/sda3 / ext4 noatime 0 1 20 | -------------------------------------------------------------------------------- /reference/fstab-on-live-usb: -------------------------------------------------------------------------------- 1 | # /etc/fstab: static file system information. 2 | # 3 | # noatime turns off atimes for increased performance (atimes normally aren't 4 | # needed); notail increases performance of ReiserFS (at the expense of storage 5 | # efficiency). It's safe to drop the noatime options if you want and to 6 | # switch between notail / tail freely. 7 | # 8 | # The root filesystem should have a pass number of either 0 or 1. 9 | # All other filesystems should have a pass number of 0 or greater than 1. 10 | # 11 | # See the manpage fstab(5) for more information. 12 | # 13 | 14 | # 15 | 16 | # NOTE: If your BOOT partition is ReiserFS, add the notail option to opts. 17 | UUID=EED5-410D /boot vfat noatime 0 2 18 | UUID=60a17af4-db8e-484e-b9eb-251d2423e315 none swap sw 0 0 19 | UUID=232f3fd4-6b37-406d-bb5c-c96674ceefac / ext4 noatime 0 1 20 | -------------------------------------------------------------------------------- /reference/genup.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakaki-/gentoo-on-b3/0967462e7513e6d4f7ebe157cd35e344862588fb/reference/genup.pdf -------------------------------------------------------------------------------- /reference/installed-packages: -------------------------------------------------------------------------------- 1 | app-admin/apache-tools-2.4.34 2 | app-admin/eselect-1.4.12 3 | app-admin/logrotate-3.14.0 4 | app-admin/perl-cleaner-2.25 5 | app-admin/sudo-1.8.23-r2 6 | app-admin/syslog-ng-3.7.3 7 | app-arch/bzip2-1.0.6-r10 8 | app-arch/cpio-2.12-r1 9 | app-arch/gzip-1.8 10 | app-arch/libarchive-3.3.1 11 | app-arch/rpm2targz-9.0.0.5g 12 | app-arch/tar-1.30 13 | app-arch/unzip-6.0_p21-r2 14 | app-arch/xz-utils-5.2.3 15 | app-arch/zip-3.0-r3 16 | app-crypt/gentoo-keys-201807020151 17 | app-crypt/gnupg-2.2.8 18 | app-crypt/mit-krb5-1.16-r2 19 | app-crypt/openpgp-keys-gentoo-release-20180706 20 | app-crypt/pinentry-1.0.0-r2 21 | app-crypt/rhash-1.3.6-r1 22 | app-doc/xmltoman-0.4 23 | app-editors/nano-2.8.7 24 | app-eselect/eselect-fontconfig-1.0 25 | app-eselect/eselect-lib-bin-symlink-0.1.1 26 | app-eselect/eselect-php-0.9.4-r5 27 | app-eselect/eselect-pinentry-0.7 28 | app-eselect/eselect-python-20171204 29 | app-misc/c_rehash-1.7-r1 30 | app-misc/ca-certificates-20170717.3.36.1 31 | app-misc/editor-wrapper-4 32 | app-misc/mime-types-9 33 | app-misc/pax-utils-1.2.3 34 | app-misc/screen-4.6.1 35 | app-portage/eix-0.32.9 36 | app-portage/elt-patches-20170815 37 | app-portage/euses-2.5.9 38 | app-portage/gemato-14.0 39 | app-portage/gentoolkit-0.4.2-r1 40 | app-portage/genup-1.0.16 41 | app-portage/layman-2.4.2-r1 42 | app-portage/mirrorselect-2.2.3 43 | app-portage/portage-utils-0.64 44 | app-portage/porthash-1.0.7 45 | app-portage/showem-1.0.3 46 | app-shells/bash-4.4_p12 47 | app-shells/push-2.0-r1 48 | app-shells/quoter-3.0_p2-r1 49 | app-text/build-docbook-catalog-1.21 50 | app-text/docbook-xml-dtd-4.1.2-r6 51 | app-text/docbook-xml-dtd-4.2-r2 52 | app-text/docbook-xml-dtd-4.5-r1 53 | app-text/docbook-xsl-stylesheets-1.79.1-r2 54 | app-text/ghostscript-gpl-9.21 55 | app-text/libpaper-1.1.24-r2 56 | app-text/manpager-1 57 | app-text/openjade-1.3.2-r7 58 | app-text/opensp-1.5.2-r3 59 | app-text/po4a-0.47-r1 60 | app-text/poppler-0.62.0-r1 61 | app-text/poppler-data-0.4.7 62 | app-text/qpdf-7.0.0 63 | app-text/sgml-common-0.6.3-r6 64 | dev-db/lmdb-0.9.18 65 | dev-db/mariadb-10.1.34 66 | dev-db/mysql-connector-c-6.1.11-r1 67 | dev-db/mysql-init-scripts-2.2-r3 68 | dev-db/sqlite-3.23.1 69 | dev-db/unixODBC-2.3.5-r1 70 | dev-embedded/u-boot-tools-2018.05 71 | dev-lang/perl-5.24.3-r1 72 | dev-lang/php-7.1.18 73 | dev-lang/python-2.7.14-r1 74 | dev-lang/python-3.6.5 75 | dev-lang/python-exec-2.4.5 76 | dev-lang/spidermonkey-1.8.5-r6 77 | dev-lang/swig-3.0.12 78 | dev-libs/apr-1.5.2 79 | dev-libs/apr-util-1.5.4 80 | dev-libs/boost-1.65.0 81 | dev-libs/check-0.12.0 82 | dev-libs/elfutils-0.170-r1 83 | dev-libs/eventlog-0.2.12 84 | dev-libs/expat-2.2.5 85 | dev-libs/glib-2.52.3 86 | dev-libs/gmp-6.1.2 87 | dev-libs/gobject-introspection-1.52.1 88 | dev-libs/gobject-introspection-common-1.52.1 89 | dev-libs/icu-60.2 90 | dev-libs/iniparser-3.1-r1 91 | dev-libs/libaio-0.3.110 92 | dev-libs/libassuan-2.5.1 93 | dev-libs/libbsd-0.8.6 94 | dev-libs/libdaemon-0.14-r3 95 | dev-libs/libev-4.23 96 | dev-libs/libevent-2.1.8 97 | dev-libs/libffi-3.2.1 98 | dev-libs/libgcrypt-1.8.3 99 | dev-libs/libgpg-error-1.29 100 | dev-libs/libksba-1.3.5-r1 101 | dev-libs/libltdl-2.4.6 102 | dev-libs/libmcrypt-2.5.8-r4 103 | dev-libs/libnl-3.4.0 104 | dev-libs/libpcre-8.41-r1 105 | dev-libs/libpcre2-10.30 106 | dev-libs/libpipeline-1.4.2 107 | dev-libs/libtasn1-4.13 108 | dev-libs/libunistring-0.9.7 109 | dev-libs/libusb-1.0.21 110 | dev-libs/libverto-0.2.5-r1 111 | dev-libs/libxml2-2.9.8 112 | dev-libs/libxslt-1.1.32 113 | dev-libs/lzo-2.10 114 | dev-libs/mpc-1.0.3 115 | dev-libs/mpfr-3.1.6 116 | dev-libs/nettle-3.4 117 | dev-libs/npth-1.3 118 | dev-libs/nspr-4.13.1 119 | dev-libs/oniguruma-6.8.2 120 | dev-libs/openssl-1.0.2o-r6 121 | dev-libs/popt-1.16-r2 122 | dev-perl/Authen-SASL-2.160.0-r1 123 | dev-perl/DBD-mysql-4.44.0 124 | dev-perl/DBI-1.637.0 125 | dev-perl/Digest-HMAC-1.30.0-r1 126 | dev-perl/Error-0.170.240 127 | dev-perl/IO-Socket-SSL-2.48.0 128 | dev-perl/Locale-gettext-1.70.0 129 | dev-perl/Module-Build-0.422.400 130 | dev-perl/Net-Daemon-0.480.0-r2 131 | dev-perl/Net-SMTP-SSL-1.40.0 132 | dev-perl/Net-SSLeay-1.820.0 133 | dev-perl/PlRPC-0.202.0-r3 134 | dev-perl/SGMLSpm-1.1-r1 135 | dev-perl/Socket6-0.280.0 136 | dev-perl/TermReadKey-2.330.0 137 | dev-perl/Text-CharWidth-0.40.0-r1 138 | dev-perl/Text-Unidecode-1.270.0 139 | dev-perl/Text-WrapI18N-0.60.0-r1 140 | dev-perl/Unicode-EastAsianWidth-1.330.0-r1 141 | dev-perl/XML-Parser-2.440.0 142 | dev-perl/libintl-perl-1.280.0 143 | dev-php/PEAR-Archive_Tar-1.4.2-r2 144 | dev-php/PEAR-Auth_SASL-1.1.0 145 | dev-php/PEAR-Console_CommandLine-1.2.2 146 | dev-php/PEAR-Console_Getopt-1.4.1-r1 147 | dev-php/PEAR-Crypt_GPG-1.6.2 148 | dev-php/PEAR-Exception-1.0.0 149 | dev-php/PEAR-MDB2-2.5.0_beta5-r1 150 | dev-php/PEAR-Mail_Mime-1.10.2-r1 151 | dev-php/PEAR-Net_IDNA2-0.2.0 152 | dev-php/PEAR-Net_SMTP-1.7.2-r3 153 | dev-php/PEAR-Net_Sieve-1.5.2-r1 154 | dev-php/PEAR-Net_Socket-1.2.2 155 | dev-php/PEAR-PEAR-1.10.5 156 | dev-php/PEAR-Structures_Graph-1.1.1-r1 157 | dev-php/PEAR-XML_Util-1.4.2 158 | dev-php/pear-1.10.1-r1 159 | dev-python/PySocks-1.6.7 160 | dev-python/asn1crypto-0.22.0 161 | dev-python/bz2file-0.98 162 | dev-python/certifi-2018.4.16 163 | dev-python/cffi-1.11.4 164 | dev-python/chardet-3.0.4 165 | dev-python/cryptography-2.2.2-r1 166 | dev-python/enum34-1.1.6 167 | dev-python/extras-1.0.0 168 | dev-python/fixtures-3.0.0 169 | dev-python/idna-2.5 170 | dev-python/ipaddress-1.0.19 171 | dev-python/linecache2-1.0.0 172 | dev-python/m2crypto-0.24.0 173 | dev-python/mimeparse-1.6.0 174 | dev-python/ndg-httpsclient-0.4.0 175 | dev-python/pbr-3.1.1 176 | dev-python/ply-3.9 177 | dev-python/pyasn1-0.2.3 178 | dev-python/pyblake2-1.1.2 179 | dev-python/pycparser-2.14 180 | dev-python/pyopenssl-17.5.0 181 | dev-python/pyrsistent-0.14.2 182 | dev-python/pyxattr-0.6.0-r1 183 | dev-python/requests-2.18.4-r1 184 | dev-python/setuptools-36.7.2 185 | dev-python/six-1.11.0 186 | dev-python/ssl-fetch-0.4 187 | dev-python/subunit-1.2.0-r1 188 | dev-python/testtools-2.3.0 189 | dev-python/traceback2-1.4.0 190 | dev-python/unittest2-1.1.0 191 | dev-python/urllib3-1.22 192 | dev-util/boost-build-1.65.0 193 | dev-util/cmake-3.9.6 194 | dev-util/cppunit-1.14.0 195 | dev-util/desktop-file-utils-0.23 196 | dev-util/dialog-1.3.20170131 197 | dev-util/gdbus-codegen-2.52.3 198 | dev-util/gperf-3.1 199 | dev-util/gtk-doc-am-1.25-r1 200 | dev-util/intltool-0.51.0-r2 201 | dev-util/meson-0.46.1 202 | dev-util/ninja-1.8.2 203 | dev-util/pkgconfig-0.29.2 204 | dev-util/re2c-0.16 205 | dev-vcs/git-2.16.4 206 | mail-mta/postfix-3.2.4 207 | media-fonts/dejavu-2.37 208 | media-fonts/urw-fonts-2.4.9 209 | media-libs/flac-1.3.2-r1 210 | media-libs/fontconfig-2.12.6 211 | media-libs/freetype-2.9.1-r3 212 | media-libs/jbig2dec-0.13-r4 213 | media-libs/lcms-2.9 214 | media-libs/libexif-0.6.21-r1 215 | media-libs/libid3tag-0.15.1b-r4 216 | media-libs/libjpeg-turbo-1.5.3-r2 217 | media-libs/libmp4v2-2.0.0 218 | media-libs/libogg-1.3.3 219 | media-libs/libpng-1.6.34 220 | media-libs/libvorbis-1.3.6 221 | media-libs/openjpeg-2.3.0 222 | media-libs/taglib-1.11.1-r1 223 | media-libs/tiff-4.0.9-r3 224 | media-video/ffmpeg-3.4.4 225 | net-analyzer/netselect-0.3-r3 226 | net-analyzer/tcpdump-4.9.2 227 | net-dialup/lrzsz-0.12.20-r3 228 | net-dns/avahi-0.7-r1 229 | net-dns/dnsmasq-2.79 230 | net-dns/libidn-1.35 231 | net-dns/libidn2-2.0.4 232 | net-firewall/iptables-1.6.1-r3 233 | net-firewall/shorewall-5.2.0.5 234 | net-fs/samba-4.5.16 235 | net-ftp/ftpbase-0.01-r2 236 | net-ftp/proftpd-1.3.5e 237 | net-libs/c-client-2007f-r6 238 | net-libs/gnutls-3.5.19 239 | net-libs/libmnl-1.0.4 240 | net-libs/libnsl-1.2.0 241 | net-libs/libpcap-1.8.1 242 | net-libs/libtirpc-1.0.2-r1 243 | net-mail/dovecot-2.2.34 244 | net-mail/mailbase-1.1 245 | net-misc/bridge-utils-1.5 246 | net-misc/curl-7.61.0 247 | net-misc/dhcpcd-7.0.1 248 | net-misc/iputils-20171016_pre 249 | net-misc/mediatomb-0.12.2_pre20160522 250 | net-misc/minidlna-1.2.1 251 | net-misc/netifrc-0.5.1 252 | net-misc/ntp-4.2.8_p11 253 | net-misc/openssh-7.7_p1-r9 254 | net-misc/rsync-3.1.3 255 | net-misc/vconfig-1.9 256 | net-misc/wget-1.19.5 257 | net-nds/openldap-2.4.44 258 | net-print/cups-2.2.7 259 | net-print/cups-filters-1.17.9 260 | net-print/cups-pdf-3.0.1 261 | net-vpn/openvpn-2.4.6 262 | net-wireless/crda-3.18-r1 263 | net-wireless/hostapd-2.0-r1 264 | net-wireless/iw-4.9 265 | net-wireless/wireless-regdb-20180531 266 | net-wireless/wireless-tools-30_pre9 267 | perl-core/File-Path-2.130.0 268 | perl-core/File-Temp-0.230.400-r1 269 | sys-apps/acl-2.2.52-r1 270 | sys-apps/attr-2.4.47-r2 271 | sys-apps/b3-init-scripts-1.0.8-r1 272 | sys-apps/baselayout-2.4.1-r2 273 | sys-apps/busybox-1.29.0 274 | sys-apps/coreutils-8.28-r1 275 | sys-apps/debianutils-4.8.3 276 | sys-apps/diffutils-3.6-r1 277 | sys-apps/ethtool-4.13 278 | sys-apps/file-5.33-r4 279 | sys-apps/findutils-4.6.0-r1 280 | sys-apps/gawk-4.1.4 281 | sys-apps/gentoo-functions-0.12 282 | sys-apps/grep-3.0 283 | sys-apps/groff-1.22.2 284 | sys-apps/haveged-1.9.2-r1 285 | sys-apps/help2man-1.47.4 286 | sys-apps/hwids-20171003 287 | sys-apps/hwinfo-21.23 288 | sys-apps/install-xattr-0.5 289 | sys-apps/iproute2-4.14.1-r2 290 | sys-apps/kbd-2.0.4 291 | sys-apps/keyutils-1.5.9-r4 292 | sys-apps/kmod-24 293 | sys-apps/less-529 294 | sys-apps/man-db-2.7.6.1-r2 295 | sys-apps/man-pages-4.15 296 | sys-apps/man-pages-posix-2013a 297 | sys-apps/mlocate-0.26-r2 298 | sys-apps/net-tools-1.60_p20161110235919 299 | sys-apps/openrc-0.34.11 300 | sys-apps/opentmpfiles-0.1.3 301 | sys-apps/pciutils-3.5.6 302 | sys-apps/portage-2.3.49 303 | sys-apps/sandbox-2.13 304 | sys-apps/sed-4.5 305 | sys-apps/shadow-4.6 306 | sys-apps/sysvinit-2.88-r9 307 | sys-apps/tcp-wrappers-7.6.22-r1 308 | sys-apps/texinfo-6.3 309 | sys-apps/usbutils-009 310 | sys-apps/util-linux-2.32-r4 311 | sys-apps/which-2.21 312 | sys-auth/pambase-20150213-r1 313 | sys-devel/autoconf-2.13 314 | sys-devel/autoconf-2.69-r4 315 | sys-devel/autoconf-wrapper-13-r1 316 | sys-devel/automake-1.11.6-r3 317 | sys-devel/automake-1.15.1-r2 318 | sys-devel/automake-wrapper-10 319 | sys-devel/bc-1.06.95-r2 320 | sys-devel/binutils-2.30-r2 321 | sys-devel/binutils-config-5-r4 322 | sys-devel/bison-3.0.4-r1 323 | sys-devel/distcc-3.2_rc1-r4 324 | sys-devel/flex-2.6.4-r1 325 | sys-devel/gcc-7.3.0-r3 326 | sys-devel/gcc-config-1.8-r1 327 | sys-devel/gettext-0.19.8.1 328 | sys-devel/gnuconfig-20170101 329 | sys-devel/libtool-2.4.6-r3 330 | sys-devel/m4-1.4.17 331 | sys-devel/make-4.2.1-r4 332 | sys-devel/patch-2.7.6-r2 333 | sys-fs/dosfstools-4.0-r1 334 | sys-fs/e2fsprogs-1.43.9 335 | sys-fs/mtd-utils-1.5.2 336 | sys-fs/udev-238 337 | sys-fs/udev-init-scripts-32 338 | sys-kernel/buildkernel-b3-1.0.6 339 | sys-kernel/gentoo-b3-kernel-bin-4.18.5 340 | sys-kernel/linux-headers-4.17 341 | sys-libs/cracklib-2.9.6-r1 342 | sys-libs/db-5.3.28-r2 343 | sys-libs/e2fsprogs-libs-1.43.9 344 | sys-libs/gdbm-1.13-r2 345 | sys-libs/glibc-2.26-r7 346 | sys-libs/ldb-1.1.29-r1 347 | sys-libs/libcap-2.25 348 | sys-libs/libcap-ng-0.7.8 349 | sys-libs/libseccomp-2.3.3 350 | sys-libs/ncurses-6.1-r3 351 | sys-libs/pam-1.2.1-r2 352 | sys-libs/readline-7.0_p3 353 | sys-libs/talloc-2.1.9 354 | sys-libs/tdb-1.3.13 355 | sys-libs/tevent-0.9.31-r1 356 | sys-libs/timezone-data-2018e 357 | sys-libs/zlib-1.2.11-r2 358 | sys-power/bubba-buttond-1.4-r3 359 | sys-process/cronbase-0.3.7-r6 360 | sys-process/cronie-1.5.1-r1 361 | sys-process/lsof-4.89 362 | sys-process/procps-3.3.15-r1 363 | sys-process/psmisc-23.1-r1 364 | virtual/acl-0-r2 365 | virtual/cron-0-r1 366 | virtual/dev-manager-0-r1 367 | virtual/editor-0-r1 368 | virtual/ffmpeg-9-r2 369 | virtual/imap-c-client-2 370 | virtual/jpeg-0-r2 371 | virtual/libc-1 372 | virtual/libelf-3 373 | virtual/libffi-3.0.13-r1 374 | virtual/libiconv-0-r2 375 | virtual/libintl-0-r2 376 | virtual/libmysqlclient-18 377 | virtual/libudev-232 378 | virtual/libusb-1-r1 379 | virtual/man-0-r1 380 | virtual/modutils-0 381 | virtual/mta-1 382 | virtual/os-headers-0 383 | virtual/package-manager-1 384 | virtual/pager-0 385 | virtual/pam-0-r1 386 | virtual/perl-CPAN-Meta-2.150.5-r1 387 | virtual/perl-CPAN-Meta-YAML-0.18.0-r3 388 | virtual/perl-Data-Dumper-2.160.0-r1 389 | virtual/perl-Digest-MD5-2.540.0-r3 390 | virtual/perl-Digest-SHA-5.950.100_rc-r6 391 | virtual/perl-ExtUtils-CBuilder-0.280.225-r2 392 | virtual/perl-ExtUtils-Install-2.40.0-r3 393 | virtual/perl-ExtUtils-MakeMaker-7.100.200_rc-r4 394 | virtual/perl-ExtUtils-Manifest-1.700.0-r5 395 | virtual/perl-ExtUtils-ParseXS-3.310.0-r1 396 | virtual/perl-File-Path-2.130.0 397 | virtual/perl-File-Spec-3.630.100_rc-r4 398 | virtual/perl-File-Temp-0.230.400-r5 399 | virtual/perl-Getopt-Long-2.480.0-r1 400 | virtual/perl-JSON-PP-2.273.0.100_rc-r6 401 | virtual/perl-MIME-Base64-3.150.0-r4 402 | virtual/perl-Module-Metadata-1.0.31-r1 403 | virtual/perl-Parse-CPAN-Meta-1.441.700.100_rc-r4 404 | virtual/perl-Perl-OSType-1.9.0-r1 405 | virtual/perl-Scalar-List-Utils-1.420.200_rc-r1 406 | virtual/perl-Storable-2.560.100_rc-r4 407 | virtual/perl-Sys-Syslog-0.330.100_rc-r6 408 | virtual/perl-Term-ANSIColor-4.40.0-r1 409 | virtual/perl-Test-Harness-3.360.100_rc-r3 410 | virtual/perl-Text-ParseWords-3.300.0-r4 411 | virtual/perl-Time-HiRes-1.974.100-r2 412 | virtual/perl-libnet-3.80.100_rc-r4 413 | virtual/perl-podlators-4.70.0-r1 414 | virtual/perl-version-0.991.600-r1 415 | virtual/pkgconfig-0-r1 416 | virtual/python-ipaddress-1.0-r1 417 | virtual/service-manager-0 418 | virtual/shadow-0 419 | virtual/ssh-0 420 | virtual/tmpfiles-0 421 | virtual/ttf-fonts-1-r1 422 | virtual/udev-217 423 | virtual/yacc-0 424 | www-servers/apache-2.4.34-r2 425 | x11-misc/shared-mime-info-1.9 426 | -------------------------------------------------------------------------------- /reference/interstitial-init-on-b3: -------------------------------------------------------------------------------- 1 | #!/bin/busybox sh 2 | # Attempt to mount boot partition and source KSCRIPT within it. 3 | # Copyright (c) 2016 sakaki 4 | # License: GPL 3.0+ 5 | # NO WARRANTY 6 | 7 | # Simple init script to source /boot/kexec.sh 8 | # (the sourced script should setup and then kexec -e the final 9 | # target kernel) 10 | # If an error occurs, starts recovery console 11 | 12 | BOOT_PATH="/dev/sda1" 13 | DELAY=5 14 | # We will try and exec the following script on the boot partition 15 | KSCRIPT="/boot/kexec.sh" 16 | 17 | show_red_led() { 18 | # turn off green and blue LEDs 19 | echo -n 0 > /sys/class/leds/bubba3\:green\:programming/brightness 20 | echo -n 0 > /sys/class/leds/bubba3\:blue\:active/brightness 21 | # turn on the red (error) LED 22 | cat /sys/class/leds/bubba3\:red\:error/max_brightness > \ 23 | /sys/class/leds/bubba3\:red\:error/brightness 24 | } 25 | 26 | start_mini_udev() { 27 | echo "Starting mini udev..." 28 | echo "/sbin/mdev" > /proc/sys/kernel/hotplug 29 | mdev -s 30 | } 31 | 32 | error_exit() { 33 | # light the red led 34 | show_red_led 35 | echo "Starting recovery shell on serial console..." >&2 36 | exec /bin/busybox sh -i 37 | } 38 | 39 | # Mount the /proc and /sys filesystems. 40 | /bin/busybox mount -t proc none /proc 41 | /bin/busybox mount -t sysfs none /sys 42 | /bin/busybox mount -t devpts none /dev/pts 43 | 44 | # ensure all symlinks are present 45 | /bin/busybox --install -s 46 | 47 | # start udev 48 | start_mini_udev 49 | sleep "${DELAY}" 50 | 51 | echo "Mounting boot filesystem (read only)..." 52 | if ! mount -o ro "${BOOT_PATH}" /boot; then 53 | echo "Error - failed to mount ${BOOT_PATH}!" >&2 54 | error_exit 55 | fi 56 | if [ -f "${KSCRIPT}" ]; then 57 | echo "Sourcing ${KSCRIPT}..." 58 | source "${KSCRIPT}" 59 | else 60 | echo "Error - ${KSCRIPT} not found!" >&2 61 | error_exit 62 | fi 63 | # should not get here, KSCRIPT should have kexec'd a new kernel 64 | echo "Error - ${KSCRIPT} has returned!" >&2 65 | error_exit 66 | 67 | -------------------------------------------------------------------------------- /reference/interstitial-init-on-live-usb: -------------------------------------------------------------------------------- 1 | #!/bin/busybox sh 2 | # Attempt to mount boot partition and source KSCRIPT within it. 3 | # Copyright (c) 2016 sakaki 4 | # License: GPL 3.0+ 5 | # NO WARRANTY 6 | 7 | # Simple init script to source /boot/kexec.sh 8 | # (the sourced script should setup and then kexec -e the final 9 | # target kernel) 10 | # If the specified partition cannot be found, starts recovery console 11 | 12 | BOOT_DESC="UUID=EED5-410D" 13 | DELAY=5 14 | # We will try and exec the following script on the boot partition 15 | KSCRIPT="/boot/kexec.sh" 16 | 17 | show_red_led() { 18 | # turn off green and blue LEDs 19 | echo -n 0 > /sys/class/leds/bubba3\:green\:programming/brightness 20 | echo -n 0 > /sys/class/leds/bubba3\:blue\:active/brightness 21 | # turn on the red (error) LED 22 | cat /sys/class/leds/bubba3\:red\:error/max_brightness > \ 23 | /sys/class/leds/bubba3\:red\:error/brightness 24 | } 25 | 26 | start_mini_udev() { 27 | echo "Starting mini udev..." 28 | echo "/sbin/mdev" > /proc/sys/kernel/hotplug 29 | mdev -s 30 | } 31 | 32 | error_exit() { 33 | # light the red led 34 | show_red_led 35 | echo "Starting recovery shell on serial console..." >&2 36 | exec /bin/busybox sh -i 37 | } 38 | 39 | # Mount the /proc and /sys filesystems. 40 | /bin/busybox mount -t proc none /proc 41 | /bin/busybox mount -t sysfs none /sys 42 | /bin/busybox mount -t devpts none /dev/pts 43 | 44 | # ensure all symlinks are present 45 | /bin/busybox --install -s 46 | 47 | # start udev 48 | start_mini_udev 49 | sleep "${DELAY}" 50 | 51 | echo "Trying to locate partition ${BOOT_DESC}..." 52 | if ! BOOT_PATH="$(findfs "${BOOT_DESC}")"; then 53 | echo "Error - could not find ${BOOT_DESC}!" >&2 54 | error_exit 55 | fi 56 | echo "Mounting boot filesystem (read only)..." 57 | if ! mount -o ro "${BOOT_PATH}" /boot; then 58 | echo "Error - failed to mount ${BOOT_PATH}!" >&2 59 | error_exit 60 | fi 61 | if [ -f "${KSCRIPT}" ]; then 62 | echo "Sourcing ${KSCRIPT}..." 63 | source "${KSCRIPT}" 64 | else 65 | echo "Error - ${KSCRIPT} not found!" >&2 66 | error_exit 67 | fi 68 | # should not get here, KSCRIPT should have kexec'd a new kernel 69 | echo "Error - ${KSCRIPT} has returned!" >&2 70 | error_exit 71 | -------------------------------------------------------------------------------- /reference/kexec-on-b3.sh: -------------------------------------------------------------------------------- 1 | # Copyright (c) 2015-7 sakaki 2 | # License: GPL 3.0+ 3 | # NO WARRANTY 4 | 5 | # This script fragment will be sourced by the initial (boot) kernel's 6 | # init script; it must in turn load the DTB and final (target) kernel, 7 | # setup the kernel command line, and finally pass control over to the 8 | # new kernel with kexec -e. 9 | # Remember that this script is running in a fairly minimal busybox 10 | # environment, and that the shell is ash, not bash. 11 | 12 | # On entry, /boot is already mounted (read-only). 13 | 14 | # adjust the following to suit your system... 15 | ROOT="/dev/sda3" 16 | ROOTSPEC="rootfstype=ext4" 17 | CONSOLE="console=ttyS0,115200n8 earlyprintk" 18 | INITRAMFS="/boot/initramfs-linux.img" 19 | DTB="/boot/kirkwood-b3.dtb" 20 | 21 | echo "Ensuring Ethernet NICs are preserved..." 22 | # set temporary spoof addresses, see 23 | # https://forum.excito.com/viewtopic.php?p=28845#p28845 24 | ifconfig eth0 10.250.251.252 netmask 255.255.255.255 25 | ifconfig eth1 10.250.251.253 netmask 255.255.255.255 26 | 27 | # use the patched DTB, if provided 28 | if [ -f "/boot/kirkwood-b3-earlyled.dtb" ]; then 29 | DTB="/boot/kirkwood-b3-earlyled.dtb" 30 | fi 31 | 32 | echo "Creating patched zImage from baseline version..." 33 | cat /boot/cache_head_patch /boot/zImage > zImage 34 | echo "Loading patched kernel and setting command line..." 35 | # if an initramfs is present, use this 36 | if [ -f "${INITRAMFS}" ]; then 37 | kexec --type=zImage --dtb="${DTB}" \ 38 | --image="${INITRAMFS}" \ 39 | --append="root=${ROOT} ${ROOTSPEC} ${CONSOLE}" \ 40 | --load zImage 41 | else 42 | kexec --type=zImage --dtb="${DTB}" \ 43 | --append="root=${ROOT} ${ROOTSPEC} ${CONSOLE}" \ 44 | --load zImage 45 | fi 46 | umount /boot 47 | echo "Booting patched kernel with kexec..." 48 | kexec -e 49 | -------------------------------------------------------------------------------- /reference/kexec-on-live-usb.sh: -------------------------------------------------------------------------------- 1 | # Copyright (c) 2015-7 sakaki 2 | # License: GPL 3.0+ 3 | # NO WARRANTY 4 | 5 | # This script fragment will be sourced by the initial (boot) kernel's 6 | # init script; it must in turn load the DTB and final (target) kernel, 7 | # setup the kernel command line, and finally pass control over to the 8 | # new kernel with kexec -e. 9 | # Remember that this script is running in a fairly minimal busybox 10 | # environment, and that the shell is ash, not bash. 11 | 12 | # On entry, /boot is already mounted (read-only). 13 | 14 | # adjust the following to suit your system... 15 | ROOT="PARTUUID=05A8FC63-03" 16 | DELAY=5 17 | ROOTSPEC="rootfstype=ext4" 18 | CONSOLE="console=ttyS0,115200n8 earlyprintk" 19 | INITRAMFS="/boot/initramfs-linux.img" 20 | DTB="/boot/kirkwood-b3.dtb" 21 | 22 | echo "Ensuring Ethernet NICs are preserved..." 23 | # set temporary spoof addresses, see 24 | # https://forum.excito.com/viewtopic.php?p=28845#p28845 25 | ifconfig eth0 10.250.251.252 netmask 255.255.255.255 26 | ifconfig eth1 10.250.251.253 netmask 255.255.255.255 27 | 28 | # use the patched DTB, if provided 29 | if [ -f "/boot/kirkwood-b3-earlyled.dtb" ]; then 30 | DTB="/boot/kirkwood-b3-earlyled.dtb" 31 | fi 32 | 33 | echo "Creating patched zImage from baseline version..." 34 | cat /boot/cache_head_patch /boot/zImage > zImage 35 | echo "Loading patched kernel and setting command line..." 36 | # if an initramfs is present, use this 37 | if [ -f "${INITRAMFS}" ]; then 38 | kexec --type=zImage --dtb="${DTB}" \ 39 | --image="${INITRAMFS}" \ 40 | --append="root=${ROOT} ${ROOTSPEC} rootdelay=${DELAY} ${CONSOLE}" \ 41 | --load zImage 42 | else 43 | kexec --type=zImage --dtb="${DTB}" \ 44 | --append="root=${ROOT} ${ROOTSPEC} rootdelay=${DELAY} ${CONSOLE}" \ 45 | --load zImage 46 | fi 47 | umount /boot 48 | echo "Booting patched kernel with kexec..." 49 | kexec -e 50 | -------------------------------------------------------------------------------- /reference/kirkwood-b3-earlyled.dtb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakaki-/gentoo-on-b3/0967462e7513e6d4f7ebe157cd35e344862588fb/reference/kirkwood-b3-earlyled.dtb -------------------------------------------------------------------------------- /reference/kirkwood-b3-earlyled.dts: -------------------------------------------------------------------------------- 1 | /* 2 | * Device Tree file for Excito Bubba B3 3 | * 4 | * Copyright (C) 2013, Andrew Lunn 5 | * 6 | * This program is free software; you can redistribute it and/or 7 | * modify it under the terms of the GNU General Public License 8 | * as published by the Free Software Foundation; either version 9 | * 2 of the License, or (at your option) any later version. 10 | * 11 | * Note: This requires a new'ish version of u-boot, which disables the 12 | * L2 cache. If your B3 silently fails to boot, u-boot is probably too 13 | * old. Either upgrade, or consider the following email: 14 | * 15 | * http://lists.debian.org/debian-arm/2012/08/msg00128.html 16 | */ 17 | 18 | /dts-v1/; 19 | 20 | #include "kirkwood.dtsi" 21 | #include "kirkwood-6281.dtsi" 22 | 23 | / { 24 | model = "Excito B3"; 25 | compatible = "excito,b3", "marvell,kirkwood-88f6281", "marvell,kirkwood"; 26 | memory { /* 512 MB */ 27 | device_type = "memory"; 28 | reg = <0x00000000 0x20000000>; 29 | }; 30 | 31 | chosen { 32 | bootargs = "console=ttyS0,115200n8 earlyprintk"; 33 | stdout-path = &uart0; 34 | }; 35 | 36 | mbus { 37 | pcie-controller { 38 | status = "okay"; 39 | 40 | /* Wifi model has Atheros chipset on pcie port */ 41 | pcie@1,0 { 42 | status = "okay"; 43 | }; 44 | }; 45 | }; 46 | 47 | ocp@f1000000 { 48 | pinctrl: pin-controller@10000 { 49 | pmx_button_power: pmx-button-power { 50 | marvell,pins = "mpp39"; 51 | marvell,function = "gpio"; 52 | }; 53 | pmx_led_green: pmx-led-green { 54 | marvell,pins = "mpp38"; 55 | marvell,function = "gpio"; 56 | }; 57 | pmx_led_red: pmx-led-red { 58 | marvell,pins = "mpp41"; 59 | marvell,function = "gpio"; 60 | }; 61 | pmx_led_blue: pmx-led-blue { 62 | marvell,pins = "mpp42"; 63 | marvell,function = "gpio"; 64 | }; 65 | pmx_beeper: pmx-beeper { 66 | marvell,pins = "mpp40"; 67 | marvell,function = "gpio"; 68 | }; 69 | }; 70 | 71 | spi@10600 { 72 | status = "okay"; 73 | 74 | m25p16@0 { 75 | #address-cells = <1>; 76 | #size-cells = <1>; 77 | compatible = "st,m25p16"; 78 | reg = <0>; 79 | spi-max-frequency = <40000000>; 80 | mode = <0>; 81 | 82 | partition@0 { 83 | reg = <0x0 0xc0000>; 84 | label = "u-boot"; 85 | }; 86 | 87 | partition@c0000 { 88 | reg = <0xc0000 0x20000>; 89 | label = "u-boot env"; 90 | }; 91 | 92 | partition@e0000 { 93 | reg = <0xe0000 0x120000>; 94 | label = "data"; 95 | }; 96 | }; 97 | }; 98 | 99 | i2c@11000 { 100 | status = "okay"; 101 | /* 102 | * There is something on the bus at address 0x64. 103 | * Not yet identified what it is, maybe the eeprom 104 | * for the Atheros WiFi chip? 105 | */ 106 | }; 107 | 108 | 109 | serial@12000 { 110 | /* Internal on test pins, 3.3v TTL 111 | * UART0_RX = Testpoint 65 112 | * UART0_TX = Testpoint 66 113 | * See the Excito Wiki for more details. 114 | */ 115 | status = "okay"; 116 | }; 117 | 118 | sata@80000 { 119 | /* One internal, the second as eSATA */ 120 | status = "okay"; 121 | nr-ports = <2>; 122 | }; 123 | }; 124 | 125 | gpio-leds { 126 | /* 127 | * There is one LED "port" on the front and the colours 128 | * mix together giving some interesting combinations. 129 | */ 130 | compatible = "gpio-leds"; 131 | pinctrl-0 = < &pmx_led_green &pmx_led_red 132 | &pmx_led_blue >; 133 | pinctrl-names = "default"; 134 | 135 | programming_led { 136 | label = "bubba3:green:programming"; 137 | gpios = <&gpio1 6 GPIO_ACTIVE_HIGH>; 138 | default-state = "off"; 139 | }; 140 | 141 | error_led { 142 | label = "bubba3:red:error"; 143 | gpios = <&gpio1 9 GPIO_ACTIVE_HIGH>; 144 | default-state = "on"; 145 | }; 146 | 147 | active_led { 148 | label = "bubba3:blue:active"; 149 | gpios = <&gpio1 10 GPIO_ACTIVE_HIGH>; 150 | default-state = "on"; 151 | }; 152 | }; 153 | 154 | gpio-keys { 155 | compatible = "gpio-keys"; 156 | pinctrl-0 = <&pmx_button_power>; 157 | pinctrl-names = "default"; 158 | 159 | power-button { 160 | /* On the back */ 161 | label = "Power Button"; 162 | linux,code = ; 163 | gpios = <&gpio1 7 GPIO_ACTIVE_LOW>; 164 | }; 165 | }; 166 | 167 | beeper: beeper { 168 | /* 4KHz Piezoelectric buzzer */ 169 | compatible = "gpio-beeper"; 170 | pinctrl-0 = <&pmx_beeper>; 171 | pinctrl-names = "default"; 172 | gpios = <&gpio1 8 GPIO_ACTIVE_HIGH>; 173 | }; 174 | }; 175 | 176 | &mdio { 177 | status = "okay"; 178 | 179 | ethphy0: ethernet-phy@8 { 180 | device_type = "ethernet-phy"; 181 | reg = <8>; 182 | }; 183 | 184 | ethphy1: ethernet-phy@24 { 185 | device_type = "ethernet-phy"; 186 | reg = <24>; 187 | }; 188 | }; 189 | 190 | ð0 { 191 | status = "okay"; 192 | ethernet0-port@0 { 193 | phy-handle = <ðphy0>; 194 | }; 195 | }; 196 | 197 | ð1 { 198 | status = "okay"; 199 | ethernet1-port@0 { 200 | phy-handle = <ðphy1>; 201 | }; 202 | }; 203 | 204 | -------------------------------------------------------------------------------- /reference/kirkwood-b3.dtb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakaki-/gentoo-on-b3/0967462e7513e6d4f7ebe157cd35e344862588fb/reference/kirkwood-b3.dtb -------------------------------------------------------------------------------- /reference/kirkwood-b3.dts: -------------------------------------------------------------------------------- 1 | /* 2 | * Device Tree file for Excito Bubba B3 3 | * 4 | * Copyright (C) 2013, Andrew Lunn 5 | * 6 | * This program is free software; you can redistribute it and/or 7 | * modify it under the terms of the GNU General Public License 8 | * as published by the Free Software Foundation; either version 9 | * 2 of the License, or (at your option) any later version. 10 | * 11 | * Note: This requires a new'ish version of u-boot, which disables the 12 | * L2 cache. If your B3 silently fails to boot, u-boot is probably too 13 | * old. Either upgrade, or consider the following email: 14 | * 15 | * http://lists.debian.org/debian-arm/2012/08/msg00128.html 16 | */ 17 | 18 | /dts-v1/; 19 | 20 | #include "kirkwood.dtsi" 21 | #include "kirkwood-6281.dtsi" 22 | 23 | / { 24 | model = "Excito B3"; 25 | compatible = "excito,b3", "marvell,kirkwood-88f6281", "marvell,kirkwood"; 26 | memory { /* 512 MB */ 27 | device_type = "memory"; 28 | reg = <0x00000000 0x20000000>; 29 | }; 30 | 31 | chosen { 32 | bootargs = "console=ttyS0,115200n8 earlyprintk"; 33 | stdout-path = &uart0; 34 | }; 35 | 36 | ocp@f1000000 { 37 | pinctrl: pin-controller@10000 { 38 | pmx_button_power: pmx-button-power { 39 | marvell,pins = "mpp39"; 40 | marvell,function = "gpio"; 41 | }; 42 | pmx_led_green: pmx-led-green { 43 | marvell,pins = "mpp38"; 44 | marvell,function = "gpio"; 45 | }; 46 | pmx_led_red: pmx-led-red { 47 | marvell,pins = "mpp41"; 48 | marvell,function = "gpio"; 49 | }; 50 | pmx_led_blue: pmx-led-blue { 51 | marvell,pins = "mpp42"; 52 | marvell,function = "gpio"; 53 | }; 54 | pmx_beeper: pmx-beeper { 55 | marvell,pins = "mpp40"; 56 | marvell,function = "gpio"; 57 | }; 58 | }; 59 | 60 | spi@10600 { 61 | status = "okay"; 62 | 63 | m25p16@0 { 64 | #address-cells = <1>; 65 | #size-cells = <1>; 66 | compatible = "st,m25p16", "jedec,spi-nor"; 67 | reg = <0>; 68 | spi-max-frequency = <40000000>; 69 | mode = <0>; 70 | 71 | partition@0 { 72 | reg = <0x0 0xc0000>; 73 | label = "u-boot"; 74 | }; 75 | 76 | partition@c0000 { 77 | reg = <0xc0000 0x20000>; 78 | label = "u-boot env"; 79 | }; 80 | 81 | partition@e0000 { 82 | reg = <0xe0000 0x120000>; 83 | label = "data"; 84 | }; 85 | }; 86 | }; 87 | 88 | i2c@11000 { 89 | status = "okay"; 90 | /* 91 | * There is something on the bus at address 0x64. 92 | * Not yet identified what it is, maybe the eeprom 93 | * for the Atheros WiFi chip? 94 | */ 95 | }; 96 | 97 | 98 | serial@12000 { 99 | /* Internal on test pins, 3.3v TTL 100 | * UART0_RX = Testpoint 65 101 | * UART0_TX = Testpoint 66 102 | * See the Excito Wiki for more details. 103 | */ 104 | status = "okay"; 105 | }; 106 | 107 | sata@80000 { 108 | /* One internal, the second as eSATA */ 109 | status = "okay"; 110 | nr-ports = <2>; 111 | }; 112 | }; 113 | 114 | gpio-leds { 115 | /* 116 | * There is one LED "port" on the front and the colours 117 | * mix together giving some interesting combinations. 118 | */ 119 | compatible = "gpio-leds"; 120 | pinctrl-0 = < &pmx_led_green &pmx_led_red 121 | &pmx_led_blue >; 122 | pinctrl-names = "default"; 123 | 124 | programming_led { 125 | label = "bubba3:green:programming"; 126 | gpios = <&gpio1 6 GPIO_ACTIVE_HIGH>; 127 | default-state = "off"; 128 | }; 129 | 130 | error_led { 131 | label = "bubba3:red:error"; 132 | gpios = <&gpio1 9 GPIO_ACTIVE_HIGH>; 133 | }; 134 | 135 | active_led { 136 | label = "bubba3:blue:active"; 137 | gpios = <&gpio1 10 GPIO_ACTIVE_HIGH>; 138 | }; 139 | }; 140 | 141 | gpio-keys { 142 | compatible = "gpio-keys"; 143 | pinctrl-0 = <&pmx_button_power>; 144 | pinctrl-names = "default"; 145 | 146 | power-button { 147 | /* On the back */ 148 | label = "Power Button"; 149 | linux,code = ; 150 | gpios = <&gpio1 7 GPIO_ACTIVE_LOW>; 151 | }; 152 | }; 153 | 154 | beeper: beeper { 155 | /* 4KHz Piezoelectric buzzer */ 156 | compatible = "gpio-beeper"; 157 | pinctrl-0 = <&pmx_beeper>; 158 | pinctrl-names = "default"; 159 | gpios = <&gpio1 8 GPIO_ACTIVE_HIGH>; 160 | }; 161 | }; 162 | 163 | &mdio { 164 | status = "okay"; 165 | 166 | ethphy0: ethernet-phy@8 { 167 | device_type = "ethernet-phy"; 168 | reg = <8>; 169 | }; 170 | 171 | ethphy1: ethernet-phy@24 { 172 | device_type = "ethernet-phy"; 173 | reg = <24>; 174 | }; 175 | }; 176 | 177 | ð0 { 178 | status = "okay"; 179 | ethernet0-port@0 { 180 | phy-handle = <ðphy0>; 181 | }; 182 | }; 183 | 184 | ð1 { 185 | status = "okay"; 186 | ethernet1-port@0 { 187 | phy-handle = <ðphy1>; 188 | }; 189 | }; 190 | 191 | /* Wifi model has Atheros chipset on pcie port */ 192 | &pciec { 193 | status = "okay"; 194 | }; 195 | 196 | &pcie0 { 197 | status = "okay"; 198 | }; 199 | -------------------------------------------------------------------------------- /reference/porthash.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakaki-/gentoo-on-b3/0967462e7513e6d4f7ebe157cd35e344862588fb/reference/porthash.pdf -------------------------------------------------------------------------------- /reference/setethermac: -------------------------------------------------------------------------------- 1 | #!/sbin/openrc-run 2 | # Ensure that the B3's ethernet interfaces have the correct MACs set 3 | # (because, if the kernel was kexec-booted, the MACs will initally 4 | # both be be 0, and networking will not start unless this is corrected) 5 | # Copyright (c) 2017 sakaki 6 | # License: GPL 3.0+ 7 | # NO WARRANTY 8 | 9 | depend() { 10 | need localmount 11 | before net 12 | } 13 | 14 | start() { 15 | ebegin "Starting setethermac on eth0 and eth1" 16 | ip link set dev eth0 address $(fw_printenv ethaddr|rev|cut -c -17|rev) 17 | ip link set dev eth1 address $(fw_printenv eth1addr|rev|cut -c -17|rev) 18 | eend $? 19 | } 20 | -------------------------------------------------------------------------------- /reference/showem.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakaki-/gentoo-on-b3/0967462e7513e6d4f7ebe157cd35e344862588fb/reference/showem.pdf -------------------------------------------------------------------------------- /utils/README: -------------------------------------------------------------------------------- 1 | Building the image is now handled by the buildkernel-b3 script. 2 | This is pre-installed on the image. Its source is at: 3 | https://github.com/sakaki-/buildkernel-b3 4 | and it may be installed (on a PC, for example) via its ebuild, provided 5 | as part of the gentoo-b3 overlay: 6 | https://github.com/sakaki-/gentoo-b3-overlay 7 | --------------------------------------------------------------------------------