{"id":15780086,"url":"https://github.com/rgl/raspberrypi-kernel-iscsi-initrd","last_synced_at":"2026-04-24T21:31:37.933Z","repository":{"id":139753234,"uuid":"236189860","full_name":"rgl/raspberrypi-kernel-iscsi-initrd","owner":"rgl","description":"This contains the initrd binaries needed to boot a rpi from iSCSI","archived":false,"fork":false,"pushed_at":"2020-06-01T18:18:22.000Z","size":2,"stargazers_count":3,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-06-12T11:56:33.116Z","etag":null,"topics":["iscsi","raspberry-pi"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/rgl.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2020-01-25T15:41:17.000Z","updated_at":"2022-01-14T19:35:10.000Z","dependencies_parsed_at":null,"dependency_job_id":"0bb28f91-c339-4f53-994e-776b99bb9741","html_url":"https://github.com/rgl/raspberrypi-kernel-iscsi-initrd","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/rgl/raspberrypi-kernel-iscsi-initrd","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rgl%2Fraspberrypi-kernel-iscsi-initrd","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rgl%2Fraspberrypi-kernel-iscsi-initrd/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rgl%2Fraspberrypi-kernel-iscsi-initrd/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rgl%2Fraspberrypi-kernel-iscsi-initrd/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rgl","download_url":"https://codeload.github.com/rgl/raspberrypi-kernel-iscsi-initrd/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rgl%2Fraspberrypi-kernel-iscsi-initrd/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32241577,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-24T13:21:15.438Z","status":"ssl_error","status_checked_at":"2026-04-24T13:21:15.005Z","response_time":64,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["iscsi","raspberry-pi"],"created_at":"2024-10-04T18:40:30.287Z","updated_at":"2026-04-24T21:31:37.910Z","avatar_url":"https://github.com/rgl.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"This contains the initrd binaries needed to boot a rpi from iSCSI.\n\nThis is used by [rgl/pxe-raspberrypi-vagrant](https://github.com/rgl/pxe-raspberrypi-vagrant)\nbecause updating the initrd when running in [packer-builder-arm-image](https://github.com/solo-io/packer-builder-arm-image)\ndoes not work.\n\n# Build\n\nTo build the binaries execute the following command in your Raspberry Pi 4:\n\n```bash\nwget -O- https://github.com/rgl/raspberrypi-kernel-iscsi-initrd/raw/master/build.sh | sudo bash\n```\n\n# Raspberry Pi configuration\n\nConfigure your rpi boot partition to load initrd and configure the iSCSI boot, e.g.:\n\n```bash\n# add support for mounting iscsi targets.\napt-get install -y --no-install-recommends open-iscsi\nsed -i -E 's,#(INITRD)=.+,\\1=Yes,g' /etc/default/raspberrypi-kernel\n# install the initrd binaries needed for mounting an iscsi target.\n# NB this is needed because dpkg-reconfigure raspberrypi-kernel does not\n#    work under packer-builder-arm-image.\ntar xf raspberrypi-kernel-iscsi-initrd.tgz -C /boot\n\n# go to your rpi boot partition.\ncd /boot\n\n# configure the rpi bootloader to load initrd.\n# see https://www.raspberrypi.org/documentation/configuration/config-txt/README.md\n# see https://www.raspberrypi.org/documentation/configuration/config-txt/boot.md\necho \"initramfs $(ls initrd.img-*-v7l+) followkernel\" \u003e\u003econfig.txt\n\n# configure rpi kernel command line to mount the root fs from our iscsi export.\n# see \"Root on iSCSI\" at /usr/share/doc/open-iscsi/README.Debian.gz\n(cat | tr '\\n' ' ') \u003ecmdline.txt \u003c\u003cEOF\nroot=UUID=$(blkid --probe --match-tag UUID --output value /srv/iscsi/$name.img)\niscsi_initiator=iqn.2020-01.test:$name\niscsi_target_name=iqn.2020-01.test.gateway:$name.root\niscsi_target_ip=10.10.10.2\niscsi_target_port=3260\nrw\nrootwait\nelevator=deadline\nip=dhcp\nconsole=serial0,115200\nconsole=tty1\nEOF\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frgl%2Fraspberrypi-kernel-iscsi-initrd","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frgl%2Fraspberrypi-kernel-iscsi-initrd","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frgl%2Fraspberrypi-kernel-iscsi-initrd/lists"}