Compare commits
114 Commits
Author | SHA1 | Date | |
---|---|---|---|
c090880af8 | |||
2b6f1c64ff | |||
b46c55bf08 | |||
982f17f9e3 | |||
523e9be298 | |||
56354d8598 | |||
117b046b64 | |||
a568cacb8e | |||
d81cc3ba46 | |||
7420db7975 | |||
9e7081955d | |||
4c77565688 | |||
fb24b9d6c4 | |||
a765a3608c | |||
c1b986a6b8 | |||
8c3003ac6c | |||
66e1bf3781 | |||
1cfbc75688 | |||
1b12d053cd | |||
5426659cc8 | |||
91f7a3445d | |||
c300470a0f | |||
b2c7f4a778 | |||
f56a4f6e33 | |||
678cec4d59 | |||
1598f3f62d | |||
071ecf01b3 | |||
cfbac95e41 | |||
11248687bd | |||
c3d17c4a99 | |||
0c5d329508 | |||
942dd4d631 | |||
9daeb347db | |||
de6ae3b7a3 | |||
1de48f6d55 | |||
5d81ce1eb1 | |||
966d386e4d | |||
cfafae4bb8 | |||
e365aa6472 | |||
b9384d213c | |||
f537ab6303 | |||
abd639df85 | |||
06a23d9e30 | |||
00ea0c450c | |||
1f62ef4cc3 | |||
d9113e65be | |||
a21a92f31e | |||
f44f76f572 | |||
79bd2b9f51 | |||
1627b3b413 | |||
f1ed5b1d72 | |||
58f8440840 | |||
a5707a0564 | |||
a930c3d8e8 | |||
b321f19dbf | |||
9a41f9c069 | |||
eb3ed35298 | |||
|
66a95790e4 | ||
|
6bdeb674dd | ||
74f3a6da31 | |||
|
da97476bf3 | ||
|
8814f731a2 | ||
|
a6bb744850 | ||
|
8220f48191 | ||
|
378e0cbb8c | ||
e403abba56 | |||
2b086e2c5b | |||
b09627e44e | |||
2588fa16d7 | |||
|
a2a9bcaa77 | ||
e28209ec6e | |||
e089293727 | |||
a8fef29b35 | |||
4f8c3c6720 | |||
|
dd4b107907 | ||
|
3f57101344 | ||
|
bd89018d8c | ||
|
0e51cb5206 | ||
|
802aee885b | ||
|
d1bb208e50 | ||
|
facf2af79e | ||
|
f3f2ffdf50 | ||
|
b4b6703c73 | ||
|
2ed3c07ec1 | ||
59efd9f733 | |||
259ba790ca | |||
7910c9e6f2 | |||
95e02443a5 | |||
c7e931c06a | |||
50193a330c | |||
d3fd85cbe7 | |||
f211120df0 | |||
aaeee1a81a | |||
d019cabaf8 | |||
f87bacbdcb | |||
ba053f6cca | |||
7714dc06d6 | |||
6a7b9d59bf | |||
fa4003fca5 | |||
ed61d6c3c3 | |||
9a440a39e3 | |||
d29033d60a | |||
4bd6bf5d7d | |||
7bb36b89e9 | |||
18a056fbc0 | |||
2f3d0c6f3e | |||
d3089d588c | |||
8b7d3035c1 | |||
0f5cb00b94 | |||
c38a44391a | |||
4b5c7eff4b | |||
|
4d242faeeb | ||
62e1718ae5 | |||
bcddcf3202 |
1
.github/build-canary-v3
vendored
Normal file
1
.github/build-canary-v3
vendored
Normal file
@ -0,0 +1 @@
|
||||
1
|
1
.github/build-nest-v3
vendored
Normal file
1
.github/build-nest-v3
vendored
Normal file
@ -0,0 +1 @@
|
||||
1
|
1
.github/release-canary-v3
vendored
Normal file
1
.github/release-canary-v3
vendored
Normal file
@ -0,0 +1 @@
|
||||
3
|
1
.github/release-nest-v3
vendored
Normal file
1
.github/release-nest-v3
vendored
Normal file
@ -0,0 +1 @@
|
||||
1
|
37
.github/workflows/build-canaryv3.yml
vendored
Normal file
37
.github/workflows/build-canaryv3.yml
vendored
Normal file
@ -0,0 +1,37 @@
|
||||
name: PikaOS Package Build Only (Canary) (amd64-v3)
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
paths:
|
||||
- '.github/build-canary-v3'
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
container:
|
||||
image: ghcr.io/pikaos-linux/pikaos-builder:canaryv3
|
||||
volumes:
|
||||
- /proc:/proc
|
||||
options: --privileged -it
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- name: Install SSH key
|
||||
uses: shimataro/ssh-key-action@v2
|
||||
with:
|
||||
key: ${{ secrets.SSH_KEY }}
|
||||
name: id_rsa
|
||||
known_hosts: ${{ secrets.KNOWN_HOSTS }}
|
||||
if_key_exists: replace
|
||||
|
||||
- name: Update APT Cache
|
||||
run: apt-get update -y
|
||||
|
||||
- name: Set Build Config
|
||||
run: cp -vf ./pika-build-config/amd64-v3.sh ./pika-build-config.sh
|
||||
|
||||
- name: Build Package
|
||||
run: ./main.sh
|
37
.github/workflows/build-nestv3.yml
vendored
Normal file
37
.github/workflows/build-nestv3.yml
vendored
Normal file
@ -0,0 +1,37 @@
|
||||
name: PikaOS Package Build Only (amd64-v3)
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
paths:
|
||||
- '.github/build-nest-v3'
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
container:
|
||||
image: ghcr.io/pikaos-linux/pikaos-builder:nestv3
|
||||
volumes:
|
||||
- /proc:/proc
|
||||
options: --privileged -it
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- name: Install SSH key
|
||||
uses: shimataro/ssh-key-action@v2
|
||||
with:
|
||||
key: ${{ secrets.SSH_KEY }}
|
||||
name: id_rsa
|
||||
known_hosts: ${{ secrets.KNOWN_HOSTS }}
|
||||
if_key_exists: replace
|
||||
|
||||
- name: Update APT Cache
|
||||
run: apt-get update -y
|
||||
|
||||
- name: Set Build Config
|
||||
run: cp -vf ./pika-build-config/amd64-v3.sh ./pika-build-config.sh
|
||||
|
||||
- name: Build Package
|
||||
run: ./main.sh
|
40
.github/workflows/release-canaryv3.yml
vendored
Normal file
40
.github/workflows/release-canaryv3.yml
vendored
Normal file
@ -0,0 +1,40 @@
|
||||
name: PikaOS Package Build & Release (Canary) (amd64-v3)
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
paths:
|
||||
- '.github/release-canary-v3'
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
container:
|
||||
image: ghcr.io/pikaos-linux/pikaos-builder:canaryv3
|
||||
volumes:
|
||||
- /proc:/proc
|
||||
options: --privileged -it
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- name: Install SSH key
|
||||
uses: shimataro/ssh-key-action@v2
|
||||
with:
|
||||
key: ${{ secrets.SSH_KEY }}
|
||||
name: id_rsa
|
||||
known_hosts: ${{ secrets.KNOWN_HOSTS }}
|
||||
if_key_exists: replace
|
||||
|
||||
- name: Update APT Cache
|
||||
run: apt-get update -y
|
||||
|
||||
- name: Set Build Config
|
||||
run: cp -vf ./pika-build-config/amd64-v3.sh ./pika-build-config.sh
|
||||
|
||||
- name: Build Package
|
||||
run: ./main.sh
|
||||
|
||||
- name: Release Package
|
||||
run: ./release.sh
|
40
.github/workflows/release-nestv3.yml
vendored
Normal file
40
.github/workflows/release-nestv3.yml
vendored
Normal file
@ -0,0 +1,40 @@
|
||||
name: PikaOS Package Build & Release (amd64-v3)
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
paths:
|
||||
- '.github/release-nest-v3'
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
container:
|
||||
image: ghcr.io/pikaos-linux/pikaos-builder:nestv3
|
||||
volumes:
|
||||
- /proc:/proc
|
||||
options: --privileged -it
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- name: Install SSH key
|
||||
uses: shimataro/ssh-key-action@v2
|
||||
with:
|
||||
key: ${{ secrets.SSH_KEY }}
|
||||
name: id_rsa
|
||||
known_hosts: ${{ secrets.KNOWN_HOSTS }}
|
||||
if_key_exists: replace
|
||||
|
||||
- name: Update APT Cache
|
||||
run: apt-get update -y
|
||||
|
||||
- name: Set Build Config
|
||||
run: cp -vf ./pika-build-config/amd64-v3.sh ./pika-build-config.sh
|
||||
|
||||
- name: Build Package
|
||||
run: ./main.sh
|
||||
|
||||
- name: Release Package
|
||||
run: ./release.sh
|
40
.github/workflows/release.yml
vendored
40
.github/workflows/release.yml
vendored
@ -1,40 +0,0 @@
|
||||
name: PikaOS Package Release
|
||||
|
||||
on:
|
||||
workflow_dispatch
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: self-hosted
|
||||
container:
|
||||
image: ubuntu:22.10
|
||||
volumes:
|
||||
- /proc:/proc
|
||||
options: --privileged -it
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- name: Install needed packages
|
||||
run: apt update && apt install software-properties-common sudo git bc gpg gpg-agent bison build-essential ccache cpio fakeroot flex git kmod libelf-dev libncurses5-dev libssl-dev lz4 qtbase5-dev rsync schedtool wget zstd tar reprepro dpkg-sig devscripts -y
|
||||
|
||||
- name: Import GPG key
|
||||
id: import_gpg
|
||||
uses: crazy-max/ghaction-import-gpg@v5
|
||||
with:
|
||||
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
|
||||
passphrase: ${{ secrets.PASSPHRASE }}
|
||||
|
||||
- name: Install SSH key
|
||||
uses: shimataro/ssh-key-action@v2
|
||||
with:
|
||||
key: ${{ secrets.SSH_KEY }}
|
||||
name: id_rsa
|
||||
known_hosts: ${{ secrets.KNOWN_HOSTS }}
|
||||
if_key_exists: replace
|
||||
|
||||
- name: Build Package
|
||||
run: ./main.sh
|
||||
|
||||
- name: Release Package
|
||||
run: ./release.sh
|
24
LICENSE.md
Normal file
24
LICENSE.md
Normal file
@ -0,0 +1,24 @@
|
||||
MIT License (With DPKG packaging compatibility)
|
||||
|
||||
Copyright (c) 2024 PikaOS
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
||||
|
||||
Notes:
|
||||
The files covered by this license are any files and directories in the root of this repository (including but not limited to: `main.sh`, `release.sh`, and `.github`), with the exception of the `debian` directory and its contents if `debian/copyright` exists, and declares any files or directories as a different LICENSE/COPYRIGHT.
|
@ -1,3 +1,172 @@
|
||||
kernel-pika (3.13-101pika1) pika; urgency=low
|
||||
|
||||
* 6.11.7
|
||||
|
||||
-- Ward Nakchbandi <hotrod.master@hotmail.com> Sat, 01 Oct 2022 14:50:00 +0200
|
||||
|
||||
kernel-pika (3.12-101pika1) pika; urgency=low
|
||||
|
||||
* 6.11.6
|
||||
|
||||
-- Ward Nakchbandi <hotrod.master@hotmail.com> Sat, 01 Oct 2022 14:50:00 +0200
|
||||
|
||||
kernel-pika (3.11-101pika1) pika; urgency=low
|
||||
|
||||
* 6.11.5
|
||||
|
||||
-- Ward Nakchbandi <hotrod.master@hotmail.com> Sat, 01 Oct 2022 14:50:00 +0200
|
||||
|
||||
kernel-pika (3.10-101pika1) pika; urgency=low
|
||||
|
||||
* 6.11.4
|
||||
|
||||
-- Ward Nakchbandi <hotrod.master@hotmail.com> Sat, 01 Oct 2022 14:50:00 +0200
|
||||
|
||||
kernel-pika (3.9-101pika1) pika; urgency=low
|
||||
|
||||
* 6.11.3
|
||||
|
||||
-- Ward Nakchbandi <hotrod.master@hotmail.com> Sat, 01 Oct 2022 14:50:00 +0200
|
||||
|
||||
kernel-pika (3.8-101pika1) pika; urgency=low
|
||||
|
||||
* 6.11.2
|
||||
|
||||
-- Ward Nakchbandi <hotrod.master@hotmail.com> Sat, 01 Oct 2022 14:50:00 +0200
|
||||
|
||||
kernel-pika (3.7-101pika1) pika; urgency=low
|
||||
|
||||
* 6.11.1
|
||||
|
||||
-- Ward Nakchbandi <hotrod.master@hotmail.com> Sat, 01 Oct 2022 14:50:00 +0200
|
||||
|
||||
kernel-pika (3.6-101pika1) pika; urgency=low
|
||||
|
||||
* 6.11.0
|
||||
|
||||
-- Ward Nakchbandi <hotrod.master@hotmail.com> Sat, 01 Oct 2022 14:50:00 +0200
|
||||
|
||||
kernel-pika (3.5-101pika1) pika; urgency=low
|
||||
|
||||
* 6.10.10
|
||||
|
||||
-- Ward Nakchbandi <hotrod.master@hotmail.com> Sat, 01 Oct 2022 14:50:00 +0200
|
||||
|
||||
kernel-pika (3.4-101pika1) pika; urgency=low
|
||||
|
||||
* 6.10.7
|
||||
|
||||
-- Ward Nakchbandi <hotrod.master@hotmail.com> Sat, 01 Oct 2022 14:50:00 +0200
|
||||
|
||||
kernel-pika (3.3-101pika1) pika; urgency=low
|
||||
|
||||
* Add ntsync udev
|
||||
|
||||
-- Ward Nakchbandi <hotrod.master@hotmail.com> Sat, 01 Oct 2022 14:50:00 +0200
|
||||
|
||||
kernel-pika (3.2-101pika1) pika; urgency=low
|
||||
|
||||
* Add scx
|
||||
|
||||
-- Ward Nakchbandi <hotrod.master@hotmail.com> Sat, 01 Oct 2022 14:50:00 +0200
|
||||
|
||||
kernel-pika (3.1-101pika1) pika; urgency=low
|
||||
|
||||
* 6.10.5
|
||||
|
||||
-- Ward Nakchbandi <hotrod.master@hotmail.com> Sat, 01 Oct 2022 14:50:00 +0200
|
||||
|
||||
kernel-pika (3.0-101pika1) pika; urgency=low
|
||||
|
||||
* 6.10.0
|
||||
|
||||
-- Ward Nakchbandi <hotrod.master@hotmail.com> Sat, 01 Oct 2022 14:50:00 +0200
|
||||
|
||||
kernel-pika (2.7-100pika5) pikauwu; urgency=low
|
||||
|
||||
* ACPI Fix
|
||||
|
||||
-- Ward Nakchbandi <hotrod.master@hotmail.com> Sat, 01 Oct 2022 14:50:00 +0200
|
||||
|
||||
kernel-pika (2.7-100pika3) pikauwu; urgency=low
|
||||
|
||||
* Add more fixes from nobara
|
||||
|
||||
-- Ward Nakchbandi <hotrod.master@hotmail.com> Sat, 01 Oct 2022 14:50:00 +0200
|
||||
|
||||
kernel-pika (2.7-2pika1) pikauwu; urgency=low
|
||||
|
||||
* Add linux-perf
|
||||
|
||||
-- Ward Nakchbandi <hotrod.master@hotmail.com> Sat, 01 Oct 2022 14:50:00 +0200
|
||||
|
||||
kernel-pika (2.7-1pika1) pikauwu; urgency=low
|
||||
|
||||
* Kernel 6.8.1
|
||||
|
||||
-- Ward Nakchbandi <hotrod.master@hotmail.com> Sat, 01 Oct 2022 14:50:00 +0200
|
||||
|
||||
kernel-pika (2.6-100pika2) pikauwu; urgency=low
|
||||
|
||||
* Pikauwu and 6.6.0
|
||||
|
||||
-- Ward Nakchbandi <hotrod.master@hotmail.com> Sat, 01 Oct 2022 14:50:00 +0200
|
||||
|
||||
kernel-pika (2.4-100pika1) pikauwu; urgency=low
|
||||
|
||||
* Pikauwu and 6.5.5
|
||||
|
||||
-- Ward Nakchbandi <hotrod.master@hotmail.com> Sat, 01 Oct 2022 14:50:00 +0200
|
||||
|
||||
kernel-pika (2.3-2pika1.lunar) lunar; urgency=low
|
||||
|
||||
* Goodbye 6.4.9
|
||||
|
||||
-- Ward Nakchbandi <hotrod.master@hotmail.com> Sat, 01 Oct 2022 14:50:00 +0200
|
||||
|
||||
kernel-pika (2.3-1pika1.lunar) lunar; urgency=low
|
||||
|
||||
* 6.5.0 update
|
||||
|
||||
-- Ward Nakchbandi <hotrod.master@hotmail.com> Sat, 01 Oct 2022 14:50:00 +0200
|
||||
|
||||
kernel-pika (2.2-101pika1.lunar) lunar; urgency=low
|
||||
|
||||
* 6.4.9 update
|
||||
|
||||
-- Ward Nakchbandi <hotrod.master@hotmail.com> Sat, 01 Oct 2022 14:50:00 +0200
|
||||
|
||||
kernel-pika (2.2-100pika1.lunar) lunar; urgency=low
|
||||
|
||||
* 6.4.6 update
|
||||
|
||||
-- Ward Nakchbandi <hotrod.master@hotmail.com> Sat, 01 Oct 2022 14:50:00 +0200
|
||||
|
||||
kernel-pika (2.2-99pika1.lunar) lunar; urgency=low
|
||||
|
||||
* 6.4.3 update
|
||||
|
||||
-- Ward Nakchbandi <hotrod.master@hotmail.com> Sat, 01 Oct 2022 14:50:00 +0200
|
||||
|
||||
kernel-pika (2.1-99pika1.lunar) lunar; urgency=low
|
||||
|
||||
* 6.4 update
|
||||
|
||||
-- Ward Nakchbandi <hotrod.master@hotmail.com> Sat, 01 Oct 2022 14:50:00 +0200
|
||||
|
||||
kernel-pika (2.0-99pika3.lunar) lunar; urgency=low
|
||||
|
||||
* Add cpupower and turbostat
|
||||
|
||||
-- Ward Nakchbandi <hotrod.master@hotmail.com> Sat, 01 Oct 2022 14:50:00 +0200
|
||||
|
||||
|
||||
kernel-pika (2.0-99pika2.lunar) lunar; urgency=low
|
||||
|
||||
* Update kernel to 6.3.0
|
||||
|
||||
-- Ward Nakchbandi <hotrod.master@hotmail.com> Sat, 01 Oct 2022 14:50:00 +0200
|
||||
|
||||
kernel-pika (2.0) kinetic; urgency=low
|
||||
|
||||
* Update kernel to 6.3.0
|
||||
|
@ -9,9 +9,15 @@ Standards-Version: 4.6.1
|
||||
Package: kernel-pika
|
||||
Section: kernel
|
||||
Architecture: amd64
|
||||
Depends: ${misc:Depends}, linux-image-6.3.0-pikaos, linux-headers-6.3.0-pikaos, kernel-pika-config
|
||||
Depends: ${misc:Depends}, linux-image-6.11.7-pikaos, linux-headers-6.11.7-pikaos, kernel-pika-config, linux-cpupower, linux-perf, scx
|
||||
Conflicts: acpi-call-dkms
|
||||
Description: metapackage for installing PikaOS kernel
|
||||
|
||||
Package: kernel-pika-nvidia
|
||||
Section: kernel
|
||||
Architecture: amd64
|
||||
Depends: kernel-pika, linux-modules-nvidia-6.11.7-pikaos
|
||||
Description: metapackage for installing PikaOS kernel with nvidia driver modules
|
||||
|
||||
Package: kernel-pika-config
|
||||
Section: kernel
|
||||
|
@ -1 +1 @@
|
||||
3.0 (native)
|
||||
3.0 (quilt)
|
||||
|
1
kernel-pika/usr/lib/modprobe.d/80-v4l2loopback.conf
Normal file
1
kernel-pika/usr/lib/modprobe.d/80-v4l2loopback.conf
Normal file
@ -0,0 +1 @@
|
||||
options v4l2loopback card_label='V4L2 Loopback' video_nr=7 exclusive_caps=1
|
@ -0,0 +1,10 @@
|
||||
pulse.rules = [
|
||||
{
|
||||
matches = [ { application.process.binary = "wine64-preloader" } ]
|
||||
actions = {
|
||||
update-props = {
|
||||
pulse.min.quantum = 1024/48000
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
@ -0,0 +1 @@
|
||||
kernel.split_lock_mitigate = 0
|
@ -0,0 +1,2 @@
|
||||
KERNEL=="rtc0", GROUP="video"
|
||||
KERNEL=="hpet", GROUP="video"
|
@ -0,0 +1,6 @@
|
||||
# set scheduler for NVMe
|
||||
ACTION=="add|change", KERNEL=="nvme[0-9]n[0-9]", ATTR{queue/scheduler}="none"
|
||||
# set scheduler for SSD and eMMC
|
||||
ACTION=="add|change", KERNEL=="sd[a-z]*|mmcblk[0-9]*", ATTR{queue/rotational}=="0", ATTR{queue/scheduler}="mq-deadline"
|
||||
# set scheduler for rotating disks
|
||||
ACTION=="add|change", KERNEL=="sd[a-z]*", ATTR{queue/rotational}=="1", ATTR{queue/scheduler}="bfq"
|
1
kernel-pika/usr/lib/udev/rules.d/99-ntsync.rules
Normal file
1
kernel-pika/usr/lib/udev/rules.d/99-ntsync.rules
Normal file
@ -0,0 +1 @@
|
||||
KERNEL=="ntsync", MODE="0644"
|
19
main.sh
19
main.sh
@ -1,8 +1,13 @@
|
||||
# Add dependent repositories
|
||||
wget -q -O - https://ppa.pika-os.com/key.gpg | sudo apt-key add -
|
||||
add-apt-repository https://ppa.pika-os.com
|
||||
add-apt-repository ppa:pikaos/pika
|
||||
add-apt-repository ppa:kubuntu-ppa/backports
|
||||
#! /bin/bash
|
||||
|
||||
set -e
|
||||
|
||||
VERSION="3.13"
|
||||
|
||||
source ./pika-build-config.sh
|
||||
|
||||
echo "$PIKA_BUILD_ARCH" > pika-build-arch
|
||||
|
||||
# Clone Upstream
|
||||
cd ./kernel-pika
|
||||
|
||||
@ -10,8 +15,8 @@ cd ./kernel-pika
|
||||
apt-get build-dep ./ -y
|
||||
|
||||
# Build package
|
||||
dh_make --createorig
|
||||
dpkg-buildpackage
|
||||
LOGNAME=root dh_make --createorig -y -l -p kernel-pika_"$VERSION" || echo "dh-make: Ignoring Last Error"
|
||||
dpkg-buildpackage --no-sign
|
||||
|
||||
# Move the debs to output
|
||||
cd ../
|
||||
|
10
pika-build-config/amd64-v3.sh
Executable file
10
pika-build-config/amd64-v3.sh
Executable file
@ -0,0 +1,10 @@
|
||||
#! /bin/bash
|
||||
export PIKA_BUILD_ARCH="amd64-v3"
|
||||
export DEBIAN_FRONTEND="noninteractive"
|
||||
export DEB_BUILD_MAINT_OPTIONS="optimize=+lto -march=x86-64-v3 -O3 -flto -fuse-linker-plugin -falign-functions=32"
|
||||
export DEB_CFLAGS_MAINT_APPEND="-march=x86-64-v3 -O3 -flto -fuse-linker-plugin -falign-functions=32"
|
||||
export DEB_CPPFLAGS_MAINT_APPEND="-march=x86-64-v3 -O3 -flto -fuse-linker-plugin -falign-functions=32"
|
||||
export DEB_CXXFLAGS_MAINT_APPEND="-march=x86-64-v3 -O3 -flto -fuse-linker-plugin -falign-functions=32"
|
||||
export DEB_LDFLAGS_MAINT_APPEND="-march=x86-64-v3 -O3 -flto -fuse-linker-plugin -falign-functions=32"
|
||||
export DEB_BUILD_OPTIONS="nocheck notest terse"
|
||||
export DPKG_GENSYMBOLS_CHECK_LEVEL=0
|
5
pika-build-config/i386.sh
Executable file
5
pika-build-config/i386.sh
Executable file
@ -0,0 +1,5 @@
|
||||
#! /bin/bash
|
||||
export PIKA_BUILD_ARCH="i386"
|
||||
export DEBIAN_FRONTEND="noninteractive"
|
||||
export DEB_BUILD_OPTIONS="nocheck notest terse"
|
||||
export DPKG_GENSYMBOLS_CHECK_LEVEL=0
|
16
release.sh
16
release.sh
@ -1,14 +1,2 @@
|
||||
# Sign the packages
|
||||
dpkg-sig --sign builder ./output/kernel-pika*.deb
|
||||
|
||||
# Pull down existing ppa repo db files etc
|
||||
rsync -azP --exclude '*.deb' ferreo@direct.pika-os.com:/srv/www/pikappa/ ./output/repo
|
||||
|
||||
# Remove our existing package from the repo
|
||||
reprepro -V --basedir ./output/repo/ removefilter kinetic 'Package (% kernel-pika*)'
|
||||
|
||||
# Add the new package to the repo
|
||||
reprepro -V --basedir ./output/repo/ includedeb kinetic ./output/kernel-pika*.deb
|
||||
|
||||
# Push the updated ppa repo to the server
|
||||
rsync -azP ./output/repo/ ferreo@direct.pika-os.com:/srv/www/pikappa/
|
||||
# send debs to server
|
||||
rsync -azP --include './' --include '*.deb' --exclude '*' ./output/ ferreo@direct.pika-os.com:/srv/www/cockatiel-incoming/
|
Loading…
Reference in New Issue
Block a user