Merge pull request #4 from nishad-prime/feature

alpha 0.1.3
This commit is contained in:
Nasir Hossain Nishad 2024-02-17 03:54:31 +06:00 committed by GitHub
commit 7e45665af4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 7 additions and 5 deletions

View File

@ -37,5 +37,5 @@ jobs:
with: with:
upload_url: ${{ steps.create_release.outputs.upload_url }} upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./egos.iso 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 asset_content_type: application/octet-stream

View File

@ -1,14 +1,16 @@
#!/bin/sh #!/bin/sh
set -e
# Disable Kernel Messages # Disable Kernel Messages
dmesg -n 1 dmesg -n 1
clear
# Mount the file system # Mount the file system
mount -t devtmpfs none /dev mount -t devtmpfs udev /dev
mount -t proc none /proc mount -t proc proc /proc
mount -t sysfs none /sys mount -t sysfs sysfs /sys
clear
# Print the welcome message # Print the welcome message
echo "Welcome to the Linux Kernel" echo "Welcome to the Linux Kernel"