Changeset 7871c69 in mainline


Ignore:
Timestamp:
2022-08-13T12:36:49Z (21 months ago)
Author:
Jiří Zárevúcky <zarevucky.jiri@…>
Children:
f1bed857
Parents:
1bf25cc
Message:

update bithenge/fat.bh

Files:
3 edited

Legend:

Unmodified
Added
Removed
  • license_text_tmp.txt

    r1bf25cc r7871c69  
    1 #!/usr/bin/perl -w
    2 
    3 #
    41# All rights reserved.
    52#
     
    2623# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
    2724# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    28 #
  • tools/transform-copyright.sh

    r1bf25cc r7871c69  
    77grep -F '# Copyright' $FILENAME > $FILENAME.copyright__
    88grep -v -F '# Copyright' $FILENAME > $FILENAME.nocopyright__
    9 head -n 28 $FILENAME.nocopyright__ > $FILENAME.license__
     9head -n 24 $FILENAME.nocopyright__ > $FILENAME.license__
    1010
    1111if diff -q $FILENAME.license__ license_text_tmp.txt; then
    12         tail -n +29 $FILENAME.nocopyright__ > $FILENAME.nolicense__
     12        tail -n +25 $FILENAME.nocopyright__ > $FILENAME.nolicense__
    1313        echo '#!/usr/bin/perl -w' > $FILENAME
    1414        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
    32#
    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
    74#
    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
    156#
    16 # THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
    17 # IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
    18 # 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, BUT
    21 # NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
    22 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
    23 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    24 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
    25 # THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    267
    278# FAT filesystem script.
Note: See TracChangeset for help on using the changeset viewer.