-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
144 changed files
with
400 additions
and
174 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
#!/bin/bash | ||
|
||
export CFLAGS=-"O2" | ||
export CXXFLAGS="-O2" | ||
|
||
URL=https://github.com/flatpak/flatpak/releases/download/1.14.4/flatpak-1.14.4.tar.xz | ||
TAR=$(echo $URL | sed -r 's|(.*)/||') | ||
DIR=$(echo $TAR | sed 's|.tar.*||g') | ||
PACKAGE=$(echo $DIR | sed 's|-[^-]*$||g') | ||
|
||
# Get Package | ||
|
||
cd /blfs/builds | ||
wget $URL | ||
tar -xvf $TAR | ||
cd $DIR | ||
|
||
# Build | ||
|
||
./configure --prefix=/usr | ||
|
||
|
||
make -j16 | ||
|
||
|
||
# Install | ||
sudo make DESTDIR=/pkgs/$PACKAGE install | ||
sudo make install | ||
cd /pkgs | ||
|
||
|
||
|
||
sudo echo "glib libsoup libxml2 dconf systemd libarchive gpgme fuse2 ostree json-glib appstream-glib ostree libseccomp libxslt docbook-xml docbook-xsl gtk-doc dconf p11-kit avahi" > /pkgs/$PACKAGE/depends | ||
sudo echo "" > /pkgs/$PACKAGE/make-depends | ||
sudo tar -cvzpf $PACKAGE.tar.xz $PACKAGE | ||
sudo cp $PACKAGE.tar.xz /finished | ||
|
||
|
||
cd /blfs/builds | ||
sudo rm -r $DIR | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
#!/bin/bash | ||
|
||
export CFLAGS=-"O2" | ||
export CXXFLAGS="-O2" | ||
PKG_VER=20230512 | ||
URL=https://github.com/intel/Intel-Linux-Processor-Microcode-Data-Files/archive/refs/tags/microcode-$PKG_VER.tar.gz | ||
TAR=$(echo $URL | sed -r 's|(.*)/||') | ||
DIR=Intel-Linux-Processor-Microcode-Data-Files-microcode-$PKG_VER | ||
PACKAGE=intel-ucode | ||
|
||
# Get Package | ||
|
||
cd /blfs/builds | ||
wget $URL | ||
tar -xvf $TAR | ||
cd $DIR | ||
|
||
# Build | ||
mkdir -p /pkgs/$PACKAGE/usr/lib/firmware/intel-ucode | ||
cp -rpv intel-ucode/* /pkgs/$PACKAGE/usr/lib/firmware/intel-ucode | ||
cd /pkgs | ||
|
||
|
||
|
||
sudo echo "linux-tucana linux-firmware" > /pkgs/$PACKAGE/depends | ||
echo "cd /boot | ||
mkinitramfs $(uname -r)" | ||
sudo echo "" > /pkgs/$PACKAGE/make-depends | ||
sudo tar -cvzpf $PACKAGE.tar.xz $PACKAGE | ||
sudo cp $PACKAGE.tar.xz /finished | ||
|
||
|
||
cd /blfs/builds | ||
sudo rm -r $DIR | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.