diff options
| author | Andre Kalb <[email protected]> | 2022-01-28 09:40:32 +0100 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2022-08-08 10:49:51 -0400 |
| commit | 5e6e41b3bab32f2ee258a76fda68b703e8f10cc3 (patch) | |
| tree | ec3af50469b235a6f88e330c4b7e4cf67df5cc4f /net/Kconfig | |
| parent | 56edbb5eafc53cd7b34cd231ec11c7e5eb576c9f (diff) | |
net: bootp: Make root path (option 17) length configurable
to adjust the root path length.
Eg to 256 from Linux Kernel
Signed-off-by: Andre Kalb <[email protected]>
Reviewed-by: Ramon Fried <[email protected]>
[trini: Guard extern so that !CONFIG_NET platforms will build]
Signed-off-by: Tom Rini <[email protected]>
Diffstat (limited to 'net/Kconfig')
| -rw-r--r-- | net/Kconfig | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/net/Kconfig b/net/Kconfig index 564ea8b2d28..52e261884d1 100644 --- a/net/Kconfig +++ b/net/Kconfig @@ -168,6 +168,12 @@ config BOOTP_SERVERIP variable, not the BOOTP server. This affects the operation of both bootp and tftp. +config BOOTP_MAX_ROOT_PATH_LEN + int "Option 17 root path length" + default 64 + help + Select maximal length of option 17 root path. + endif # if NET config SYS_RX_ETH_BUFFER |
