From 199be2992e8dc15b3d8243108a01d8a435a3ef6e Mon Sep 17 00:00:00 2001 From: Alfred Bratterud Date: Sun, 22 May 2016 21:17:25 +0200 Subject: [PATCH 1/2] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index eb902d694c..fe4f764c90 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ We're working towards automating everything with our Jenkins CI server. The test * **Standard C library** using [newlib](https://sourceware.org/newlib/) from [Red Hat](http://www.redhat.com/) * **Virtio Network driver** with DMA. [Virtio](https://www.oasis-open.org/committees/tc_home.php?wg_abbrev=virtio) provides a highly efficient and widely supported I/O virtualization. Like most implementations IncludeOS currently uses "legacy mode", but we're working towards the new [Virtio 1.0 OASIS standard](http://docs.oasis-open.org/virtio/virtio/v1.0/virtio-v1.0.html) * **A highly modular TCP/IP-stack** written from scratch, still under heavy development. - * TCP: Not all the RFC's are impelemented yet, but it's stable and usable, including congestion control and common opitons. + * TCP: Not all the RFC's are impelemented yet, but it's stable and usable, including congestion control and common options. * UDP: More or less complete, enough to support a high performance DNS service * DHCP: Basic support, tested on VirtualBox, KVM and OpenStack * ICMP: Enough to answer ping, no integration with the rest of the stack yet. From 11a3238d465720cda5ee831815085af462292329 Mon Sep 17 00:00:00 2001 From: Alfred Bratterud Date: Sun, 22 May 2016 22:16:47 +0200 Subject: [PATCH 2/2] Fetching tags instead of pulling them --- etc/install_from_bundle.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etc/install_from_bundle.sh b/etc/install_from_bundle.sh index d89ab849fc..1e9e618cfb 100755 --- a/etc/install_from_bundle.sh +++ b/etc/install_from_bundle.sh @@ -29,7 +29,7 @@ sudo apt-get install -y $DEPENDENCIES echo ">>> Updating git-tags " # Get the latest tag from IncludeOS repo pushd $INCLUDEOS_SRC -git pull --tags +git fetch --tags tag=`git describe --abbrev=0` popd