From 74f93d82fc36156602164b540349c1c83fe4e2b6 Mon Sep 17 00:00:00 2001 From: John Ogness Date: Thu, 5 Apr 2018 09:27:36 +0200 Subject: add rootfs_basic scripts These scripts are provided to participants after the training to allow them to quickly/easily reproduce the many steps of creating a simple root filesystem from scratch. These scripts also serve as an excellent reference for trainers to follow during the live excercises. Signed-off-by: John Ogness --- schulung_tools/rootfs_basic/scripts/README | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100755 schulung_tools/rootfs_basic/scripts/README (limited to 'schulung_tools/rootfs_basic/scripts/README') diff --git a/schulung_tools/rootfs_basic/scripts/README b/schulung_tools/rootfs_basic/scripts/README new file mode 100755 index 0000000..dcfdec3 --- /dev/null +++ b/schulung_tools/rootfs_basic/scripts/README @@ -0,0 +1,24 @@ +#!/bin/sh +set -e + +# download linux/busybox tarballs +./download_kernel.sh +./download_busybox.sh + +# unpack tarballs +./unpack_kernel.sh +./unpack_busybox.sh + +# build linux/busybox/hello +./build_kernel.sh +./build_busybox.sh +./build_hello.sh + +# create root filesystem +./create_rootfs.sh + +# configure/start nfs server +./setup_nfs_server.sh + +# start arm emulator +./start_vm.sh -- cgit v1.2.3