Kaydet (Commit) a7327860 authored tarafından Your Name's avatar Your Name

packaging for debian

üst cbec120b
DESTDIR=/
build:
: 'Please run make install'
install:
[ -d $(DESTDIR)/lib/initrd/ ] && rm -rf $(DESTDIR)/lib/initrd/ || true
mkdir -p $(DESTDIR)/bin
......
initrd (1.1.3) unstable; urgency=medium
* Initial commit
-- Ali Rıza Keskin <ali.riza.keskin@pardus.org.tr> Sun, 28 Feb 2021 04:52:28 +0300
Source: initrd
Section: utils
Priority: optional
Maintainer: Your Name <your.email@example.org>
Build-Depends: make
Standards-Version: 4.3.0
Homepage: https://example.org
Package: initrd
Architecture: all
Depends: ${misc:Depends}, libc6, busybox-static
Description: Initramfs system.
SulinOS initramfs system for debian.
#!/bin/bash
rm -f /var/lib/dpkg/triggers/update-initramfs
for krnl in $(ls /lib/modules/) ; do
echo "Generating initramfs for $krnl"
update-initrd KERNELVER=$krnl &>/dev/null
done
\ No newline at end of file
#!/bin/bash
echo "initramfs-tools" > /var/lib/dpkg/triggers/update-initramfs
update-initramfs -u -k all
\ No newline at end of file
#!/bin/sh
exec dh $@
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment