-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathinstall_cross_package.pl
130 lines (121 loc) · 13.8 KB
/
install_cross_package.pl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
#!/usr/bin/perl
#
#
use strict;
use File::Temp;
use Cwd;
sub install_package
{
my $url = @_[0];
my $oldcwd = getcwd;
# Create a temporary directory
my $dirname = File::Temp->newdir;
# Go to the temporary directory
chdir $dirname || die("Can not chdir($dirname) : $!");
`wget $url`;
if (rindex($url, "/") != -1)
{
my $filename = substr $url, rindex($url, "/")+1;
`ar xv $filename`;
print `sudo tar xzvf data.tar.gz -C /usr/arm-frc-linux-gnueabi`;
}
chdir $oldcwd;
}
#install_package("http://download.ni.com/ni-linux-rt/feeds/2016/arm/ipk/cortexa9-vfpv3/boost-dev_1.57.0-r0.4_cortexa9-vfpv3.ipk");
#install_package("http://download.ni.com/ni-linux-rt/feeds/2016/arm/ipk/cortexa9-vfpv3/boost-serialization_1.57.0-r0.4_cortexa9-vfpv3.ipk");
#install_package("http://download.ni.com/ni-linux-rt/feeds/2016/arm/ipk/cortexa9-vfpv3/boost-staticdev_1.57.0-r0.4_cortexa9-vfpv3.ipk");
#install_package("http://download.ni.com/ni-linux-rt/feeds/2016/arm/ipk/cortexa9-vfpv3/boost-staticdev_1.57.0-r0.4_cortexa9-vfpv3.ipk");
#install_package("http://download.ni.com/ni-linux-rt/feeds/2016/arm/ipk/cortexa9-vfpv3/boost-test_1.57.0-r0.4_cortexa9-vfpv3.ipk");
#install_package("http://download.ni.com/ni-linux-rt/feeds/2016/arm/ipk/cortexa9-vfpv3/boost_1.57.0-r0.4_cortexa9-vfpv3.ipk");
#install_package("http://download.ni.com/ni-linux-rt/feeds/2016/arm/ipk/cortexa9-vfpv3/libboost-atomic1.57.0_1.57.0-r0.4_cortexa9-vfpv3.ipk");
#install_package("http://download.ni.com/ni-linux-rt/feeds/2016/arm/ipk/cortexa9-vfpv3/libboost-chrono1.57.0_1.57.0-r0.4_cortexa9-vfpv3.ipk");
#install_package("http://download.ni.com/ni-linux-rt/feeds/2016/arm/ipk/cortexa9-vfpv3/libboost-date-time1.57.0_1.57.0-r0.4_cortexa9-vfpv3.ipk");
#install_package("http://download.ni.com/ni-linux-rt/feeds/2016/arm/ipk/cortexa9-vfpv3/libboost-filesystem1.57.0_1.57.0-r0.4_cortexa9-vfpv3.ipk");
#install_package("http://download.ni.com/ni-linux-rt/feeds/2016/arm/ipk/cortexa9-vfpv3/libboost-graph1.57.0_1.57.0-r0.4_cortexa9-vfpv3.ipk");
#install_package("http://download.ni.com/ni-linux-rt/feeds/2016/arm/ipk/cortexa9-vfpv3/libboost-iostreams1.57.0_1.57.0-r0.4_cortexa9-vfpv3.ipk");
#install_package("http://download.ni.com/ni-linux-rt/feeds/2016/arm/ipk/cortexa9-vfpv3/libboost-program-options1.57.0_1.57.0-r0.4_cortexa9-vfpv3.ipk");
#install_package("http://download.ni.com/ni-linux-rt/feeds/2016/arm/ipk/cortexa9-vfpv3/libboost-regex1.57.0_1.57.0-r0.4_cortexa9-vfpv3.ipk");
#install_package("http://download.ni.com/ni-linux-rt/feeds/2016/arm/ipk/cortexa9-vfpv3/libboost-signals1.57.0_1.57.0-r0.4_cortexa9-vfpv3.ipk");
#install_package("http://download.ni.com/ni-linux-rt/feeds/2016/arm/ipk/cortexa9-vfpv3/libboost-system1.57.0_1.57.0-r0.4_cortexa9-vfpv3.ipk");
#install_package("http://download.ni.com/ni-linux-rt/feeds/2016/arm/ipk/cortexa9-vfpv3/libboost-thread1.57.0_1.57.0-r0.4_cortexa9-vfpv3.ipk");
#install_package("http://download.ni.com/ni-linux-rt/feeds/2016/arm/ipk/cortexa9-vfpv3/libeigen-dev_3.2.0-r0.15_cortexa9-vfpv3.ipk");
#install_package("http://download.ni.com/ni-linux-rt/feeds/2016/arm/ipk/cortexa9-vfpv3/libpython2_2.7.9-r1.117_cortexa9-vfpv3.ipk");
#install_package("http://download.ni.com/ni-linux-rt/feeds/2016/arm/ipk/cortexa9-vfpv3/python-core_2.7.9-r1.117_cortexa9-vfpv3.ipk");
#install_package("http://download.ni.com/ni-linux-rt/feeds/2016/arm/ipk/cortexa9-vfpv3/python-dev_2.7.9-r1.117_cortexa9-vfpv3.ipk");
#install_package("http://download.ni.com/ni-linux-rt/feeds/2016/arm/ipk/cortexa9-vfpv3/libcurl-dev_7.40.0-r0.11_cortexa9-vfpv3.ipk");
#install_package("http://download.ni.com/ni-linux-rt/feeds/2016/arm/ipk/cortexa9-vfpv3/libcurl4_7.40.0-r0.11_cortexa9-vfpv3.ipk");
#install_package("http://download.ni.com/ni-linux-rt/feeds/2016/arm/ipk/cortexa9-vfpv3/lz4-dev_r127-r0.10_cortexa9-vfpv3.ipk");
#install_package("http://download.ni.com/ni-linux-rt/feeds/2016/arm/ipk/cortexa9-vfpv3/lz4_r127-r0.10_cortexa9-vfpv3.ipk");
#install_package("http://download.ni.com/ni-linux-rt/feeds/2016/arm/ipk/cortexa9-vfpv3/libbz2-0_1.0.6-r5.205_cortexa9-vfpv3.ipk");
#install_package("http://download.ni.com/ni-linux-rt/feeds/2016/arm/ipk/cortexa9-vfpv3/libbz2-dev_1.0.6-r5.205_cortexa9-vfpv3.ipk");
#install_package("http://download.ni.com/ni-linux-rt/feeds/2016/arm/ipk/cortexa9-vfpv3/libbz2-staticdev_1.0.6-r5.205_cortexa9-vfpv3.ipk");
#install_package("http://download.ni.com/ni-linux-rt/feeds/2016/arm/ipk/cortexa9-vfpv3/cmake-dev_2.8.12.2-r1.4_cortexa9-vfpv3.ipk");
#install_package("http://download.ni.com/ni-linux-rt/feeds/2016/arm/ipk/cortexa9-vfpv3/cmake_2.8.12.2-r1.4_cortexa9-vfpv3.ipk");
#install_package("http://download.ni.com/ni-linux-rt/feeds/2016/arm/ipk/cortexa9-vfpv3/libxml2-dev_2.9.2-r0.72_cortexa9-vfpv3.ipk");
#install_package("http://download.ni.com/ni-linux-rt/feeds/2016/arm/ipk/cortexa9-vfpv3/libxml2-staticdev_2.9.2-r0.72_cortexa9-vfpv3.ipk");
#install_package("http://download.ni.com/ni-linux-rt/feeds/2016/arm/ipk/cortexa9-vfpv3/libxml2_2.9.2-r0.72_cortexa9-vfpv3.ipk");
#install_package("http://download.ni.com/ni-linux-rt/feeds/2016/arm/ipk/cortexa9-vfpv3/libgnutls-bin_3.3.12-r0.16_cortexa9-vfpv3.ipk");
#install_package("http://download.ni.com/ni-linux-rt/feeds/2016/arm/ipk/cortexa9-vfpv3/libgnutls-dev_3.3.12-r0.16_cortexa9-vfpv3.ipk");
#install_package("http://download.ni.com/ni-linux-rt/feeds/2016/arm/ipk/cortexa9-vfpv3/libgnutls-openssl27_3.3.12-r0.16_cortexa9-vfpv3.ipk");
#install_package("http://download.ni.com/ni-linux-rt/feeds/2016/arm/ipk/cortexa9-vfpv3/libgnutls28_3.3.12-r0.16_cortexa9-vfpv3.ipk");
#install_package("http://download.ni.com/ni-linux-rt/feeds/2016/arm/ipk/cortexa9-vfpv3/libgnutlsxx28_3.3.12-r0.16_cortexa9-vfpv3.ipk");
#install_package("http://download.ni.com/ni-linux-rt/feeds/2016/arm/ipk/cortexa9-vfpv3/nettle-dev_2.7.1-r0.114_cortexa9-vfpv3.ipk");
#install_package("http://download.ni.com/ni-linux-rt/feeds/2016/arm/ipk/cortexa9-vfpv3/nettle-staticdev_2.7.1-r0.114_cortexa9-vfpv3.ipk");
#install_package("http://download.ni.com/ni-linux-rt/feeds/2016/arm/ipk/cortexa9-vfpv3/nettle_2.7.1-r0.114_cortexa9-vfpv3.ipk");
#install_package("http://download.ni.com/ni-linux-rt/feeds/2016/arm/ipk/cortexa9-vfpv3/libgmp-dev_6.0.0-r0.176_cortexa9-vfpv3.ipk");
#install_package("http://download.ni.com/ni-linux-rt/feeds/2016/arm/ipk/cortexa9-vfpv3/libgmp-staticdev_6.0.0-r0.176_cortexa9-vfpv3.ipk");
#install_package("http://download.ni.com/ni-linux-rt/feeds/2016/arm/ipk/cortexa9-vfpv3/libgmp10_6.0.0-r0.176_cortexa9-vfpv3.ipk");
#install_package("http://download.ni.com/ni-linux-rt/feeds/2016/arm/ipk/cortexa9-vfpv3/libgmpxx4_6.0.0-r0.176_cortexa9-vfpv3.ipk");
#
#
#install_package("http://download.ni.com/ni-linux-rt/feeds/2016/arm/ipk/cortexa9-vfpv3/libz-dev_1.2.8-r0.207_cortexa9-vfpv3.ipk");
#install_package("http://download.ni.com/ni-linux-rt/feeds/2016/arm/ipk/cortexa9-vfpv3/libz-staticdev_1.2.8-r0.207_cortexa9-vfpv3.ipk");
#install_package("http://download.ni.com/ni-linux-rt/feeds/2016/arm/ipk/cortexa9-vfpv3/libz1_1.2.8-r0.207_cortexa9-vfpv3.ipk");
#install_package("http://download.ni.com/ni-linux-rt/feeds/2016/arm/ipk/cortexa9-vfpv3/protobuf-dev_2.5.0-r0.5_cortexa9-vfpv3.ipk");
#install_package("http://download.ni.com/ni-linux-rt/feeds/2016/arm/ipk/cortexa9-vfpv3/protobuf-staticdev_2.5.0-r0.5_cortexa9-vfpv3.ipk");
#install_package("http://download.ni.com/ni-linux-rt/feeds/2016/arm/ipk/cortexa9-vfpv3/protobuf_2.5.0-r0.5_cortexa9-vfpv3.ipk");
# OpenCV - needed for WPILib
#install_package("http://download.ni.com/ni-linux-rt/feeds/2016/arm/ipk/cortexa9-vfpv3/libopencv-calib3d-dev_3.0+git0+424c2bddb3-r0.6_cortexa9-vfpv3.ipk");
#install_package("http://download.ni.com/ni-linux-rt/feeds/2016/arm/ipk/cortexa9-vfpv3/libopencv-calib3d3.0_3.0+git0+424c2bddb3-r0.6_cortexa9-vfpv3.ipk");
#install_package("http://download.ni.com/ni-linux-rt/feeds/2016/arm/ipk/cortexa9-vfpv3/libopencv-core-dev_3.0+git0+424c2bddb3-r0.6_cortexa9-vfpv3.ipk");
#install_package("http://download.ni.com/ni-linux-rt/feeds/2016/arm/ipk/cortexa9-vfpv3/libopencv-core3.0_3.0+git0+424c2bddb3-r0.6_cortexa9-vfpv3.ipk");
#install_package("http://download.ni.com/ni-linux-rt/feeds/2016/arm/ipk/cortexa9-vfpv3/libopencv-features2d-dev_3.0+git0+424c2bddb3-r0.6_cortexa9-vfpv3.ipk");
#install_package("http://download.ni.com/ni-linux-rt/feeds/2016/arm/ipk/cortexa9-vfpv3/libopencv-features2d3.0_3.0+git0+424c2bddb3-r0.6_cortexa9-vfpv3.ipk");
#install_package("http://download.ni.com/ni-linux-rt/feeds/2016/arm/ipk/cortexa9-vfpv3/libopencv-flann-dev_3.0+git0+424c2bddb3-r0.6_cortexa9-vfpv3.ipk");
#install_package("http://download.ni.com/ni-linux-rt/feeds/2016/arm/ipk/cortexa9-vfpv3/libopencv-flann3.0_3.0+git0+424c2bddb3-r0.6_cortexa9-vfpv3.ipk");
#install_package("http://download.ni.com/ni-linux-rt/feeds/2016/arm/ipk/cortexa9-vfpv3/libopencv-highgui-dev_3.0+git0+424c2bddb3-r0.6_cortexa9-vfpv3.ipk");
#install_package("http://download.ni.com/ni-linux-rt/feeds/2016/arm/ipk/cortexa9-vfpv3/libopencv-highgui3.0_3.0+git0+424c2bddb3-r0.6_cortexa9-vfpv3.ipk");
#install_package("http://download.ni.com/ni-linux-rt/feeds/2016/arm/ipk/cortexa9-vfpv3/libopencv-imgcodecs-dev_3.0+git0+424c2bddb3-r0.6_cortexa9-vfpv3.ipk");
#install_package("http://download.ni.com/ni-linux-rt/feeds/2016/arm/ipk/cortexa9-vfpv3/libopencv-imgcodecs3.0_3.0+git0+424c2bddb3-r0.6_cortexa9-vfpv3.ipk");
#install_package("http://download.ni.com/ni-linux-rt/feeds/2016/arm/ipk/cortexa9-vfpv3/libopencv-imgproc-dev_3.0+git0+424c2bddb3-r0.6_cortexa9-vfpv3.ipk");
#install_package("http://download.ni.com/ni-linux-rt/feeds/2016/arm/ipk/cortexa9-vfpv3/libopencv-imgproc3.0_3.0+git0+424c2bddb3-r0.6_cortexa9-vfpv3.ipk");
#install_package("http://download.ni.com/ni-linux-rt/feeds/2016/arm/ipk/cortexa9-vfpv3/libopencv-ml-dev_3.0+git0+424c2bddb3-r0.6_cortexa9-vfpv3.ipk");
#install_package("http://download.ni.com/ni-linux-rt/feeds/2016/arm/ipk/cortexa9-vfpv3/libopencv-ml3.0_3.0+git0+424c2bddb3-r0.6_cortexa9-vfpv3.ipk");
#install_package("http://download.ni.com/ni-linux-rt/feeds/2016/arm/ipk/cortexa9-vfpv3/libopencv-objdetect-dev_3.0+git0+424c2bddb3-r0.6_cortexa9-vfpv3.ipk");
#install_package("http://download.ni.com/ni-linux-rt/feeds/2016/arm/ipk/cortexa9-vfpv3/libopencv-objdetect3.0_3.0+git0+424c2bddb3-r0.6_cortexa9-vfpv3.ipk");
#install_package("http://download.ni.com/ni-linux-rt/feeds/2016/arm/ipk/cortexa9-vfpv3/libopencv-photo-dev_3.0+git0+424c2bddb3-r0.6_cortexa9-vfpv3.ipk");
#install_package("http://download.ni.com/ni-linux-rt/feeds/2016/arm/ipk/cortexa9-vfpv3/libopencv-photo3.0_3.0+git0+424c2bddb3-r0.6_cortexa9-vfpv3.ipk");
#install_package("http://download.ni.com/ni-linux-rt/feeds/2016/arm/ipk/cortexa9-vfpv3/libopencv-shape-dev_3.0+git0+424c2bddb3-r0.6_cortexa9-vfpv3.ipk");
#install_package("http://download.ni.com/ni-linux-rt/feeds/2016/arm/ipk/cortexa9-vfpv3/libopencv-shape3.0_3.0+git0+424c2bddb3-r0.6_cortexa9-vfpv3.ipk");
#install_package("http://download.ni.com/ni-linux-rt/feeds/2016/arm/ipk/cortexa9-vfpv3/libopencv-stitching-dev_3.0+git0+424c2bddb3-r0.6_cortexa9-vfpv3.ipk");
#install_package("http://download.ni.com/ni-linux-rt/feeds/2016/arm/ipk/cortexa9-vfpv3/libopencv-stitching3.0_3.0+git0+424c2bddb3-r0.6_cortexa9-vfpv3.ipk");
#install_package("http://download.ni.com/ni-linux-rt/feeds/2016/arm/ipk/cortexa9-vfpv3/libopencv-superres-dev_3.0+git0+424c2bddb3-r0.6_cortexa9-vfpv3.ipk");
#install_package("http://download.ni.com/ni-linux-rt/feeds/2016/arm/ipk/cortexa9-vfpv3/libopencv-superres3.0_3.0+git0+424c2bddb3-r0.6_cortexa9-vfpv3.ipk");
#install_package("http://download.ni.com/ni-linux-rt/feeds/2016/arm/ipk/cortexa9-vfpv3/libopencv-video-dev_3.0+git0+424c2bddb3-r0.6_cortexa9-vfpv3.ipk");
#install_package("http://download.ni.com/ni-linux-rt/feeds/2016/arm/ipk/cortexa9-vfpv3/libopencv-video3.0_3.0+git0+424c2bddb3-r0.6_cortexa9-vfpv3.ipk");
#install_package("http://download.ni.com/ni-linux-rt/feeds/2016/arm/ipk/cortexa9-vfpv3/libopencv-videoio-dev_3.0+git0+424c2bddb3-r0.6_cortexa9-vfpv3.ipk");
#install_package("http://download.ni.com/ni-linux-rt/feeds/2016/arm/ipk/cortexa9-vfpv3/libopencv-videoio3.0_3.0+git0+424c2bddb3-r0.6_cortexa9-vfpv3.ipk");
#install_package("http://download.ni.com/ni-linux-rt/feeds/2016/arm/ipk/cortexa9-vfpv3/libopencv-videostab-dev_3.0+git0+424c2bddb3-r0.6_cortexa9-vfpv3.ipk");
#install_package("http://download.ni.com/ni-linux-rt/feeds/2016/arm/ipk/cortexa9-vfpv3/libopencv-videostab3.0_3.0+git0+424c2bddb3-r0.6_cortexa9-vfpv3.ipk");
#install_package("http://download.ni.com/ni-linux-rt/feeds/2016/arm/ipk/cortexa9-vfpv3/opencv-apps_3.0+git0+424c2bddb3-r0.6_cortexa9-vfpv3.ipk");
#install_package("http://download.ni.com/ni-linux-rt/feeds/2016/arm/ipk/cortexa9-vfpv3/opencv-dbg_3.0+git0+424c2bddb3-r0.6_cortexa9-vfpv3.ipk");
#install_package("http://download.ni.com/ni-linux-rt/feeds/2016/arm/ipk/cortexa9-vfpv3/opencv-dev_3.0+git0+424c2bddb3-r0.6_cortexa9-vfpv3.ipk");
#install_package("http://download.ni.com/ni-linux-rt/feeds/2016/arm/ipk/cortexa9-vfpv3/opencv-java_3.0+git0+424c2bddb3-r0.6_cortexa9-vfpv3.ipk");
#install_package("http://download.ni.com/ni-linux-rt/feeds/2016/arm/ipk/cortexa9-vfpv3/opencv-samples-dbg_3.0+git0+424c2bddb3-r0.6_cortexa9-vfpv3.ipk");
#install_package("http://download.ni.com/ni-linux-rt/feeds/2016/arm/ipk/cortexa9-vfpv3/opencv-samples_3.0+git0+424c2bddb3-r0.6_cortexa9-vfpv3.ipk");
#install_package("http://download.ni.com/ni-linux-rt/feeds/2016/arm/ipk/cortexa9-vfpv3/opencv-staticdev_3.0+git0+424c2bddb3-r0.6_cortexa9-vfpv3.ipk");
#install_package("http://download.ni.com/ni-linux-rt/feeds/2016/arm/ipk/cortexa9-vfpv3/opencv_3.0+git0+424c2bddb3-r0.6_cortexa9-vfpv3.ipk");
#install_package("http://download.ni.com/ni-linux-rt/feeds/2016/arm/ipk/cortexa9-vfpv3/python-opencv_3.0+git0+424c2bddb3-r0.6_cortexa9-vfpv3.ipk");
install_package("http://download.ni.com/ni-linux-rt/feeds/2016/arm/ipk/cortexa9-vfpv3/tbb_4.1-r20130314.4_cortexa9-vfpv3.ipk");
install_package("http://download.ni.com/ni-linux-rt/feeds/2016/arm/ipk/cortexa9-vfpv3/tbb-dbg_4.1-r20130314.4_cortexa9-vfpv3.ipk");
install_package("http://download.ni.com/ni-linux-rt/feeds/2016/arm/ipk/cortexa9-vfpv3/tbb-dev_4.1-r20130314.4_cortexa9-vfpv3.ipk");