-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
33 changed files
with
85 additions
and
13 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
#!/bin/sh | ||
cd ../../src | ||
for a in amd64 i686 arm64 arm32hf mips64 ppc32 ppc64el risc64 s390x loong sparc sh4 ; do | ||
java -Xmx256m -jar rtr.jar test image ../misc/image/plat.$a ../misc/image/image.jvm | ||
java -Xmx256m -jar rtr.jar test image ../misc/image/platform.$a ../misc/image/image.jvm | ||
done |
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,5 +1,5 @@ | ||
#!/bin/sh | ||
cd ../../src | ||
for a in i686 amd64 arm32hf arm32el mips64 alpha ppc32 ppc64el ppc64eb risc64 s390x sparc loong sh4 m68k hppa arm64 ; do | ||
java -Xmx256m -jar rtr.jar test image ../misc/image/plat.$a ../misc/image/image.cmp | ||
java -Xmx256m -jar rtr.jar test image ../misc/image/platform.$a ../misc/image/image.cmp | ||
done |
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,3 +1,3 @@ | ||
#!/bin/sh | ||
cd ../../src | ||
java -Xmx256m -jar rtr.jar test image ../misc/image/plat.amd64 ../misc/image/image.jvm | ||
java -Xmx256m -jar rtr.jar test image ../misc/image/platform.amd64 ../misc/image/image.jvm |
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,3 +1,3 @@ | ||
#!/bin/sh | ||
cd ../../src | ||
java -Xmx256m -jar rtr.jar test image ../misc/image/plat.amd64 ../misc/image/image.nat | ||
java -Xmx256m -jar rtr.jar test image ../misc/image/platform.amd64 ../misc/image/image.nat |
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 @@ | ||
exec cd %tmp%/misc/native/ ; ./c.sh sr ../../ um %ctrg% ab %cabi% cc "clang -target %ctrg%-linux-%cabi%" bc "clang -target bpf -m%carc%" cs llvm-strip bs llvm-strip |
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,36 @@ | ||
include ../misc/image/image.bas | ||
|
||
exec mkdir %tmp%/binImg | ||
|
||
catalog-read exp xz %mirr% experimental main | ||
catalog-read sid xz %mirr% sid main | ||
catalog-sum | ||
|
||
select-one libc6-dev #library | ||
select-one gcc #compiler | ||
select-one gcc-multilib #compiler | ||
select-dis librte-.* #dataplane | ||
select-one dpdk-dev #dataplane | ||
select-one libpcap-dev #dataplane | ||
select-one libssl-dev #dataplane | ||
select-one libbpf-dev #dataplane | ||
select-one libxdp-dev #dataplane | ||
select-one liburing-dev #dataplane | ||
select-one libmnl-dev #dataplane | ||
|
||
select-lst | ||
select-sum | ||
package-down | ||
package-inst | ||
|
||
catalog-save cmp | ||
|
||
exec cp -r ../misc %tmp%/ | ||
|
||
include ../misc/image/native.%comp% | ||
|
||
exec cd %tmp%/misc/native/ ; ./p.sh | ||
|
||
exec mv %tmp%/binImg/*.tgz ../binImg/rtr-%unam%.tgz | ||
|
||
exec /usr/bin/qemu-%qemu%-static -L %tmp%/ %tmp%/binTmp/p4bench.bin |
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 @@ | ||
exec cd %tmp%/misc/native/ ; ./c.sh sr ../../ um %ctrg% ab %cabi% cc %ctrg%-linux-%cabi%-gcc bc "bpf-gcc -m%carc%" cs %ctrg%-linux-%cabi%-strip bs bpf-strip |
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
File renamed without changes.
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,6 +1,8 @@ | ||
arch alpha | ||
unam alpha | ||
qemu alpha | ||
ctrg alpha | ||
comp gcc | ||
kern alpha-generic | ||
grub alpha-bin | ||
boot alpha-ieee1275 | ||
|
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,6 +1,7 @@ | ||
arch amd64 | ||
unam x86_64 | ||
qemu x86_64 | ||
ctrg x86_64 | ||
kern cloud-amd64 | ||
grub efi-amd64-bin | ||
boot x86_64-efi | ||
|
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,6 +1,8 @@ | ||
arch armel | ||
unam armv5tel | ||
qemu armel | ||
ctrg arm | ||
cabi gnueabi | ||
kern rpi | ||
grub efi-arm-bin | ||
boot arm-efi | ||
|
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,6 +1,8 @@ | ||
arch armhf | ||
unam armv7l | ||
qemu armhf | ||
ctrg arm | ||
cabi gnueabihf | ||
kern armmp | ||
grub efi-arm-bin | ||
boot arm-efi | ||
|
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,6 +1,7 @@ | ||
arch arm64 | ||
unam aarch64 | ||
qemu aarch64 | ||
ctrg aarch64 | ||
kern cloud-arm64 | ||
grub efi-arm64-bin | ||
boot arm64-efi | ||
|
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,6 +1,7 @@ | ||
arch i386 | ||
unam i686 | ||
qemu i386 | ||
ctrg i386 | ||
kern 686-pae | ||
grub efi-ia32-bin | ||
boot i386-efi | ||
|
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,6 +1,9 @@ | ||
arch m68k | ||
unam m68k | ||
qemu m68k | ||
ctrg m68k | ||
comp gcc | ||
carc big-endian | ||
kern m68k | ||
grub ieee1275-bin | ||
boot m68k-ieee1275 | ||
|
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
File renamed without changes.
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
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,6 +1,7 @@ | ||
arch riscv64 | ||
unam riscv64 | ||
qemu riscv64 | ||
ctrg riscv64 | ||
kern riscv64 | ||
grub efi-riscv64-bin | ||
boot riscv64-efi | ||
|
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,6 +1,8 @@ | ||
arch s390x | ||
unam s390x | ||
qemu s390x | ||
ctrg s390x | ||
carc big-endian | ||
kern s390x | ||
grub ieee1275-bin | ||
boot s390x-efi | ||
|
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,6 +1,8 @@ | ||
arch sh4 | ||
unam sh4 | ||
qemu sh4 | ||
ctrg sh4 | ||
comp gcc | ||
kern sh7785lcr | ||
grub ieee1275-bin | ||
boot sh4-ieee1275 | ||
|
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
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
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,4 @@ | ||
#!/bin/sh | ||
java -Xmx256m -jar rtr.jar test image ../misc/image/plat.s390x ../misc/image/image.tst | ||
java -Xmx256m -jar rtr.jar test image ../misc/image/platform.s390x ../misc/image/image.tst | ||
java -Xmx512m -jar rtr.jar test tester p4lang- binary other p4lang6.ini slot 1 parallel 30 retry 4 $@ | ||
./te.sh |