You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
274 B
14 lines
274 B
4 years ago
|
#!/bin/sh
|
||
|
set -eu
|
||
|
|
||
|
mkdir -p sources
|
||
|
cd sources
|
||
|
|
||
|
wget -c -i ../sources.wget-list
|
||
|
|
||
|
mv gcc-boot-2.95.3.patch\?id=* gcc-boot-2.95.3.patch
|
||
|
mv glibc-boot-2.16.0.patch\?id=* glibc-boot-2.16.0.patch
|
||
|
mv glibc-boot-2.2.5.patch\?id=* glibc-boot-2.2.5.patch
|
||
|
|
||
|
sha1sum -c ../sources.sha1
|