From 9c082483f435421fe9ae8f899cdef55c81c35ca8 Mon Sep 17 00:00:00 2001 From: Benjamin Mugnier Date: Mon, 21 Jul 2025 11:09:29 +0200 Subject: [PATCH] b4: Add .b4-config Per the b4 documentation: B4 is a tool created to make it easier for project developers and maintainers to use a distributed development workflow that relies on patches and distribution lists for code contributions and review. B4 is now a common tool used by developers for Linux kernel workflows. While the Linux kernel support is handled inside b4, other projects can rely on a .b4-config file to achieve the same thing. Add a .b4-config file to instruct b4 to send patches to the libcamera-devel mailing list. This allows the command b4 prep --auto-to-cc to automatically add the mailing to its To: list. Command output without .b4-config : $ b4 prep --auto-to-cc Collecting To/Cc addresses No new addresses to add. With .b4-config : $ b4 prep --auto-to-cc Collecting To/Cc addresses + To: libcamera-devel@lists.libcamera.org --- You can trim/expand this list with: b4 prep --edit-cover Invoking git-filter-repo to update the cover letter. New history written in 0.02 seconds... Completely finished after 0.04 seconds. Signed-off-by: Benjamin Mugnier Acked-by: Kieran Bingham Reviewed-by: Laurent Pinchart Signed-off-by: Kieran Bingham --- .b4-config | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 .b4-config diff --git a/.b4-config b/.b4-config new file mode 100644 index 00000000..371e3e9c --- /dev/null +++ b/.b4-config @@ -0,0 +1,2 @@ +[b4] + send-series-to = libcamera-devel@lists.libcamera.org