Compare commits

..

No commits in common. "0cd3096b97c652c4c2998c0194db8fc8528fa6bb" and "7c9b9b67da6b7609ecccdfad4704a3d3420ba0ab" have entirely different histories.

3 changed files with 11 additions and 6 deletions

View File

@ -7,5 +7,10 @@ sudo: required
script: script:
- sudo apt-get update - sudo apt-get update
- sudo apt-get -y dist-upgrade - sudo apt-get -y dist-upgrade
- sudo apt-get -y install wget make gawk gcc bc bison flex xorriso libelf-dev libssl-dev #- sudo apt-get -y install wget make gawk gcc bc bison flex xorriso libelf-dev libssl-dev
- ./minimal.sh #- ./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

View File

@ -1,4 +1,4 @@
# Minimal Linux Script # 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)
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. 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.

View File

@ -1,9 +1,9 @@
#!/bin/sh #!/bin/sh
set -ex set -ex
KERNEL_VERSION=5.11.6 KERNEL_VERSION=4.19.12
BUSYBOX_VERSION=1.33.0 BUSYBOX_VERSION=1.29.3
SYSLINUX_VERSION=6.03 SYSLINUX_VERSION=6.03
wget -O kernel.tar.xz http://kernel.org/pub/linux/kernel/v5.x/linux-${KERNEL_VERSION}.tar.xz wget -O kernel.tar.xz http://kernel.org/pub/linux/kernel/v4.x/linux-${KERNEL_VERSION}.tar.xz
wget -O busybox.tar.bz2 http://busybox.net/downloads/busybox-${BUSYBOX_VERSION}.tar.bz2 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 wget -O syslinux.tar.xz http://kernel.org/pub/linux/utils/boot/syslinux/syslinux-${SYSLINUX_VERSION}.tar.xz
tar -xvf kernel.tar.xz tar -xvf kernel.tar.xz