summaryrefslogtreecommitdiffstats
path: root/bootstrap-main.sh
diff options
context:
space:
mode:
authorP. J. McDermott <pjm@nac.net>2013-05-31 18:49:47 (EDT)
committer P. J. McDermott <pjm@nac.net>2013-05-31 18:49:47 (EDT)
commit2dcc387183d786267b1e89ca6bacfaffb08bedd3 (patch)
tree4feadef0c7e8585fd2fade1f3c6883ab17a86222 /bootstrap-main.sh
parent14d460fb0c79d2244b20e1d0c959becc1c6d0ee9 (diff)
Move package preparation into a new script.
Diffstat (limited to 'bootstrap-main.sh')
-rwxr-xr-xbootstrap-main.sh52
1 files changed, 1 insertions, 51 deletions
diff --git a/bootstrap-main.sh b/bootstrap-main.sh
index 88289cf..be14830 100755
--- a/bootstrap-main.sh
+++ b/bootstrap-main.sh
@@ -10,7 +10,7 @@ main()
{
SCRIPT_DIR="$(cd "${0%/*}" && pwd)"
setup_arch_plat
- prepare_packages
+ "${SCRIPT_DIR}/bootstrap-prepare.sh"
stage1
}
@@ -20,56 +20,6 @@ setup_arch_plat()
PLAT="$(cat /etc/proteanos_plat)"
}
-prepare_packages()
-{
- local repo pkg src_opk path dir
-
- [ -d pkg ] || mkdir pkg
- cd pkg
-
- for repo in zlib toolchains/binutils linux-libre eglibc \
- gmp toolchains/gcc-4.7 toolchains/gcc-defaults \
- busybox gmake; do
- if [ ! -d "${repo##*/}" ]; then
- git clone --depth 1 \
- "git://git.proteanos.com/pkg/${repo}.git"
- fi
- cd "${repo##*/}"
- git pull origin master
- if [ -x config ]; then
- ./config clean
- PKG_TARGETS="${ARCH}" ./config
- fi
- if [ -f source.mk -a ! -f "${repo##*/}"*.orig.tar* ]; then
- opkbuild -bCT source
- fi
- opkbuild -SC
- cd ..
- done
-
- for pkg in mpc mpfr; do
- if [ ! -d "${pkg}" ]; then
- src_opk="src-${pkg}_*_src_all.opk"
- path="pub/pkg/${pkg}/${src_opk}"
- wget "ftp://files.proteanos.com/${path}"
- tar -xzOf ${src_opk} data.tar.gz | tar -xz
- mv "usr/src/${pkg}_"* "${pkg}"
- fi
- done
- [ -d usr/src ] && rmdir usr/src
- [ -d usr ] && rmdir usr
-
- for dir in */; do
- if [ -d "${SCRIPT_DIR}/patches/${dir}" ]; then
- for patch in "${SCRIPT_DIR}/patches/${dir}"*; do
- patch -N -p 1 -u -d "${dir}" -i "${patch}"
- done
- fi
- done
-
- cd ..
-}
-
stage1()
{
local dir opk elf_interp zlib_upstream_ver