gargoyle barrier break source code

Discuss the technical details of Gargoyle and ongoing development

Moderator: Moderators

Post Reply
jlsl2008
Posts: 13
Joined: Mon May 21, 2018 4:04 pm

gargoyle barrier break source code

Post by jlsl2008 »

Hi all,

apologize to ask these silly question as I'm newbie on the embedded router OS, I hope it's ok to ask these question over here.

I need to build from the source for my router as it need to reproduce some old stuff. I was told it is using the barrier break version. So i was really happily went to the openwrt github, checkout barrier break source code and built it, put the img into my router none of them is working. I realized it was using the gargoyle OS. . I didn't realized openwrt and gargoyle are kind of different thing.

I was trying to find the barrier break version on the gargoyle source code, i couldn't find it. Just wondering does gargoyle has the version of barrier break source code?

Lantis
Moderator
Posts: 6753
Joined: Mon Jan 05, 2015 5:33 am
Location: Australia

Re: gargoyle barrier break source code

Post by Lantis »

You can checkout the 1.8.x branch from github.

Note that building out of date firmware is tricky, especially given the amount of infrastructure changes made to the Openwrt servers.
The wiki includes a patch that fixes (or at least used to) the first hurdle you’ll face.
https://www.gargoyle-router.com/wiki/do ... umentation
http://lantisproject.com/downloads/gargoyle_ispyisail.php for the latest releases
Please be respectful when posting. I do this in my free time on a volunteer basis.

jlsl2008
Posts: 13
Joined: Mon May 21, 2018 4:04 pm

Re: gargoyle barrier break source code

Post by jlsl2008 »

thanks for the great tips! i managed to build it. there are few stuff need to tweak on some of the url one certain Makefile.

ispyisail
Moderator
Posts: 5185
Joined: Mon Apr 06, 2009 3:15 am
Location: New Zealand

Re: gargoyle barrier break source code

Post by ispyisail »

jlsl2008 wrote:thanks for the great tips! i managed to build it. there are few stuff need to tweak on some of the url one certain Makefile.
can you share?

jlsl2008
Posts: 13
Joined: Mon May 21, 2018 4:04 pm

Re: gargoyle barrier break source code

Post by jlsl2008 »

Sure.

I think the tweak to make my built run was:

vi alix-src/package/libevents/Makefile

Code: Select all

PKG_BUILD_DIR:=$(BUILD_DIR)/libevent-$(PKG_VERSION)-stable
PKG_SOURCE:=libevent-$(PKG_VERSION)-stable.tar.gz
#PKG_SOURCE_URL:=http://www.monkey.org/~provos/ \
#       @SF/levent
PKG_SOURCE_URL:=https://github.com/downloads/libevent/libevent/
PKG_MD5SUM:=91111579769f46055b0a438f5cc59572
#PKG_MD5SUM:=94270cdee32c0cd0aa9f4ee6ede27e8e
PKG_FIXUP:=autoreconf
PKG_INSTALL:=1
PKG_BUILD_PARALLEL:=1

include $(INCLUDE_DIR)/package.mk

define Package/libevent2/Default
  SECTION:=libs
  CATEGORY:=Libraries
  TITLE:=Event notification
#  URL:=http://www.monkey.org/~provos/libevent/
  URL:=https://github.com/downloads/libevent/libevent/   
  DEPENDS:=+USE_EGLIBC:librt
endef

vi alix-src/package/utils/fuse/Makefile

Code: Select all

include $(TOPDIR)/rules.mk
include $(INCLUDE_DIR)/kernel.mk

PKG_NAME:=fuse
PKG_VERSION:=2.9.0
PKG_RELEASE:=2

PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
#PKG_SOURCE_URL:=@SF/$(PKG_NAME)
PKG_SOURCE_URL:=https://ftp.osuosl.org/pub/blfs/conglomeration/fuse/
PKG_MD5SUM:=894ee11674f89a915ae87524aed55bc4

PKG_LICENSE:=LGPLv2.1 GPLv2
PKG_LICENSE_FILES:=COPYING.LIB COPYING

PKG_INSTALL:=1

include $(INCLUDE_DIR)/package.mk

define Package/fuse/Default
  TITLE:=FUSE

 URL:=https://ftp.osuosl.org/pub/blfs/conglomeration/fuse/
  #URL:=http://fuse.sourceforge.net/
endef

define Package/fuse/Default/description
 FUSE (Filesystem in UserSpacE)
endef

ispyisail
Moderator
Posts: 5185
Joined: Mon Apr 06, 2009 3:15 am
Location: New Zealand

Re: gargoyle barrier break source code

Post by ispyisail »

Thank you

Post Reply