summaryrefslogtreecommitdiffstats
path: root/loader
diff options
context:
space:
mode:
Diffstat (limited to 'loader')
-rw-r--r--loader/net.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/loader/net.c b/loader/net.c
index 4a58c60be..d4c63906e 100644
--- a/loader/net.c
+++ b/loader/net.c
@@ -618,18 +618,16 @@ int configureTCPIP(char * device, iface_t * iface,
* noipv4 noipv6
* ip=<val> noipv6
* ipv6=<val> noipv4
- * we also skip this form for anyone doing a kickstart install
*/
if ((FL_IP_PARAM(flags) && FL_IPV6_PARAM(flags)) ||
(FL_IP_PARAM(flags) && FL_NOIPV6(flags)) ||
(FL_IPV6_PARAM(flags) && FL_NOIPV4(flags)) ||
- (FL_NOIPV4(flags) && FL_NOIPV6(flags)) ||
- (FL_IS_KICKSTART(flags))) {
+ (FL_NOIPV4(flags) && FL_NOIPV6(flags))) {
skipForm = 1;
newtPopWindow();
}
#else
- if (FL_IP_PARAM(flags) || FL_NOIPV4(flags) || FL_IS_KICKSTART(flags)) {
+ if (FL_IP_PARAM(flags) || FL_NOIPV4(flags)) {
skipForm = 1;
newtPopWindow();
}