forked from tukl-msd/gem5.TnT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
get_extra_fs.sh
executable file
·140 lines (129 loc) · 4.98 KB
/
get_extra_fs.sh
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
131
132
133
134
135
136
137
138
139
140
#!/usr/bin/env bash
# Copyright (c) 2017, University of Kaiserslautern
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are
# met:
#
# 1. Redistributions of source code must retain the above copyright notice,
# this list of conditions and the following disclaimer.
#
# 2. Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
#
# 3. Neither the name of the copyright holder nor the names of its
# contributors may be used to endorse or promote products derived from
# this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
# TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER
# OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
# PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
# LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#
# Author: Éder F. Zulian
DIR="$(cd "$(dirname "$0")" && pwd)"
TOPDIR=$DIR
source $TOPDIR/common/defaults.in
source $TOPDIR/common/util.in
wgethis=(
# ARM full system files
"$FSDIRARM:http://www.gem5.org/dist/current/arm/aarch-system-2014-10.tar.xz"
"$FSDIRARM:http://www.gem5.org/dist/current/arm/aarch-system-20170421.tar.xz"
"$FSDIRARM:http://www.gem5.org/dist/current/arm/aarch-system-20170616.tar.xz"
# BBench android disk images and vmlinux for arm
"$FSDIRARMBBENCH:http://www.gem5.org/dist/current/bbench/Gingerbread_disk_image_clean.tgz"
"$FSDIRARMBBENCH:http://www.gem5.org/dist/current/bbench/ICS_disk_image_clean.tgz"
"$FSDIRARMBBENCH:http://bbench.eecs.umich.edu/bbench/Gingerbread_disk_image.tgz"
"$FSDIRARMBBENCH:http://bbench.eecs.umich.edu/bbench/ICS_disk_image.tgz"
"$FSDIRARMBBENCH:http://bbench.eecs.umich.edu/bbench/vmlinux_and_config_arm.tgz"
# ARM legacy files
# ARMv8 Full-System Files -- Pre-compiled kernel and disk image for the 64 bit
# ARMv8 ISA.
"$FSDIRARMLEGACY:http://www.gem5.org/dist/current/arm/arm64-system-02-2014.tgz"
# VExpress_EMM kernel w/PCI support and config - Pre-compiled Linux 3.3
# VExpress_EMM kernel that includes support for PCIe devices, a patch to add
# gem5 PCIe support to the revision of the vexpress kernel tree and a config
# file. This kernel is needed if you want to simulated more than 256MB of RAM
# or networking. Pass kernel=/path/to/vmlinux-3.3-arm-vexpress-emm-pcie
# machine-type=VExpress_EMM on the command line. You'll still need the file
# systems below. This kernel supports a maximum of 2047MB (one MB less than
# 2GB) of memory.
"$FSDIRARMLEGACY:http://www.gem5.org/dist/current/arm/vmlinux-emm-pcie-3.3.tar.bz2"
# New Full System Files -- Pre-compiled Linux kernel, and file systems, and
# kernel config files. This includes both a cut-down linux and a full ubuntu
# linux.
"$FSDIRARMLEGACY:http://www.gem5.org/dist/current/arm/arm-system-2011-08.tar.bz2"
# Old Full System Files -- Older pre-compiled Linux kernel, and file system.
"$FSDIRARMLEGACY:http://www.m5sim.org/dist/current/arm/arm-system.tar.bz2"
# Config files for kernels 2.6.25.1 and 2.6.28.4
"$FSDIRX86:http://www.m5sim.org/dist/current/x86/config-x86.tar.bz2"
# Everything you need to create your own disk image and compile everything in
# it from scratch
"$FSDIRALPHA:http://www.m5sim.org/dist/current/linux-dist.tgz"
)
greetings
wget_into_dir wgethis[@]
printf "Uncompressing files..."
pulse on
releases="
aarch-system-2014-10
aarch-system-20170421
aarch-system-20170616
"
for rel in $releases; do
sys="$FSDIRARM/$rel"
tb="$sys.tar.xz"
if [[ ! -d $sys ]]; then
mkdir -p $sys
tar -xaf $tb -C $sys
fi
done
pushd $FSDIRARMBBENCH > /dev/null
tbs=(
"disks:Gingerbread_disk_image_clean.tgz"
"disks:ICS_disk_image_clean.tgz"
"disks:Gingerbread_disk_image.tgz"
"disks:ICS_disk_image.tgz"
"binaries:vmlinux_and_config_arm.tgz"
)
for e in "${tbs[@]}"; do
dir=${e%%:*}
tb=${e#*:}
mkdir -p $dir
tar -xaf $tb -C $dir
done
popd > /dev/null
release="arm64-system-02-2014"
sys="$FSDIRARMLEGACY/$release"
tb="$sys.tgz"
if [[ ! -d $sys ]]; then
mkdir -p $sys
tar -xaf $tb -C $sys
fi
release="arm-system-2011-08"
sys="$FSDIRARMLEGACY/$release"
tb="$sys.tar.bz2"
if [[ ! -d $sys ]]; then
mkdir -p $sys
tar -xaf $tb -C $sys
fi
release="arm-system"
sys="$FSDIRARMLEGACY/$release"
tb="$sys.tar.bz2"
if [[ ! -d $sys ]]; then
mkdir -p $sys
tar -xaf $tb -C $sys
fi
pushd $FSDIRARMLEGACY > /dev/null
tar -xaf vmlinux-emm-pcie-3.3.tar.bz2
popd > /dev/null
pulse off