aboutsummaryrefslogtreecommitdiffstats
ModeNameSize
-rw-r--r--.cocciconfig59logstatsplainblame
-rw-r--r--.get_maintainer.ignore31logstatsplainblame
-rw-r--r--.gitattributes30logstatsplainblame
-rw-r--r--.gitignore1312logstatsplainblame
-rw-r--r--.mailmap8299logstatsplainblame
-rw-r--r--COPYING18693logstatsplainblame
-rw-r--r--CREDITS98443logstatsplainblame
d---------Documentation8277logstatsplain
-rw-r--r--Kbuild2258logstatsplainblame
-rw-r--r--Kconfig252logstatsplainblame
-rw-r--r--MAINTAINERS429874logstatsplainblame
-rw-r--r--Makefile59560logstatsplainblame
-rw-r--r--README722logstatsplainblame
d---------arch1033logstatsplain
d---------block2521logstatsplain
d---------certs374logstatsplain
d---------crypto4830logstatsplain
d---------drivers4187logstatsplain
d---------firmware74logstatsplain
d---------fs4987logstatsplain
d---------include807logstatsplain
d---------init508logstatsplain
d---------ipc467logstatsplain
d---------kernel4286logstatsplain
d---------lib9123logstatsplain
d---------mm4270logstatsplain
d---------net2347logstatsplain
d---------samples951logstatsplain
d---------scripts4647logstatsplain
d---------security569logstatsplain
d---------sound865logstatsplain
d---------tools928logstatsplain
d---------usr196logstatsplain
d---------virt96logstatsplain
a id='n591' href='#n591'>591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680
/* Lzma decompressor for Linux kernel. Shamelessly snarfed
 *from busybox 1.1.1
 *
 *Linux kernel adaptation
 *Copyright (C) 2006  Alain < alain@knaff.lu >
 *
 *Based on small lzma deflate implementation/Small range coder
 *implementation for lzma.
 *Copyright (C) 2006  Aurelien Jacobs < aurel@gnuage.org >
 *
 *Based on LzmaDecode.c from the LZMA SDK 4.22 (http://www.7-zip.org/)
 *Copyright (C) 1999-2005  Igor Pavlov
 *
 *Copyrights of the parts, see headers below.
 *
 *
 *This program is free software; you can redistribute it and/or
 *modify it under the terms of the GNU Lesser General Public
 *License as published by the Free Software Foundation; either
 *version 2.1 of the License, or (at your option) any later version.
 *
 *This program is distributed in the hope that it will be useful,
 *but WITHOUT ANY WARRANTY; without even the implied warranty of
 *MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 *Lesser General Public License for more details.
 *