Changeset 39916d6 in mainline
- Timestamp:
- 2022-08-13T13:01:58Z (2 years ago)
- Children:
- 34b2f54d
- Parents:
- f1bed857
- git-author:
- Jiří Zárevúcky <zarevucky.jiri@…> (2022-08-13 13:01:33)
- git-committer:
- Jiří Zárevúcky <zarevucky.jiri@…> (2022-08-13 13:01:58)
- Files:
-
- 2 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
.reuse/dep5
rf1bed857 r39916d6 4 4 Source: helenos.org 5 5 6 # Sample paragraph, commented out: 7 # 8 # Files: src/* 9 # Copyright: $YEAR $NAME <$CONTACT> 10 # License: ... 6 # Directories with grub artifacts 7 8 Files: boot/grub/* 9 Copyright: 2007 Free Software Foundation, Inc. <http://fsf.org/> 10 License: GPL-3.0-only 11 -
boot/generic/src/inflate.c
rf1bed857 r39916d6 1 1 /* 2 * SPDX-FileCopyrightText: 20 10 Mark Adler2 * SPDX-FileCopyrightText: 2002-2010 Mark Adler 3 3 * SPDX-FileCopyrightText: 2010 Martin Decky 4 4 * 5 * SPDX-License-Identifier: BSD-3-Clause 5 * SPDX-License-Identifier: BSD-3-Clause AND LicenseRef-InflateLicense 6 6 */ 7 7 … … 16 16 * All dynamically allocated memory memory is taken from the stack. The 17 17 * stack usage should be typically bounded by 2 KB. 18 *19 * Original copyright notice:20 *21 * Copyright (C) 2002-2010 Mark Adler, all rights reserved22 * version 2.1, 4 Apr 201023 *24 * This software is provided 'as-is', without any express or implied25 * warranty. In no event will the author be held liable for any damages26 * arising from the use of this software.27 *28 * Permission is granted to anyone to use this software for any purpose,29 * including commercial applications, and to alter it and redistribute it30 * freely, subject to the following restrictions:31 *32 * 1. The origin of this software must not be misrepresented; you must not33 * claim that you wrote the original software. If you use this software34 * in a product, an acknowledgment in the product documentation would be35 * appreciated but is not required.36 * 2. Altered source versions must be plainly marked as such, and must not37 * be misrepresented as being the original software.38 * 3. This notice may not be removed or altered from any source39 * distribution.40 *41 * Mark Adler <madler@alumni.caltech.edu>42 *43 18 */ 44 19
Note:
See TracChangeset
for help on using the changeset viewer.