forked from embox/embox
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request embox#1066 from embox/pjsip-improve
Pjsip improve
- Loading branch information
Showing
15 changed files
with
208 additions
and
168 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
iface eth0 inet static | ||
address 10.0.2.16 | ||
netmask 255.255.255.0 | ||
gateway 10.0.2.10 | ||
hwaddress aa:bb:cc:dd:ee:02 | ||
|
||
iface lo inet static | ||
address 127.0.0.1 | ||
netmask 255.0.0.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,8 @@ | ||
"export PWD=/", | ||
"export HOME=/", | ||
"netmanager", | ||
"service telnetd", | ||
"service httpd", | ||
"tish", | ||
/* Run simpleua */ | ||
"service pjsip_simpleua", | ||
"tish", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
iface eth0 inet static | ||
address 10.0.2.16 | ||
netmask 255.255.255.0 | ||
gateway 10.0.2.10 | ||
hwaddress aa:bb:cc:dd:ee:02 | ||
|
||
iface lo inet static | ||
address 127.0.0.1 | ||
netmask 255.0.0.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,5 @@ | ||
//"mkdir mnt", | ||
"mount -t ramfs /dev/ram0 /mnt" | ||
//"record file.wav" | ||
#if 0 | ||
/* Setup loopback interface */ | ||
"ifconfig lo 127.0.0.1 netmask 255.0.0.0 up", | ||
"route add 127.0.0.0 netmask 255.0.0.0 lo", | ||
/* Setup eth0 interface */ | ||
"ifconfig eth0 10.0.2.16 netmask 255.255.255.0 hw ether AA:BB:CC:DD:EE:02 up", | ||
"route add 10.0.2.0 netmask 255.255.255.0 eth0", | ||
"route add default gw 10.0.2.10 eth0", | ||
"netmanager", | ||
|
||
"export PWD=/", | ||
"export HOME=/", | ||
#endif | ||
/* Run simpleua */ | ||
"pjsip_simpleua" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
"export PWD=/", | ||
"export HOME=/", | ||
"netmanager", | ||
"service telnetd", | ||
"service httpd", | ||
/* Run simpleua */ | ||
"service pjsip_simpleua", | ||
"tish", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,4 @@ module ac97 { | |
source "ac97.h" | ||
|
||
source "ac97.c" | ||
|
||
depends embox.arch.x86.kernel.arch | ||
depends embox.driver.pci | ||
} |
Oops, something went wrong.