{"id":25416368,"url":"https://github.com/sofijacom/klv-airedale-sr14","last_synced_at":"2025-10-10T22:33:03.437Z","repository":{"id":257147400,"uuid":"857447518","full_name":"sofijacom/KLV-Airedale-sr14","owner":"sofijacom","description":null,"archived":false,"fork":false,"pushed_at":"2024-09-14T19:55:45.000Z","size":10,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-10T22:32:28.007Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/sofijacom.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-09-14T17:24:31.000Z","updated_at":"2024-09-14T19:55:50.000Z","dependencies_parsed_at":"2024-09-15T03:07:51.792Z","dependency_job_id":"633f45d1-81f8-480c-8593-8c36e27b1f7a","html_url":"https://github.com/sofijacom/KLV-Airedale-sr14","commit_stats":null,"previous_names":["sofijacom/klv-airedale-sr14"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/sofijacom/KLV-Airedale-sr14","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sofijacom%2FKLV-Airedale-sr14","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sofijacom%2FKLV-Airedale-sr14/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sofijacom%2FKLV-Airedale-sr14/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sofijacom%2FKLV-Airedale-sr14/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sofijacom","download_url":"https://codeload.github.com/sofijacom/KLV-Airedale-sr14/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sofijacom%2FKLV-Airedale-sr14/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279005463,"owners_count":26083902,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-10T02:00:06.843Z","response_time":62,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-02-16T16:41:32.386Z","updated_at":"2025-10-10T22:33:03.424Z","avatar_url":"https://github.com/sofijacom.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# KLV-Airedale-sr14\n\n- script \"iso_grubconfig\" which will create boot lines for \"grub.cfg\" in a file named \"iso_grub_config.txt\"\n- run the script in the location where the ISO is located.\n\n```\n#!/bin/bash\n## iso_grubconfig\n# Determine FirstRib grub stanzas for menu.lst and grub.conf\n# Revision Date: 13 September 2024 Sofiya\n# Copyright: Licence: MIT\n\n## Run this script from your FirstRib distro installation directory\n\nprogname=\"iso_grubconfig\"; version=\"1.0.0\"; revision=\"-rc1\"\n\ncase \"$1\" in\n\t'--version') printf \"$progname ${version}${revision}\\n\"; exit 0;;\n\t'-h'|'--help'|'-?') printf \"Run this script from your FirstRib distro installation directory with command:\n  ./iso_grubconfig\\n\";exit 0;;\n\t\"-*\") printf \"option $1 not available\\n\";exit 0;;\nesac\n\n_grub_config (){\n\tcd \"$HERE\"\n\tsubdir=\"$bootdir\"\n\tbootuuid=`df . | awk '/^\\/dev/ {print $1}' | xargs blkid -s UUID | awk -F\\\" '{print $2}'`\n\tbootlabel=`df . | awk '/^\\/dev/ {print $1}' | xargs blkid -s LABEL | awk -F\\\" '{print $2}'`\n\tprintf \"\nAssuming names: kernel is vmlinuz and initrd is initrd.gz and booting is\nfrom this build directory and needed modules and firmware are present:\n\"\nif [ \"$bootiso\" != '*.iso' ];then\nisotext=\"\n############################# grub.cfg (BOOT from ISO):\nmenuentry \\\"${subdir}\\\" {\n  iso_path=\\\"/${subdir}/${bootiso}\\\"\n  export iso_path\n  search --set=root --file \\$iso_path\n  probe -u -s rootuuid \\$root\n  export rootuuid\n  loopback loop \\$iso_path\n  root=(loop)\n  configfile /boot/grub/loopback.cfg\n  loopback --delete loop\n}\"\nfi\nprintf \"$isotext\n\nRefer to $PWD/iso_grub_config.txt for\ncopy of this information plus blkid info.\\n\" | tee iso_grub_config.txt\n\tblkid -s UUID \u003e\u003e iso_grub_config.txt\n}\n\nHERE=\"`pwd`\"\nbootdir=`basename \"$HERE\"` # for use with grub config\nfor bootiso in *.iso; do :;done\n_grub_config\nexit 0\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsofijacom%2Fklv-airedale-sr14","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsofijacom%2Fklv-airedale-sr14","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsofijacom%2Fklv-airedale-sr14/lists"}