diff --git a/Asuro.iso b/Asuro.iso index ee3e05a9..101e84d4 100644 Binary files a/Asuro.iso and b/Asuro.iso differ diff --git a/bin/kernel.bin b/bin/kernel.bin index 33d55548..5d1a2a29 100755 Binary files a/bin/kernel.bin and b/bin/kernel.bin differ diff --git a/iso/boot/asuro.bin b/iso/boot/asuro.bin index 33d55548..5d1a2a29 100755 Binary files a/iso/boot/asuro.bin and b/iso/boot/asuro.bin differ diff --git a/lib/E1000.ppu b/lib/E1000.ppu index c79b2e3a..7ab8b0d6 100644 Binary files a/lib/E1000.ppu and b/lib/E1000.ppu differ diff --git a/lib/arp.ppu b/lib/arp.ppu index fdbb7c6a..10a33c21 100644 Binary files a/lib/arp.ppu and b/lib/arp.ppu differ diff --git a/lib/asuro.ppu b/lib/asuro.ppu index 4da2bbbd..bec2f006 100644 Binary files a/lib/asuro.ppu and b/lib/asuro.ppu differ diff --git a/lib/eth2.ppu b/lib/eth2.ppu index 34217a63..983aafd3 100644 Binary files a/lib/eth2.ppu and b/lib/eth2.ppu differ diff --git a/lib/ipv4.ppu b/lib/ipv4.ppu index f9394286..541a9e4b 100644 Binary files a/lib/ipv4.ppu and b/lib/ipv4.ppu differ diff --git a/lib/libpconsole.a b/lib/libpconsole.a index c59924c1..2384c99e 100644 Binary files a/lib/libpconsole.a and b/lib/libpconsole.a differ diff --git a/lib/libpmultiboot.a b/lib/libpmultiboot.a index 43a44a37..695336a4 100644 Binary files a/lib/libpmultiboot.a and b/lib/libpmultiboot.a differ diff --git a/lib/libpsystem.a b/lib/libpsystem.a index 3a2b7d83..8fe449ae 100644 Binary files a/lib/libpsystem.a and b/lib/libpsystem.a differ diff --git a/lib/net.ppu b/lib/net.ppu index 53cbd81a..b557c0ea 100644 Binary files a/lib/net.ppu and b/lib/net.ppu differ diff --git a/lib/shell.ppu b/lib/shell.ppu index 7c278388..c518643a 100644 Binary files a/lib/shell.ppu and b/lib/shell.ppu differ diff --git a/lib/terminal.ppu b/lib/terminal.ppu index a4a7e797..7e861cec 100644 Binary files a/lib/terminal.ppu and b/lib/terminal.ppu differ diff --git a/src/driver/net/l1/net.pas b/src/driver/net/l1/net.pas index 9ec69569..4e14452e 100644 --- a/src/driver/net/l1/net.pas +++ b/src/driver/net/l1/net.pas @@ -83,7 +83,7 @@ end; procedure send(p_data : void; p_len : uint16); begin push_trace('net.send'); - writeToLogLn('L1: net.send'); + //writeToLogLn('L1: net.send'); if CBSend <> nil then CBSend(p_data, p_len); pop_trace; end; @@ -94,7 +94,7 @@ var begin push_trace('net.recv'); - writeToLogLn('L1: net.recv'); + //writeToLogLn('L1: net.recv'); context:= newPacketContext; if CBNext <> nil then CBNext(p_data, p_len, context); freePacketContext(context); diff --git a/src/driver/net/l2/eth2.pas b/src/driver/net/l2/eth2.pas index 0e0fb1e5..30f07b53 100644 --- a/src/driver/net/l2/eth2.pas +++ b/src/driver/net/l2/eth2.pas @@ -54,7 +54,7 @@ begin pad:= 46 - p_len; if pad < 0 then pad:= 0; push_trace('eth2.send'); - writeToLogLn(' L2: eth2.send'); + //writeToLogLn(' L2: eth2.send'); if p_context <> nil then begin size:= sizeof(TEthernetHeader) + p_len + pad;// + 4; buffer:= kalloc(size); @@ -79,7 +79,7 @@ var begin push_trace('eth2.recv'); - writeToLogLn(' L2: eth2.recv'); + //writeToLogLn(' L2: eth2.recv'); buf:= puint8(p_data); Header:= PEthernetHeader(buf); diff --git a/src/driver/net/l3/arp.pas b/src/driver/net/l3/arp.pas index 6ebd4145..8cb4f7cf 100644 --- a/src/driver/net/l3/arp.pas +++ b/src/driver/net/l3/arp.pas @@ -181,7 +181,7 @@ var begin push_trace('arp.recv'); - writeToLogLn(' L3: arp.recv'); + //writeToLogLn(' L3: arp.recv'); console.redrawWindows; { Get our converted Header } @@ -210,7 +210,7 @@ begin if IPEqual(@AHeader.Destination_Protocol[0], @getIPv4Config^.Address[0]) then begin case AHeader.Operation of $1:begin { ARP Request } - writeToLogLn(' arp.recv.arp.req'); + //writeToLogLn(' arp.recv.arp.req'); context:= newPacketContext; copyMAC(@AHeader.Source_Hardware[0], @context^.MAC.Destination[0]); copyIPv4(@AHeader.Source_Protocol[0], @context^.IP.Destination[0]); @@ -220,28 +220,28 @@ begin freePacketContext(context); end; $2:begin { ARP Reply } - writeToLogLn(' arp.recv.arp.rep'); + //writeToLogLn(' arp.recv.arp.rep'); end; $3:begin { RARP Request } - writeToLogLn(' arp.recv.rarp.req'); + //writeToLogLn(' arp.recv.rarp.req'); end; $4:begin { RARP Reply } - writeToLogLn(' arp.recv.rarp.rep'); + //writeToLogLn(' arp.recv.rarp.rep'); end; $5:begin { DRARP Request } - writeToLogLn(' arp.recv.drarp.req'); + //writeToLogLn(' arp.recv.drarp.req'); end; $6:begin { DRARP Reply } - writeToLogLn(' arp.recv.drarp.rep'); + //writeToLogLn(' arp.recv.drarp.rep'); end; $7:begin { DRARP Error } - writeToLogLn(' arp.recv.drarp.err'); + //writeToLogLn(' arp.recv.drarp.err'); end; $8:begin { InARP Request } - writeToLogLn(' arp.recv.inarp.req'); + //writeToLogLn(' arp.recv.inarp.req'); end; $9:begin { InARP Reply } - writeToLogLn(' arp.recv.inarp.rep'); + //writeToLogLn(' arp.recv.inarp.rep'); end; end; end; diff --git a/src/driver/net/l3/ipv4.pas b/src/driver/net/l3/ipv4.pas index 6c93f799..66e7033f 100644 --- a/src/driver/net/l3/ipv4.pas +++ b/src/driver/net/l3/ipv4.pas @@ -39,7 +39,7 @@ var buffer : void; begin - writeToLogLn(' L3: ipv4.send'); + //writeToLogLn(' L3: ipv4.send'); inc(CurrentID); Header.version:= 4; Header.header_len:= 5; @@ -79,7 +79,7 @@ var begin push_trace('ipv4.recv'); - writeToLogLn(' L3: ipv4.recv'); + //writeToLogLn(' L3: ipv4.recv'); Header:= PIPV4Header(p_data); AHeader.version:= Header^.version; AHeader.header_len:= Header^.header_len; diff --git a/src/driver/netdev/E1000.pas b/src/driver/netdev/E1000.pas index 5a7e5d69..6356bbc9 100644 --- a/src/driver/netdev/E1000.pas +++ b/src/driver/netdev/E1000.pas @@ -417,7 +417,7 @@ var begin push_trace('E1000.fire'); - writeToLogLn('L0: E1000 Fire'); + //writeToLogLn('L0: E1000 Fire'); status:= readCommand($C0); if (status AND $04) > 0 then begin startLink(); diff --git a/src/include/asuro.pas b/src/include/asuro.pas index d820d058..3dde72f7 100644 --- a/src/include/asuro.pas +++ b/src/include/asuro.pas @@ -16,7 +16,7 @@ const NASM_VERSION = '2.10.09'; MAKE_VERSION = '3.81'; COMPILE_DATE = '13/05/18'; - COMPILE_TIME = '12:33:02'; + COMPILE_TIME = '14:24:31'; implementation