CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
makeCrossRootfsExtras.sh: updated to 3.1 branches and removed "git branch" from upstr...
[devtools.git] / makeCrossRootfsExtras.sh
CommitLineData
b92a8b5f
JB
1#!/bin/bash
2
3# This script helps to create a tarball which contains 2 directories
4# with ports: core from upstream CRUX and core-arm overlay
5# Both dirs have the version number for each port that will be taken
6# as the starting point
7
8GIT_REPO_UPSTREAM="git://crux.nu/ports/core.git"
9GIT_REPO_OVERLAY="git://crux-arm.nu/crux-arm/ports/core-arm.git"
10
11# we used the tag created for CRUX and the first commit hash in CRUX-ARM
17723e82
VM
12# CRUX-3.1 8f1b890416501c3a0dd8b565312089896a587962
13# CRUX-ARM 3.1 574c4008c8d63ac004b5196615da9fd29ef0c1d3
14GIT_BRANCH="3.1"
15GIT_COMMIT_HASH_UPSTREAM="8f1b890416501c3a0dd8b565312089896a587962"
16GIT_COMMIT_HASH_OVERLAY="574c4008c8d63ac004b5196615da9fd29ef0c1d3"
b92a8b5f
JB
17
18PWD_DIR=$(pwd)
19TMP_DIR=$(mktemp -d)
20
21cd $TMP_DIR && \
22 git clone $GIT_REPO_UPSTREAM && \
23 cd core && \
b92a8b5f
JB
24 git checkout $GIT_BRANCH && \
25 git fetch && \
26 git reset --hard $GIT_COMMIT_HASH_UPSTREAM && \
27 rm -rvf .git README && \
28 cd .. && \
29 git clone $GIT_REPO_OVERLAY && \
30 cd core-arm && \
31 git branch $GIT_BRANCH origin/$GIT_BRANCH && \
32 git checkout $GIT_BRANCH && \
33 git fetch && \
34 git reset --hard $GIT_COMMIT_HASH_OVERLAY && \
35 rm -rvf .git README && \
36 cd .. && \
37 tar cvJf $PWD_DIR/crossrootfs-extras-$GIT_BRANCH.tar.xz core core-arm
38
39rm -fr $TMP_DIR