Compare commits
31 Commits
Author | SHA1 | Date | |
---|---|---|---|
6710904301 | |||
ab19ae7b3b | |||
d10264d4c2 | |||
1bcd03dda0 | |||
420945c6c7 | |||
26a1fd4844 | |||
|
b2ef4a1e66 | ||
|
e6d0670714 | ||
|
39345d9b99 | ||
|
56bd4083bf | ||
|
e462c80afd | ||
|
1a2e7a08d6 | ||
|
9d16ed4fe0 | ||
|
d6a7a245fb | ||
|
23b66737a2 | ||
|
8ded32e7eb | ||
|
482b5d2c4b | ||
|
485b901342 | ||
|
7033086b0e | ||
|
f02d0d048d | ||
|
202f6963fe | ||
|
85691daad7 | ||
|
f71df24cd3 | ||
|
8afb5390c8 | ||
|
b7d70892bf | ||
|
b9bc3a6382 | ||
|
71cfded140 | ||
|
5689e53032 | ||
|
b4023f5460 | ||
|
a94e8c868f | ||
|
1b61abaa77 |
@ -3,7 +3,7 @@
|
||||
Devuan Linux for Windows users
|
||||
<a href="//git.lumen.sh/Fierelier/windvn/raw/branch/master/assets/screenshot.png" target="_blank"><img src="assets/screenshot.png" width="360" title="Screenshot"></a>
|
||||
|
||||
# [Download](https://fier.me/software/windvn/iso/daedalus)
|
||||
# [Download](https://fier.me/software/windvn/iso/chimaera)
|
||||
|
||||
Regular ISOs have a full live environment. The desktop environment can be started by going into bash, and typing `startx`. Legacy ISOs only have a text live environment.
|
||||
|
||||
|
@ -1,4 +1,3 @@
|
||||
sources-proprietary
|
||||
firmware-proprietary-prereq
|
||||
firmware-proprietary-licenses
|
||||
firmware-proprietary
|
@ -1,3 +0,0 @@
|
||||
#!/usr/bin/env bash
|
||||
set -e
|
||||
apt-get -y install python3-apt
|
@ -1,12 +1,13 @@
|
||||
#!/usr/bin/env python3
|
||||
import apt
|
||||
cache = apt.Cache()
|
||||
ofile = open("/chroot-out","w",encoding="utf-8")
|
||||
ofile.write('WDVN_PACKAGES="$WDVN_PACKAGES')
|
||||
for package in cache:
|
||||
if "nvidia" in package.name.lower(): continue
|
||||
if package.name == "raspi-firmware": continue
|
||||
if package.candidate.origins[0].component == "non-free-firmware":
|
||||
ofile.write(" " + package.name)
|
||||
ofile.write('"')
|
||||
ofile.close()
|
||||
#!/bin/bash
|
||||
set -e
|
||||
function sfp {
|
||||
packages=""
|
||||
while read p; do
|
||||
IFS=" " read -ra packageinfo <<< "$p"
|
||||
if [[ "${packageinfo[0]}" == *firmware* ]]; then
|
||||
packages="$packages ${packageinfo[0]}"
|
||||
fi
|
||||
done <<<$(apt-cache search "$1")
|
||||
echo "$packages"
|
||||
}
|
||||
echo "WDVN_PACKAGES=\"\$WDVN_PACKAGES firmware-linux firmware-misc-nonfree amd64-microcode intel-microcode $(sfp wireless) $(sfp wifi) $(sfp net) $(sfp nic)\"" >"/chroot-out"
|
@ -1,12 +1,12 @@
|
||||
#!/bin/bash
|
||||
echo "deb $WDVN_URL $WDVN_VER main contrib non-free non-free-firmware
|
||||
# deb-src $WDVN_URL $WDVN_VER main contrib non-free non-free-firmware
|
||||
echo "deb $WDVN_URL $WDVN_VER main contrib non-free
|
||||
# deb-src $WDVN_URL $WDVN_VER main contrib non-free
|
||||
|
||||
deb $WDVN_URL $WDVN_VER-security main contrib non-free non-free-firmware
|
||||
# deb-src $WDVN_URL $WDVN_VER-security main contrib non-free non-free-firmware
|
||||
deb $WDVN_URL $WDVN_VER-security main contrib non-free
|
||||
# deb-src $WDVN_URL $WDVN_VER-security main contrib non-free
|
||||
|
||||
# $WDVN_VER-updates, to get updates before a point release is made;
|
||||
# see https://www.debian.org/doc/manuals/debian-reference/ch02.en.html#_updates>
|
||||
# deb $WDVN_URL $WDVN_VER-updates main contrib non-free non-free-firmware
|
||||
# deb-src $WDVN_URL $WDVN_VER-updates main contrib non-free non-free-firmware
|
||||
# deb $WDVN_URL $WDVN_VER-updates main contrib non-free
|
||||
# deb-src $WDVN_URL $WDVN_VER-updates main contrib non-free
|
||||
" >"$1/etc/apt/sources.list"
|
2
shell
2
shell
@ -1,7 +1,7 @@
|
||||
#!/bin/bash
|
||||
export WDVN_NAME="windvn"
|
||||
export WDVN_URL="http://deb.devuan.org/merged"
|
||||
export WDVN_VER_DEBSTRAP="daedalus" # This is the suite/version name passed to debootstrap. This is useful if you want to pull, for example, daedalus, but that name is not understood yet in debootstrap. So you can use "testing" instead, which is always understood, and then put "daedalus" (or whatever currently corresponds to testing) into WDVN_VER, so the resulting distro stays within the daedalus specification, instead of updating to the next testing version.
|
||||
export WDVN_VER_DEBSTRAP="chimaera" # This is the suite/version name passed to debootstrap. This is useful if you want to pull, for example, daedalus, but that name is not understood yet in debootstrap. So you can use "testing" instead, which is always understood, and then put "daedalus" (or whatever currently corresponds to testing) into WDVN_VER, so the resulting distro stays within the daedalus specification, instead of updating to the next testing version.
|
||||
export WDVN_VER="$WDVN_VER_DEBSTRAP"
|
||||
|
||||
export WDVN_DATE="$(date --utc "+%Y.%m.%d-%H.%M.%S")"
|
||||
|
Loading…
Reference in New Issue
Block a user