diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0412914..07e6918 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -37,5 +37,5 @@ jobs: with: upload_url: ${{ steps.create_release.outputs.upload_url }} asset_path: ./egos.iso - asset_name: egos-v${{ github.run_number }}.img + asset_name: egos-v${{ github.run_number }}.iso asset_content_type: application/octet-stream diff --git a/scripts/init.sh b/scripts/init.sh index 707c9c6..640432e 100644 --- a/scripts/init.sh +++ b/scripts/init.sh @@ -1,14 +1,16 @@ #!/bin/sh +set -e + # Disable Kernel Messages dmesg -n 1 +clear # Mount the file system -mount -t devtmpfs none /dev -mount -t proc none /proc -mount -t sysfs none /sys +mount -t devtmpfs udev /dev +mount -t proc proc /proc +mount -t sysfs sysfs /sys -clear # Print the welcome message echo "Welcome to the Linux Kernel"