source: trunk/ULinux.pas

Last change on this file was 1, checked in by chronos, 4 years ago
  • Added: Initial version.
File size: 916 bytes
Line 
1unit ULinux;
2
3{$mode delphi}
4
5interface
6
7uses
8 Classes, SysUtils, UDevice;
9
10type
11
12 { TLinux }
13
14 TLinux = class(TDevice)
15 constructor Create; override;
16 end;
17
18implementation
19
20{ TLinux }
21
22constructor TLinux.Create;
23begin
24 inherited;
25 Identity := 'router';
26 with Routerboard do begin
27 Logo.Add(' LLL III');
28 Logo.Add(' LLL');
29 Logo.Add(' LLL III NNNNNNN UUU UUU XXX XXX');
30 Logo.Add(' LLL III NNN NNN UUU UUU XXXXX ');
31 Logo.Add(' LLL III NNN NNN UUU UUU XXXXX ');
32 Logo.Add(' LLLLLLLLLLL III NNN NNN UUUUUU XXX XXX');
33 Vendor := 'Linux foundation';
34 Model := 'Generic';
35 OS := 'Linux';
36 Version := '1.0.0';
37 Copyright := '1999-2020';
38 Website := 'http://www.linuxfoundation.com/';
39 end;
40 with RootContext do begin
41 with Childs.AddNew('ip', 'IP options') do begin
42
43 end;
44 end;
45end;
46
47end.
48
Note: See TracBrowser for help on using the repository browser.