diff --git a/include/vere/vere.h b/include/vere/vere.h index 05506b86c5..7518e75230 100644 --- a/include/vere/vere.h +++ b/include/vere/vere.h @@ -600,7 +600,6 @@ c3_o gab; // -g, run with garbage collector c3_o has; // -S, Skip battery hashes c3_o git; // -s, pill url from arvo git hash - c3_o mem; // -M, memory madness c3_o net; // -N, remote networking in -F mode c3_o nuu; // -c, new pier c3_o pro; // -P, profile diff --git a/vere/main.c b/vere/main.c index c96cf8fcf6..9b9e05fe64 100644 --- a/vere/main.c +++ b/vere/main.c @@ -83,7 +83,6 @@ _main_getopt(c3_i argc, c3_c** argv) u3_Host.ops_u.git = c3n; u3_Host.ops_u.has = c3n; u3_Host.ops_u.net = c3n; - u3_Host.ops_u.mem = c3n; u3_Host.ops_u.nuu = c3n; u3_Host.ops_u.pro = c3n; u3_Host.ops_u.qui = c3n; @@ -92,12 +91,8 @@ _main_getopt(c3_i argc, c3_c** argv) u3_Host.ops_u.veb = c3n; u3_Host.ops_u.kno_w = DefaultKernel; - while ( (ch_i=getopt(argc, argv,"G:B:K:A:H:w:u:e:E:f:F:k:l:n:p:r:NabcdgqstvxMPDXRS")) != -1 ) { + while ( (ch_i=getopt(argc, argv,"G:B:K:A:H:w:u:e:E:f:F:k:l:n:p:r:NabcdgqstvxPDXRS")) != -1 ) { switch ( ch_i ) { - case 'M': { - u3_Host.ops_u.mem = c3y; - break; - } case 'B': { u3_Host.ops_u.pil_c = strdup(optarg); break; @@ -377,7 +372,6 @@ u3_ve_usage(c3_i argc, c3_c** argv) "-K stage Start at Hoon kernel version stage\n", "-k keys Private key file\n", "-l port Initial peer port\n", - "-M Memory madness\n", "-n host Set unix hostname\n", "-N Enable networking in fake mode (-F)\n", "-p ames_port Set the ames port to bind to\n",