From: ulf at uclibc.org <ulf@uclibc.org>
To: buildroot@busybox.net
Subject: [Buildroot] svn commit: trunk/buildroot/target/linux
Date: Fri, 20 Jul 2007 00:43:23 -0700 (PDT) [thread overview]
Message-ID: <20070720074323.66FCDA69A5@busybox.net> (raw)
Author: ulf
Date: 2007-07-20 00:43:21 -0700 (Fri, 20 Jul 2007)
New Revision: 19167
Log:
Add option for advanced linux configuration (experimental, only visible for Atmel targets)
Modified:
trunk/buildroot/target/linux/Config.in
Changeset:
Modified: trunk/buildroot/target/linux/Config.in
===================================================================
--- trunk/buildroot/target/linux/Config.in 2007-07-20 07:34:28 UTC (rev 19166)
+++ trunk/buildroot/target/linux/Config.in 2007-07-20 07:43:21 UTC (rev 19167)
@@ -11,6 +11,17 @@
kernel headers are just that (headers) and not full
kernels. This is a feature.
+config BR2_PACKAGE_LINUX_EXPERIMENTAL_CONFIG
+ bool "linux kernel experimental configuration"
+ depends on BR2_PACKAGE_LINUX
+ depends on BR2_TARGET_ATMEL
+ default n
+ help
+ More advanced configuration (in development)
+
+
+
+if ! BR2_PACKAGE_LINUX_EXPERIMENTAL_CONFIG
config BR2_PACKAGE_LINUX_KCONFIG
string ".config file"
depends on BR2_PACKAGE_LINUX
@@ -40,5 +51,347 @@
If the above setting is empty, you can change the default
board-imposed value by passing LINUX26_FORMAT=<string> to
make.
+endif
+if BR2_PACKAGE_LINUX_EXPERIMENTAL_CONFIG
+
+choice
+ prompt "Linux Kernel Version"
+ depends on BR2_PACKAGE_LINUX
+ default BR2_LINUX_2_6_22_1
+ help
+ Select the specific Linux version you want to use
+
+config BR2_LINUX_2_6_SNAP
+ bool "The latest snapshot for the stable Linux kernel"
+ depends BR2_PACKAGE_LINUX
+ help
+ Linux 2.6.x-git#
+
+config BR2_LINUX_2_6_MM
+ bool "With latest -mm patch for the stable Linux kernel"
+ depends BR2_PACKAGE_LINUX
+ help
+ Linux 2.6.x-rc#-mm#
+
+config BR2_LINUX_2_6_STABLE
+ bool "The latest stable Linux kernel (2.6.22.1)"
+ depends BR2_PACKAGE_LINUX
+ help
+ Linux 2.6.22.1
+
+config BR2_LINUX_2_6_22_1
+ bool "Linux 2.6.22.1"
+ depends BR2_PACKAGE_LINUX
+ help
+ Linux 2.6.22-rc1
+
+config BR2_LINUX_2_6_22
+ bool "Linux 2.6.22"
+ depends BR2_PACKAGE_LINUX
+ help
+ Linux 2.6.22
+
+config BR2_LINUX_2_6_21_6
+ bool "Linux 2.6.21.6"
+ depends BR2_PACKAGE_LINUX
+ help
+ Linux 2.6.21.6
+
+config BR2_LINUX_2_6_21_1
+ bool "Linux 2.6.21.1"
+ depends BR2_PACKAGE_LINUX
+ help
+ Linux 2.6.21.1
+
+config BR2_LINUX_2_6_21
+ bool "Linux 2.6.21"
+ depends BR2_PACKAGE_LINUX
+ help
+ Linux 2.6.21
+
+config BR2_LINUX_2_6_20_4
+ bool "Linux 2.6.20.4"
+ depends BR2_PACKAGE_LINUX
+ help
+ Linux 2.6.20.4
+
+config BR2_LINUX_2_6_20
+ bool "Linux 2.6.20"
+ depends BR2_PACKAGE_LINUX
+ help
+ Linux 2.6.20
+
+config BR2_LINUX_2_6_19_2
+ bool "Linux 2.6.19.2"
+ depends BR2_PACKAGE_LINUX
+ help
+ Linux 2.6.19.2
+
+config BR2_LINUX_2_6_19
+ bool "Linux 2.6.19"
+ depends BR2_PACKAGE_LINUX
+ help
+ Linux 2.6.19
+
+config BR2_LINUX_2_6_18
+ bool "Linux 2.6.18"
+ depends BR2_PACKAGE_LINUX
+ help
+ Linux 2.6.18
+
+config BR2_LINUX_2_6_17
+ bool "Linux 2.6.17"
+ depends BR2_PACKAGE_LINUX
+ help
+ Linux 2.6.17
+
+config BR2_LINUX_2_6_16
+ bool "Linux 2.6.16"
+ depends BR2_PACKAGE_LINUX
+ help
+ Linux 2.6.16
+
+config BR2_LINUX_2_6_15
+ bool "Linux 2.6.15"
+ depends BR2_PACKAGE_LINUX
+ help
+ Linux 2.6.15
+
+config BR2_LINUX_2_6_23
+ bool "Linux 2.6.23"
+ depends BR2_PACKAGE_LINUX
+ help
+ Linux 2.6.23
+
+config BR2_LINUX_CUSTOM
+ bool "Linux <custom> version"
+ depends BR2_PACKAGE_LINUX
+ help
+ Linux <your selection>
+
+endchoice
+
+config BR2_CUSTOM_DOWNLOAD_LINUX26_VERSION
+ string "Linux Tarball version"
+ depends on BR2_LINUX_CUSTOM
+ default "linux-2.6.22"
+
+config BR2_CUSTOM_LINUX26_VERSION
+ string "Linux Version"
+ depends on BR2_LINUX_CUSTOM
+ default "linux-2.6.22-version"
+
+config BR2_CUSTOM_LINUX26_RC_PATCH
+ string "RC patch (if needed)"
+ depends on BR2_LINUX_CUSTOM
+ default "patch-2.6.22-rc6-mm1.bz2"
+
+menu "Patches"
+ depends on BR2_PACKAGE_LINUX
+
+config BR2_LINUX_BSP_PATCH
+ string "Additional Atmel patch to apply"
+ default "linux-2.6.20.4-atmel.patch.bz2" if BR2_TARGET_AVR32
+ default "linux-2.6.20.4-atmel.patch.bz2" if BR2_TARGET_AT91
+
+
+config BR2_LINUX_BSP_PATCH
+ string "Additional patch to apply"
+ depends on ! (BR2_TARGET_AVR32 || BR2_TARGET_AT91)
+ default ""
+
endmenu
+
+config BR2_DOWNLOAD_LINUX26_VERSION
+ string #"Selected Tarball:"
+ default "2.6.15" if BR2_LINUX_2_6_15
+ default "2.6.16" if BR2_LINUX_2_6_16
+ default "2.6.17" if BR2_LINUX_2_6_17
+ default "2.6.18" if BR2_LINUX_2_6_18
+ default "2.6.19" if BR2_LINUX_2_6_19
+ default "2.6.19.2" if BR2_LINUX_2_6_19_2
+ default "2.6.20" if BR2_LINUX_2_6_20
+ default "2.6.20.4" if BR2_LINUX_2_6_20_4
+ default "2.6.21" if BR2_LINUX_2_6_21
+ default "2.6.21.1" if BR2_LINUX_2_6_21_1
+ default "2.6.21.6" if BR2_LINUX_2_6_21_6
+ default "2.6.22" if BR2_LINUX_2_6_22
+ default "2.6.22.1" if BR2_LINUX_2_6_22_1
+ default "2.6.22" if BR2_LINUX_2_6_23_RC1
+ default "2.6.22" if BR2_LINUX_2_6_SNAP
+ default "2.6.22" if BR2_LINUX_2_6_MM
+ default $(BR2_CUSTOM_DOWNLOAD_LINUX26_VERSION) if BR2_LINUX_CUSTOM
+
+config BR2_LINUX26_VERSION
+ string "Selected Version:"
+ default "2.6.15" if BR2_LINUX_2_6_15
+ default "2.6.16" if BR2_LINUX_2_6_16
+ default "2.6.17" if BR2_LINUX_2_6_17
+ default "2.6.18" if BR2_LINUX_2_6_18
+ default "2.6.19" if BR2_LINUX_2_6_19
+ default "2.6.19.2" if BR2_LINUX_2_6_19_2
+ default "2.6.20" if BR2_LINUX_2_6_20
+ default "2.6.20.4" if BR2_LINUX_2_6_20_4
+ default "2.6.21" if BR2_LINUX_2_6_21
+ default "2.6.21.1" if BR2_LINUX_2_6_21_1
+ default "2.6.21.6" if BR2_LINUX_2_6_21_6
+ default "2.6.22" if BR2_LINUX_2_6_22
+ default "2.6.22.1" if BR2_LINUX_2_6_22_1
+ default "2.6.22" if BR2_LINUX_2_6_23_RC1
+ default "2.6.22" if BR2_LINUX_2_6_SNAP
+ default "2.6.22" if BR2_LINUX_2_6_MM
+ default $(BR2_CUSTOM_LINUX26_VERSION) if BR2_LINUX_CUSTOM
+
+config BR2_LINUX26_RC_PATCH
+ string #"Selected Patch:"
+ default "" if BR2_LINUX_2_6_15
+ default "" if BR2_LINUX_2_6_16
+ default "" if BR2_LINUX_2_6_17
+ default "" if BR2_LINUX_2_6_18
+ default "" if BR2_LINUX_2_6_19
+ default "" if BR2_LINUX_2_6_19_2
+ default "" if BR2_LINUX_2_6_20
+ default "" if BR2_LINUX_2_6_20_4
+ default "" if BR2_LINUX_2_6_21
+ default "" if BR2_LINUX_2_6_21_1
+ default "" if BR2_LINUX_2_6_21_6
+ default "" if BR2_LINUX_2_6_22
+ default "" if BR2_LINUX_2_6_22_1
+ default "patch-2.6.23-rc1.bz2" if BR2_LINUX_2_6_23_RC1
+ default $(BR2_CUSTOM_LINUX26_RC_PATCH) if BR2_LINUX_CUSTOM
+
+choice
+ prompt "Linux Kernel Configuration"
+ depends on BR2_PACKAGE_LINUX
+ default BR2_PACKAGE_LINUX_USE_KCONFIG
+ help
+ Select the way to configure the Linux
+
+config BR2_PACKAGE_LINUX_USE_KCONFIG
+ bool ".config file"
+ depends on BR2_PACKAGE_LINUX
+ help
+ kernel's .config to use to build a kernel for the target.
+
+ If the above setting is empty, you can change the default
+ board-imposed value by passing LINUX26_KCONFIG=<path> to
+ make.
+
+config BR2_LINUX26_DEFCONFIG
+ bool "Run make <board>_defconfig "
+ depends BR2_PACKAGE_LINUX
+ help
+ Configure Linux by make <board>_defconfig
+
+config BR2_LINUX_CUSTOMIZE
+ bool "Run make ARCH=$(ARCH) xconfig before build"
+ depends BR2_PACKAGE_LINUX
+ help
+ Configure Linux by make xconfig
+endchoice
+
+config BR2_PACKAGE_LINUX_KCONFIG
+ string ".config file"
+ depends on BR2_PACKAGE_LINUX_USE_KCONFIG
+ default "$(BR2_BOARD_PATH)/$(BR2_BOARD_NAME)-linux-$(LINUX26_VERSION).config"
+ help
+ kernel's .config to use to build a kernel for the target.
+
+ If the above setting is empty, you can change the default
+ board-imposed value by passing LINUX26_KCONFIG=<path> to
+ make.
+
+choice
+ prompt "kernel binary format"
+ depends on BR2_PACKAGE_LINUX
+ default BR2_LINUX_BIN_UIMAGE
+ help
+ Select the specific Linux binary type you want to use
+
+config BR2_LINUX_BIN_BZIMAGE
+ bool "bzImage"
+ depends BR2_PACKAGE_LINUX
+ help
+ Linux 2.6.19.2
+
+config BR2_LINUX_BIN_UIMAGE
+ bool "uImage"
+ depends BR2_PACKAGE_LINUX
+ help
+ Build uImage binary
+
+config BR2_LINUX_BIN_VMLINUX
+ bool "vmlinux"
+ depends BR2_PACKAGE_LINUX
+ help
+ Build vmlinux binary
+
+config BR2_LINUX_BIN_ZIMAGE
+ bool "zImage"
+ depends BR2_PACKAGE_LINUX
+ help
+ Linux 2.6.19.2
+
+config BR2_LINUX_BIN_CUSTOM
+ bool "<custom> Linux binary"
+ depends BR2_PACKAGE_LINUX
+ help
+ Build custom Linux binary format
+endchoice
+
+config BR2_LINUX_BIN_CUSTOM_BIN
+ string "custom kernel binary format"
+ depends on BR2_LINUX_BIN_CUSTOM
+ default ""
+ help
+ Which Linux binary format?
+
+config BR2_PACKAGE_LINUX_FORMAT
+ string #"kernel binary format"
+ depends on BR2_PACKAGE_LINUX
+ default "bzImage" if BR2_LINUX_BIN_BZIMAGE
+ default "uImage" if BR2_LINUX_BIN_UIMAGE
+ default "vmlinux" if BR2_LINUX_BIN_VMLINUX
+ default "zImage" if BR2_LINUX_BIN_ZIMAGE
+ default $(BR2_LINUX_BIN_CUSTOM_BIN) if BR2_LINUX_BIN_CUSTOM
+ help
+ kernel binary format.
+ Popular values include:
+ - bzImage
+ - zImage
+ - vmlinux
+ and other, architecture dependant formats.
+
+ Note that the default format is supposed to be set by your
+ board-description, if any.
+ i386 and compatible default to bzImage if nothing was given
+ above.
+ If the above setting is empty, you can change the default
+ board-imposed value by passing LINUX26_FORMAT=<string> to
+ make.
+
+comment "Destinations for linux kernel binaries"
+ depends on BR2_PACKAGE_LINUX
+
+config BR2_LINUX_IN_ROOTFS
+ bool "Copy kernel to root file system"
+ depends BR2_PACKAGE_LINUX
+ default n
+ help
+ Copy kernel to <root>/boot directory
+
+menuconfig BR2_LINUX_COPY
+ bool "Secondary Copy"
+ depends on BR2_PACKAGE_LINUX
+ default y
+
+config BR2_LINUX_COPYTO
+ string "also copy the image to..."
+ depends BR2_LINUX_COPY
+ default "/tftpboot"
+ help
+ Copy kernel to secondary location
+
+endif
+endmenu
next reply other threads:[~2007-07-20 7:43 UTC|newest]
Thread overview: 169+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-07-20 7:43 ulf at uclibc.org [this message]
-- strict thread matches above, loose matches on Subject: below --
2009-02-22 10:38 [Buildroot] svn commit: trunk/buildroot/target/linux jacmet at uclibc.org
2009-02-04 23:15 jacmet at uclibc.org
2009-01-26 20:17 ulf at uclibc.org
2009-01-26 20:30 ` Peter Korsgaard
2009-01-26 21:24 ` Ulf Samuelsson
2009-01-26 21:29 ` Peter Korsgaard
2009-01-26 21:35 ` Ulf Samuelsson
2009-01-26 21:48 ` Peter Korsgaard
2009-01-26 22:25 ` Ulf Samuelsson
2009-01-27 5:58 ` Peter Korsgaard
2009-01-27 12:56 ` Hamish Moffatt
2009-01-29 14:33 ` Ulf Samuelsson
2009-01-29 23:09 ` Hamish Moffatt
2009-01-29 23:37 ` Ulf Samuelsson
2009-01-29 23:47 ` Hamish Moffatt
2009-01-26 16:25 jacmet at uclibc.org
2009-01-25 23:42 ulf at uclibc.org
2009-01-25 23:14 ulf at uclibc.org
2009-01-25 21:48 ulf at uclibc.org
2009-01-25 21:54 ` Peter Korsgaard
2009-01-25 22:09 ` Ulf Samuelsson
2009-01-25 23:12 ` Markus Heidelberg
2009-01-25 23:24 ` Ulf Samuelsson
2009-01-26 5:58 ` Peter Korsgaard
2009-01-26 16:27 ` Peter Korsgaard
2009-01-26 19:28 ` Ulf Samuelsson
2009-01-26 19:30 ` Ulf Samuelsson
2009-01-26 19:39 ` Peter Korsgaard
2009-01-23 0:54 ulf at uclibc.org
2009-01-19 21:27 ulf at uclibc.org
2009-01-15 23:19 ulf at uclibc.org
2009-01-11 20:43 ulf at uclibc.org
2009-01-09 6:30 ulf at uclibc.org
2009-01-09 9:19 ` Peter Korsgaard
2009-01-09 17:40 ` Ulf Samuelsson
2009-01-13 0:05 ` Hamish Moffatt
2009-01-13 6:10 ` Hans-Christian Egtvedt
2009-01-15 22:12 ` Ulf Samuelsson
2009-01-08 22:58 ulf at uclibc.org
2009-01-09 9:17 ` Peter Korsgaard
2009-01-09 10:21 ` Thomas Petazzoni
2009-01-09 10:29 ` Bernhard Reutner-Fischer
2009-01-09 17:42 ` Ulf Samuelsson
2009-01-09 10:47 ` Peter Korsgaard
2009-01-06 23:00 ulf at uclibc.org
2009-01-06 21:42 ulf at uclibc.org
2009-01-07 6:09 ` Hans-Christian Egtvedt
2009-01-06 21:24 ulf at uclibc.org
2009-01-06 14:40 ulf at uclibc.org
2009-01-03 1:06 ulf at uclibc.org
2009-01-03 20:01 ` Peter Korsgaard
2009-01-03 19:37 ` Ulf Samuelsson
2009-01-03 21:12 ` Peter Korsgaard
2009-01-03 19:52 ` Ulf Samuelsson
2009-01-03 21:27 ` Peter Korsgaard
2009-01-03 20:59 ` Ulf Samuelsson
2008-12-20 21:45 ulf at uclibc.org
2008-12-20 21:45 ulf at uclibc.org
2008-12-20 20:57 ulf at uclibc.org
2008-12-23 9:05 ` Peter Korsgaard
2009-01-02 22:45 ` Ulf Samuelsson
2008-12-17 18:03 ulf at uclibc.org
2008-12-07 6:55 jacmet at uclibc.org
2008-11-29 21:56 ulf at uclibc.org
2008-11-30 9:51 ` Peter Korsgaard
2008-11-10 11:17 vanokuten at uclibc.org
2008-11-10 10:45 vanokuten at uclibc.org
2008-11-10 11:01 ` Bernhard Reutner-Fischer
2008-11-10 11:08 ` Ivan Kuten
2008-11-11 14:18 ` Julien Boibessot
2008-11-11 14:43 ` Bernhard Reutner-Fischer
2008-11-05 12:59 egtvedt at uclibc.org
2008-10-30 14:56 egtvedt at uclibc.org
2008-10-30 14:22 egtvedt at uclibc.org
2008-10-30 14:02 egtvedt at uclibc.org
2008-10-30 14:02 egtvedt at uclibc.org
2008-11-04 19:17 ` Thomas Petazzoni
2008-11-05 9:39 ` Hans-Christian Egtvedt
2008-11-05 12:50 ` Hans-Christian Egtvedt
2008-10-03 7:24 egtvedt at uclibc.org
2008-09-22 12:04 jacmet at uclibc.org
2008-08-23 20:25 ulf at uclibc.org
2008-07-13 6:33 jacmet at uclibc.org
2008-07-10 15:14 ulf at uclibc.org
2008-07-10 14:58 ulf at uclibc.org
2008-07-09 11:43 jacmet at uclibc.org
2008-07-03 8:15 ulf at uclibc.org
2008-05-12 21:15 ulf at uclibc.org
2008-04-16 22:54 ulf at uclibc.org
2008-04-15 21:46 ulf at uclibc.org
2008-04-15 22:31 ` Hamish Moffatt
2008-04-16 4:39 ` Ulf Samuelsson
2008-04-16 5:04 ` Ulf Samuelsson
2008-04-16 5:59 ` Jean-Christian de Rivaz
2008-04-16 8:25 ` Ulf Samuelsson
2008-04-16 12:30 ` Jean-Christian de Rivaz
2008-04-16 12:59 ` Ulf Samuelsson
2008-04-16 18:22 ` Jean-Christian de Rivaz
2008-04-16 19:21 ` Ulf Samuelsson
2008-04-19 13:37 ` Jean-Christian de Rivaz
2008-04-16 20:47 ` Ulf Samuelsson
2008-04-19 12:43 ` Jean-Christian de Rivaz
2008-04-15 17:10 ulf at uclibc.org
2008-04-15 17:43 ` Jean-Christian de Rivaz
2008-04-15 19:00 ` Ulf Samuelsson
2008-04-15 19:21 ` Jean-Christian de Rivaz
2008-04-15 19:44 ` Ulf Samuelsson
2008-04-15 21:09 ` Jean-Christian de Rivaz
2008-04-15 21:25 ` Ulf Samuelsson
2008-04-07 19:14 Samuelsson, Ulf
2008-04-06 15:28 Samuelsson, Ulf
2008-04-06 17:18 ` Peter Korsgaard
2008-04-06 12:07 Samuelsson, Ulf
2008-04-06 12:34 ` Peter Korsgaard
2008-04-06 15:25 ` Jean-Christian de Rivaz
2008-04-06 16:33 ` Nigel Kukard
[not found] ` <87iqyuu8d0.fsf@macbook.be.48ers.dk>
2008-04-07 0:29 ` Ulf Samuelsson
2008-04-07 14:01 ` Thiago A. Corrêa
2008-04-06 17:58 ` Thomas Lundquist
2008-04-06 10:32 ulf at uclibc.org
2008-04-06 10:30 nkukard at uclibc.org
2008-04-06 10:10 ulf at uclibc.org
2008-04-06 11:42 ` Peter Korsgaard
2008-04-06 10:02 ulf at uclibc.org
2008-03-31 5:42 ulf at uclibc.org
2008-04-01 11:09 ` Jean-Christian de Rivaz
2008-04-02 21:28 ` Ulf Samuelsson
2008-04-03 6:53 ` Jean-Christian de Rivaz
2008-04-04 15:24 ` Ulf Samuelsson
2008-04-02 21:28 ` Ulf Samuelsson
2008-03-30 20:22 jacmet at uclibc.org
2008-03-30 20:04 ulf at uclibc.org
2008-03-29 17:47 nkukard at uclibc.org
2008-03-21 17:57 ninevoltz at uclibc.org
2008-03-20 23:02 ulf at uclibc.org
2008-03-18 13:26 ulf at uclibc.org
2008-03-18 8:17 ulf at uclibc.org
2008-03-15 5:07 ulf at uclibc.org
2008-03-06 18:52 ninevoltz at uclibc.org
2008-01-10 9:31 ulf at uclibc.org
2007-10-18 12:37 ulf at uclibc.org
2007-10-18 11:58 ulf at uclibc.org
2007-10-13 23:07 ulf at uclibc.org
2007-10-13 18:37 ulf at uclibc.org
2007-09-29 16:38 aldot at uclibc.org
2007-09-26 23:21 ulf at uclibc.org
2007-09-23 9:58 ulf at uclibc.org
2007-09-23 11:13 ` Bernhard Fischer
2007-09-23 14:20 ` Ulf Samuelsson
2007-09-22 17:30 aldot at uclibc.org
2007-09-18 17:10 aldot at uclibc.org
2007-09-18 21:08 ` Ulf Samuelsson
2007-09-19 8:03 ` Bernhard Fischer
2007-09-19 21:46 ` Ulf Samuelsson
2007-09-19 21:18 ` Bernhard Fischer
2007-09-20 17:33 ` Ulf Samuelsson
2007-09-20 16:00 ` Bernhard Fischer
2007-09-05 6:48 ulf at uclibc.org
2007-09-04 21:24 aldot at uclibc.org
2007-08-21 13:21 aldot at uclibc.org
2007-08-21 13:29 ` Ulf Samuelsson
2007-08-19 22:30 ulf at uclibc.org
2007-08-19 22:28 ulf at uclibc.org
2007-08-01 11:52 ulf at uclibc.org
2007-07-23 14:43 aldot at uclibc.org
2007-07-17 13:28 sjhill at uclibc.org
2007-07-17 0:20 sjhill at uclibc.org
2007-07-11 14:42 ulf at uclibc.org
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20070720074323.66FCDA69A5@busybox.net \
--to=ulf@uclibc.org \
--cc=buildroot@busybox.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox