Skip to content

Commit 789b93a

Browse files
committed
[ENCE] -New makefile for build microkernel
Signed-off-by: Iván Rodriguez <ivanrwcm25@gmail.com>
1 parent 32f466b commit 789b93a

2 files changed

Lines changed: 8 additions & 4 deletions

File tree

Makefile

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
2+
# test must target csproj test file
3+
test:
4+
dotnet test SharpCore-Kernel.sln
5+
6+
build:
7+
dotnet build SharpCore-Kernel.sln

ShpCore.Kernel/VM_subsystem/QemuConnection.cs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -94,9 +94,6 @@ private void PreflightCheck()
9494
throw;
9595
}
9696

97-
// (sigue con validación de puerto, procesos zombie, etc.)
98-
99-
10097

10198
// Asignación dinámica de puerto si es necesario
10299
if (_options.Port == 0)
@@ -298,7 +295,7 @@ public class QemuOptions
298295
public string ExtraArgs { get; set; } = string.Empty;
299296
public int Port { get; set; } = 0; // 0 = buscar uno libre
300297
public int StartPort { get; set; } = 5000;
301-
public string SharedFolder { get; set; } = "/path/to/share"; // ¡Personalizable!
298+
public string SharedFolder { get; set; } = string.Empty; // ¡Personalizable!
302299
}
303300

304301

0 commit comments

Comments
 (0)