From 51a58ff0624f62ca0fa0ca6494928e8bd1410f69 Mon Sep 17 00:00:00 2001 From: Arnout Vandecappelle Date: Sun, 14 Jul 2024 13:13:02 +0200 Subject: [PATCH] support/testing/infra/emulator.py: add license header Since we copied a piece from code from pexpect, we need to also follow the license of pexpect. Effectively, that makes the file licensed under both our default GPL-2.0 and pexpect's ISC license. This is already hinted at in the comment inside _repl_sh_child, but let's make it explicit by adding a license header to the file. Ideally, of course, each file in Buildroot would have a license file. This was done with the reuse tool: reuse annotate -l GPL-2.0 -l ISC support/testing/infra/emulator.py Signed-off-by: Arnout Vandecappelle --- support/testing/infra/emulator.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/support/testing/infra/emulator.py b/support/testing/infra/emulator.py index 71aefacb80..950843e37d 100644 --- a/support/testing/infra/emulator.py +++ b/support/testing/infra/emulator.py @@ -1,3 +1,6 @@ +# SPDX-License-Identifier: GPL-2.0 +# SPDX-License-Identifier: ISC + import pexpect import pexpect.replwrap