{"id":37185804,"url":"https://github.com/sphair/gadf","last_synced_at":"2026-01-14T21:32:18.124Z","repository":{"id":327192799,"uuid":"1106959114","full_name":"sphair/gadf","owner":"sphair","description":"Create bootable Amiga ADF disk images from executables.","archived":false,"fork":false,"pushed_at":"2025-12-01T19:32:00.000Z","size":45,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-12-05T03:33:33.473Z","etag":null,"topics":["adf","amiga","golang"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"unlicense","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/sphair.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-11-30T09:57:17.000Z","updated_at":"2025-12-02T11:35:44.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/sphair/gadf","commit_stats":null,"previous_names":["sphair/gadf"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/sphair/gadf","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sphair%2Fgadf","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sphair%2Fgadf/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sphair%2Fgadf/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sphair%2Fgadf/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sphair","download_url":"https://codeload.github.com/sphair/gadf/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sphair%2Fgadf/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28435134,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-14T18:57:19.464Z","status":"ssl_error","status_checked_at":"2026-01-14T18:52:48.501Z","response_time":107,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: 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":["adf","amiga","golang"],"created_at":"2026-01-14T21:32:17.506Z","updated_at":"2026-01-14T21:32:18.113Z","avatar_url":"https://github.com/sphair.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# gadf\n\nCreate bootable Amiga ADF disk images from executables.\n\nThis tool creates ADF (Amiga Disk File) images that boot and run a specified executable, compatible with AmigaDOS 1.2+ using the OFS (Old File System).\n\nIt was inspired by exe2adf (https://exe2adf.com/), but since that tool has no source code available, this tool was made.\n\nBased on documentation from http://lclevy.free.fr/adflib/adf_info.html\n\n## Features\n\n- Creates bootable 880KB DD floppy disk images\n- Cross-platform (Windows, Linux, macOS)\n- Compatible with AmigaDOS 1.2+ (OFS filesystem)\n\n## Installation\n\n```bash\ncd src\ngo build -o gadf ./cmd/gadf\n```\n\nOr install directly:\n\n```bash\ngo install github.com/sphair/gadf/cmd/gadf@latest\n```\n\n## Usage\n\n```bash\n# Basic usage - creates demo.adf that boots and runs demo.exe\ngadf -i demo.exe\n\n# Custom output filename\ngadf -i demo.exe -a mydisk.adf\n\n# Custom volume label\ngadf -i demo.exe -l \"My Demo\"\n\n# Include additional files and directories (preserves structure)\ngadf -i demo.exe data/ music/\n\n# Include directory but flatten all files to root\ngadf -i demo.exe -f data/\n\n# Mix files and directories\ngadf -i demo.exe readme.txt data/ music/\n\n# Suppress shell window on boot\ngadf -i demo.exe -s\n```\n\n## Options\n\n```\n-i \u003cfile\u003e    Input executable (required)\n-a \u003cfile\u003e    Output ADF filename (default: \u003cinput\u003e.adf)\n-l \u003clabel\u003e   Volume label (default: input filename, max 30 chars)\n-f           Flatten directory structure (put all files at root)\n-s           Suppress shell window on boot\n-h           Help\n-version     Version info\n```\n\nYou can specify multiple files and directories as arguments after the flags.\nDirectories are always processed recursively. Use `-f` to flatten the structure.\n\n## Bootblock\n\nBy default, uses a minimal bootblock that works on all Kickstart versions (1.2+).\n\nThe `-s` flag adds expansion.library code to suppress the shell window flash on KS 2.0+. This option works with KS 1.2+ (the disk will boot), it just won't suppress the shell window on older Kickstarts (the expansion.library call silently fails).\n\n## Generated Disk Structure\n\n```\n\u003cvolume label\u003e:\n├── \u003cexecutable\u003e           # Your executable\n├── S/\n│   └── startup-sequence   # Boot script that runs your executable\n└── [additional files]     # Any additional files/directories specified\n```\n\n## License\n\nThis is free and unencumbered software released into the public domain. See [UNLICENSE](UNLICENSE) for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsphair%2Fgadf","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsphair%2Fgadf","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsphair%2Fgadf/lists"}