The [Kernel used is 5.15.107](https://github.com/Fishwaldo/Star64_linux/) - This is due to the GPU Model used in Star64 (BXE-4-32 GPU) (img-rouge) driver not available for more recent kernels yet
The images produced have a apt repository configured to allow you to install additional packages not included in the image. (There is currently around 10000+ aditional packages available)
First run
```bash
apt update
```
and then you can search and install additional packages using apt search/apt install.
*NOTE* These additional packages are not well tested. If you find a package that does not work, please submit a issue request.
You can locally build additional packages (if they are included in any of the BitBake Layers we use) with the command:
```bash
bitbake <packagename>
```
To see what packages are available, you can use the command
```bash
bitbake-layers show-recipes
```
or
```bash
bitbake-layers show-recipes | grep <name>
```
if a Package is not included, you can see if there are any available reciepes already created at https://layers.openembedded.org/layerindex/branch/master/recipes/
If you find a suitable recipe, depending upon its complexity, requirements, dependancies etc, you can either copy the recipe into the meta-pine64 layer, or add the
layer that contains the reciepe using bitbake-layers command. Please consult the Yocto Documentation for more info here.