Skip to content

Commit

Permalink
v0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
nkraetzschmar committed Jan 7, 2025
0 parents commit 717ab8c
Show file tree
Hide file tree
Showing 7 changed files with 44 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
on:
push:
workflow_dispatch:
schedule:
- cron: '0 0 * * *'
jobs:
build:
uses: gardenlinux/package-build/.github/workflows/build.yml@main
with:
release: ${{ github.ref == 'refs/heads/main' }}
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.build
2 changes: 2 additions & 0 deletions prepare_source
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
git_src -b v0.1 https://github.com/gardenlinux/bootloader
import_src src
5 changes: 5 additions & 0 deletions src/debian/changelog
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
gardenlinux-bootloader (0.1) gardenlinux; urgency=medium

* init

-- Garden Linux Builder <[email protected]> Wed, 1 Jan 2025 00:00:00 +0000
13 changes: 13 additions & 0 deletions src/debian/control
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
Source: gardenlinux-bootloader
Section: otherosfs
Priority: optional
Maintainer: Garden Linux Builder <[email protected]>
Build-Depends: debhelper-compat (= 13), golang, nasm
Standards-Version: 4.6.1
Rules-Requires-Root: no

Package: gardenlinux-bootloader
Architecture: amd64
Multi-Arch: foreign
Depends: ${misc:Depends}, ${shlibs:Depends}
Description: Gardenlinux Legacy Bootloader
12 changes: 12 additions & 0 deletions src/debian/rules
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#!/usr/bin/make -f

%:
dh $@

override_dh_auto_build:
make mbr.bin util/bootloader_util
strip util/bootloader_util

override_dh_auto_install:
install -D -m 644 mbr.bin $(CURDIR)/debian/gardenlinux-bootloader/etc/bootloader/mbr.bin
install -D -m 755 util/bootloader_util $(CURDIR)/debian/gardenlinux-bootloader/usr/sbin/bootloader_util
1 change: 1 addition & 0 deletions src/debian/source/format
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
3.0 (native)

0 comments on commit 717ab8c

Please sign in to comment.