diff options
author | Daniel Friesel <derf@finalrewind.org> | 2020-12-08 18:19:13 +0100 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2020-12-08 18:19:13 +0100 |
commit | 812899797d6d8ea773bf960cd74680d20043c5a4 (patch) | |
tree | 470bb05de36285e9f8b86fa34daebd163e3860ed /script | |
parent | e1526bb2c84b315c72a089dbb50447183d4b1685 (diff) |
add licensing information
Diffstat (limited to 'script')
-rwxr-xr-x | script/g++wrap | 5 | ||||
-rwxr-xr-x | script/mkconfig | 4 | ||||
-rwxr-xr-x | script/randconfig | 4 | ||||
-rwxr-xr-x | script/size.py | 4 | ||||
-rwxr-xr-x | script/static-stack-analyze.pl | 42 |
5 files changed, 21 insertions, 38 deletions
diff --git a/script/g++wrap b/script/g++wrap index fd0e5d9..f9903ed 100755 --- a/script/g++wrap +++ b/script/g++wrap @@ -1,4 +1,9 @@ #!/bin/zsh +# +# Copyright 2020 Daniel Friesel +# +# SPDX-License-Identifier: BSD-2-Clause + for i in {1..$#}; do if [[ $argv[$i] == *_agxx_* && -f $argv[$i] ]]; then diff --git a/script/mkconfig b/script/mkconfig index c11a819..4cb5666 100755 --- a/script/mkconfig +++ b/script/mkconfig @@ -1,4 +1,8 @@ #!/bin/sh +# +# Copyright 2020 Daniel Friesel +# +# SPDX-License-Identifier: BSD-2-Clause cat <<EOF diff --git a/script/randconfig b/script/randconfig index 21b6840..7a4ec82 100755 --- a/script/randconfig +++ b/script/randconfig @@ -1,4 +1,8 @@ #!/bin/sh +# +# Copyright 2020 Daniel Friesel +# +# SPDX-License-Identifier: BSD-2-Clause # randconfig occasionally generates invalid configs which lack an application. # Try generating a valid config up to ten times. diff --git a/script/size.py b/script/size.py index e553314..48888cb 100755 --- a/script/size.py +++ b/script/size.py @@ -1,4 +1,8 @@ #!/usr/bin/env python3 +# +# Copyright 2020 Daniel Friesel +# +# SPDX-License-Identifier: BSD-2-Clause import json import re diff --git a/script/static-stack-analyze.pl b/script/static-stack-analyze.pl index 3089d3d..003be15 100755 --- a/script/static-stack-analyze.pl +++ b/script/static-stack-analyze.pl @@ -1,4 +1,8 @@ #!/usr/bin/env perl +# +# Copyright 2018 Daniel Friesel +# +# SPDX-License-Identifier: BSD-2-Clause use strict; use warnings; @@ -263,41 +267,3 @@ for my $function (reverse sort { ($call_graph{$a}{max_cost} <=> $call_graph{$b}{ $call_graph{$function}{max_depth}); } } - -__END__ - -=head1 NAME - -=head1 SYNOPSIS - -=head1 VERSION - -=head1 DESCRIPTION - -=head1 OPTIONS - -=over - -=back - -=head1 EXIT STATUS - -=head1 CONFIGURATION - -None. - -=head1 DEPENDENCIES - -=over - -=back - -=head1 BUGS AND LIMITATIONS - -=head1 AUTHOR - -Copyright (C) 2018 by Daniel Friesel E<lt>derf@finalrewind.orgE<gt> - -=head1 LICENSE - - 0. You just DO WHAT THE FUCK YOU WANT TO. |