Merge pull request #5 from aheirman/patch-5

Use a for loop and add more 'needed' packages (certificates, etc) in …
This commit is contained in:
Ella-0 2021-02-03 15:23:49 +00:00 committed by GitHub
commit 22bf298057
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,8 +1,9 @@
#!/bin/sh #!/bin/mksh
# #
# Creates an ISO from the following built packages. # Creates an ISO from the following built packages.
# Linux, Musl, Toybox, Busybox, LLVM, CMake, Samurai,BYacc, Flex, BMake, # mksh bmake gmake libressl cmake curl rsync linux flex
# LibreSSL, Curl, Git, Expat, Zlib, NetBSD-Curses # byacc om4 zlib samurai libffi python ca-certificates
# zlib expat gettext-tiny git kati netbsd-curses kakoune
# #
# This should be enough to completely rebuild LazyBox from Source # This should be enough to completely rebuild LazyBox from Source
# #
@ -11,25 +12,20 @@
mkdir isoroot mkdir isoroot
mkdir isoout mkdir isoout
tar -xf pkgs/linux/out/linux.5.10.11.tar.xz -C ./isoroot cp_iso_packages (){
tar -xf pkgs/linux/out/linux-dev.5.10.11.tar.xz -C ./isoroot #NOTE: this will assume that there always is a '*-dev'/'*-doc' package,\n this is not true.
tar -xf pkgs/musl/out/musl.1.2.2.tar.xz -C ./isoroot # That's why the errors are shown to some one who cares.
tar -xf pkgs/musl/out/musl-dev.1.2.2.tar.xz -C ./isoroot for pkg in ${packages[@]}
tar -xf pkgs/toybox/out/toybox.0.8.4.tar.xz -C ./isoroot do
tar -xf pkgs/busybox/out/busybox.1.33.0.tar.xz -C ./isoroot echo "Going to copy: $pkg to isoroot"
tar -xf pkgs/llvm/out/llvm.11.0.1.tar.xz -C ./isoroot tar -xf pkgs/${pkg}/out/${pkg}.*.tar.xz -C ./isoroot
tar -xf pkgs/cmake/out/cmake.3.19.2.tar.xz -C ./isoroot tar -xf pkgs/${pkg}/out/${pkg}-dev.*.tar.xz -C ./isoroot 2> /dev/null
tar -xf pkgs/samurai/out/samurai.1.2.tar.xz -C ./isoroot tar -xf pkgs/${pkg}/out/${pkg}-doc.*.tar.xz -C ./isoroot 2> /dev/null
tar -xf pkgs/byacc/out/byacc.20210109.tar.xz -C ./isoroot done
tar -xf pkgs/bmake/out/bmake.20210110.tar.xz -C ./isoroot }
tar -xf pkgs/flex/out/flex.2.6.4.tar.xz -C ./isoroot
tar -xf pkgs/libressl/out/libressl.3.3.1.tar.xz -C ./isoroot packages=(mksh bmake gmake libressl cmake curl rsync linux flex byacc om4 zlib samurai libffi python ca-certificates zlib expat gettext-tiny git kati netbsd-curses kakoune)
tar -xf pkgs/curl/out/curl.7.74.0.tar.xz -C ./isoroot cp_iso_packages
tar -xf pkgs/git/out/git.2.30.0.tar.xz -C ./isoroot
tar -xf pkgs/expat/out/expat.2.2.10.tar.xz -C ./isoroot
tar -xf pkgs/zlib/out/zlib.1.2.11.tar.xz -C ./isoroot
tar -xf pkgs/mksh/out/mksh.59c.tar.xz -C ./isoroot
tar -xf pkgs/netbsd-curses/out/netbsd-curses.0.3.1.tar.xz -C ./isoroot
cat >isoroot/init << EOF cat >isoroot/init << EOF