Compare commits
10 Commits
7c9b9b67da
...
0cd3096b97
Author | SHA1 | Date | |
---|---|---|---|
|
0cd3096b97 | ||
|
d27e51777a | ||
|
92f3672cc9 | ||
|
bc3dd6fc86 | ||
|
f82634fa25 | ||
|
3c967a4d7e | ||
|
6035ee37e2 | ||
|
de3f9fc228 | ||
|
8e991e86ee | ||
|
56873c0a0b |
@ -7,10 +7,5 @@ sudo: required
|
||||
script:
|
||||
- sudo apt-get update
|
||||
- sudo apt-get -y dist-upgrade
|
||||
#- sudo apt-get -y install wget make gawk gcc bc bison flex xorriso libelf-dev libssl-dev
|
||||
#- ./minimal.sh
|
||||
- wget -O ~/bosh https://github.com/cloudfoundry/bosh-cli/releases/download/v5.4.0/bosh-cli-5.4.0-linux-amd64
|
||||
- chmod +x ~/bosh
|
||||
- git clone https://github.com/cloudfoundry/bosh-deployment
|
||||
- mkdir -p ~/deployments/vbox
|
||||
- cd ~/deployments/vbox && ~/bosh create-env ~/bosh-deployment/bosh.yml --state ./state.json -o ~/bosh-deployment/virtualbox/cpi.yml -o ~/bosh-deployment/virtualbox/outbound-network.yml -o ~/bosh-deployment/bosh-lite.yml -o ~/bosh-deployment/bosh-lite-runc.yml -o ~/bosh-deployment/uaa.yml -o ~/bosh-deployment/credhub.yml -o ~/bosh-deployment/jumpbox-user.yml --vars-store ./creds.yml -v director_name=bosh-lite -v internal_ip=192.168.50.6 -v internal_gw=192.168.50.1 -v internal_cidr=192.168.50.0/24 -v outbound_network_name=NatNetwork
|
||||
- sudo apt-get -y install wget make gawk gcc bc bison flex xorriso libelf-dev libssl-dev
|
||||
- ./minimal.sh
|
||||
|
@ -1,4 +1,4 @@
|
||||
# Minimal Linux Script [<img align="right" src="https://travis-ci.org/ivandavidov/minimal-linux-script.svg?branch=master">](https://travis-ci.org/ivandavidov/minimal-linux-script)
|
||||
# Minimal Linux Script
|
||||
|
||||
One script which generates fully functional live Linux ISO image with minimal effort. This is based on the first published version of [Minimal Linux Live](http://github.com/ivandavidov/minimal) with some improvements taken from the next releases. All empty lines and comments have been removed and the script has been modified to reduce the overall length.
|
||||
|
||||
|
@ -1,9 +1,9 @@
|
||||
#!/bin/sh
|
||||
set -ex
|
||||
KERNEL_VERSION=4.19.12
|
||||
BUSYBOX_VERSION=1.29.3
|
||||
KERNEL_VERSION=5.11.6
|
||||
BUSYBOX_VERSION=1.33.0
|
||||
SYSLINUX_VERSION=6.03
|
||||
wget -O kernel.tar.xz http://kernel.org/pub/linux/kernel/v4.x/linux-${KERNEL_VERSION}.tar.xz
|
||||
wget -O kernel.tar.xz http://kernel.org/pub/linux/kernel/v5.x/linux-${KERNEL_VERSION}.tar.xz
|
||||
wget -O busybox.tar.bz2 http://busybox.net/downloads/busybox-${BUSYBOX_VERSION}.tar.bz2
|
||||
wget -O syslinux.tar.xz http://kernel.org/pub/linux/utils/boot/syslinux/syslinux-${SYSLINUX_VERSION}.tar.xz
|
||||
tar -xvf kernel.tar.xz
|
||||
|
Loading…
x
Reference in New Issue
Block a user