Skip to content

Instantly share code, notes, and snippets.

diff --git a/config/options b/config/options
index 200b470..5be8822 100644
--- a/config/options
+++ b/config/options
@@ -29,6 +29,7 @@ ROOT=`pwd`
DISTRO_DIR="$ROOT/distributions"
PROJECT_DIR="$ROOT/projects"
LINUX_DEPENDS="$PROJECT_DIR/$PROJECT/linux/linux.$TARGET_ARCH.conf $ROOT/packages/linux/package.mk"
+[ "$TARGET_ARCH" = "x86_64" ] && LINUX_DEPENDS+=" $ROOT/packages/linux-firmware/intel-ucode/package.mk $ROOT/packages/linux-firmware/x86-firmware/package.mk"
diff --git a/packages/audio/alsa-lib/package.mk b/packages/audio/alsa-lib/package.mk
index 8d9a277..e8957b9 100644
--- a/packages/audio/alsa-lib/package.mk
+++ b/packages/audio/alsa-lib/package.mk
@@ -17,7 +17,7 @@
################################################################################
PKG_NAME="alsa-lib"
-PKG_VERSION="1.1.1"
+PKG_VERSION="1.1.2"
diff --git a/xbmc/DatabaseManager.cpp b/xbmc/DatabaseManager.cpp
index ed0178d..6430252 100644
--- a/xbmc/DatabaseManager.cpp
+++ b/xbmc/DatabaseManager.cpp
@@ -51,7 +51,7 @@ CDatabaseManager::~CDatabaseManager()
void CDatabaseManager::Initialize(bool addonsOnly)
{
Deinitialize();
- { CAddonDatabase db; UpdateDatabase(db); }
+ { CAddonDatabase db; UpdateDatabase(db, NULL, false); }
diff --git a/xbmc/dbwrappers/Database.cpp b/xbmc/dbwrappers/Database.cpp
index 4dc71c5..ef77953 100644
--- a/xbmc/dbwrappers/Database.cpp
+++ b/xbmc/dbwrappers/Database.cpp
@@ -29,6 +29,7 @@
#include "sqlitedataset.h"
#include "DatabaseManager.h"
#include "DbUrl.h"
+#include "utils/Splash.h"
diff --git a/xbmc/dbwrappers/Database.cpp b/xbmc/dbwrappers/Database.cpp
index 4dc71c5..6b0a0e1 100644
--- a/xbmc/dbwrappers/Database.cpp
+++ b/xbmc/dbwrappers/Database.cpp
@@ -29,6 +29,7 @@
#include "sqlitedataset.h"
#include "DatabaseManager.h"
#include "DbUrl.h"
+#include "utils/Splash.h"
<?xml version="1.0" encoding="utf-8"?>
<window type="dialog" id="2901">
<onload>Dialog.Close(fullscreeninfo)</onload>
<onload condition="VideoPlayer.Content(LiveTV) + !Player.PauseEnabled">SetFocus(603)</onload>
<depth>DepthOSD</depth>
<defaultcontrol always="true">602</defaultcontrol>
<controls>
<control type="button" id="22001">
<description>background close area</description>
<left>0</left>
@MilhouseVH
MilhouseVH / gist:49fa1ed94f1eaa31487a3c5f95db90a3
Created June 23, 2016 11:10
linux-4.7-rc4/drivers/gpu/drm/i915/i915_irq.c
/* i915_irq.c -- IRQ support for the I915 -*- linux-c -*-
*/
/*
* Copyright 2003 Tungsten Graphics, Inc., Cedar Park, Texas.
* All Rights Reserved.
*
* 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,
#!/bin/bash
TMPDIR=/home/neil/projects/extract
IMGMAX=${1:-3}
DOSYNC=${2:-Y}
echo "PROCESSES: ${IMGMAX}"
echo "DO SYNC : ${DOSYNC}"
function checkimage()
#!/bin/bash
OE_TMP=$(mktemp -d)
SAVE_ERROR="$OE_TMP/save_error"
DOSYNC=${2:-Y}
SYSTEM_SIZE=512
SYSTEM_PART_START=2048
UUID_STORAGE="$(uuidgen)"