Changeset 7871c69 in mainline
- Timestamp:
- 2022-08-13T12:36:49Z (2 years ago)
- Children:
- f1bed857
- Parents:
- 1bf25cc
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
license_text_tmp.txt
r1bf25cc r7871c69 1 #!/usr/bin/perl -w2 3 #4 1 # All rights reserved. 5 2 # … … 26 23 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 27 24 # THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 28 # -
tools/transform-copyright.sh
r1bf25cc r7871c69 7 7 grep -F '# Copyright' $FILENAME > $FILENAME.copyright__ 8 8 grep -v -F '# Copyright' $FILENAME > $FILENAME.nocopyright__ 9 head -n 2 8$FILENAME.nocopyright__ > $FILENAME.license__9 head -n 24 $FILENAME.nocopyright__ > $FILENAME.license__ 10 10 11 11 if diff -q $FILENAME.license__ license_text_tmp.txt; then 12 tail -n +2 9$FILENAME.nocopyright__ > $FILENAME.nolicense__12 tail -n +25 $FILENAME.nocopyright__ > $FILENAME.nolicense__ 13 13 echo '#!/usr/bin/perl -w' > $FILENAME 14 14 echo "#" >> $FILENAME -
uspace/dist/src/bithenge/fat.bh
r1bf25cc r7871c69 1 # Copyright (c) 2012 Sean Bartell 2 # All rights reserved. 1 #!/usr/bin/perl -w 3 2 # 4 # Redistribution and use in source and binary forms, with or without 5 # modification, are permitted provided that the following conditions 6 # are met: 3 # SPDX-FileCopyrightText: 2012 Sean Bartell 7 4 # 8 # - Redistributions of source code must retain the above copyright 9 # notice, this list of conditions and the following disclaimer. 10 # - Redistributions in binary form must reproduce the above copyright 11 # notice, this list of conditions and the following disclaimer in the 12 # documentation and/or other materials provided with the distribution. 13 # - The name of the author may not be used to endorse or promote products 14 # derived from this software without specific prior written permission. 5 # SPDX-License-Identifier: BSD-3-Clause 15 6 # 16 # THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR17 # IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES18 # OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.19 # IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,20 # INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT21 # NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,22 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY23 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT24 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF25 # THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.26 7 27 8 # FAT filesystem script.
Note:
See TracChangeset
for help on using the changeset viewer.