OpenELEC / OpenELEC.tv

OpenELEC - The living room PC for everyone
http://openelec.tv
1.61k stars 883 forks source link

"linux-7ede3d57" *.tar.xz file is empty, "linux-7ede3d5" *.tar.xz file is not complete #4985

Closed ooOJust4FunOoo closed 7 years ago

ooOJust4FunOoo commented 7 years ago

Hello, I've got issue building openelec with "PROJECT=RPi2 ARCH=arm make image" when compiling "linux-7ede3d57" the .tar.xz file is empty, I try with PKG_VERSION="7ede3d5" but the tar.xz file is not complete. I'm going to try with PKG_VERSION="6abac13" to see if it's work.

Any ideas ?

ooOJust4FunOoo commented 7 years ago

With PKG_VERSION="6abac13" the *.tar.xz is OK I've got to delete the "linux-999-i915-extend-fake-hdmi-live-status-to-valley-view.patch" because I've got issue with "intel_hdmi.c" file in "/OpenELEC.tv/build.OpenELEC-RPi2.arm-8.0-devel/linux-6abac13/drivers/gpu/drm/i915/" folder and edit the "linux-999.21-BT.CT-audio.patch" for same file in same folder, in order to delete the lines

@@ -1496,7 +1496,7 @@ intel_hdmi_detect(struct drm_connector *connector, bool force)
    intel_hdmi_unset_edid(connector);

    if (intel_hdmi_set_edid(connector, live_status)) {
-       struct intel_hdmi *intel_hdmi = intel_attached_hdmi(connector);
+       intel_hdmi = intel_attached_hdmi(connector);

        hdmi_to_dig_port(intel_hdmi)->base.type = INTEL_OUTPUT_HDMI;
        status = connector_status_connected;

and

@@ -1469,6 +1589,8 @@ intel_hdmi_detect(struct drm_connector *connector, bool force)
    struct drm_i915_private *dev_priv = to_i915(connector->dev);
    bool live_status = false;
    unsigned int try;
+   bool inform_audio = false;
+   struct drm_device *dev = connector->dev;

    DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
              connector->base.id, connector->name);

The building is running for now, I have not yet tested it.

ooOJust4FunOoo commented 7 years ago

I have same issue with "kodi-4c67f75.tar.xz" archive is empty So I edit the "package.mk" in "/OpenELEC.tv/packages/mediacenter/kodi" folder

case "$KODIPLAYER_DRIVER" in
  bcm2835-firmware)
    PKG_VERSION="4c67f75"
    PKG_GIT_URL="https://github.com/OpenELEC/xbmc.git"
    PKG_GIT_BRANCH="newclock5"
    PKG_KEEP_CHECKOUT="no"
    ;;
  *)
    PKG_VERSION="e596558"
    PKG_GIT_URL="https://github.com/xbmc/xbmc.git"
    PKG_GIT_BRANCH="master"
    PKG_KEEP_CHECKOUT="no"
    PKG_PATCH_DIRS="$LINUX"
    ;;
esac
case "$KODIPLAYER_DRIVER" in
  bcm2835-firmware)
    PKG_VERSION="a5a0e5d"
    PKG_GIT_URL="https://github.com/OpenELEC/xbmc.git"
    PKG_GIT_BRANCH="newclock5"
    PKG_KEEP_CHECKOUT="no"
    ;;
  *)
    PKG_VERSION="7bac540"
    PKG_GIT_URL="https://github.com/xbmc/xbmc.git"
    PKG_GIT_BRANCH="master"
    PKG_KEEP_CHECKOUT="no"
    PKG_PATCH_DIRS="$LINUX"
    ;;
esac

And I delete "kodi-999.99-aml-Drop-frames-if-requested-by-VideoPlayer.patch" in "/OpenELEC.tv/packages/mediacenter/kodi/patches" folder