├── docs ├── images ├── website │ ├── robots.txt │ ├── favicon.ico │ ├── images │ │ ├── email.png │ │ ├── gift.png │ │ ├── irc.png │ │ ├── logo.png │ │ ├── logo.xcf │ │ ├── text.png │ │ ├── zip.png │ │ ├── browser.png │ │ ├── hammer.png │ │ ├── nconfig.png │ │ ├── package.png │ │ ├── xconfig.png │ │ ├── bug-buddy.png │ │ ├── calao-logo.png │ │ ├── logo_small.png │ │ ├── menuconfig.png │ │ ├── mind-logo.png │ │ ├── pdf-icon.png │ │ ├── tux-flat.png │ │ ├── fluendo-logo.png │ │ ├── google-logo.png │ │ ├── imgtec-logo.png │ │ ├── circuitco-logo.png │ │ ├── owi-smile-logo.png │ │ ├── synopsys-logo.png │ │ ├── buildroot-slides.png │ │ ├── free-electrons-logo.png │ │ ├── github_hash_mongrel2.png │ │ └── boundary-devices-logo.png │ └── fonts │ │ └── glyphicons-halflings-regular.woff └── manual │ └── download-infra.txt ├── system └── skeleton │ ├── dev │ └── .empty │ ├── media │ └── .empty │ ├── mnt │ └── .empty │ ├── opt │ └── .empty │ ├── proc │ └── .empty │ ├── root │ └── .empty │ ├── run │ └── .empty │ ├── sys │ └── .empty │ ├── tmp │ └── .empty │ ├── usr │ ├── bin │ │ └── .empty │ ├── lib │ │ └── .empty │ └── sbin │ │ └── .empty │ └── etc │ ├── mtab │ ├── hosts │ ├── profile.d │ └── umask.sh │ └── resolv.conf ├── board ├── digilent │ └── zybo │ │ └── system.bit ├── raspberrypi0 ├── raspberrypi2 ├── raspberrypi3 ├── raspberrypi3-64 ├── sidekiqz2 │ └── msd │ │ └── img │ │ └── version.js ├── m2k │ └── msd │ │ ├── .gitignore │ │ └── img │ │ ├── ez.png │ │ ├── fb.png │ │ ├── gp.png │ │ ├── ig.png │ │ ├── li.png │ │ ├── ss.png │ │ ├── sw.png │ │ ├── tw.png │ │ ├── yk.png │ │ ├── yt.png │ │ ├── favicon.ico │ │ ├── PlutoSDR.png │ │ ├── download.png │ │ ├── prof_blue.png │ │ ├── ADI_Logo_AWP.png │ │ ├── GNURadio_logo.jpg │ │ └── mathworks_logo.png ├── pluto │ ├── msd │ │ ├── .gitignore │ │ └── img │ │ │ ├── ez.png │ │ │ ├── fb.png │ │ │ ├── gp.png │ │ │ ├── ig.png │ │ │ ├── li.png │ │ │ ├── ss.png │ │ │ ├── sw.png │ │ │ ├── tw.png │ │ │ ├── yk.png │ │ │ ├── yt.png │ │ │ ├── favicon.ico │ │ │ ├── osc128.png │ │ │ ├── PlutoSDR.png │ │ │ ├── SDR-Sharp.png │ │ │ ├── download.png │ │ │ ├── prof_blue.png │ │ │ ├── sdrangel.png │ │ │ ├── ADI_Logo_AWP.png │ │ │ ├── GNURadio_logo.png │ │ │ └── mathworks_logo.png │ └── buildgz.sh ├── udoo │ └── mx6qdl │ │ └── linux.fragment ├── freescale │ ├── warpboard │ │ └── linux.fragment │ └── imx31_3stack │ │ └── linux.fragment ├── technexion │ └── imx6ulpico │ │ └── linux.fragment ├── chromebook │ └── snow │ │ ├── linux-4.6.fragment │ │ └── kernel.args ├── intel │ └── galileo │ │ ├── rootfs_overlay │ │ └── etc │ │ │ └── modules-load.galileo │ │ │ ├── galileo.conf │ │ │ └── galileo_gen2.conf │ │ └── post-build.sh ├── roseapplepi │ └── uEnv.txt ├── lego │ └── ev3 │ │ └── busybox.fragment ├── technologic │ └── ts4800 │ │ └── linux.fragment ├── solidrun │ └── macchiatobin │ │ └── linux-extras.config └── pc │ ├── grub-efi.cfg │ └── grub-bios.cfg ├── support ├── testing │ ├── tests │ │ ├── __init__.py │ │ ├── boot │ │ │ └── __init__.py │ │ ├── core │ │ │ ├── __init__.py │ │ │ ├── post-image.sh │ │ │ ├── post-fakeroot.sh │ │ │ ├── rootfs-overlay1 │ │ │ │ └── test-file1 │ │ │ └── rootfs-overlay2 │ │ │ │ └── etc │ │ │ │ └── test-file2 │ │ ├── fs │ │ │ └── __init__.py │ │ ├── init │ │ │ ├── __init__.py │ │ │ └── systemd-factory │ │ │ │ └── var │ │ │ │ └── foo │ │ │ │ └── bar │ │ ├── package │ │ │ └── __init__.py │ │ └── toolchain │ │ │ └── __init__.py │ └── conf │ │ └── unittest.cfg ├── kconfig │ ├── lxdialog │ │ └── .gitignore │ └── .gitignore ├── config-fragments │ └── autobuild │ │ ├── br-microblazeel-full-internal.config │ │ ├── sourcery-arm.config │ │ ├── linaro-aarch64.config │ │ ├── br-arc-full-internal.config │ │ ├── br-xtensa-full-internal.config │ │ └── sourcery-nios2.config └── legal-info │ └── buildroot.hash ├── utils └── checkpackagelib │ └── __init__.py ├── configs └── zynq_pluto_defconfig ├── .flake8 ├── boot ├── barebox │ ├── barebox │ │ └── barebox.hash │ └── barebox-aux │ │ └── barebox-aux.hash ├── common.mk ├── gummiboot │ ├── loader.conf │ └── buildroot.conf ├── at91dataflashboot │ └── Config.in ├── grub2 │ ├── grub2.hash │ └── grub.cfg ├── uboot │ └── uboot.hash ├── afboot-stm32 │ └── afboot-stm32.hash └── at91bootstrap │ └── at91bootstrap.hash ├── package ├── gcc │ ├── gcc-final │ │ └── gcc-final.hash │ └── gcc-initial │ │ └── gcc-initial.hash ├── ifupdown-scripts │ └── network │ │ ├── if-up.d │ │ └── .empty │ │ ├── if-down.d │ │ └── .empty │ │ └── if-post-down.d │ │ └── .empty ├── skeleton-init-sysv │ └── skeleton │ │ ├── dev │ │ ├── log │ │ ├── pts │ │ │ └── .empty │ │ └── shm │ │ │ └── .empty │ │ └── var │ │ ├── cache │ │ ├── lock │ │ ├── log │ │ ├── run │ │ ├── spool │ │ ├── tmp │ │ └── lib │ │ └── misc ├── audit │ └── audit_tmpfiles.conf ├── fluxbox │ ├── xsession │ └── fluxbox.hash ├── mesa3d-headers │ └── mesa3d-headers.hash ├── kodi-texturepacker │ └── kodi-texturepacker.hash ├── qt │ └── powervr.ini ├── avahi │ └── avahi_tmpfiles.conf ├── kodi-jsonschemabuilder │ └── kodi-jsonschemabuilder.hash ├── linux-headers │ └── Config.in ├── opengl │ └── opengl.mk ├── x11r7 │ ├── x11r7.mk │ ├── xcursor-transparent-theme │ │ └── index.theme │ ├── mcookie │ │ ├── mcookie.c │ │ └── Config.in │ ├── xlib_xtrans │ │ └── Config.in │ ├── xdata_xbitmaps │ │ └── Config.in │ ├── xfont_font-util │ │ └── Config.in │ ├── xproto_dmxproto │ │ └── Config.in │ ├── xproto_glproto │ │ └── Config.in │ ├── xproto_kbproto │ │ └── Config.in │ ├── xproto_xproto │ │ └── Config.in │ ├── xproto_dri2proto │ │ └── Config.in │ ├── xproto_dri3proto │ │ └── Config.in │ ├── xproto_xextproto │ │ └── Config.in │ ├── xutil_makedepend │ │ └── Config.in │ ├── xapp_xgc │ │ └── Config.in │ ├── xproto_applewmproto │ │ └── Config.in │ ├── xproto_fixesproto │ │ └── Config.in │ ├── xproto_fontsproto │ │ └── Config.in │ ├── xproto_inputproto │ │ └── Config.in │ ├── xproto_randrproto │ │ └── Config.in │ ├── xproto_videoproto │ │ └── Config.in │ ├── xapp_xwud │ │ └── Config.in │ ├── xproto_damageproto │ │ └── Config.in │ ├── xproto_recordproto │ │ └── Config.in │ ├── xproto_renderproto │ │ └── Config.in │ ├── xproto_xcmiscproto │ │ └── Config.in │ ├── xapp_xmag │ │ └── Config.in │ ├── xapp_xset │ │ └── Config.in │ ├── xcb-util │ │ └── xcb-util.hash │ ├── xproto_bigreqsproto │ │ └── Config.in │ ├── xproto_resourceproto │ │ └── Config.in │ ├── xproto_windowswmproto │ │ └── Config.in │ ├── xproto_xf86dgaproto │ │ └── Config.in │ ├── xproto_xf86driproto │ │ └── Config.in │ └── xproto_xineramaproto │ │ └── Config.in ├── qt5 │ └── qt5base │ │ └── qplatformdefs.h ├── quagga │ └── quagga_tmpfiles.conf ├── ti-gfx │ └── powervr.ini ├── gstreamer │ ├── gstreamer.mk │ ├── gst-dsp │ │ └── gst-dsp.hash │ └── gst-omapfb │ │ └── gst-omapfb.hash ├── cargo │ └── config.in ├── gstreamer1 │ └── gstreamer1.mk ├── musl-compat-headers │ └── Config.in ├── skeleton-init-common │ └── Config.in ├── mkpasswd │ └── Config.in.host ├── rpi-firmware │ └── cmdline.txt ├── tz │ └── Config.in ├── systemd │ └── dhcp.network ├── linux-fusion │ ├── 40-fusion.rules │ └── linux-fusion.hash ├── atftp │ └── atftp.hash ├── axel │ └── axel.hash ├── amd-catalyst │ └── 20-fglrx.conf ├── fan-ctrl │ └── fan-ctrl.hash ├── iodine │ └── iodine.hash ├── libglob │ ├── Config.in │ └── libglob.hash ├── libpciaccess │ └── Config.in ├── qt5cinex │ └── CinematicExperience-demo ├── bsdiff │ └── bsdiff.hash ├── bzip2 │ └── bzip2.hash ├── jo │ └── jo.hash ├── libgeotiff │ └── libgeotiff.hash ├── liblockfile │ └── Config.in ├── atf │ └── atf.hash ├── cgic │ ├── cgic.hash │ └── Config.in ├── fbv │ └── fbv.hash ├── fis │ └── Config.in ├── ijs │ └── ijs.hash ├── isl │ └── isl.hash ├── jq │ └── jq.hash ├── libee │ └── libee.hash ├── libsoil │ └── libsoil.hash ├── libxml2 │ └── Config.in ├── mpv │ └── mpv.hash ├── poll_sysfs │ └── Config.in ├── pound │ └── pound.hash ├── sl │ └── sl.hash ├── szip │ └── szip.hash ├── tree │ └── tree.hash ├── ucl │ └── ucl.hash ├── unscd │ └── unscd.hash ├── unzip │ └── unzip.hash ├── xen │ └── xen.hash ├── bc │ └── bc.hash ├── blktrace │ └── blktrace.hash ├── bmon │ └── bmon.hash ├── dante │ └── dante.hash ├── dcron │ └── dcron.hash ├── dhrystone │ └── dhrystone.hash ├── doom-wad │ └── doom-wad.hash ├── duma │ └── duma.hash ├── faifa │ └── faifa.hash ├── fbset │ └── fbset.hash ├── ficl │ └── ficl.hash ├── file │ └── file.hash ├── fio │ └── fio.hash ├── flannel │ └── flannel.hash ├── flot │ └── flot.hash ├── fmt │ └── fmt.hash ├── fping │ └── fping.hash ├── glm │ └── glm.hash ├── gmpc │ └── gmpc.hash ├── gob2 │ └── gob2.hash ├── gpm │ └── gpm.hash ├── iotop │ └── iotop.hash ├── iozone │ └── iozone.hash ├── kyua │ └── kyua.hash ├── libad9361-iio │ └── libad9361-iio.hash ├── lite │ └── lite.hash ├── lldpd │ └── lldpd.hash ├── lshw │ └── lshw.hash ├── luajit │ └── luajit.hash ├── lutok │ └── lutok.hash ├── luv │ └── luv.hash ├── lzma │ └── lzma.hash ├── lzop │ └── lzop.hash ├── mpir │ └── mpir.hash ├── mraa │ └── mraa.hash ├── mutt │ └── mutt.hash ├── ne10 │ └── ne10.hash ├── nodm │ └── nodm.hash ├── norm │ └── norm.hash ├── nvme │ └── nvme.hash ├── opkg │ └── opkg.hash ├── pixz │ └── pixz.hash ├── popt │ └── popt.hash ├── ptpd │ └── ptpd.hash ├── qjson │ └── qjson.hash ├── rpm │ └── rpm.hash ├── rtai │ └── rtai.hash ├── smack │ └── smack.hash ├── swig │ └── swig.hash ├── tcl │ └── tcl.hash ├── tekui │ └── tekui.hash ├── tiff │ └── tiff.hash ├── upx │ └── upx.hash ├── vde2 │ └── vde2.hash ├── vim │ └── vim.hash ├── vtun │ └── vtun.hash ├── wipe │ └── wipe.hash ├── x265 │ └── x265.hash ├── xutil_util-macros │ └── Config.in ├── xvkbd │ └── xvkbd.hash ├── yajl │ └── yajl.hash ├── yasm │ └── yasm.hash ├── ympd │ └── ympd.hash ├── znc │ └── znc.hash ├── 4th │ └── 4th.hash ├── argus │ └── argus.hash ├── assimp │ └── assimp.hash ├── aumix │ └── aumix.hash ├── babeld │ └── babeld.hash ├── bcm2835 │ └── bcm2835.hash ├── bcusdk │ └── bcusdk.hash ├── boa │ └── boa.hash ├── bonnie │ └── bonnie.hash ├── bustle │ └── bustle.hash ├── c-icap │ └── c-icap.hash ├── ccrypt │ └── ccrypt.hash ├── cramfs │ └── cramfs.hash ├── cryptopp │ └── cryptopp.hash ├── dado │ └── dado.hash ├── dillo │ └── dillo.hash ├── dmalloc │ └── dmalloc.hash ├── docker │ └── docker.hash ├── dstat │ └── dstat.hash ├── dtach │ └── dtach.hash ├── efivar │ └── efivar.hash ├── ejabberd │ └── ejabberd.hash ├── empty │ └── empty.hash ├── evtest │ └── evtest.hash ├── ezxml │ └── ezxml.hash ├── fbdump │ └── fbdump.hash ├── fbgrab │ └── fbgrab.hash ├── flann │ └── flann.hash ├── fmc │ └── fmc.hash ├── fwup │ └── fwup.hash ├── gamin │ └── gamin.hash ├── geoip │ └── geoip.hash ├── giblib │ └── giblib.hash ├── go │ └── go.hash ├── gqrx │ └── gqrx.hash ├── gqview │ └── gqview.hash ├── hplip │ └── hplip.hash ├── httping │ └── httping.hash ├── iftop │ └── iftop.hash ├── initscripts │ └── Config.in ├── iostat │ └── iostat.hash ├── jack2 │ └── jack2.hash ├── jamvm │ └── jamvm.hash ├── lapack │ └── lapack.hash ├── lbase64 │ └── lbase64.hash ├── lcdapi │ └── lcdapi.hash ├── libass │ └── libass.hash ├── libcec │ └── libcec.hash ├── libcsv │ └── libcsv.hash ├── libcue │ └── libcue.hash ├── libenca │ └── libenca.hash ├── libev │ └── libev.hash ├── libfcgi │ └── libfcgi.hash ├── libglu │ └── libglu.hash ├── libgsm │ └── libgsm.hash ├── libhid │ └── libhid.hash ├── libjson │ └── libjson.hash ├── libmms │ └── libmms.hash ├── libndp │ └── libndp.hash ├── libnfc │ └── libnfc.hash ├── libsoc │ └── libsoc.hash ├── libucl │ └── libucl.hash ├── libvpx │ └── libvpx.hash ├── libyaml │ └── libyaml.hash ├── links │ └── links.hash ├── lpeg │ └── lpeg.hash ├── lpty │ └── lpty.hash ├── lrzsz │ └── lrzsz.hash ├── lsscsi │ └── lsscsi.hash ├── lsuio │ └── lsuio.hash ├── ltris │ └── ltris.hash ├── lugaru │ └── lugaru.hash ├── lunit │ └── lunit.hash ├── luvi │ └── luvi.hash ├── lz4 │ └── lz4.hash ├── lzlib │ └── lzlib.hash ├── mcelog │ └── mcelog.hash ├── mcrypt │ └── mcrypt.hash ├── mimic │ └── mimic.hash ├── minizip │ └── minizip.hash ├── moarvm │ └── moarvm.hash ├── mtdev │ └── mtdev.hash ├── mxml │ └── Config.in ├── nanocom │ └── nanocom.hash ├── ncftp │ └── ncftp.hash ├── netcat │ └── netcat.hash ├── newt │ └── newt.hash ├── nfs-utils │ └── nfs-utils_env.sh ├── ngrep │ └── ngrep.hash ├── ninja │ └── ninja.hash ├── noip │ └── noip.hash ├── ortp │ └── ortp.hash ├── p910nd │ └── p910nd.hash ├── php-amqp │ └── php-amqp.hash ├── php-ssh2 │ └── php-ssh2.hash ├── php-yaml │ └── php-yaml.hash ├── php-zmq │ └── php-zmq.hash ├── prboom │ └── prboom.hash ├── ptpd2 │ └── ptpd2.hash ├── qlibc │ └── qlibc.hash ├── quazip │ └── quazip.hash ├── ramsmp │ └── ramsmp.hash ├── rubix │ └── rubix.hash ├── scons │ └── scons.hash ├── sdparm │ └── sdparm.hash ├── ser2net │ └── ser2net.hash ├── spice │ └── spice.hash ├── sredird │ └── sredird.hash ├── sslh │ └── sslh.hash ├── sysdig │ └── sysdig.hash ├── tclap │ └── tclap.hash ├── tcllib │ └── tcllib.hash ├── tovid │ └── tovid.hash ├── tunctl │ └── tunctl.hash ├── udisks │ └── udisks.hash ├── vnstat │ └── vnstat.hash ├── whetstone │ └── whetstone.hash ├── wmctrl │ └── wmctrl.hash ├── wpa_supplicant │ └── wpa_supplicant.conf ├── xl2tp │ └── xl2tp.hash ├── xorriso │ └── xorriso.hash ├── xvisor │ └── xvisor.hash ├── xxhash │ └── xxhash.hash ├── zmqpp │ └── zmqpp.hash ├── a10disp │ └── a10disp.hash ├── aespipe │ └── aespipe.hash ├── agentpp │ └── agentpp.hash ├── arp-scan │ └── arp-scan.hash ├── benejson │ └── benejson.hash ├── bullet │ └── bullet.hash ├── cegui06 │ └── cegui06.hash ├── cgilua │ └── cgilua.hash ├── civetweb │ └── civetweb.hash ├── copas │ └── copas.hash ├── cpuload │ └── cpuload.hash ├── cups │ └── cups.hash ├── dhcpdump │ └── dhcpdump.hash ├── dieharder │ └── dieharder.hash ├── directfb │ └── directfb.hash ├── dmidecode │ └── dmidecode.hash ├── emlog │ └── emlog.hash ├── exfat │ └── exfat.hash ├── expat │ └── Config.in ├── fconfig │ └── fconfig.hash ├── fdk-aac │ └── fdk-aac.hash ├── flashrom │ └── flashrom.hash ├── fmlib │ └── fmlib.hash ├── freescale-imx │ ├── imx-gpu-g2d │ │ └── imx-gpu-g2d.hash │ ├── imx-gpu-viv │ │ └── imx-gpu-viv.hash │ ├── imx-vpu │ │ └── imx-vpu.hash │ ├── imx-codec │ │ └── imx-codec.hash │ └── libz160 │ │ └── libz160.hash ├── fxload │ └── fxload.hash ├── genimage │ └── genimage.hash ├── genpart │ └── genpart.hash ├── gtkperf │ └── gtkperf.hash ├── heimdal │ └── heimdal.hash ├── hiawatha │ └── hiawatha.hash ├── ibrdtn │ └── ibrdtn.hash ├── ibrdtnd │ └── ibrdtnd.hash ├── ifplugd │ └── ifplugd.hash ├── iputils │ └── iputils.hash ├── jsoncpp │ └── jsoncpp.hash ├── kismet │ └── kismet.hash ├── kvazaar │ └── kvazaar.hash ├── lesstif │ └── lesstif.hash ├── leveldb │ └── leveldb.hash ├── libbson │ └── libbson.hash ├── libcddb │ └── libcddb.hash ├── libdmtx │ └── libdmtx.hash ├── libdnet │ └── libdnet.hash ├── libebml │ └── libebml.hash ├── libexif │ └── libexif.hash ├── libglfw │ └── libglfw.hash ├── libical │ └── libical.hash ├── libiqrf │ └── libiqrf.hash ├── libjpeg │ └── libjpeg.hash ├── libmbus │ └── libmbus.hash ├── libmpd │ └── libmpd.hash ├── libroxml │ └── libroxml.hash ├── librtas │ └── librtas.hash ├── libsexy │ └── libsexy.hash ├── libsha1 │ └── libsha1.hash ├── libsrtp │ └── libsrtp.hash ├── libtommath │ └── libtommath.hash ├── libtpl │ └── libtpl.hash ├── libusb │ └── libusb.hash ├── libvips │ └── libvips.hash ├── libxmlrpc │ └── libxmlrpc.hash ├── linknx │ └── linknx.hash ├── lmbench │ └── lmbench.hash ├── lua-fifo │ └── lua-fifo.hash ├── lua-http │ └── lua-http.hash ├── lua-utf8 │ └── lua-utf8.hash ├── luadbi │ └── luadbi.hash ├── luasec │ └── luasec.hash ├── madplay │ └── madplay.hash ├── minicom │ └── minicom.hash ├── mongodb │ └── mongodb.hash ├── mongoose │ └── mongoose.hash ├── mono │ └── mono.hash ├── mrouted │ └── mrouted.hash ├── msgpack │ └── msgpack.hash ├── msr-tools │ └── msr-tools.hash ├── netperf │ ├── netperf.hash │ └── Config.in ├── netplug │ └── netplug.hash ├── nss-mdns │ └── nss-mdns.hash ├── numactl │ └── numactl.hash ├── openbox │ └── openbox.hash ├── openjpeg │ └── openjpeg.hash ├── orbit │ └── orbit.hash ├── paxtest │ └── paxtest.hash ├── php-geoip │ └── php-geoip.hash ├── php-gnupg │ └── php-gnupg.hash ├── pkgconf │ └── pkgconf.hash ├── poppler │ └── poppler.hash ├── pugixml │ └── pugixml.hash ├── python-lxml │ └── python-lxml.hash ├── python-mad │ └── python-mad.hash ├── ramspeed │ └── ramspeed.hash ├── raptor │ └── raptor.hash ├── rings │ └── rings.hash ├── rpcbind │ └── rpcbind.hash ├── rrdtool │ └── rrdtool.hash ├── rtptools │ └── rtptools.hash ├── sam-ba │ └── sam-ba.hash ├── sdl_net │ └── sdl_net.hash ├── sdl_ttf │ └── sdl_ttf.hash ├── sispmctl │ └── sispmctl.hash ├── sshpass │ └── sshpass.hash ├── stella │ └── stella.hash ├── sysprof │ └── sysprof.hash ├── taglib │ └── taglib.hash ├── tegrarcm │ └── tegrarcm.hash ├── tinyalsa │ └── tinyalsa.hash ├── tinyxml │ └── tinyxml.hash ├── tn5250 │ └── tn5250.hash ├── twolame │ └── twolame.hash ├── upower │ └── upower.hash ├── ushare │ └── ushare.hash ├── vala │ └── vala-wrapper ├── valgrind │ └── valgrind.hash ├── w_scan │ └── w_scan.hash ├── wavemon │ └── wavemon.hash ├── wsapi │ └── wsapi.hash ├── x11vnc │ └── x11vnc.hash ├── xenomai │ └── xenomai.hash ├── yaffs2utils │ └── yaffs2utils.hash ├── yaml-cpp │ └── yaml-cpp.hash ├── acpitool │ └── acpitool.hash ├── alljoyn │ └── alljoyn.hash ├── argparse │ └── argparse.hash ├── arptables │ └── arptables.hash ├── audiofile │ └── audiofile.hash ├── bctoolbox │ └── bctoolbox.hash ├── beecrypt │ └── beecrypt.hash ├── bootutils │ └── bootutils.hash ├── cbootimage │ └── cbootimage.hash ├── celt051 │ └── celt051.hash ├── curlftpfs │ └── curlftpfs.hash ├── darkhttpd │ └── darkhttpd.hash ├── dbus-cpp │ └── dbus-cpp.hash ├── ding-libs │ └── ding-libs.hash ├── doxygen │ └── doxygen.hash ├── dsp-tools │ └── dsp-tools.hash ├── dvbsnoop │ └── dvbsnoop.hash ├── ebtables │ └── ebtables.hash ├── enchant │ └── enchant.hash ├── espeak │ └── espeak.hash ├── faketime │ └── faketime.hash ├── fetchmail │ └── fetchmail.hash ├── fswebcam │ └── fswebcam.hash ├── genext2fs │ └── genext2fs.hash ├── gengetopt │ └── gengetopt.hash ├── genromfs │ └── genromfs.hash ├── gmp │ ├── Config.in │ └── gmp.hash ├── go-bootstrap │ └── go-bootstrap.hash ├── ibrcommon │ └── ibrcommon.hash ├── ipmitool │ └── ipmitool.hash ├── jasper │ ├── jasper.hash │ └── Config.in ├── jemalloc │ └── jemalloc.hash ├── jquery-ui │ └── jquery-ui.hash ├── keyutils │ └── keyutils.hash ├── kompexsqlite │ └── kompexsqlite.hash ├── latencytop │ └── latencytop.hash ├── libcap-ng │ └── libcap-ng.hash ├── libcgroup │ └── libcgroup.hash ├── libconfig │ └── libconfig.hash ├── libdaemon │ └── libdaemon.hash ├── libdcadec │ └── libdcadec.hash ├── libedit │ └── libedit.hash ├── libesmtp │ └── libesmtp.hash ├── libfreeimage │ └── libfreeimage.hash ├── libgdiplus │ └── libgdiplus.hash ├── libiscsi │ └── libiscsi.hash ├── libkcapi │ └── libkcapi.hash ├── liblinear │ └── liblinear.hash ├── libmcrypt │ └── libmcrypt.hash ├── libmhash │ └── libmhash.hash ├── libmodbus │ └── libmodbus.hash ├── libmpeg2 │ └── libmpeg2.hash ├── libnatpmp │ └── libnatpmp.hash ├── liboauth │ └── liboauth.hash ├── libplayer │ └── libplayer.hash ├── libplist │ └── libplist.hash ├── libpthsem │ └── libpthsem.hash ├── librsync │ └── librsync.hash ├── librtlsdr │ └── librtlsdr.hash ├── libscrypt │ └── libscrypt.hash ├── libsigrok │ └── libsigrok.hash ├── libsysfs │ └── libsysfs.hash ├── libtomcrypt │ └── libtomcrypt.hash ├── linenoise │ └── linenoise.hash ├── ljsyscall │ └── ljsyscall.hash ├── log4cplus │ └── log4cplus.hash ├── logrotate │ └── logrotate.hash ├── lsqlite3 │ └── lsqlite3.hash ├── lua-bit32 │ └── lua-bit32.hash ├── lua-coat │ └── lua-coat.hash ├── lua-curl │ └── lua-curl.hash ├── lua-flu │ └── lua-flu.hash ├── lua-iconv │ └── lua-iconv.hash ├── lua-sailor │ └── lua-sailor.hash ├── lua-valua │ └── lua-valua.hash ├── luabitop │ └── luabitop.hash ├── luaexpat │ └── luaexpat.hash ├── luajson │ └── luajson.hash ├── luaossl │ └── luaossl.hash ├── luaposix │ └── luaposix.hash ├── luarocks │ └── luarocks.hash ├── memtester │ └── memtester.hash ├── memtool │ └── memtool.hash ├── mongrel2 │ └── mongrel2.hash ├── odhcploc │ └── odhcploc.hash ├── openal │ └── openal.hash ├── openswan │ └── openswan.hash ├── opentyrian-data │ └── opentyrian-data.hash ├── owl-linux │ └── owl-linux.hash ├── pax-utils │ └── pax-utils.hash ├── pcsc-lite │ └── pcsc-lite.hash ├── php-imagick │ └── php-imagick.hash ├── pixman │ └── Config.in ├── powertop │ └── powertop.hash ├── protobuf │ └── protobuf.hash ├── pulseview │ └── pulseview.hash ├── python-id3 │ └── python-id3.hash ├── python-pam │ └── python-pam.hash ├── python-pyrex │ └── python-pyrex.hash ├── qdecoder │ └── qdecoder.hash ├── ratpoison │ └── ratpoison.hash ├── read-edid │ └── read-edid.hash ├── rt-tests │ └── rt-tests.hash ├── rtorrent │ └── rtorrent.hash ├── sdl2_gfx │ └── sdl2_gfx.hash ├── sdl2_net │ └── sdl2_net.hash ├── sdl2_ttf │ └── sdl2_ttf.hash ├── sdl_image │ └── sdl_image.hash ├── sdl_mixer │ └── sdl_mixer.hash ├── sdl_sound │ └── sdl_sound.hash ├── sigrok-cli │ └── sigrok-cli.hash ├── smstools3 │ └── smstools3.hash ├── sofia-sip │ └── sofia-sip.hash ├── sqlcipher │ └── sqlcipher.hash ├── statserial │ └── statserial.hash ├── stress-ng │ └── stress-ng.hash ├── swupdate │ └── swupdate.hash ├── syslog-ng │ └── syslog-ng.hash ├── tinyhttpd │ └── tinyhttpd.hash ├── tinyxml2 │ └── tinyxml2.hash ├── turbolua │ └── turbolua.hash ├── udev │ └── Config.in ├── udpcast │ └── udpcast.hash ├── udpxy │ └── udpxy.hash ├── usbredir │ └── usbredir.hash ├── vo-aacenc │ └── vo-aacenc.hash ├── wavpack │ └── wavpack.hash ├── xavante │ └── xavante.hash ├── xinetd │ └── xinetd.hash ├── acpica │ └── acpica.hash ├── alljoyn-tcl │ └── alljoyn-tcl.hash ├── bellagio │ └── bellagio.hash ├── cannelloni │ └── cannelloni.hash ├── connman-gtk │ └── connman-gtk.hash ├── coxpcall │ └── coxpcall.hash ├── drbd-utils │ └── drbd-utils.hash ├── efibootmgr │ └── efibootmgr.hash ├── exfat-utils │ └── exfat-utils.hash ├── f2fs-tools │ └── f2fs-tools.hash ├── gadgetfs-test │ └── gadgetfs-test.hash ├── gnuchess │ └── gnuchess.hash ├── gutenprint │ └── gutenprint.hash ├── irda-utils │ └── irda-utils.hash ├── irqbalance │ └── irqbalance.hash ├── keepalived │ └── keepalived.hash ├── leptonica │ └── leptonica.hash ├── libarchive │ └── libarchive.hash ├── libargtable2 │ └── libargtable2.hash ├── libatasmart │ └── libatasmart.hash ├── libeXosip2 │ └── libeXosip2.hash ├── libid3tag │ └── libid3tag.hash ├── libmatroska │ └── libmatroska.hash ├── libmodplug │ └── libmodplug.hash ├── libseccomp │ └── libseccomp.hash ├── libstrophe │ └── libstrophe.hash ├── libtasn1 │ └── Config.in ├── libtorrent │ └── libtorrent.hash ├── liquid-dsp │ └── liquid-dsp.hash ├── lua-basexx │ └── lua-basexx.hash ├── lua-cjson │ └── lua-cjson.hash ├── lua-sdl2 │ └── lua-sdl2.hash ├── lua-stdlib │ └── lua-stdlib.hash ├── luacrypto │ └── luacrypto.hash ├── luasocket │ └── luasocket.hash ├── memstat │ └── memstat.hash ├── micropython │ └── micropython.hash ├── mpc │ └── mpc.hash ├── netstat-nat │ └── netstat-nat.hash ├── nginx-naxsi │ └── nginx-naxsi.hash ├── ntfs-3g │ └── ntfs-3g.hash ├── ocf-linux │ └── ocf-linux.hash ├── openpgm │ └── openpgm.hash ├── opkg-utils │ └── opkg-utils.hash ├── php-memcached │ └── php-memcached.hash ├── protobuf-c │ └── protobuf-c.hash ├── python-see │ └── Config.in ├── python-toml │ └── python-toml.hash ├── rabbitmq-c │ └── rabbitmq-c.hash ├── sdl2_image │ └── sdl2_image.hash ├── sdl2_mixer │ └── sdl2_mixer.hash ├── sphinxbase │ └── sphinxbase.hash ├── spi-tools │ └── spi-tools.hash ├── squeezelite │ └── squeezelite.hash ├── supertux │ └── supertux.hash ├── synergy │ └── synergy.hash ├── thrift │ └── thrift.hash ├── uboot-tools │ └── uboot-tools.hash ├── xdotool │ └── xdotool.hash ├── zip │ └── zip.hash ├── alljoyn-base │ └── alljoyn-base.hash ├── bcache-tools │ └── bcache-tools.hash ├── c-ares │ └── Config.in ├── c-periphery │ └── c-periphery.hash ├── comix-cursors │ └── comix-cursors.hash ├── cups-filters │ └── cups-filters.hash ├── erlang-jiffy │ └── erlang-jiffy.hash ├── erlang-lager │ └── erlang-lager.hash ├── erlang-rebar │ └── erlang-rebar.hash ├── font-awesome │ └── font-awesome.hash ├── gesftpserver │ └── gesftpserver.hash ├── gsl │ └── gsl.hash ├── ibrdtn-tools │ └── ibrdtn-tools.hash ├── jquery-mobile │ └── jquery-mobile.hash ├── let-me-create │ └── let-me-create.hash ├── libcdaudio │ └── libcdaudio.hash ├── libfastjson │ └── libfastjson.hash ├── libhdhomerun │ └── libhdhomerun.hash ├── libogg │ └── libogg.hash ├── libopenh264 │ └── libopenh264.hash ├── liboping │ └── liboping.hash ├── libphidget │ └── libphidget.hash ├── libpwquality │ └── libpwquality.hash ├── libserialport │ └── libserialport.hash ├── libsocketcan │ └── libsocketcan.hash ├── libvncserver │ └── libvncserver.hash ├── ljlinenoise │ └── ljlinenoise.hash ├── lm-sensors │ └── lm-sensors.hash ├── lpc3250loader │ └── lpc3250loader.hash ├── lua-compat53 │ └── lua-compat53.hash ├── lua-csnappy │ └── lua-csnappy.hash ├── lua-datafile │ └── lua-datafile.hash ├── lua-markdown │ └── lua-markdown.hash ├── lualogging │ └── lualogging.hash ├── modplugtools │ └── modplugtools.hash └── on2-8170-libs │ └── on2-8170-libs.hash └── fs ├── yaffs2 └── Config.in ├── iso9660 ├── isolinux.cfg └── grub.cfg └── romfs └── Config.in /docs/images: -------------------------------------------------------------------------------- 1 | website/images -------------------------------------------------------------------------------- /system/skeleton/dev/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /system/skeleton/media/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /system/skeleton/mnt/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /system/skeleton/opt/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /system/skeleton/proc/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /system/skeleton/root/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /system/skeleton/run/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /system/skeleton/sys/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /system/skeleton/tmp/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /board/digilent/zybo/system.bit: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /board/raspberrypi0: -------------------------------------------------------------------------------- 1 | raspberrypi -------------------------------------------------------------------------------- /board/raspberrypi2: -------------------------------------------------------------------------------- 1 | raspberrypi -------------------------------------------------------------------------------- /board/raspberrypi3: -------------------------------------------------------------------------------- 1 | raspberrypi -------------------------------------------------------------------------------- /board/raspberrypi3-64: -------------------------------------------------------------------------------- 1 | raspberrypi -------------------------------------------------------------------------------- /support/testing/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /system/skeleton/usr/bin/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /system/skeleton/usr/lib/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /system/skeleton/usr/sbin/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/checkpackagelib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /board/sidekiqz2/msd/img/version.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /configs/zynq_pluto_defconfig: -------------------------------------------------------------------------------- 1 | ../.config -------------------------------------------------------------------------------- /support/testing/tests/boot/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /support/testing/tests/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /support/testing/tests/fs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /support/testing/tests/init/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /board/m2k/msd/.gitignore: -------------------------------------------------------------------------------- 1 | LICENSE.html 2 | -------------------------------------------------------------------------------- /board/pluto/msd/.gitignore: -------------------------------------------------------------------------------- 1 | LICENSE.html 2 | -------------------------------------------------------------------------------- /support/testing/tests/package/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /support/testing/tests/toolchain/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /system/skeleton/etc/mtab: -------------------------------------------------------------------------------- 1 | ../proc/self/mounts -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- 1 | [flake8] 2 | max-line-length=132 3 | -------------------------------------------------------------------------------- /boot/barebox/barebox/barebox.hash: -------------------------------------------------------------------------------- 1 | ../barebox.hash -------------------------------------------------------------------------------- /package/gcc/gcc-final/gcc-final.hash: -------------------------------------------------------------------------------- 1 | ../gcc.hash -------------------------------------------------------------------------------- /package/ifupdown-scripts/network/if-up.d/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package/gcc/gcc-initial/gcc-initial.hash: -------------------------------------------------------------------------------- 1 | ../gcc.hash -------------------------------------------------------------------------------- /package/ifupdown-scripts/network/if-down.d/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package/skeleton-init-sysv/skeleton/dev/log: -------------------------------------------------------------------------------- 1 | ../tmp/log -------------------------------------------------------------------------------- /package/skeleton-init-sysv/skeleton/dev/pts/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package/skeleton-init-sysv/skeleton/dev/shm/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package/skeleton-init-sysv/skeleton/var/cache: -------------------------------------------------------------------------------- 1 | ../tmp -------------------------------------------------------------------------------- /package/skeleton-init-sysv/skeleton/var/lock: -------------------------------------------------------------------------------- 1 | ../tmp -------------------------------------------------------------------------------- /package/skeleton-init-sysv/skeleton/var/log: -------------------------------------------------------------------------------- 1 | ../tmp -------------------------------------------------------------------------------- /package/skeleton-init-sysv/skeleton/var/run: -------------------------------------------------------------------------------- 1 | ../run -------------------------------------------------------------------------------- /package/skeleton-init-sysv/skeleton/var/spool: -------------------------------------------------------------------------------- 1 | ../tmp -------------------------------------------------------------------------------- /package/skeleton-init-sysv/skeleton/var/tmp: -------------------------------------------------------------------------------- 1 | ../tmp -------------------------------------------------------------------------------- /support/testing/tests/core/post-image.sh: -------------------------------------------------------------------------------- 1 | post-build.sh -------------------------------------------------------------------------------- /system/skeleton/etc/hosts: -------------------------------------------------------------------------------- 1 | 127.0.0.1 localhost 2 | -------------------------------------------------------------------------------- /system/skeleton/etc/profile.d/umask.sh: -------------------------------------------------------------------------------- 1 | umask 022 2 | -------------------------------------------------------------------------------- /system/skeleton/etc/resolv.conf: -------------------------------------------------------------------------------- 1 | ../tmp/resolv.conf -------------------------------------------------------------------------------- /boot/barebox/barebox-aux/barebox-aux.hash: -------------------------------------------------------------------------------- 1 | ../barebox.hash -------------------------------------------------------------------------------- /boot/common.mk: -------------------------------------------------------------------------------- 1 | include $(sort $(wildcard boot/*/*.mk)) 2 | -------------------------------------------------------------------------------- /package/ifupdown-scripts/network/if-post-down.d/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package/skeleton-init-sysv/skeleton/var/lib/misc: -------------------------------------------------------------------------------- 1 | ../../tmp -------------------------------------------------------------------------------- /support/testing/tests/core/post-fakeroot.sh: -------------------------------------------------------------------------------- 1 | post-build.sh -------------------------------------------------------------------------------- /board/pluto/buildgz.sh: -------------------------------------------------------------------------------- 1 | ../../../../PlutoWeb/plutoweb/buildgz.sh -------------------------------------------------------------------------------- /board/udoo/mx6qdl/linux.fragment: -------------------------------------------------------------------------------- 1 | # CONFIG_USB is not set 2 | -------------------------------------------------------------------------------- /boot/gummiboot/loader.conf: -------------------------------------------------------------------------------- 1 | timeout 3 2 | default buildroot 3 | -------------------------------------------------------------------------------- /package/audit/audit_tmpfiles.conf: -------------------------------------------------------------------------------- 1 | d /var/log/audit 0755 - - 2 | -------------------------------------------------------------------------------- /package/fluxbox/xsession: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec startfluxbox 3 | -------------------------------------------------------------------------------- /package/mesa3d-headers/mesa3d-headers.hash: -------------------------------------------------------------------------------- 1 | ../mesa3d/mesa3d.hash -------------------------------------------------------------------------------- /board/freescale/warpboard/linux.fragment: -------------------------------------------------------------------------------- 1 | CONFIG_CFG80211_WEXT=y 2 | -------------------------------------------------------------------------------- /docs/website/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: /cgi-bin/ 3 | -------------------------------------------------------------------------------- /package/kodi-texturepacker/kodi-texturepacker.hash: -------------------------------------------------------------------------------- 1 | ../kodi/kodi.hash -------------------------------------------------------------------------------- /support/testing/tests/core/rootfs-overlay1/test-file1: -------------------------------------------------------------------------------- 1 | foobar 2 | -------------------------------------------------------------------------------- /support/testing/tests/core/rootfs-overlay2/etc/test-file2: -------------------------------------------------------------------------------- 1 | barfoo 2 | -------------------------------------------------------------------------------- /support/testing/tests/init/systemd-factory/var/foo/bar: -------------------------------------------------------------------------------- 1 | foobar 2 | -------------------------------------------------------------------------------- /board/technexion/imx6ulpico/linux.fragment: -------------------------------------------------------------------------------- 1 | CONFIG_CFG80211_WEXT=y 2 | -------------------------------------------------------------------------------- /package/qt/powervr.ini: -------------------------------------------------------------------------------- 1 | [default] 2 | WindowSystem=libpvrQWSWSEGL.so.1 3 | -------------------------------------------------------------------------------- /board/freescale/imx31_3stack/linux.fragment: -------------------------------------------------------------------------------- 1 | # CONFIG_FB_MXS is not set 2 | -------------------------------------------------------------------------------- /package/avahi/avahi_tmpfiles.conf: -------------------------------------------------------------------------------- 1 | d /tmp/avahi-autoipd 0755 avahi avahi 2 | -------------------------------------------------------------------------------- /package/kodi-jsonschemabuilder/kodi-jsonschemabuilder.hash: -------------------------------------------------------------------------------- 1 | ../kodi/kodi.hash -------------------------------------------------------------------------------- /package/linux-headers/Config.in: -------------------------------------------------------------------------------- 1 | config BR2_PACKAGE_LINUX_HEADERS 2 | bool 3 | -------------------------------------------------------------------------------- /package/opengl/opengl.mk: -------------------------------------------------------------------------------- 1 | include $(sort $(wildcard package/opengl/*/*.mk)) 2 | -------------------------------------------------------------------------------- /package/x11r7/x11r7.mk: -------------------------------------------------------------------------------- 1 | include $(sort $(wildcard package/x11r7/*/*.mk)) 2 | -------------------------------------------------------------------------------- /package/qt5/qt5base/qplatformdefs.h: -------------------------------------------------------------------------------- 1 | #include "../../linux-g++/qplatformdefs.h" 2 | -------------------------------------------------------------------------------- /package/quagga/quagga_tmpfiles.conf: -------------------------------------------------------------------------------- 1 | d /var/run/quagga/ 1755 quagga quagga - 2 | -------------------------------------------------------------------------------- /package/ti-gfx/powervr.ini: -------------------------------------------------------------------------------- 1 | [default] 2 | WindowSystem=libpvrPVR2D_FRONTWSEGL.so 3 | -------------------------------------------------------------------------------- /support/kconfig/lxdialog/.gitignore: -------------------------------------------------------------------------------- 1 | # 2 | # Generated files 3 | # 4 | lxdialog 5 | -------------------------------------------------------------------------------- /board/chromebook/snow/linux-4.6.fragment: -------------------------------------------------------------------------------- 1 | CONFIG_MWIFIEX=m 2 | CONFIG_MWIFIEX_SDIO=m 3 | -------------------------------------------------------------------------------- /package/gstreamer/gstreamer.mk: -------------------------------------------------------------------------------- 1 | include $(sort $(wildcard package/gstreamer/*/*.mk)) 2 | -------------------------------------------------------------------------------- /package/cargo/config.in: -------------------------------------------------------------------------------- 1 | [target.@RUSTC_TARGET_NAME@] 2 | linker = "@CROSS_PREFIX@gcc" 3 | -------------------------------------------------------------------------------- /package/gstreamer1/gstreamer1.mk: -------------------------------------------------------------------------------- 1 | include $(sort $(wildcard package/gstreamer1/*/*.mk)) 2 | -------------------------------------------------------------------------------- /package/musl-compat-headers/Config.in: -------------------------------------------------------------------------------- 1 | config BR2_PACKAGE_MUSL_COMPAT_HEADERS 2 | bool 3 | -------------------------------------------------------------------------------- /package/skeleton-init-common/Config.in: -------------------------------------------------------------------------------- 1 | config BR2_PACKAGE_SKELETON_INIT_COMMON 2 | bool 3 | -------------------------------------------------------------------------------- /package/mkpasswd/Config.in.host: -------------------------------------------------------------------------------- 1 | config BR2_PACKAGE_HOST_MKPASSWD 2 | bool "host mkpasswd" 3 | -------------------------------------------------------------------------------- /support/config-fragments/autobuild/br-microblazeel-full-internal.config: -------------------------------------------------------------------------------- 1 | BR2_microblazeel=y 2 | -------------------------------------------------------------------------------- /board/m2k/msd/img/ez.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpunk/buildroot/pluto/board/m2k/msd/img/ez.png -------------------------------------------------------------------------------- /board/m2k/msd/img/fb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpunk/buildroot/pluto/board/m2k/msd/img/fb.png -------------------------------------------------------------------------------- /board/m2k/msd/img/gp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpunk/buildroot/pluto/board/m2k/msd/img/gp.png -------------------------------------------------------------------------------- /board/m2k/msd/img/ig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpunk/buildroot/pluto/board/m2k/msd/img/ig.png -------------------------------------------------------------------------------- /board/m2k/msd/img/li.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpunk/buildroot/pluto/board/m2k/msd/img/li.png -------------------------------------------------------------------------------- /board/m2k/msd/img/ss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpunk/buildroot/pluto/board/m2k/msd/img/ss.png -------------------------------------------------------------------------------- /board/m2k/msd/img/sw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpunk/buildroot/pluto/board/m2k/msd/img/sw.png -------------------------------------------------------------------------------- /board/m2k/msd/img/tw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpunk/buildroot/pluto/board/m2k/msd/img/tw.png -------------------------------------------------------------------------------- /board/m2k/msd/img/yk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpunk/buildroot/pluto/board/m2k/msd/img/yk.png -------------------------------------------------------------------------------- /board/m2k/msd/img/yt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpunk/buildroot/pluto/board/m2k/msd/img/yt.png -------------------------------------------------------------------------------- /docs/website/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpunk/buildroot/pluto/docs/website/favicon.ico -------------------------------------------------------------------------------- /package/rpi-firmware/cmdline.txt: -------------------------------------------------------------------------------- 1 | root=/dev/mmcblk0p2 rootwait console=tty1 console=ttyAMA0,115200 2 | -------------------------------------------------------------------------------- /package/tz/Config.in: -------------------------------------------------------------------------------- 1 | config BR2_PACKAGE_TZ 2 | bool 3 | help 4 | Timezone info for uClibc. 5 | -------------------------------------------------------------------------------- /package/x11r7/xcursor-transparent-theme/index.theme: -------------------------------------------------------------------------------- 1 | [Icon Theme] 2 | Inherits=xcursor-transparent 3 | -------------------------------------------------------------------------------- /support/kconfig/.gitignore: -------------------------------------------------------------------------------- 1 | # 2 | # Quilt is being used to handle the patch series 3 | # 4 | .pc 5 | -------------------------------------------------------------------------------- /board/chromebook/snow/kernel.args: -------------------------------------------------------------------------------- 1 | console=tty1 clk_ignore_unused root=/dev/mmcblk1p2 rootfstype=ext4 ro 2 | -------------------------------------------------------------------------------- /board/pluto/msd/img/ez.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpunk/buildroot/pluto/board/pluto/msd/img/ez.png -------------------------------------------------------------------------------- /board/pluto/msd/img/fb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpunk/buildroot/pluto/board/pluto/msd/img/fb.png -------------------------------------------------------------------------------- /board/pluto/msd/img/gp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpunk/buildroot/pluto/board/pluto/msd/img/gp.png -------------------------------------------------------------------------------- /board/pluto/msd/img/ig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpunk/buildroot/pluto/board/pluto/msd/img/ig.png -------------------------------------------------------------------------------- /board/pluto/msd/img/li.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpunk/buildroot/pluto/board/pluto/msd/img/li.png -------------------------------------------------------------------------------- /board/pluto/msd/img/ss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpunk/buildroot/pluto/board/pluto/msd/img/ss.png -------------------------------------------------------------------------------- /board/pluto/msd/img/sw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpunk/buildroot/pluto/board/pluto/msd/img/sw.png -------------------------------------------------------------------------------- /board/pluto/msd/img/tw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpunk/buildroot/pluto/board/pluto/msd/img/tw.png -------------------------------------------------------------------------------- /board/pluto/msd/img/yk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpunk/buildroot/pluto/board/pluto/msd/img/yk.png -------------------------------------------------------------------------------- /board/pluto/msd/img/yt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpunk/buildroot/pluto/board/pluto/msd/img/yt.png -------------------------------------------------------------------------------- /package/systemd/dhcp.network: -------------------------------------------------------------------------------- 1 | [Match] 2 | Name=SYSTEMD_NETWORKD_DHCP_IFACE 3 | [Network] 4 | DHCP=ipv4 5 | -------------------------------------------------------------------------------- /board/m2k/msd/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpunk/buildroot/pluto/board/m2k/msd/img/favicon.ico -------------------------------------------------------------------------------- /docs/website/images/email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpunk/buildroot/pluto/docs/website/images/email.png -------------------------------------------------------------------------------- /docs/website/images/gift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpunk/buildroot/pluto/docs/website/images/gift.png -------------------------------------------------------------------------------- /docs/website/images/irc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpunk/buildroot/pluto/docs/website/images/irc.png -------------------------------------------------------------------------------- /docs/website/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpunk/buildroot/pluto/docs/website/images/logo.png -------------------------------------------------------------------------------- /docs/website/images/logo.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpunk/buildroot/pluto/docs/website/images/logo.xcf -------------------------------------------------------------------------------- /docs/website/images/text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpunk/buildroot/pluto/docs/website/images/text.png -------------------------------------------------------------------------------- /docs/website/images/zip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpunk/buildroot/pluto/docs/website/images/zip.png -------------------------------------------------------------------------------- /package/linux-fusion/40-fusion.rules: -------------------------------------------------------------------------------- 1 | KERNEL=="fusion[0-9]*", NAME="fusion/%n", GROUP="video", MODE="0660" 2 | -------------------------------------------------------------------------------- /board/intel/galileo/rootfs_overlay/etc/modules-load.galileo/galileo.conf: -------------------------------------------------------------------------------- 1 | intel_qrk_gip 2 | cy8c9540a 3 | ad7298 4 | -------------------------------------------------------------------------------- /board/m2k/msd/img/PlutoSDR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpunk/buildroot/pluto/board/m2k/msd/img/PlutoSDR.png -------------------------------------------------------------------------------- /board/m2k/msd/img/download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpunk/buildroot/pluto/board/m2k/msd/img/download.png -------------------------------------------------------------------------------- /board/m2k/msd/img/prof_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpunk/buildroot/pluto/board/m2k/msd/img/prof_blue.png -------------------------------------------------------------------------------- /board/pluto/msd/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpunk/buildroot/pluto/board/pluto/msd/img/favicon.ico -------------------------------------------------------------------------------- /board/pluto/msd/img/osc128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpunk/buildroot/pluto/board/pluto/msd/img/osc128.png -------------------------------------------------------------------------------- /board/roseapplepi/uEnv.txt: -------------------------------------------------------------------------------- 1 | # no ramdisk 2 | ramdisk_addr_r=- 3 | bootargs=clk_ignore_unused root=/dev/mmcblk0p2 4 | -------------------------------------------------------------------------------- /docs/website/images/browser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpunk/buildroot/pluto/docs/website/images/browser.png -------------------------------------------------------------------------------- /docs/website/images/hammer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpunk/buildroot/pluto/docs/website/images/hammer.png -------------------------------------------------------------------------------- /docs/website/images/nconfig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpunk/buildroot/pluto/docs/website/images/nconfig.png -------------------------------------------------------------------------------- /docs/website/images/package.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpunk/buildroot/pluto/docs/website/images/package.png -------------------------------------------------------------------------------- /docs/website/images/xconfig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpunk/buildroot/pluto/docs/website/images/xconfig.png -------------------------------------------------------------------------------- /package/atftp/atftp.hash: -------------------------------------------------------------------------------- 1 | # Locally computed 2 | sha1 fc9e9f821dfd2f257b4a5c32b948ed60b4e31fd1 atftp-0.7.1.tar.gz 3 | -------------------------------------------------------------------------------- /package/axel/axel.hash: -------------------------------------------------------------------------------- 1 | sha256 d34094eb63eaebc989f96eabdda091dcfb28e840bb8d274a5f216775941f59e4 axel-2.16.1.tar.xz 2 | -------------------------------------------------------------------------------- /package/x11r7/mcookie/mcookie.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpunk/buildroot/pluto/package/x11r7/mcookie/mcookie.c -------------------------------------------------------------------------------- /board/lego/ev3/busybox.fragment: -------------------------------------------------------------------------------- 1 | CONFIG_BEEP=y 2 | CONFIG_FEATURE_BEEP_FREQ=440 3 | CONFIG_FEATURE_BEEP_LENGTH_MS=250 4 | -------------------------------------------------------------------------------- /board/m2k/msd/img/ADI_Logo_AWP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpunk/buildroot/pluto/board/m2k/msd/img/ADI_Logo_AWP.png -------------------------------------------------------------------------------- /board/pluto/msd/img/PlutoSDR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpunk/buildroot/pluto/board/pluto/msd/img/PlutoSDR.png -------------------------------------------------------------------------------- /board/pluto/msd/img/SDR-Sharp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpunk/buildroot/pluto/board/pluto/msd/img/SDR-Sharp.png -------------------------------------------------------------------------------- /board/pluto/msd/img/download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpunk/buildroot/pluto/board/pluto/msd/img/download.png -------------------------------------------------------------------------------- /board/pluto/msd/img/prof_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpunk/buildroot/pluto/board/pluto/msd/img/prof_blue.png -------------------------------------------------------------------------------- /board/pluto/msd/img/sdrangel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpunk/buildroot/pluto/board/pluto/msd/img/sdrangel.png -------------------------------------------------------------------------------- /boot/gummiboot/buildroot.conf: -------------------------------------------------------------------------------- 1 | title Buildroot 2 | version 1 3 | linux /bzImage 4 | options console=ttyS0 root=/dev/sda2 5 | -------------------------------------------------------------------------------- /docs/website/images/bug-buddy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpunk/buildroot/pluto/docs/website/images/bug-buddy.png -------------------------------------------------------------------------------- /docs/website/images/calao-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpunk/buildroot/pluto/docs/website/images/calao-logo.png -------------------------------------------------------------------------------- /docs/website/images/logo_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpunk/buildroot/pluto/docs/website/images/logo_small.png -------------------------------------------------------------------------------- /docs/website/images/menuconfig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpunk/buildroot/pluto/docs/website/images/menuconfig.png -------------------------------------------------------------------------------- /docs/website/images/mind-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpunk/buildroot/pluto/docs/website/images/mind-logo.png -------------------------------------------------------------------------------- /docs/website/images/pdf-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpunk/buildroot/pluto/docs/website/images/pdf-icon.png -------------------------------------------------------------------------------- /docs/website/images/tux-flat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpunk/buildroot/pluto/docs/website/images/tux-flat.png -------------------------------------------------------------------------------- /package/amd-catalyst/20-fglrx.conf: -------------------------------------------------------------------------------- 1 | Section "Device" 2 | Identifier "AMD Radeon GPU" 3 | Driver "fglrx" 4 | EndSection 5 | -------------------------------------------------------------------------------- /board/m2k/msd/img/GNURadio_logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpunk/buildroot/pluto/board/m2k/msd/img/GNURadio_logo.jpg -------------------------------------------------------------------------------- /board/m2k/msd/img/mathworks_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpunk/buildroot/pluto/board/m2k/msd/img/mathworks_logo.png -------------------------------------------------------------------------------- /board/pluto/msd/img/ADI_Logo_AWP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpunk/buildroot/pluto/board/pluto/msd/img/ADI_Logo_AWP.png -------------------------------------------------------------------------------- /board/technologic/ts4800/linux.fragment: -------------------------------------------------------------------------------- 1 | CONFIG_TOUCHSCREEN_TS4800=y 2 | CONFIG_TS4800_WATCHDOG=y 3 | CONFIG_TS4800_IRQ=y 4 | -------------------------------------------------------------------------------- /docs/website/images/fluendo-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpunk/buildroot/pluto/docs/website/images/fluendo-logo.png -------------------------------------------------------------------------------- /docs/website/images/google-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpunk/buildroot/pluto/docs/website/images/google-logo.png -------------------------------------------------------------------------------- /docs/website/images/imgtec-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpunk/buildroot/pluto/docs/website/images/imgtec-logo.png -------------------------------------------------------------------------------- /package/fan-ctrl/fan-ctrl.hash: -------------------------------------------------------------------------------- 1 | # Locally computed 2 | sha1 d8ba5bac15e90c36a4e908ca1c98fac83bf702ea fan-ctrl.c?revision=1.3 3 | -------------------------------------------------------------------------------- /package/iodine/iodine.hash: -------------------------------------------------------------------------------- 1 | # From http://code.kryo.se/iodine/ 2 | md5 fdbf3b81cd69caf5230d76a8b039fd99 iodine-0.7.0.tar.gz 3 | -------------------------------------------------------------------------------- /package/libglob/Config.in: -------------------------------------------------------------------------------- 1 | config BR2_PACKAGE_LIBGLOB 2 | bool "libglob" 3 | help 4 | OpenBSD implementation of glob(3). 5 | -------------------------------------------------------------------------------- /package/libpciaccess/Config.in: -------------------------------------------------------------------------------- 1 | config BR2_PACKAGE_LIBPCIACCESS 2 | bool "libpciaccess" 3 | help 4 | X.Org libpciaccess 5 | -------------------------------------------------------------------------------- /package/qt5cinex/CinematicExperience-demo: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec /usr/share/Qt5/CinematicExperience/Qt5_CinematicExperience "$@" 3 | -------------------------------------------------------------------------------- /package/x11r7/xlib_xtrans/Config.in: -------------------------------------------------------------------------------- 1 | config BR2_PACKAGE_XLIB_XTRANS 2 | bool "xtrans" 3 | help 4 | X.Org xtrans library 5 | -------------------------------------------------------------------------------- /support/testing/conf/unittest.cfg: -------------------------------------------------------------------------------- 1 | [unittest] 2 | plugins = nose2.plugins.mp 3 | 4 | [multiprocess] 5 | always-on = True 6 | -------------------------------------------------------------------------------- /board/intel/galileo/post-build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | cp board/intel/galileo/grub.cfg ${BINARIES_DIR}/efi-part/EFI/BOOT/grub.cfg 3 | -------------------------------------------------------------------------------- /board/pluto/msd/img/GNURadio_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpunk/buildroot/pluto/board/pluto/msd/img/GNURadio_logo.png -------------------------------------------------------------------------------- /board/pluto/msd/img/mathworks_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpunk/buildroot/pluto/board/pluto/msd/img/mathworks_logo.png -------------------------------------------------------------------------------- /boot/at91dataflashboot/Config.in: -------------------------------------------------------------------------------- 1 | config BR2_TARGET_AT91DATAFLASHBOOT 2 | depends on BR2_arm926t 3 | bool "AT91 DataFlashBoot" 4 | -------------------------------------------------------------------------------- /docs/website/images/circuitco-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpunk/buildroot/pluto/docs/website/images/circuitco-logo.png -------------------------------------------------------------------------------- /docs/website/images/owi-smile-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpunk/buildroot/pluto/docs/website/images/owi-smile-logo.png -------------------------------------------------------------------------------- /docs/website/images/synopsys-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpunk/buildroot/pluto/docs/website/images/synopsys-logo.png -------------------------------------------------------------------------------- /package/bsdiff/bsdiff.hash: -------------------------------------------------------------------------------- 1 | # From http://www.daemonology.net/bsdiff/: 2 | md5 e6d812394f0e0ecc8d5df255aa1db22a bsdiff-4.3.tar.gz 3 | -------------------------------------------------------------------------------- /package/bzip2/bzip2.hash: -------------------------------------------------------------------------------- 1 | # From http://www.bzip.org/downloads.html 2 | md5 00b516f4704d4a7cb50a1d97e6e8e15b bzip2-1.0.6.tar.gz 3 | -------------------------------------------------------------------------------- /package/jo/jo.hash: -------------------------------------------------------------------------------- 1 | # Locally computed 2 | sha256 63ed4766c2e0fcb5391a14033930329369f437d7060a11d82874e57e278bda5f jo-1.1.tar.gz 3 | -------------------------------------------------------------------------------- /package/libgeotiff/libgeotiff.hash: -------------------------------------------------------------------------------- 1 | # Locally computed 2 | sha1 4c6f405869826bb7d9f35f1d69167e3b44a57ef0 libgeotiff-1.4.0.tar.gz 3 | -------------------------------------------------------------------------------- /package/liblockfile/Config.in: -------------------------------------------------------------------------------- 1 | config BR2_PACKAGE_LIBLOCKFILE 2 | bool "liblockfile" 3 | help 4 | NFS-safe locking library. 5 | -------------------------------------------------------------------------------- /board/solidrun/macchiatobin/linux-extras.config: -------------------------------------------------------------------------------- 1 | CONFIG_MARVELL_PHY=y 2 | CONFIG_MARVELL_10G_PHY=y 3 | CONFIG_PHY_MVEBU_CP110_COMPHY=y 4 | -------------------------------------------------------------------------------- /boot/grub2/grub2.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 810b3798d316394f94096ec2797909dbf23c858e48f7b3830826b8daa06b7b0f grub-2.02.tar.xz 3 | -------------------------------------------------------------------------------- /docs/website/images/buildroot-slides.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpunk/buildroot/pluto/docs/website/images/buildroot-slides.png -------------------------------------------------------------------------------- /fs/yaffs2/Config.in: -------------------------------------------------------------------------------- 1 | config BR2_TARGET_ROOTFS_YAFFS2 2 | bool "yaffs2 root filesystem" 3 | help 4 | Build a yaffs2 root filesystem 5 | -------------------------------------------------------------------------------- /package/atf/atf.hash: -------------------------------------------------------------------------------- 1 | # Locally computed 2 | sha256 92bc64180135eea8fe84c91c9f894e678767764f6dbc8482021d4dde09857505 atf-0.21.tar.gz 3 | -------------------------------------------------------------------------------- /package/cgic/cgic.hash: -------------------------------------------------------------------------------- 1 | # Locally computed 2 | sha256 1e8834642a4b89528bb7bde2f287e133c6b07e210e68681a34137c436d59d320 cgic207.tar.gz 3 | -------------------------------------------------------------------------------- /package/fbv/fbv.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 9b55b9dafd5eb01562060d860e267e309a1876e8ba5ce4d3303484b94129ab3c fbv-1.0b.tar.gz 3 | -------------------------------------------------------------------------------- /package/fis/Config.in: -------------------------------------------------------------------------------- 1 | config BR2_PACKAGE_FIS 2 | bool "fis" 3 | help 4 | fis - manipulate RedBoot partition table from Linux. 5 | -------------------------------------------------------------------------------- /package/ijs/ijs.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 11a5f5084488c480f3ff5a24d64d7147bb64272bf60a0ba51330a56c5b50cab9 ijs-0.35.tar.bz2 3 | -------------------------------------------------------------------------------- /package/isl/isl.hash: -------------------------------------------------------------------------------- 1 | # Locally computed 2 | sha256 0f35051cc030b87c673ac1f187de40e386a1482a0cfdf2c552dd6031b307ddc4 isl-0.18.tar.xz 3 | -------------------------------------------------------------------------------- /package/jq/jq.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 c4d2bfec6436341113419debf479d833692cc5cdab7eb0326b5a4d4fbe9f493c jq-1.5.tar.gz 3 | -------------------------------------------------------------------------------- /package/libee/libee.hash: -------------------------------------------------------------------------------- 1 | # From http://www.libee.org/download/libee-0-4-1/ 2 | md5 7bbf4160876c12db6193c06e2badedb2 libee-0.4.1.tar.gz 3 | -------------------------------------------------------------------------------- /package/libsoil/libsoil.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 a2305b8d64f6d636e36d669bbdb0ca5445d1345c754b3d61d3f037dad2e5f701 soil.zip 3 | -------------------------------------------------------------------------------- /package/libxml2/Config.in: -------------------------------------------------------------------------------- 1 | config BR2_PACKAGE_LIBXML2 2 | bool "libxml2" 3 | help 4 | XML C Parser 5 | 6 | http://xmlsoft.org/ 7 | -------------------------------------------------------------------------------- /package/mpv/mpv.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 2ad104d83fd3b2b9457716615acad57e479fd1537b8fc5e37bfe9065359b50be v0.27.2.tar.gz 3 | -------------------------------------------------------------------------------- /package/poll_sysfs/Config.in: -------------------------------------------------------------------------------- 1 | config BR2_PACKAGE_POLL_SYSFS 2 | bool "poll_sysfs" 3 | help 4 | The sysfs poll utility. 5 | 6 | -------------------------------------------------------------------------------- /package/pound/pound.hash: -------------------------------------------------------------------------------- 1 | # Locally computed 2 | sha256 cdfbf5a7e8dc8fbbe0d6c1e83cd3bd3f2472160aac65684bb01ef661c626a8e4 Pound-2.7.tgz 3 | -------------------------------------------------------------------------------- /package/sl/sl.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 1e5996757f879c81f202a18ad8e982195cf51c41727d3fea4af01fdcbbb5563a sl-5.02.tar.gz 3 | -------------------------------------------------------------------------------- /package/szip/szip.hash: -------------------------------------------------------------------------------- 1 | # Locally computed 2 | sha256 a816d95d5662e8279625abdbea7d0e62157d7d1f028020b1075500bf483ed5ef szip-2.1.tar.gz 3 | -------------------------------------------------------------------------------- /package/tree/tree.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 6957c20e82561ac4231638996e74f4cfa4e6faabc5a2f511f0b4e3940e8f7b12 tree-1.7.0.tgz 3 | -------------------------------------------------------------------------------- /package/ucl/ucl.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 b865299ffd45d73412293369c9754b07637680e5c826915f097577cd27350348 ucl-1.03.tar.gz 3 | -------------------------------------------------------------------------------- /package/unscd/unscd.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 4c1f83dcd120469fceef749050cb29fa666fa4666bd308dfe92e933a4c200d55 nscd-0.52.c 3 | -------------------------------------------------------------------------------- /package/unzip/unzip.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 036d96991646d0449ed0aa952e4fbe21b476ce994abc276e49d30e686708bd37 unzip60.tgz 3 | -------------------------------------------------------------------------------- /package/xen/xen.hash: -------------------------------------------------------------------------------- 1 | # Locally computed 2 | sha256 0262a7023f8b12bcacfb0b25e69b2a63291f944f7683d54d8f33d4b2ca556844 xen-4.10.0.tar.gz 3 | -------------------------------------------------------------------------------- /board/intel/galileo/rootfs_overlay/etc/modules-load.galileo/galileo_gen2.conf: -------------------------------------------------------------------------------- 1 | intel_qrk_gip 2 | gpio-pca953x 3 | pca9685 4 | adc1x8s102 5 | -------------------------------------------------------------------------------- /docs/website/images/free-electrons-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpunk/buildroot/pluto/docs/website/images/free-electrons-logo.png -------------------------------------------------------------------------------- /docs/website/images/github_hash_mongrel2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpunk/buildroot/pluto/docs/website/images/github_hash_mongrel2.png -------------------------------------------------------------------------------- /package/bc/bc.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 7ee4abbcfac03d8a6e1a8a3440558a3d239d6b858585063e745c760957725ecc bc-1.06.95.tar.bz2 3 | -------------------------------------------------------------------------------- /package/blktrace/blktrace.hash: -------------------------------------------------------------------------------- 1 | # From http://brick.kernel.dk/snaps/MD5SUMS 2 | md5 9a6ca62330c8adb0b6a4ea6cf8a55694 blktrace-1.1.0.tar.gz 3 | -------------------------------------------------------------------------------- /package/bmon/bmon.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 02fdc312b8ceeb5786b28bf905f54328f414040ff42f45c83007f24b76cc9f7a bmon-4.0.tar.gz 3 | -------------------------------------------------------------------------------- /package/cgic/Config.in: -------------------------------------------------------------------------------- 1 | config BR2_PACKAGE_CGIC 2 | bool "cgic" 3 | help 4 | C CGI library 5 | 6 | http://www.boutell.com/cgic/ 7 | -------------------------------------------------------------------------------- /package/dante/dante.hash: -------------------------------------------------------------------------------- 1 | # Locally computed 2 | sha256 b6d232bd6fefc87d14bf97e447e4fcdeef4b28b16b048d804b50b48f261c4f53 dante-1.4.1.tar.gz 3 | -------------------------------------------------------------------------------- /package/dcron/dcron.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 9e50edb6f5bd8153b16bad05087d985e5153ce45cc01ae77e7f842213fb4a824 dcron-4.5.tar.gz 3 | -------------------------------------------------------------------------------- /package/dhrystone/dhrystone.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 038a7e9169787125c3451a6c941f3aca5db2d2f3863871afcdce154ef17f4e3e dhry-c 3 | -------------------------------------------------------------------------------- /package/doom-wad/doom-wad.hash: -------------------------------------------------------------------------------- 1 | # Locally computed 2 | sha256 cacf0142b31ca1af00796b4a0339e07992ac5f21bc3f81e7532fe1b5e1b486e6 doom19s.zip 3 | -------------------------------------------------------------------------------- /package/duma/duma.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 baaf794854e3093ad1bddadbfb8ad4b220a7117d70359ee216bd59e353734e17 duma_2_5_15.tar.gz 3 | -------------------------------------------------------------------------------- /package/faifa/faifa.hash: -------------------------------------------------------------------------------- 1 | # locally computed 2 | sha256 6eada81f3d21f80b5848338b627784981064d728f8e377e5cf973d31640d4489 faifa-v0.1.tar.gz 3 | -------------------------------------------------------------------------------- /package/fbset/fbset.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 40ff4ab0247b75138a0887ed40f81c1a6184f340b77126c16d074b1075b41c20 fbset-2.1.tar.gz 3 | -------------------------------------------------------------------------------- /package/ficl/ficl.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 4daf74f3d3d6f8b86ea7cb47bc24931d50b4809b50ba34ca32e0ca1e972bd3a3 ficl-4.1.0.tar.gz 3 | -------------------------------------------------------------------------------- /package/file/file.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 8639dc4d1b21e232285cd483604afc4a6ee810710e00e579dbe9591681722b50 file-5.32.tar.gz 3 | -------------------------------------------------------------------------------- /package/fio/fio.hash: -------------------------------------------------------------------------------- 1 | # Locally computed 2 | sha256 1952db4d534221e6e8454f851dfcc38328b0ed4a3f499ea25a51ca2b5ccc8136 fio-fio-2.20.tar.gz 3 | -------------------------------------------------------------------------------- /package/flannel/flannel.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 dbbcb08c0e70713b0c920387a9967e5b30ef833c8118c847edbbca4f68ff0562 v0.5.5.tar.gz 3 | -------------------------------------------------------------------------------- /package/flot/flot.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 ef9a873befe3ff5ea42ebf1c3657887265a1717744ca8ed0c2bd3dd736d16b21 flot-0.8.3.tar.gz 3 | -------------------------------------------------------------------------------- /package/fmt/fmt.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 35300a0d356529447a79ed5ccf419239d8b34f916e5d4625f046fd37afa3650a fmt-4.0.0.tar.gz 3 | -------------------------------------------------------------------------------- /package/fping/fping.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 67eb4152b98ad34f99d2eec4e1098a0bb52caf13c0c89cd147349d08190fe8ce fping-4.0.tar.gz 3 | -------------------------------------------------------------------------------- /package/glm/glm.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 a220e60f8711265595be3221e530d632d5823641ecd46a3a54bc174933bff14c glm-0.9.8.4.tar.gz 3 | -------------------------------------------------------------------------------- /package/gmpc/gmpc.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 a69414f35396846733632ca9619921d7acda537ffd6d49bd84b444945cb76b2c gmpc-11.8.16.tar.gz 3 | -------------------------------------------------------------------------------- /package/gob2/gob2.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 f7ee84c07ca88ae96e5a60461957cc4dd0aa69d61804433d1c85de3d50be8026 gob2-2.0.20.tar.xz 3 | -------------------------------------------------------------------------------- /package/gpm/gpm.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 a955053b36556ffa7c628ce18fd6de7d625966573fa412fb08869533d8f7385c gpm-1.20.7.tar.lzma 3 | -------------------------------------------------------------------------------- /package/iotop/iotop.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 1a7c02fd3758bb048d8af861c5f8735eb3ee9abadeaa787f27b8af2b1eaee8ce iotop-0.6.tar.gz 3 | -------------------------------------------------------------------------------- /package/iozone/iozone.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 bbbda98d7c052d8654ea23fb2187d831107ab4ac89842fa21509276d9a6915f0 iozone3_446.tar 3 | -------------------------------------------------------------------------------- /package/kyua/kyua.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 2b8b64a458b642df75086eeb73e8073d105b8d9cff04c9b1a905b68bc8502560 kyua-0.11.tar.gz 3 | -------------------------------------------------------------------------------- /package/libad9361-iio/libad9361-iio.hash: -------------------------------------------------------------------------------- 1 | sha256 f0d935eb7f70fde8596d98e9eb1f311b408b87662fc1fff45ae3ed455697b747 libad9361-iio-0.2.tar.gz 2 | -------------------------------------------------------------------------------- /package/lite/lite.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 1b784cf595c3d5313e3705db210119f77d48826dbc7fcf6328af83a1270c2264 LiTE-0.8.10.tar.gz 3 | -------------------------------------------------------------------------------- /package/lldpd/lldpd.hash: -------------------------------------------------------------------------------- 1 | # Locally computed 2 | sha256 eb1f5beff2ff5c13c5e0342b5b9da815ed4a63866262445e1168a79ee65c9079 lldpd-0.9.4.tar.gz 3 | -------------------------------------------------------------------------------- /package/lshw/lshw.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 ae22ef11c934364be4fd2a0a1a7aadf4495a0251ec6979da280d342a89ca3c2f lshw-B.02.18.tar.gz 3 | -------------------------------------------------------------------------------- /package/luajit/luajit.hash: -------------------------------------------------------------------------------- 1 | # Hashes from: http://luajit.org/download.html 2 | md5 48353202cbcacab84ee41a5a70ea0a2c LuaJIT-2.0.5.tar.gz 3 | -------------------------------------------------------------------------------- /package/lutok/lutok.hash: -------------------------------------------------------------------------------- 1 | # Locally computed 2 | sha256 2cec51efa0c8d65ace8b21eaa08384b77abc5087b46e785f78de1c21fb754cd5 lutok-0.4.tar.gz 3 | -------------------------------------------------------------------------------- /package/luv/luv.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 1051cfbdc361d5ea6d978fd71273b94c8a5007d76af498b456b297b18de9622c luv-1.9.1-1.tar.gz 3 | -------------------------------------------------------------------------------- /package/lzma/lzma.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 02aa57f995d15b7acb7c2496d88a39fb0124ea00bf027cc61dd24eddb5942dff lzma-4.32.7.tar.xz 3 | -------------------------------------------------------------------------------- /package/lzop/lzop.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 c1425b8c77d49f5a679d5a126c90ea6ad99585a55e335a613cae59e909dbb2c9 lzop-1.03.tar.gz 3 | -------------------------------------------------------------------------------- /package/mpir/mpir.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 52f63459cf3f9478859de29e00357f004050ead70b45913f2c2269d9708675bb mpir-3.0.0.tar.bz2 3 | -------------------------------------------------------------------------------- /package/mraa/mraa.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 e4501e6936afb426c75b7d406c1a7a27b514297f640e887de4d88a2d9687f37b mraa-v0.9.1.tar.gz 3 | -------------------------------------------------------------------------------- /package/mutt/mutt.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 9b81746d67ffeca5ea44f60893b70dc93c86d4bc10187d4dd360185e4d42ed42 mutt-1.8.3.tar.gz 3 | -------------------------------------------------------------------------------- /package/ne10/ne10.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 450dac5bb3a2351019ae23792e97c3bf965d16a21c0598b73cea9fbc3b3a56af ne10-v1.2.0.tar.gz 3 | -------------------------------------------------------------------------------- /package/nodm/nodm.hash: -------------------------------------------------------------------------------- 1 | # locally calculated 2 | sha256 ef11667ae82846801a9633df36c20f632cc03319bb1da35f062ac0f950771273 nodm-0.13.tar.gz 3 | -------------------------------------------------------------------------------- /package/norm/norm.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 20ea2e8dd5d5e1ff1ff91dc7dab6db53a77d7b7183d8cf2425c215fd294f22a7 src-norm-1.5r6.tgz 3 | -------------------------------------------------------------------------------- /package/nvme/nvme.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 52eb45c9ef5a529580a3f6f9e02c067695675ac01b8ab8b8e0398c62e8a8646d nvme-v1.3.tar.gz 3 | -------------------------------------------------------------------------------- /package/opkg/opkg.hash: -------------------------------------------------------------------------------- 1 | # Locally computed 2 | sha256 2ec7157ccf866e49ca139e3632ba1ca9d61dc24382606b55062e423161a530b0 opkg-v0.3.1.tar.gz 3 | -------------------------------------------------------------------------------- /package/pixz/pixz.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 02c50746b134fa1b1aae41fcc314d7c6f1919b3d48bcdea01bf11769f83f72e8 pixz-1.0.6.tar.xz 3 | -------------------------------------------------------------------------------- /package/popt/popt.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated: 2 | sha256 e728ed296fe9f069a0e005003c3d6b2dde3d9cad453422a10d6558616d304cc8 popt-1.16.tar.gz 3 | -------------------------------------------------------------------------------- /package/ptpd/ptpd.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 a7c6ea83bd53da75ae04a7b7a25fe7c597b4e9ff1f93d46f4502e3fa8a2cb950 ptpd-1.1.0.tar.gz 3 | -------------------------------------------------------------------------------- /package/qjson/qjson.hash: -------------------------------------------------------------------------------- 1 | # locally computed 2 | sha256 e812617477f3c2bb990561767a4cd8b1d3803a52018d4878da302529552610d4 qjson-0.9.0.tar.gz 3 | -------------------------------------------------------------------------------- /package/rpm/rpm.hash: -------------------------------------------------------------------------------- 1 | # From http://rpm.org/wiki/Releases/4.13.0.1 2 | sha1 9566f95f38fcb214e439c552f378c2f64ba0aff9 rpm-4.13.0.1.tar.bz2 3 | -------------------------------------------------------------------------------- /package/rtai/rtai.hash: -------------------------------------------------------------------------------- 1 | # Locally computed 2 | sha256 13669da744a0ba411bdb8e47fa47b6e19171646ae42c8dbb2735d12e555fb1a3 rtai-4.0.1.tar.bz2 3 | -------------------------------------------------------------------------------- /package/smack/smack.hash: -------------------------------------------------------------------------------- 1 | # Locally computed 2 | sha256 1a607da3b1a661dc76b7a5b8571f4a2d56b4d61d78376088d19f2d8637dc6822 smack-1.3.1.tar.gz 3 | -------------------------------------------------------------------------------- /package/swig/swig.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 7cf9f447ae7ed1c51722efc45e7f14418d15d7a1e143ac9f09a668999f4fc94d swig-3.0.12.tar.gz 3 | -------------------------------------------------------------------------------- /package/tcl/tcl.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 a265409781e4b3edcc4ef822533071b34c3dc6790b893963809b9fe221befe07 tcl8.6.6-src.tar.gz 3 | -------------------------------------------------------------------------------- /package/tekui/tekui.hash: -------------------------------------------------------------------------------- 1 | # Locally computed 2 | sha256 28abfaacc0f2ddae962afbbca862a7fb619c33a99a497be9edd746091013dd7f tekui-1.12.tgz 3 | -------------------------------------------------------------------------------- /package/tiff/tiff.hash: -------------------------------------------------------------------------------- 1 | # Locally computed 2 | sha256 59d7a5a8ccd92059913f246877db95a2918e6c04fb9d43fd74e5c3390dac2910 tiff-4.0.8.tar.gz 3 | -------------------------------------------------------------------------------- /package/upx/upx.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 527ce757429841f51675352b1f9f6fc8ad97b18002080d7bf8672c466d8c6a3c upx-3.91-src.tar.bz2 3 | -------------------------------------------------------------------------------- /package/vde2/vde2.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 cbea9b7e03097f87a6b5e98b07890d2275848f1fe4b9fcda77b8994148bc9542 vde2-2.3.2.tar.bz2 3 | -------------------------------------------------------------------------------- /package/vim/vim.hash: -------------------------------------------------------------------------------- 1 | # Locally computed 2 | sha256 6fbe0ec1228f951ba598b48ac8033f41ca4934cc34689a6008685e7c26477ae2 vim-v8.0.0329.tar.gz 3 | -------------------------------------------------------------------------------- /package/vtun/vtun.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 69dcbe4f8c5ce7d91b4150a6309e536d03b61841169746ca5788413ac7edb9cb vtun-3.0.3.tar.gz 3 | -------------------------------------------------------------------------------- /package/wipe/wipe.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 463916370f9b35bb34419c2c0ae3dc4c0a471db32e8595afa1d14c0337b61aa0 wipe-2.3.1.tar.bz2 3 | -------------------------------------------------------------------------------- /package/x11r7/xdata_xbitmaps/Config.in: -------------------------------------------------------------------------------- 1 | config BR2_PACKAGE_XDATA_XBITMAPS 2 | bool "xbitmaps" 3 | help 4 | No description available 5 | -------------------------------------------------------------------------------- /package/x11r7/xfont_font-util/Config.in: -------------------------------------------------------------------------------- 1 | config BR2_PACKAGE_XFONT_FONT_UTIL 2 | bool "font-util" 3 | help 4 | No description available 5 | -------------------------------------------------------------------------------- /package/x11r7/xproto_dmxproto/Config.in: -------------------------------------------------------------------------------- 1 | config BR2_PACKAGE_XPROTO_DMXPROTO 2 | bool "dmxproto" 3 | help 4 | X.Org DMX protocol headers 5 | -------------------------------------------------------------------------------- /package/x11r7/xproto_glproto/Config.in: -------------------------------------------------------------------------------- 1 | config BR2_PACKAGE_XPROTO_GLPROTO 2 | bool "glproto" 3 | help 4 | X.Org GL protocol headers 5 | -------------------------------------------------------------------------------- /package/x11r7/xproto_kbproto/Config.in: -------------------------------------------------------------------------------- 1 | config BR2_PACKAGE_XPROTO_KBPROTO 2 | bool "kbproto" 3 | help 4 | X.Org KB protocol headers 5 | -------------------------------------------------------------------------------- /package/x11r7/xproto_xproto/Config.in: -------------------------------------------------------------------------------- 1 | config BR2_PACKAGE_XPROTO_XPROTO 2 | bool "xproto" 3 | help 4 | X.Org xproto protocol headers 5 | -------------------------------------------------------------------------------- /package/x265/x265.hash: -------------------------------------------------------------------------------- 1 | # Locally generated 2 | sha256 2e53259b504a7edb9b21b9800163b1ff4c90e60c74e23e7001d423c69c5d3d17 x265_2.5.tar.gz 3 | -------------------------------------------------------------------------------- /package/xutil_util-macros/Config.in: -------------------------------------------------------------------------------- 1 | config BR2_PACKAGE_XUTIL_UTIL_MACROS 2 | bool "util-macros" 3 | help 4 | No description available 5 | -------------------------------------------------------------------------------- /package/xvkbd/xvkbd.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 895f768269820e7c0379b0daac3687bda0c670d192ebb7e61e5613a5939ec90b xvkbd-3.7.tar.gz 3 | -------------------------------------------------------------------------------- /package/yajl/yajl.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 3fb73364a5a30efe615046d07e6db9d09fd2b41c763c5f7d3bfb121cd5c5ac5a yajl-2.1.0.tar.gz 3 | -------------------------------------------------------------------------------- /package/yasm/yasm.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 3dce6601b495f5b3d45b59f7d2492a340ee7e84b5beca17e48f862502bd5603f yasm-1.3.0.tar.gz 3 | -------------------------------------------------------------------------------- /package/ympd/ympd.hash: -------------------------------------------------------------------------------- 1 | # locally computed 2 | sha256 092c26c51166d1d1f025cd06742981783dea7e42bfe4f73f10c4418fc003de94 ympd-v1.2.3.tar.gz 3 | -------------------------------------------------------------------------------- /package/znc/znc.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 2f0225d49c53a01f8d94feea4619a6fe92857792bb3401a4eb1edd65f0342aca znc-1.6.5.tar.gz 3 | -------------------------------------------------------------------------------- /support/config-fragments/autobuild/sourcery-arm.config: -------------------------------------------------------------------------------- 1 | BR2_arm=y 2 | BR2_TOOLCHAIN_EXTERNAL=y 3 | BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_ARM=y 4 | -------------------------------------------------------------------------------- /support/legal-info/buildroot.hash: -------------------------------------------------------------------------------- 1 | # Locally computed 2 | sha256 9755181e27175cb3510b4da8629caa406fb355a19aa8e7d55f06bf8ab33323c4 COPYING 3 | -------------------------------------------------------------------------------- /boot/uboot/uboot.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 938f597394b33e82e5af8c98bd5ea1a238f61892aabef36384adbf7ca5b52dda u-boot-2018.01.tar.bz2 3 | -------------------------------------------------------------------------------- /docs/website/images/boundary-devices-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpunk/buildroot/pluto/docs/website/images/boundary-devices-logo.png -------------------------------------------------------------------------------- /fs/iso9660/isolinux.cfg: -------------------------------------------------------------------------------- 1 | default 1 2 | label 1 3 | kernel __KERNEL_PATH__ 4 | initrd __INITRD_PATH__ 5 | append root=/dev/sr0 6 | -------------------------------------------------------------------------------- /fs/romfs/Config.in: -------------------------------------------------------------------------------- 1 | config BR2_TARGET_ROOTFS_ROMFS 2 | bool "romfs root filesystem" 3 | help 4 | Build a romfs image of the root filesystem. 5 | -------------------------------------------------------------------------------- /package/4th/4th.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 1c7adbb1a56dad4c4c781e6e023d77ac862842560c05246b691d07e9a4460ab2 4th-3.62.4-unix.tar.gz 3 | -------------------------------------------------------------------------------- /package/argus/argus.hash: -------------------------------------------------------------------------------- 1 | # From http://qosient.com/argus/src/argus-3.0.8.tar.gz.md5 2 | md5 84daae71a502e4f6d088c279de3aa36b argus-3.0.8.tar.gz 3 | -------------------------------------------------------------------------------- /package/assimp/assimp.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 187f825c563e84b1b17527a4da0351aa3d575dfd696a9d204ae4bb19ee7df94a assimp-v3.2.tar.gz 3 | -------------------------------------------------------------------------------- /package/aumix/aumix.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 d2ce43d532ef75072c8d4e7922e3bc06be6d97765a508d9ceb0d1766bbe70e29 aumix-2.9.1.tar.bz2 3 | -------------------------------------------------------------------------------- /package/babeld/babeld.hash: -------------------------------------------------------------------------------- 1 | # Locally computed 2 | sha256 2c955e7d4ad971da1e860e5cedbaf1dd79903468ff6488b3f67102b2a8d087b6 babeld-1.7.1.tar.gz 3 | -------------------------------------------------------------------------------- /package/bcm2835/bcm2835.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 295f66dab533592ce41db8e07befe985645a2e661bbf75dce9c383e61e24cb5f bcm2835-1.48.tar.gz 3 | -------------------------------------------------------------------------------- /package/bcusdk/bcusdk.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 014cdaafc36f223c584b39ae5d698dd037a8e15aba4e78a2e531b51ff1331304 bcusdk_0.0.5.tar.gz 3 | -------------------------------------------------------------------------------- /package/boa/boa.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 02c51bf25f29d56e641b662f0767759654c28d88ec31f55c5a73d57edfe13cf6 boa-0.94.14rc21.tar.gz 3 | -------------------------------------------------------------------------------- /package/bonnie/bonnie.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 cb3866116634bf65760b6806be4afa7e24a1cad6f145c876df8721f01ba2e2cb bonnie++-1.03e.tgz 3 | -------------------------------------------------------------------------------- /package/bustle/bustle.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 921c2cbbb957dcb02c3aa8fd1eeff3534cb437fa9eeca1c25206ad1e741a3f14 bustle-0.5.4.tar.gz 3 | -------------------------------------------------------------------------------- /package/c-icap/c-icap.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 b138c7d7d9828d54c3307bcfe7b4917911266593832ffc26a60df9a0dfd2511e c_icap-0.4.2.tar.gz 3 | -------------------------------------------------------------------------------- /package/ccrypt/ccrypt.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 87d66da2170facabf6f2fc073586ae2c7320d4689980cfca415c74688e499ba0 ccrypt-1.10.tar.gz 3 | -------------------------------------------------------------------------------- /package/cramfs/cramfs.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 133caca2c4e7c64106555154ee0ff693f5cf5beb9421ce2eb86baee997d22368 cramfs-1.1.tar.gz 3 | -------------------------------------------------------------------------------- /package/cryptopp/cryptopp.hash: -------------------------------------------------------------------------------- 1 | # Locally computed 2 | sha256 a75ef486fe3128008bbb201efee3dcdcffbe791120952910883b26337ec32c34 cryptopp565.zip 3 | -------------------------------------------------------------------------------- /package/dado/dado.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 5a10ed7ff7be34ac004d10d6ea62ee8efc2b594c50ffc93e840e7fb7a2e6b4d0 dado-1.8.3-1.src.rock 3 | -------------------------------------------------------------------------------- /package/dillo/dillo.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 db1be16c1c5842ebe07b419aa7c6ef11a45603a75df2877f99635f4f8345148b dillo-3.0.5.tar.bz2 3 | -------------------------------------------------------------------------------- /package/dmalloc/dmalloc.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 d3be5c6eec24950cb3bd67dbfbcdf036f1278fae5fd78655ef8cdf9e911e428a dmalloc-5.5.2.tgz 3 | -------------------------------------------------------------------------------- /package/docker/docker.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 47629578e89d96d1541c91d040aec4316f03ad6d01dc3eecb8f82a33445c1e4e docker-1.5.tar.gz 3 | -------------------------------------------------------------------------------- /package/dstat/dstat.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 46e63821857b69fbc60cb2c7d893ccdd6f31cd9ef24b8bb0b68951e1c7374898 dstat-0.7.3.tar.gz 3 | -------------------------------------------------------------------------------- /package/dtach/dtach.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 5f7e8c835ee49a9e6dcf89f4e8ccbe724b061c0fc8565b504dd8b3e67ab79f82 dtach-v0.9.tar.gz 3 | -------------------------------------------------------------------------------- /package/efivar/efivar.hash: -------------------------------------------------------------------------------- 1 | # locally computed hash 2 | sha256 20709c76311f8eb8be92977b7ac008ce62501fa9f7fe885a784321540fc352f9 efivar-30.tar.gz 3 | -------------------------------------------------------------------------------- /package/ejabberd/ejabberd.hash: -------------------------------------------------------------------------------- 1 | # Locally computed 2 | sha256 bd16b33a2f1345e5847fd05b70a5fa992181bac756cd6d5d621de9c18cb76801 ejabberd-17.11.tgz 3 | -------------------------------------------------------------------------------- /package/empty/empty.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 7e6636e400856984c4405ce7bd0843aaa3329fa3efd20c58df8400a9eaa35f09 empty-0.6.20b.tgz 3 | -------------------------------------------------------------------------------- /package/evtest/evtest.hash: -------------------------------------------------------------------------------- 1 | # locally computed 2 | sha256 9fb68236a6871c163e52433ba8f2cce142c0f4208163a2962768c13f262d549f evtest-1.33.tar.gz 3 | -------------------------------------------------------------------------------- /package/ezxml/ezxml.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 a68d52257dcb0ff2ad3d71c8c64311edb8030254bb8b581e229aeaba6231cdf9 ezxml-0.8.6.tar.gz 3 | -------------------------------------------------------------------------------- /package/fbdump/fbdump.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 c4d521a86229b3106cf69786008ad94f899da5288a19a067deae84951880722d fbdump-0.4.2.tar.gz 3 | -------------------------------------------------------------------------------- /package/fbgrab/fbgrab.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 5fab478cbf8731fbacefaa76236a8f8b38ccff920c53b3a8253bc35509fba8ed fbgrab-1.3.tar.gz 3 | -------------------------------------------------------------------------------- /package/flann/flann.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 b23b5f4e71139faa3bcb39e6bbcc76967fbaf308c4ee9d4f5bfbeceaa76cc5d3 flann-1.9.1.tar.gz 3 | -------------------------------------------------------------------------------- /package/fmc/fmc.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 a91e0c9b7c7f238634c64a755c05671f33f2acdb6ae2d09cad4d683b364ee8e4 fmc-fsl-sdk-v2.0.tar.gz 3 | -------------------------------------------------------------------------------- /package/fwup/fwup.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 852e255bd65f9db473a06184abb3e94e3b6b86be7bf66169e8df8146d5966ae1 fwup-v0.15.4.tar.gz 3 | -------------------------------------------------------------------------------- /package/gamin/gamin.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 28085f0ae8be10eab582ff186af4fb0be92cc6c62b5cc19cd09b295c7c2899a1 gamin-0.1.10.tar.gz 3 | -------------------------------------------------------------------------------- /package/geoip/geoip.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 b0e5a92200b5ab540d118983f7b7191caf4faf1ae879c44afa3ff2a2abcdb0f5 GeoIP-1.6.11.tar.gz 3 | -------------------------------------------------------------------------------- /package/giblib/giblib.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 176611c4d88d742ea4013991ad54c2f9d2feefbc97a28434c0f48922ebaa8bac giblib-1.2.4.tar.gz 3 | -------------------------------------------------------------------------------- /package/go/go.hash: -------------------------------------------------------------------------------- 1 | # From https://golang.org/dl/ 2 | sha256 a4ab229028ed167ba1986825751463605264e44868362ca8e7accc8be057e993 go1.9.src.tar.gz 3 | -------------------------------------------------------------------------------- /package/gqrx/gqrx.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated: 2 | sha256 2736a963dac4051ca8ae91a440ee6643ef7d26c9de5b9c83a369d5fc9328d453 gqrx-v2.6.1.tar.gz 3 | -------------------------------------------------------------------------------- /package/gqview/gqview.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 12fea494e607a69eff31cdca13d306ef1b0b3b7850be0f8b236f267d8f2e9546 gqview-2.1.5.tar.gz 3 | -------------------------------------------------------------------------------- /package/hplip/hplip.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 0f7344174672f63a98a22f3c109005b6eb89fe738b7d466316bf2c53d083476c hplip-3.17.10.tar.gz 3 | -------------------------------------------------------------------------------- /package/httping/httping.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 3e895a0a6d7bd79de25a255a1376d4da88eb09c34efdd0476ab5a907e75bfaf8 httping-2.5.tgz 3 | -------------------------------------------------------------------------------- /package/iftop/iftop.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 f733eeea371a7577f8fe353d86dd88d16f5b2a2e702bd96f5ffb2c197d9b4f97 iftop-1.0pre4.tar.gz 3 | -------------------------------------------------------------------------------- /package/initscripts/Config.in: -------------------------------------------------------------------------------- 1 | config BR2_PACKAGE_INITSCRIPTS 2 | bool 3 | help 4 | The basics startup scripts for both SysV and Busybox 5 | -------------------------------------------------------------------------------- /package/iostat/iostat.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 edc5aa73f43bd6c7d49f2c1d5906a0a68c0b28bc4dfdaf1f2aa5ae4a2449c58e iostat-2.2.tar.gz 3 | -------------------------------------------------------------------------------- /package/jack2/jack2.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 88f1b6601b7c8950e6a2d5940b423a33ee628ae5583da40bdce3d9317d8c600d jack2-v1.9.10.tar.gz 3 | -------------------------------------------------------------------------------- /package/jamvm/jamvm.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 76428e96df0ae9dd964c7a7c74c1e9a837e2f312c39e9a357fa8178f7eff80da jamvm-2.0.0.tar.gz 3 | -------------------------------------------------------------------------------- /package/lapack/lapack.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 f6c53fd9f56932f3ddb3d5e24c1c07e4cd9b3b08e7f89de9c867125eecc9a1c8 lapack-3.7.1.tgz 3 | -------------------------------------------------------------------------------- /package/lbase64/lbase64.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 b83dbc87330a322e5222cd891a6e258b533f5b6c46e8f3c18fc0265e4c991aaa lbase64.tar.gz 3 | -------------------------------------------------------------------------------- /package/lcdapi/lcdapi.hash: -------------------------------------------------------------------------------- 1 | # Locally computed 2 | sha256 6afdd4238af1fa7ea5f10378601381fc3f535a10504dc7d4ea8eab56e0dda091 lcdapi-v0.11.tar.gz 3 | -------------------------------------------------------------------------------- /package/libass/libass.hash: -------------------------------------------------------------------------------- 1 | # Locally computed 2 | sha256 7065e5f5fb76e46f2042a62e7c68d81e5482dbeeda24644db1bd066e44da7e9d libass-0.13.7.tar.xz 3 | -------------------------------------------------------------------------------- /package/libcec/libcec.hash: -------------------------------------------------------------------------------- 1 | # Locally computed 2 | sha256 b8b8dd31f3ebdd5472f03ab7d401600ea0d959b1288b9ca24bf457ef60e2ba27 libcec-4.0.2.tar.gz 3 | -------------------------------------------------------------------------------- /package/libcsv/libcsv.hash: -------------------------------------------------------------------------------- 1 | #locally computed 2 | sha256 d9c0431cb803ceb9896ce74f683e6e5a0954e96ae1d9e4028d6e0f967bebd7e4 libcsv-3.0.3.tar.gz 3 | -------------------------------------------------------------------------------- /package/libcue/libcue.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 c3c46d58cebf15b3fe07e6f649014694d338ddd880e941bfb1fd3cedae66c62f libcue-v1.4.0.tar.gz 3 | -------------------------------------------------------------------------------- /package/libenca/libenca.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 3a487eca40b41021e2e4b7a6440b97d822e6532db5464471f572ecf77295e8b8 enca-1.19.tar.xz 3 | -------------------------------------------------------------------------------- /package/libev/libev.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 973593d3479abdf657674a55afe5f78624b0e440614e2b8cb3a07f16d4d7f821 libev-4.24.tar.gz 3 | -------------------------------------------------------------------------------- /package/libfcgi/libfcgi.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 66fc45c6b36a21bf2fbbb68e90f780cc21a9da1fffbae75e76d2b4402d3f05b9 fcgi-2.4.0.tar.gz 3 | -------------------------------------------------------------------------------- /package/libglu/libglu.hash: -------------------------------------------------------------------------------- 1 | # locally computed 2 | sha256 3d19cca9b26ec4048dd22e3d294acd43e080a3205a29ff47765bd514571ea8f9 glu-9.0.0.tar.gz 3 | -------------------------------------------------------------------------------- /package/libgsm/libgsm.hash: -------------------------------------------------------------------------------- 1 | # Locally computed 2 | sha256 855a57d1694941ddf3c73cb79b8d0b3891e9c9e7870b4981613b734e1ad07601 gsm-1.0.17.tar.gz 3 | -------------------------------------------------------------------------------- /package/libhid/libhid.hash: -------------------------------------------------------------------------------- 1 | # locally computed 2 | sha256 f6809ab3b9c907cbb05ceba9ee6ca23a705f85fd71588518e14b3a7d9f2550e5 libhid-0.2.16.tar.gz 3 | -------------------------------------------------------------------------------- /package/libjson/libjson.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 07267a3951038ee2e02d26cc41bf8e275668c38f751240d3e78dc979182e7376 libjson_7.6.1.zip 3 | -------------------------------------------------------------------------------- /package/libmms/libmms.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 01931b62172d7d7050fc9ef9b1b64162f3b6e9f6cc4415170192a32a0b7ea432 libmms-0.6.2.tar.gz 3 | -------------------------------------------------------------------------------- /package/libndp/libndp.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 42c0a8938d4302c72a42e2d954deef7e4903bb3974da6804a929a3cd0b5b6aa7 libndp-v1.5.tar.gz 3 | -------------------------------------------------------------------------------- /package/libnfc/libnfc.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 945e74d8e27683f9b8a6f6e529557b305d120df347a960a6a7ead6cb388f4072 libnfc-1.7.1.tar.bz2 3 | -------------------------------------------------------------------------------- /package/libsoc/libsoc.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 8df626bde365b94a805e1c323104c63a7429ec64c9df815cd1d9b9c4b317e066 libsoc-0.8.2.tar.gz 3 | -------------------------------------------------------------------------------- /package/libucl/libucl.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 2f69995c7f8320350f56c1183c395cc4a2a958331f22d60b7839a117c9c601e1 libucl-0.7.3.tar.gz 3 | -------------------------------------------------------------------------------- /package/libvpx/libvpx.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 1c2c0c2a97fba9474943be34ee39337dee756780fc12870ba1dc68372586a819 libvpx-1.6.1.tar.bz2 3 | -------------------------------------------------------------------------------- /package/libyaml/libyaml.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 8088e457264a98ba451a90b8661fcb4f9d6f478f7265d48322a196cec2480729 yaml-0.1.7.tar.gz 3 | -------------------------------------------------------------------------------- /package/links/links.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 f70d0678ef1c5550953bdc27b12e72d5de86e53b05dd59b0fc7f07c507f244b8 links-2.14.tar.bz2 3 | -------------------------------------------------------------------------------- /package/lpeg/lpeg.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 149be31e0155c4694f77ea7264d9b398dd134eca0d00ff03358d91a6cfb2ea9d lpeg-1.0.1-1.src.rock 3 | -------------------------------------------------------------------------------- /package/lpty/lpty.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 cf263ece9b50a78a7fb2277e3546fbbf0bf6858f41821932d92f2e3d8a065091 lpty-1.0.1-1.src.rock 3 | -------------------------------------------------------------------------------- /package/lrzsz/lrzsz.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 c28b36b14bddb014d9e9c97c52459852f97bd405f89113f30bee45ed92728ff1 lrzsz-0.12.20.tar.gz 3 | -------------------------------------------------------------------------------- /package/lsscsi/lsscsi.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 025d009a1af42bc5b2fca664c44c9ecdfd754356e4a44f5c6aced2420afadd50 lsscsi-0.28.tgz 3 | -------------------------------------------------------------------------------- /package/lsuio/lsuio.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 c88b3850248b2d3419e025abd7b9b0991c8bd33a2d4983f9608408a29900bfb5 lsuio-0.2.0.tar.gz 3 | -------------------------------------------------------------------------------- /package/ltris/ltris.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 8f6a9e7719d22004aee153db29ffd9ca41c7a6cd87fc791591994eecc2e625a1 ltris-1.0.19.tar.gz 3 | -------------------------------------------------------------------------------- /package/lugaru/lugaru.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 f3ea477caf78911c69939fbdc163f9f6517c7ef2267e716a0e050be1a166ef97 lugaru-1.2.tar.xz 3 | -------------------------------------------------------------------------------- /package/lunit/lunit.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 b19854c685337ddcec2fe9c22113d2cd14715d52ccd2676abe2fa49b61a2ec4d lunit-0.5-2.src.rock 3 | -------------------------------------------------------------------------------- /package/luvi/luvi.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 ce9a1fb762e61267618ddea9ea129170fd543bb918c382b71cb35985d0024c42 luvi-src-v2.7.6.tar.gz 3 | -------------------------------------------------------------------------------- /package/lz4/lz4.hash: -------------------------------------------------------------------------------- 1 | # sha256 locally computed 2 | sha256 0190cacd63022ccb86f44fa5041dc6c3804407ad61550ca21c382827319e7e7e lz4-v1.7.5.tar.gz 3 | -------------------------------------------------------------------------------- /package/lzlib/lzlib.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 cbb0cac5825e940b4ea2f31a336d2aaf6db39847d456920afd8e443804420dbb lzlib-0.4.3.tar.gz 3 | -------------------------------------------------------------------------------- /package/mcelog/mcelog.hash: -------------------------------------------------------------------------------- 1 | # Locally computed 2 | sha256 d8f3dde21b2e0d76740f374385817c11b3fd69b095a186a6dd12c7b0ba0cca8f mcelog-v153.tar.gz 3 | -------------------------------------------------------------------------------- /package/mcrypt/mcrypt.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 5145aa844e54cca89ddab6fb7dd9e5952811d8d787c4f4bf27eb261e6c182098 mcrypt-2.6.8.tar.gz 3 | -------------------------------------------------------------------------------- /package/mimic/mimic.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 725003c9972d5b67c49d5ea6a89cb26b63414ff2c7adbbaf9200cf9eb55f80eb mimic-1.1.0.tar.gz 3 | -------------------------------------------------------------------------------- /package/minizip/minizip.hash: -------------------------------------------------------------------------------- 1 | # Locally computed 2 | sha256 5666b5ee3e85dfd2dd119970613c12e6267d31813f07d3ffa5d359fe272cb6d1 minizip-1.1.tar.gz 3 | -------------------------------------------------------------------------------- /package/moarvm/moarvm.hash: -------------------------------------------------------------------------------- 1 | # Locally computed 2 | sha256 7cb9b7a871b14ac9b6cddc57e646d277177c4b3b21220e6fbc204084a15a4e41 MoarVM-2017.05.tar.gz 3 | -------------------------------------------------------------------------------- /package/mtdev/mtdev.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 6b59b055ff22f2b91d4284187c2515826c338b81f6f33bd90f6bedc7c1fb9a38 mtdev-1.1.4.tar.bz2 3 | -------------------------------------------------------------------------------- /package/mxml/Config.in: -------------------------------------------------------------------------------- 1 | config BR2_PACKAGE_MXML 2 | bool "Mini-XML" 3 | help 4 | Lightweight XML Library 5 | 6 | http://www.minixml.org 7 | -------------------------------------------------------------------------------- /package/nanocom/nanocom.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 5cb26e3e232cfc4a7cb16da432db532b775c5ebdb887ac9d39df5632f2c9a5e5 nanocom.tar.gz 3 | -------------------------------------------------------------------------------- /package/ncftp/ncftp.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 129e5954850290da98af012559e6743de193de0012e972ff939df9b604f81c23 ncftp-3.2.6-src.tar.gz 3 | -------------------------------------------------------------------------------- /package/netcat/netcat.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 30719c9a4ffbcf15676b8f528233ccc54ee6cba96cb4590975f5fd60c68a066f netcat-0.7.1.tar.gz 3 | -------------------------------------------------------------------------------- /package/newt/newt.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 8d66ba6beffc3f786d4ccfee9d2b43d93484680ef8db9397a4fb70b5adbb6dbc newt-0.52.20.tar.gz 3 | -------------------------------------------------------------------------------- /package/nfs-utils/nfs-utils_env.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # This script is empty, it simply needs to exist to make the 3 | # nfs-config.service happy. 4 | -------------------------------------------------------------------------------- /package/ngrep/ngrep.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 aea6dd337da8781847c75b3b5b876e4de9c58520e0d77310679a979fc6402fa7 ngrep-1.45.tar.bz2 3 | -------------------------------------------------------------------------------- /package/ninja/ninja.hash: -------------------------------------------------------------------------------- 1 | # Locally generated 2 | sha256 86b8700c3d0880c2b44c2ff67ce42774aaf8c28cbf57725cb881569288c1c6f4 ninja-v1.8.2.tar.gz 3 | -------------------------------------------------------------------------------- /package/noip/noip.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 82b9bafab96a0c53b21aaef688bf70b3572e26217b5e2072bdb09da3c4a6f593 noip-duc-linux.tar.gz 3 | -------------------------------------------------------------------------------- /package/ortp/ortp.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 eb61a833ab3ad80978d7007411240f46e9b2d1034373b9d9dfaac88c1b6ec0af ortp-0.27.0.tar.gz 3 | -------------------------------------------------------------------------------- /package/p910nd/p910nd.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 4ac980a3ae24babae6f70f0a692625ece03a4a92c357fbb10d2e368386c3c26f p910nd-0.97.tar.bz2 3 | -------------------------------------------------------------------------------- /package/php-amqp/php-amqp.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 f45831d498b8fa47a151c31f6abdc0530aa6eabda6e2e10514aca3bdc76a5098 amqp-1.9.0.tgz 3 | -------------------------------------------------------------------------------- /package/php-ssh2/php-ssh2.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 87618d6a0981afe8c24b36d6b38c21a0aa0237b62e60347d0170bd86b51f79fb ssh2-1.1.2.tgz 3 | -------------------------------------------------------------------------------- /package/php-yaml/php-yaml.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 c3afb0dad47b6c3a5b7b449f57a4938df27bf974efbe188d85c4fb998eff0039 yaml-2.0.2.tgz 3 | -------------------------------------------------------------------------------- /package/php-zmq/php-zmq.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 c492375818bd51b355352798fb94f04d6828c6aeda41ba813849624af74144ce zmq-1.1.3.tgz 3 | -------------------------------------------------------------------------------- /package/prboom/prboom.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 226c1c470f8cc983327536404f405a1d026cf0a5188c694a1243cc8630014bae prboom-2.5.0.tar.gz 3 | -------------------------------------------------------------------------------- /package/ptpd2/ptpd2.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 267ad61d09d97069acec5d4878dceda20d0ddbebd27557d80230847848cee6c2 ptpd2-ptpd-2.3.1.tar.gz 3 | -------------------------------------------------------------------------------- /package/qlibc/qlibc.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 1f9aa5eefd28c45d409130a35104816d41405da64fe900f70a1c41150891501a qlibc-v2.4.1.tar.gz 3 | -------------------------------------------------------------------------------- /package/quazip/quazip.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 2ad4f354746e8260d46036cde1496c223ec79765041ea28eb920ced015e269b5 quazip-0.7.3.tar.gz 3 | -------------------------------------------------------------------------------- /package/ramsmp/ramsmp.hash: -------------------------------------------------------------------------------- 1 | # Locally computed 2 | sha256 39fb15493fb3c293575746d56f6ab9faaa1d876d8b1f0d8e5a4042d2ace95839 ramsmp-3.5.0.tar.gz 3 | -------------------------------------------------------------------------------- /package/rubix/rubix.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 d3c6bf8bfa891e72baac0250a79d26045ddb4412b72d90de7c46091c07516b43 rubix-1.0.5.tar.bz2 3 | -------------------------------------------------------------------------------- /package/scons/scons.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 0b25218ae7b46a967db42f2a53721645b3d42874a65f9552ad16ce26d30f51f2 scons-2.5.1.tar.gz 3 | -------------------------------------------------------------------------------- /package/sdparm/sdparm.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 7dc9e148cef22744e00809dad21b59ac544e3615001bc1b2399978f73e1d58ca sdparm-1.10.tar.xz 3 | -------------------------------------------------------------------------------- /package/ser2net/ser2net.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 d846066e27c3072565990745d030357aa0c278f96b7d1d4f59023347c1db8824 ser2net-3.4.tar.gz 3 | -------------------------------------------------------------------------------- /package/spice/spice.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 f901a5c5873d61acac84642f9eea5c4d6386fc3e525c2b68792322794e1c407d spice-0.12.8.tar.bz2 3 | -------------------------------------------------------------------------------- /package/sredird/sredird.hash: -------------------------------------------------------------------------------- 1 | # Locally computed 2 | sha256 640c47dcd84b3b90640165a38eb336a675fdab06c14c09cae2f4a604cae560d3 sredird-2.2.2.tar.gz 3 | -------------------------------------------------------------------------------- /package/sslh/sslh.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 1601a5b377dcafc6b47d2fbb8d4d25cceb83053a4adcc5874d501a2d5a7745ad sslh-v1.18.tar.gz 3 | -------------------------------------------------------------------------------- /package/sysdig/sysdig.hash: -------------------------------------------------------------------------------- 1 | # locally computed 2 | sha256 480d5d8fd7e7373c08008c30bd8e2c7595d5c45d710bf07bd15a522021b560f6 sysdig-0.19.1.tar.gz 3 | -------------------------------------------------------------------------------- /package/tclap/tclap.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 9f9f0fe3719e8a89d79b6ca30cf2d16620fba3db5b9610f9b51dd2cd033deebb tclap-1.2.1.tar.gz 3 | -------------------------------------------------------------------------------- /package/tcllib/tcllib.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 0db9e17d6c0f44d3ca2df2ea5023e35c0f3767e7008c3cb26d201446eb68add1 tcllib-1.13.tar.bz2 3 | -------------------------------------------------------------------------------- /package/tovid/tovid.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 3193d081a7aa8e00f946b7514066f1fb7647f533ab1ebcc36b5ced927b0a1ab5 tovid-0.35.2.tar.gz 3 | -------------------------------------------------------------------------------- /package/tunctl/tunctl.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 aa2a6c4cc6bfacb11e0d9f62334a6638a0d435475c61230116f00b6af8b14fff tunctl-1.5.tar.gz 3 | -------------------------------------------------------------------------------- /package/udisks/udisks.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 f2ec82eb0ea7e01dc299b5b29b3c18cdf861236ec43dcff66b3552b4b31c6f71 udisks-1.0.5.tar.gz 3 | -------------------------------------------------------------------------------- /package/vnstat/vnstat.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 18e4c53576ca9e1ef2f0e063a6d83b0c44e3b1cf008560d658745df5c9aa7971 vnstat-1.17.tar.gz 3 | -------------------------------------------------------------------------------- /package/whetstone/whetstone.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 333e4ceca042c146f63eec605573d16ae8b07166cbc44a17bec1ea97c6f1efbf whetstone.c 3 | -------------------------------------------------------------------------------- /package/wmctrl/wmctrl.hash: -------------------------------------------------------------------------------- 1 | # Locally computed 2 | sha256 d78a1efdb62f18674298ad039c5cbdb1edb6e8e149bb3a8e3a01a4750aa3cca9 wmctrl-1.07.tar.gz 3 | -------------------------------------------------------------------------------- /package/wpa_supplicant/wpa_supplicant.conf: -------------------------------------------------------------------------------- 1 | ctrl_interface=/var/run/wpa_supplicant 2 | ap_scan=1 3 | 4 | network={ 5 | key_mgmt=NONE 6 | } 7 | -------------------------------------------------------------------------------- /package/x11r7/xproto_dri2proto/Config.in: -------------------------------------------------------------------------------- 1 | config BR2_PACKAGE_XPROTO_DRI2PROTO 2 | bool "dri2proto" 3 | help 4 | X.Org DRI2 protocol headers 5 | -------------------------------------------------------------------------------- /package/x11r7/xproto_dri3proto/Config.in: -------------------------------------------------------------------------------- 1 | config BR2_PACKAGE_XPROTO_DRI3PROTO 2 | bool "dri3proto" 3 | help 4 | X.Org DRI3 protocol headers 5 | -------------------------------------------------------------------------------- /package/x11r7/xproto_xextproto/Config.in: -------------------------------------------------------------------------------- 1 | config BR2_PACKAGE_XPROTO_XEXTPROTO 2 | bool "xextproto" 3 | help 4 | X.Org XExt protocol headers 5 | -------------------------------------------------------------------------------- /package/x11r7/xutil_makedepend/Config.in: -------------------------------------------------------------------------------- 1 | config BR2_PACKAGE_XUTIL_MAKEDEPEND 2 | bool "makedepend" 3 | help 4 | No description available 5 | -------------------------------------------------------------------------------- /package/xl2tp/xl2tp.hash: -------------------------------------------------------------------------------- 1 | # locally computed 2 | sha256 1164b574e93a44c2a2e76c0c68d8d60437bd884a6c964d9c68be1556278e3d2d xl2tp-v1.3.8.tar.gz 3 | -------------------------------------------------------------------------------- /package/xorriso/xorriso.hash: -------------------------------------------------------------------------------- 1 | # Locally computed 2 | sha256 526f728c7eee6f8c4b69fbf391789e6c80806197c2861cf5922cf7cfe1035784 xorriso-1.4.6.tar.gz 3 | -------------------------------------------------------------------------------- /package/xvisor/xvisor.hash: -------------------------------------------------------------------------------- 1 | # Locally generated 2 | sha256 29b3b830380dde4f596611abd34487fb753e120ce462dbb0056f3025b88ef14f xvisor-0.2.9.tar.gz 3 | -------------------------------------------------------------------------------- /package/xxhash/xxhash.hash: -------------------------------------------------------------------------------- 1 | # locally computed 2 | sha256 9743539ed787ea9bd5bb348265cebdd5adcbf820ad329bf44c28bc69ab4c7cd8 xxhash-r40.tar.gz 3 | -------------------------------------------------------------------------------- /package/zmqpp/zmqpp.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 831ad02df64034268d910c30f9fb1b1e631ad810182951af9d7d622650831eb5 zmqpp-4.1.2.tar.gz 3 | -------------------------------------------------------------------------------- /support/config-fragments/autobuild/linaro-aarch64.config: -------------------------------------------------------------------------------- 1 | BR2_aarch64=y 2 | BR2_TOOLCHAIN_EXTERNAL=y 3 | BR2_TOOLCHAIN_EXTERNAL_LINARO_AARCH64=y 4 | -------------------------------------------------------------------------------- /package/a10disp/a10disp.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 5077405030e8f97a1edd4b86d469466abbc4d32b4a4609e58459347fcd1ba35b a10disp-v0.6.1.tar.gz 3 | -------------------------------------------------------------------------------- /package/aespipe/aespipe.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 c5ce656e0ade49b93e1163ec7b35450721d5743d8d804ad3a9e39add0389e50f aespipe-v2.4d.tar.bz2 3 | -------------------------------------------------------------------------------- /package/agentpp/agentpp.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 6775fa2a038801edddedc148d7846427ddc4d438e3bb33362d9eec6074918a88 agent++-4.0.7.tar.gz 3 | -------------------------------------------------------------------------------- /package/arp-scan/arp-scan.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 ce908ac71c48e85dddf6dd4fe5151d13c7528b1f49717a98b2a2535bd797d892 arp-scan-1.9.tar.gz 3 | -------------------------------------------------------------------------------- /package/benejson/benejson.hash: -------------------------------------------------------------------------------- 1 | # Locally computed 2 | sha256 2ce5f3c2323500bdf651e7fcaecbd1011997141e6067567b8d2caa4cf7182f4a benejson-0.9.7.tar.gz 3 | -------------------------------------------------------------------------------- /package/bullet/bullet.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 c058b2e4321ba6adaa656976c1a138c07b18fc03b29f5b82880d5d8228fbf059 bullet-2.86.1.tar.gz 3 | -------------------------------------------------------------------------------- /package/cegui06/cegui06.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 eb77741cd9fcc927a876e8116b98691212e973d2264e2071406423f6ca3e305f CEGUI-0.6.2b.tar.gz 3 | -------------------------------------------------------------------------------- /package/cgilua/cgilua.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 7d4883e6a89b3463a1d35b8084a6e2afbbb584af7aca1169380e92af0f848413 cgilua-5.2.1-1.src.rock 3 | -------------------------------------------------------------------------------- /package/civetweb/civetweb.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 79a852a26068eb6d2f8de5ee72e021f0d2c8bd176eb81f41909a876b736815d9 civetweb-v1.5.tar.gz 3 | -------------------------------------------------------------------------------- /package/copas/copas.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 efeded4f4633bc71551175b239199304640ef918ae8ea9dc9c5047359ae07107 copas-2.0.2-1.src.rock 3 | -------------------------------------------------------------------------------- /package/cpuload/cpuload.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 1d61f4776dc3e2746343d68b2ea2faf138e54666b630a6060df4f3945badbcae cpuload-v0.3.tar.gz 3 | -------------------------------------------------------------------------------- /package/cups/cups.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated: 2 | sha256 a8795e2aa54dcfbdc9ff254a770f0d7154e35c981bca5b3369050c5193ab5a21 cups-2.2.5-source.tar.gz 3 | -------------------------------------------------------------------------------- /package/dhcpdump/dhcpdump.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 6d5eb9418162fb738bc56e4c1682ce7f7392dd96e568cc996e44c28de7f77190 dhcpdump-1.8.tar.gz 3 | -------------------------------------------------------------------------------- /package/dieharder/dieharder.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 6cff0ff8394c553549ac7433359ccfc955fb26794260314620dfa5e4cd4b727f dieharder-3.31.1.tgz 3 | -------------------------------------------------------------------------------- /package/directfb/directfb.hash: -------------------------------------------------------------------------------- 1 | # Locally computed 2 | sha256 b785c638dc31b8fe3a7c81be1475c89b2255ab3d67b777c747d3fbc52f8027a3 DirectFB-1.7.7.tar.gz 3 | -------------------------------------------------------------------------------- /package/dmidecode/dmidecode.hash: -------------------------------------------------------------------------------- 1 | # Locally computed 2 | sha256 d766ce9b25548c59b1e7e930505b4cad9a7bb0b904a1a391fbb604d529781ac0 dmidecode-3.1.tar.xz 3 | -------------------------------------------------------------------------------- /package/emlog/emlog.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 9f791a00c86215306597b761ef5c5ad267efee5f01efbe23cfcc04e583aa402d emlog-emlog-0.60.tar.gz 3 | -------------------------------------------------------------------------------- /package/exfat/exfat.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 e1105256d75860c0678f98bbae0b8fe465d4c96ed187b7035556097f152478e7 fuse-exfat-1.2.6.tar.gz 3 | -------------------------------------------------------------------------------- /package/expat/Config.in: -------------------------------------------------------------------------------- 1 | config BR2_PACKAGE_EXPAT 2 | bool "expat" 3 | help 4 | The Expat XML Parser. 5 | 6 | http://expat.sourceforge.net 7 | -------------------------------------------------------------------------------- /package/fconfig/fconfig.hash: -------------------------------------------------------------------------------- 1 | # Locally computed 2 | sha256 4ff0e8f07e35e46b705c0dbe9d9544ede01ea092a69e3f7db03e55a3f2bb8eb7 fconfig-20080329.tar.gz 3 | -------------------------------------------------------------------------------- /package/fdk-aac/fdk-aac.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 2164592a67b467e5b20fdcdaf5bd4c50685199067391c6fcad4fa5521c9b4dd7 fdk-aac-0.1.5.tar.gz 3 | -------------------------------------------------------------------------------- /package/flashrom/flashrom.hash: -------------------------------------------------------------------------------- 1 | # Locally computed 2 | sha256 cb3156b0f63eb192024b76c0814135930297aac41f80761a5d293de769783c45 flashrom-0.9.9.tar.bz2 3 | -------------------------------------------------------------------------------- /package/fluxbox/fluxbox.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 fc8c75fe94c54ed5a5dd3fd4a752109f8949d6df67a48e5b11a261403c382ec0 fluxbox-1.3.7.tar.xz 3 | -------------------------------------------------------------------------------- /package/fmlib/fmlib.hash: -------------------------------------------------------------------------------- 1 | # Locally computed 2 | sha256 e5870756c7432b15f7a48b860625808f3c95d5f7fa5e251552eb2324ca51b0fa fmlib-fsl-sdk-v2.0.tar.gz 3 | -------------------------------------------------------------------------------- /package/freescale-imx/imx-gpu-g2d/imx-gpu-g2d.hash: -------------------------------------------------------------------------------- 1 | sha256 070a95aa9942bd67e8ba4012962df74143bffb9998301ac097dab5e1437000d8 imx-gpu-g2d-6.2.2.p0.bin 2 | -------------------------------------------------------------------------------- /package/fxload/fxload.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 0cc8bfd2a7cbba2f68e0c5767477634922287943c91dd9fcf029fc8b9d577858 fxload-2008_10_13.tar.gz 3 | -------------------------------------------------------------------------------- /package/genimage/genimage.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 69f35af7edf6f4dbdac7a18ddc69dcf38c501e43d8b50c524555754c51479078 genimage-9.tar.xz 3 | -------------------------------------------------------------------------------- /package/genpart/genpart.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 bfb39434f31d10f1b8c7b6bc6ec612309838c2819022561541c4d2d5a424e3f2 genpart-1.0.2.tar.bz2 3 | -------------------------------------------------------------------------------- /package/gtkperf/gtkperf.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 9704344e732038eecbd007dd996a56293a6b027b5b76f3f036273a3fae1ab27b gtkperf_0.40.tar.gz 3 | -------------------------------------------------------------------------------- /package/heimdal/heimdal.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 c5a2a0030fcc728022fa2332bad85569084d1c3b9a59587b7ebe141b0532acad heimdal-7.5.0.tar.gz 3 | -------------------------------------------------------------------------------- /package/hiawatha/hiawatha.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 0cf014ae214be1bf6244c46c25e66805987c948837a4e37f9dede570de49bdeb hiawatha-10.6.tar.gz 3 | -------------------------------------------------------------------------------- /package/ibrdtn/ibrdtn.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 288b14ccbaefb5e3234065c2778c247797ccb3c7afbb6746bb37dc12c620d360 ibrdtn-1.0.1.tar.gz 3 | -------------------------------------------------------------------------------- /package/ibrdtnd/ibrdtnd.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 9bd79636154093ab6bf4fd10d6c62d67c6db45141460847b19def327c93771ed ibrdtnd-1.0.1.tar.gz 3 | -------------------------------------------------------------------------------- /package/ifplugd/ifplugd.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 474754ac4ab32d738cbf2a4a3e87ee0a2c71b9048a38bdcd7df1e4f9fd6541f0 ifplugd-0.28.tar.gz 3 | -------------------------------------------------------------------------------- /package/iputils/iputils.hash: -------------------------------------------------------------------------------- 1 | # Locally computed 2 | sha256 f813092f03d17294fd23544b129b95cdb87fe19f7970a51908a6b88509acad8a iputils-s20161105.tar.gz 3 | -------------------------------------------------------------------------------- /package/jsoncpp/jsoncpp.hash: -------------------------------------------------------------------------------- 1 | # Locally computed 2 | sha256 3671ba6051e0f30849942cc66d1798fdf0362d089343a83f704c09ee7156604f jsoncpp-1.8.3.tar.gz 3 | -------------------------------------------------------------------------------- /package/kismet/kismet.hash: -------------------------------------------------------------------------------- 1 | # Locally computed 2 | sha256 bdb21f153311f1ff3b16621bf0d6740f66369bf0982b0a289c9a12af8847e237 kismet-2016-07-R1.tar.xz 3 | -------------------------------------------------------------------------------- /package/kvazaar/kvazaar.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 8e382738a51004bfcfca4c832e8b41fe6a17f889f3c39151dc1c1a37261a3a6d kvazaar-v1.1.0.tar.gz 3 | -------------------------------------------------------------------------------- /package/lesstif/lesstif.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 eb4aa38858c29a4a3bcf605cfe7d91ca41f4522d78d770f69721e6e3a4ecf7e3 lesstif-0.95.2.tar.bz2 3 | -------------------------------------------------------------------------------- /package/leveldb/leveldb.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 f5abe8b5b209c2f36560b75f32ce61412f39a2922f7045ae764a2c23335b6664 leveldb-v1.20.tar.gz 3 | -------------------------------------------------------------------------------- /package/libbson/libbson.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 aad410123e4bd8a9804c3c3d79e03344e2df104872594dc2cf19605d492944ba libbson-1.6.2.tar.gz 3 | -------------------------------------------------------------------------------- /package/libcddb/libcddb.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 35ce0ee1741ea38def304ddfe84a958901413aa829698357f0bee5bb8f0a223b libcddb-1.3.2.tar.bz2 3 | -------------------------------------------------------------------------------- /package/libdmtx/libdmtx.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 686bcfb44e50b96345aa53f41e285f2118a2cf87a333b69b74165a2e7ddca492 libdmtx-0.7.4.tar.gz 3 | -------------------------------------------------------------------------------- /package/libdnet/libdnet.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 0eb78415c8f2564c2f1e8ad36e98473348d9c94852f796a226360c716cc7ca53 libdnet-1.11.tar.gz 3 | -------------------------------------------------------------------------------- /package/libebml/libebml.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 35fb44daa41961f94a0ac1b8f06801e88cc9bf2ad6f562ced8ab7c1f1a875499 libebml-1.3.3.tar.bz2 3 | -------------------------------------------------------------------------------- /package/libexif/libexif.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 16cdaeb62eb3e6dfab2435f7d7bccd2f37438d21c5218ec4e58efa9157d4d41a libexif-0.6.21.tar.bz2 3 | -------------------------------------------------------------------------------- /package/libglfw/libglfw.hash: -------------------------------------------------------------------------------- 1 | # Locally computed 2 | sha256 e10f0de1384d75e6fc210c53e91843f6110d6c4f3afbfb588130713c2f9d8fe8 libglfw-3.2.1.tar.gz 3 | -------------------------------------------------------------------------------- /package/libglob/libglob.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated: 2 | sha256 4f1b204dad065689941c64828a92441fb316c9c7539b39525fa728125da65e22 libglob-1.0.tar.gz 3 | -------------------------------------------------------------------------------- /package/libical/libical.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 089ce3c42d97fbd7a5d4b3c70adbdd82115dd306349c1f5c46a8fb3f8c949592 libical-1.0.1.tar.gz 3 | -------------------------------------------------------------------------------- /package/libiqrf/libiqrf.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 8111031dd9dd6093a1927eb32dd7476fe22cfee9190043aa8e4c88003c104b16 libiqrf-v0.1.2.tar.gz 3 | -------------------------------------------------------------------------------- /package/libjpeg/libjpeg.hash: -------------------------------------------------------------------------------- 1 | # locally computed hash 2 | sha256 240fd398da741669bf3c90366f58452ea59041cacc741a489b99f2f6a0bad052 jpegsrc.v9b.tar.gz 3 | -------------------------------------------------------------------------------- /package/libmbus/libmbus.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 9fca42592da0ba75df66c6f885a4dbfa916d23e65e3d1ce6e38d940d2a2719a4 libmbus-0.8.0.tar.gz 3 | -------------------------------------------------------------------------------- /package/libmpd/libmpd.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 fe20326b0d10641f71c4673fae637bf9222a96e1712f71f170fca2fc34bf7a83 libmpd-11.8.17.tar.gz 3 | -------------------------------------------------------------------------------- /package/libroxml/libroxml.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 1da8f20b530eba4409f2b217587d2f1281ff5d9ba45b24aeac71b94c6c621b78 libroxml-2.3.0.tar.gz 3 | -------------------------------------------------------------------------------- /package/librtas/librtas.hash: -------------------------------------------------------------------------------- 1 | # Locally computed 2 | sha256 d5f2951b0934ffbd82bebf26acfa103cc21d89f4c90c7c41472acf7b4ec6d907 librtas-1.3.13.tar.gz 3 | -------------------------------------------------------------------------------- /package/libsexy/libsexy.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 8c4101a8cda5fccbba85ba1a15f46f2cf75deaa8b3c525ce5b135b9e1a8fe49e libsexy-0.1.11.tar.gz 3 | -------------------------------------------------------------------------------- /package/libsha1/libsha1.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 ef4c75007ac41c3dc09e0225943c789ba2b9c632a6cd7b548e0519477ac2f768 libsha1-0.3.tar.gz 3 | -------------------------------------------------------------------------------- /package/libsrtp/libsrtp.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 56a7b521c25134f48faff26b0b1e3d4378a14986a2d3d7bc6fefb48987304ff0 libsrtp-v1.5.4.tar.gz 3 | -------------------------------------------------------------------------------- /package/libtommath/libtommath.hash: -------------------------------------------------------------------------------- 1 | # Locally computed 2 | sha256 47032fb39d698ce4cf9c9c462c198e6b08790ce8203ad1224086b9b978636c69 ltm-1.0.1.tar.xz 3 | -------------------------------------------------------------------------------- /package/libtpl/libtpl.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 0b3750bf62f56be4c42f83c89d8449b24f1c5f1605a104801d70f2f3c06fb2ff libtpl-v1.6.1.tar.gz 3 | -------------------------------------------------------------------------------- /package/libusb/libusb.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 7dce9cce9a81194b7065ee912bcd55eeffebab694ea403ffb91b67db66b1824b libusb-1.0.21.tar.bz2 3 | -------------------------------------------------------------------------------- /package/libvips/libvips.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 45961855e21c8d5f0983d05bb79a6f3c2427dc6eed8e3ac68c0f62759b8612c6 vips-7.42.2.tar.gz 3 | -------------------------------------------------------------------------------- /package/libxmlrpc/libxmlrpc.hash: -------------------------------------------------------------------------------- 1 | # Locally computed 2 | sha256 d830f3264a832dfe09f629cc64036acfd08121692526d0fabe090f7ff881ce08 xmlrpc-c-1.39.12.tgz 3 | -------------------------------------------------------------------------------- /package/linknx/linknx.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 635b8fbd3477fd7d85a95955b93f327cd5a389db80dc18cdae04de19a3a8a972 linknx-0.0.1.33.tar.gz 3 | -------------------------------------------------------------------------------- /package/lmbench/lmbench.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 cbd5777d15f44eab7666dcac418054c3c09df99826961a397d9acf43d8a2a551 lmbench-3.0-a9.tgz 3 | -------------------------------------------------------------------------------- /package/lua-fifo/lua-fifo.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 53dea24ad658614a0254dcb10296a1a0fc5357315ada5724d6362f54c32b4c20 fifo-0.2-0.src.rock 3 | -------------------------------------------------------------------------------- /package/lua-http/lua-http.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 d68591eeeeb60c4187469eae89f5bad02d753a8c0adaa460d453b0734222645a http-0.2-0.src.rock 3 | -------------------------------------------------------------------------------- /package/lua-utf8/lua-utf8.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 c9ceb3a9f327b3215cdf959eebf616970b5b0427ca3fde05b19f8236defa4b91 utf8-1.2-0.src.rock 3 | -------------------------------------------------------------------------------- /package/luadbi/luadbi.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 723f63b744b7367ddfd6bbf7a7e6f6867aa1eaabbbc2bab5dc8a90e80b0c34c2 luadbi-0.6-2.src.rock 3 | -------------------------------------------------------------------------------- /package/luasec/luasec.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 1d04e2f70bc055348dda3cc3566d27d8408094bc944aa5c6a4ae18bffe5c0007 luasec-0.6-1.src.rock 3 | -------------------------------------------------------------------------------- /package/madplay/madplay.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 5a79c7516ff7560dffc6a14399a389432bc619c905b13d3b73da22fa65acede0 madplay-0.15.2b.tar.gz 3 | -------------------------------------------------------------------------------- /package/minicom/minicom.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 532f836b7a677eb0cb1dca8d70302b73729c3d30df26d58368d712e5cca041f1 minicom-2.7.1.tar.gz 3 | -------------------------------------------------------------------------------- /package/mongodb/mongodb.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 4764945631bca4ac5c2b239e04e91db00e39716915204349170c37cb7897c564 mongodb-r3.3.4.tar.gz 3 | -------------------------------------------------------------------------------- /package/mongoose/mongoose.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 ccc971298db70963d3f13766c3246a3c36ae7e388acfab7ba2180149d9c8c64f mongoose-6.7.tar.gz 3 | -------------------------------------------------------------------------------- /package/mono/mono.hash: -------------------------------------------------------------------------------- 1 | # sha256 locally computed 2 | sha256 2a2f5c2a214a9980c086ac7561a5dd106f13d823a630de218eabafe1d995c5b4 mono-5.4.0.201.tar.bz2 3 | -------------------------------------------------------------------------------- /package/mrouted/mrouted.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 181908f7025c5a2dee2e50d86888780469eaa9e1bd42d3eca9dfed8274aecd3d mrouted-3.9.7.tar.gz 3 | -------------------------------------------------------------------------------- /package/msgpack/msgpack.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 9c87f80fc651b900772deaef0ab154b63160c74d292529b5be6d06d6485d4640 msgpack-2.1.5.tar.gz 3 | -------------------------------------------------------------------------------- /package/msr-tools/msr-tools.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 9b87245ee091a798184e447066e9e0d7709b7c81f5e6ad55f2b958c1aa50c4a3 msr-tools-1.3.tar.gz 3 | -------------------------------------------------------------------------------- /package/netperf/netperf.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 842af17655835c8be7203808c3393e6cb327a8067f3ed1f1053eb78b4e40375a netperf-2.7.0.tar.bz2 3 | -------------------------------------------------------------------------------- /package/netplug/netplug.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 5180dfd9a7d3d0633a027b0a04f01b45a6a64623813cd48bd54423b90814864e netplug-1.2.9.2.tar.bz2 3 | -------------------------------------------------------------------------------- /package/nss-mdns/nss-mdns.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 1e683c2e7c3921814706d62fbbd3e9cbf493a75fa00255e0e715508d8134fa6d nss-mdns-0.10.tar.gz 3 | -------------------------------------------------------------------------------- /package/numactl/numactl.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 450c091235f891ee874a8651b179c30f57a1391ca5c4673354740ba65e527861 numactl-2.0.11.tar.gz 3 | -------------------------------------------------------------------------------- /package/openbox/openbox.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 abe75855cc5616554ffd47134ad15291fe37ebbebf1a80b69cbde9d670f0e26d openbox-3.6.1.tar.xz 3 | -------------------------------------------------------------------------------- /package/openjpeg/openjpeg.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 3dc787c1bb6023ba846c2a0d9b1f6e179f1cd255172bde9eb75b01f1e6c7d71a openjpeg-2.3.0.tar.gz 3 | -------------------------------------------------------------------------------- /package/orbit/orbit.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 91e3c514d5b86918db83666c8889635bb2d50c71d1ab3aeb69c6469c9424089b orbit-2.2.4-1.src.rock 3 | -------------------------------------------------------------------------------- /package/paxtest/paxtest.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 d553848431fd8c2ab6c8361b62e5cedfed1cc1d60088241f4a33d2af15dd667f paxtest-0.9.15.tar.gz 3 | -------------------------------------------------------------------------------- /package/php-geoip/php-geoip.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 b2d05c03019d46135c249b5a7fa0dbd43ca5ee98aea8ed807bc7aa90ac8c0f06 geoip-1.1.1.tgz 3 | -------------------------------------------------------------------------------- /package/php-gnupg/php-gnupg.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 35e16bee11345a7d6bf57bea3cadf45e371ad1ed4e0218b0c06f6f637e4e1772 gnupg-1.4.0.tgz 3 | -------------------------------------------------------------------------------- /package/pkgconf/pkgconf.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 7ec8b516e655e247f4ba976837cee808134785819ab8f538f652fe919cc6c09f pkgconf-0.9.12.tar.bz2 3 | -------------------------------------------------------------------------------- /package/poppler/poppler.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 a3d626b24cd14efa9864e12584b22c9c32f51c46417d7c10ca17651f297c9641 poppler-0.59.0.tar.xz 3 | -------------------------------------------------------------------------------- /package/pugixml/pugixml.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 fbe10d46f61d769f7d92a296102e4e2bd3ee16130f11c5b10a1aae590ea1f5ca pugixml-1.7.tar.gz 3 | -------------------------------------------------------------------------------- /package/python-lxml/python-lxml.hash: -------------------------------------------------------------------------------- 1 | # Locally computed 2 | sha256 f7bc9f702500e205b1560d620f14015fec76dcd6f9e889a946a2ddcc3c344fd0 lxml-4.0.0.tgz 3 | -------------------------------------------------------------------------------- /package/python-mad/python-mad.hash: -------------------------------------------------------------------------------- 1 | # locally computed 2 | sha256 1c9fc529b78de7d26e9e47cf182c9f8bf43838d8f62a9c1773540d57f5ebc522 pymad-0.6.tar.gz 3 | -------------------------------------------------------------------------------- /package/ramspeed/ramspeed.hash: -------------------------------------------------------------------------------- 1 | # Locally computed 2 | sha256 f84e2e42b2b6b221ef9b586f6ae63d863db4ff21858e0ce7c84622a7c9522950 ramspeed-2.6.0.tar.gz 3 | -------------------------------------------------------------------------------- /package/raptor/raptor.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 ada7f0ba54787b33485d090d3d2680533520cd4426d2f7fb4782dd4a6a1480ed raptor2-2.0.15.tar.gz 3 | -------------------------------------------------------------------------------- /package/rings/rings.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 627ac55d4a420fab766e6870fcd82cb39da12fb4ec8efddc7220b188a4ad4bc3 rings-1.3.0-1.src.rock 3 | -------------------------------------------------------------------------------- /package/rpcbind/rpcbind.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 9897823a9d820ea011d9ea02054d5ab99469b9ca5346265fee380713c8fed27b rpcbind-0.2.3.tar.bz2 3 | -------------------------------------------------------------------------------- /package/rrdtool/rrdtool.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 cd948e89cd2d8825fab4a6fb0323f810948d934af7d92c9ee8b5e9e1350e52d7 rrdtool-1.6.0.tar.gz 3 | -------------------------------------------------------------------------------- /package/rtptools/rtptools.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 99d681f6e328486fa1fc16581b0a5974e31eb2708101683ee9c8a0b6bed31050 rtptools-1.20.tar.gz 3 | -------------------------------------------------------------------------------- /package/sam-ba/sam-ba.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 302734f53e471b5d1a292c9af937262f4fd766ec47ebfea62439761e7c1cd9d7 sam-ba_2.16_linux.zip 3 | -------------------------------------------------------------------------------- /package/sdl_net/sdl_net.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 5f4a7a8bb884f793c278ac3f3713be41980c5eedccecff0260411347714facb4 SDL_net-1.2.8.tar.gz 3 | -------------------------------------------------------------------------------- /package/sdl_ttf/sdl_ttf.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 724cd895ecf4da319a3ef164892b72078bd92632a5d812111261cde248ebcdb7 SDL_ttf-2.0.11.tar.gz 3 | -------------------------------------------------------------------------------- /package/sispmctl/sispmctl.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 e9a99cc81ef0a93f3484e5093efd14d93cc967221fcd22c151f0bea32eb91da7 sispmctl-3.1.tar.gz 3 | -------------------------------------------------------------------------------- /package/sshpass/sshpass.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 c6324fcee608b99a58f9870157dfa754837f8c48be3df0f5e2f3accf145dee60 sshpass-1.06.tar.gz 3 | -------------------------------------------------------------------------------- /package/stella/stella.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 74ee708b68340b65519a04a22c61921cdcf69a1d308600c212414b28e9e689ac stella-5.0.2-src.tar.xz 3 | -------------------------------------------------------------------------------- /package/sysprof/sysprof.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 baf03c6fc01a845c705873e6fc7927aa89539dcda6963f9ec4c8eb4c086a64f1 sysprof-1.2.0.tar.gz 3 | -------------------------------------------------------------------------------- /package/taglib/taglib.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 b6d1a5a610aae6ff39d93de5efd0fdc787aa9e9dc1e7026fa4c961b26563526b taglib-1.11.1.tar.gz 3 | -------------------------------------------------------------------------------- /package/tegrarcm/tegrarcm.hash: -------------------------------------------------------------------------------- 1 | # Locally computed 2 | sha256 538cb0af237ab33e070d3aeb6cc828cd7ef453753ba2ccc21b87ed43faac51bd tegrarcm-v1.7.tar.gz 3 | -------------------------------------------------------------------------------- /package/tinyalsa/tinyalsa.hash: -------------------------------------------------------------------------------- 1 | # locally computed 2 | sha256 d92b438cea348ae316c4b2cbf367b4f01ed821a947e6a34d813624e9e3c936c1 tinyalsa-1.1.1.tar.gz 3 | -------------------------------------------------------------------------------- /package/tinyxml/tinyxml.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 8164c9ad48b9028667768a584d62f7760cfbfb90d0dd6214ad174403058da10c tinyxml-2.6.2_2.tar.gz 3 | -------------------------------------------------------------------------------- /package/tn5250/tn5250.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 354237d400dc46af887cb3ffa4ed1f2c371f5b8bee8be046a683a4ac9db4f9c5 tn5250-0.17.4.tar.gz 3 | -------------------------------------------------------------------------------- /package/twolame/twolame.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 98f332f48951f47f23f70fd0379463aff7d7fb26f07e1e24e42ddef22cc6112a twolame-0.3.13.tar.gz 3 | -------------------------------------------------------------------------------- /package/upower/upower.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 9ca325a6ccef505529b268ebbbd9becd0ce65a65f6ac7ee31e2e5b17648037b0 upower-0.99.4.tar.xz 3 | -------------------------------------------------------------------------------- /package/ushare/ushare.hash: -------------------------------------------------------------------------------- 1 | # locally computed hash 2 | sha256 7b9b85c79968d4f4560f02a99e33c6a33ff58f9d41d8faea79e31cce2ee78665 ushare-1.1a.tar.bz2 3 | -------------------------------------------------------------------------------- /package/vala/vala-wrapper: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | $0-@VALA_VERSION@ --vapidir=${STAGING_DIR}/usr/share/vala/vapi --girdir=${STAGING_DIR}/usr/share/gir-1.0 $@ 3 | -------------------------------------------------------------------------------- /package/valgrind/valgrind.hash: -------------------------------------------------------------------------------- 1 | # From http://valgrind.org/downloads/current.html 2 | md5 6eb03c0c10ea917013a7622e483d61bb valgrind-3.12.0.tar.bz2 3 | -------------------------------------------------------------------------------- /package/w_scan/w_scan.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 38e0f38a7bf06cff6d6ea01652ad4ee60da2cb0e937360468f936da785b46ffe w_scan-20170107.tar.bz2 3 | -------------------------------------------------------------------------------- /package/wavemon/wavemon.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 c9ea57da4f8161401bcaaca17b37bcdf16ffb88baad2370afed2e15a7f71af73 wavemon-v0.8.1.tar.gz 3 | -------------------------------------------------------------------------------- /package/wsapi/wsapi.hash: -------------------------------------------------------------------------------- 1 | # locally computed hash 2 | sha256 f7f1b0ddc68c257965c42ac7155904d8ff7c2b7256f65ef1b82fda0039137d61 wsapi-1.6.1-1.src.rock 3 | -------------------------------------------------------------------------------- /package/x11r7/xapp_xgc/Config.in: -------------------------------------------------------------------------------- 1 | config BR2_PACKAGE_XAPP_XGC 2 | bool "xgc" 3 | select BR2_PACKAGE_XLIB_LIBXAW 4 | help 5 | X graphics demo 6 | -------------------------------------------------------------------------------- /package/x11r7/xproto_applewmproto/Config.in: -------------------------------------------------------------------------------- 1 | config BR2_PACKAGE_XPROTO_APPLEWMPROTO 2 | bool "applewmproto" 3 | help 4 | No description available 5 | -------------------------------------------------------------------------------- /package/x11r7/xproto_fixesproto/Config.in: -------------------------------------------------------------------------------- 1 | config BR2_PACKAGE_XPROTO_FIXESPROTO 2 | bool "fixesproto" 3 | help 4 | X.Org Fixes protocol headers 5 | -------------------------------------------------------------------------------- /package/x11r7/xproto_fontsproto/Config.in: -------------------------------------------------------------------------------- 1 | config BR2_PACKAGE_XPROTO_FONTSPROTO 2 | bool "fontsproto" 3 | help 4 | X.Org Fonts protocol headers 5 | -------------------------------------------------------------------------------- /package/x11r7/xproto_inputproto/Config.in: -------------------------------------------------------------------------------- 1 | config BR2_PACKAGE_XPROTO_INPUTPROTO 2 | bool "inputproto" 3 | help 4 | X.Org Input protocol headers 5 | -------------------------------------------------------------------------------- /package/x11r7/xproto_randrproto/Config.in: -------------------------------------------------------------------------------- 1 | config BR2_PACKAGE_XPROTO_RANDRPROTO 2 | bool "randrproto" 3 | help 4 | X.Org Randr protocol headers 5 | -------------------------------------------------------------------------------- /package/x11r7/xproto_videoproto/Config.in: -------------------------------------------------------------------------------- 1 | config BR2_PACKAGE_XPROTO_VIDEOPROTO 2 | bool "videoproto" 3 | help 4 | X.Org Video protocol headers 5 | -------------------------------------------------------------------------------- /package/x11vnc/x11vnc.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 45f87c5e4382988c73e8c7891ac2bfb45d8f9ce1196ae06651c84636684ea143 x11vnc-0.9.14.tar.gz 3 | -------------------------------------------------------------------------------- /package/xenomai/xenomai.hash: -------------------------------------------------------------------------------- 1 | # Locally computed; 2 | sha256 2c0dd3f0e36e4a10f97e0028989bb873e80f4d1ce212ac55fd3b28857c464f94 xenomai-3.0.6.tar.bz2 3 | -------------------------------------------------------------------------------- /package/yaffs2utils/yaffs2utils.hash: -------------------------------------------------------------------------------- 1 | # locally computed 2 | sha256 9b0912bf683eb839b6e57c9255c83894c3b700d16489a49d319c54c1abf8f6d7 0.2.9.tar.gz 3 | -------------------------------------------------------------------------------- /package/yaml-cpp/yaml-cpp.hash: -------------------------------------------------------------------------------- 1 | # locally computed 2 | sha256 6fb92f6f5925e0af918ffbb90acf19b7b88706ebcd40fc186b7caa76609b6350 yaml-cpp-0.5.2.tar.gz 3 | -------------------------------------------------------------------------------- /support/config-fragments/autobuild/br-arc-full-internal.config: -------------------------------------------------------------------------------- 1 | BR2_arcle=y 2 | BR2_TOOLCHAIN_BUILDROOT_LOCALE=y 3 | BR2_TOOLCHAIN_BUILDROOT_CXX=y 4 | -------------------------------------------------------------------------------- /support/config-fragments/autobuild/br-xtensa-full-internal.config: -------------------------------------------------------------------------------- 1 | BR2_xtensa=y 2 | BR2_TOOLCHAIN_BUILDROOT_LOCALE=y 3 | BR2_TOOLCHAIN_BUILDROOT_CXX=y 4 | -------------------------------------------------------------------------------- /support/config-fragments/autobuild/sourcery-nios2.config: -------------------------------------------------------------------------------- 1 | BR2_nios2=y 2 | BR2_TOOLCHAIN_EXTERNAL=y 3 | BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_NIOSII=y 4 | -------------------------------------------------------------------------------- /board/pc/grub-efi.cfg: -------------------------------------------------------------------------------- 1 | set default="0" 2 | set timeout="5" 3 | 4 | menuentry "Buildroot" { 5 | linux /bzImage root=/dev/sda2 rootwait console=tty1 6 | } 7 | -------------------------------------------------------------------------------- /package/acpitool/acpitool.hash: -------------------------------------------------------------------------------- 1 | # locally computed hash 2 | sha256 004fb6cd43102918b6302cf537a2db7ceadda04aef2e0906ddf230f820dad34f acpitool-0.5.1.tar.bz2 3 | -------------------------------------------------------------------------------- /package/alljoyn/alljoyn.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 fc437d96cf1213f18048240b5d12a374b31894d21830a0a6ccf562ffa13425d5 alljoyn-16.04.00a-src.tar.gz 3 | -------------------------------------------------------------------------------- /package/argparse/argparse.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 e00e5637c937d7bfca96025f2c598ba4fffe9eb818d69952e77b4c08167a6be3 argparse-0.5.0-1.src.rock 3 | -------------------------------------------------------------------------------- /package/arptables/arptables.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 277985e29ecd93bd759a58242cad0e02ba9d4a6e1b7795235e3b507661bc0049 arptables-v0.0.4.tar.gz 3 | -------------------------------------------------------------------------------- /package/audiofile/audiofile.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 cdc60df19ab08bfe55344395739bb08f50fc15c92da3962fac334d3bff116965 audiofile-0.3.6.tar.gz 3 | -------------------------------------------------------------------------------- /package/bctoolbox/bctoolbox.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 da7df7ff359a9829e9e6ef98dfe9fead0cf735b8a4a5da1b1047f467dee1b2a9 bctoolbox-0.4.0.tar.gz 3 | -------------------------------------------------------------------------------- /package/beecrypt/beecrypt.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 286f1f56080d1a6b1d024003a5fa2158f4ff82cae0c6829d3c476a4b5898c55d beecrypt-4.2.1.tar.gz 3 | -------------------------------------------------------------------------------- /package/bootutils/bootutils.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 78549714e7c7fa246a4019c245f4da044aee6cfe48ad6887c4013ac4c749c7b9 bootutils-1.0.0.tar.gz 3 | -------------------------------------------------------------------------------- /package/cbootimage/cbootimage.hash: -------------------------------------------------------------------------------- 1 | # Locally computed 2 | sha256 373c108d7b6778c62a33e59ad0cd5ea9ebb379319a0c8b4cf469eaa8bec5521b cbootimage-v1.7.tar.gz 3 | -------------------------------------------------------------------------------- /package/celt051/celt051.hash: -------------------------------------------------------------------------------- 1 | # From http://downloads.xiph.org/releases/celt/SHA1SUMS 2 | sha1 eb05030108c36cb063c3f026c349f16d78e0a497 celt-0.5.1.3.tar.gz 3 | -------------------------------------------------------------------------------- /package/curlftpfs/curlftpfs.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 4eb44739c7078ba0edde177bdd266c4cfb7c621075f47f64c85a06b12b3c6958 curlftpfs-0.9.2.tar.gz 3 | -------------------------------------------------------------------------------- /package/darkhttpd/darkhttpd.hash: -------------------------------------------------------------------------------- 1 | # Locally generated 2 | sha256 a50417b622b32b5f421b3132cb94ebeff04f02c5fb87fba2e31147d23de50505 darkhttpd-1.12.tar.bz2 3 | -------------------------------------------------------------------------------- /package/dbus-cpp/dbus-cpp.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 bc11ac297b3cb010be904c72789695543ee3fdf3d75cdc8225fd371385af4e61 libdbus-c++-0.9.0.tar.gz 3 | -------------------------------------------------------------------------------- /package/ding-libs/ding-libs.hash: -------------------------------------------------------------------------------- 1 | # Locally computed 2 | sha256 639984a57d6f936a6551c842712619692febaebf4515033fc929620a241ffa6a ding_libs-0_4_0.tar.xz 3 | -------------------------------------------------------------------------------- /package/doxygen/doxygen.hash: -------------------------------------------------------------------------------- 1 | # Computed locally 2 | sha256 af667887bd7a87dc0dbf9ac8d86c96b552dfb8ca9c790ed1cbffaa6131573f6b doxygen-1.8.13.src.tar.gz 3 | -------------------------------------------------------------------------------- /package/dsp-tools/dsp-tools.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 734a1d5f21fb388bdbe64f7b599fef52357c3c72ff860f38456a352e7c1c3e78 dsp-tools-v2.0.tar.gz 3 | -------------------------------------------------------------------------------- /package/dvbsnoop/dvbsnoop.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 7658498b26a5d2a0242e81f0cfafa0e43a2bec56f8674e7ac197dfc310866ec6 dvbsnoop-1.4.50.tar.gz 3 | -------------------------------------------------------------------------------- /package/ebtables/ebtables.hash: -------------------------------------------------------------------------------- 1 | # Locally computed 2 | sha256 dc6f7b484f207dc712bfca81645f45120cb6aee3380e77a1771e9c34a9a4455d ebtables-v2.0.10-4.tar.gz 3 | -------------------------------------------------------------------------------- /package/enchant/enchant.hash: -------------------------------------------------------------------------------- 1 | # From http://www.abisource.com/downloads/enchant/1.6.0/MD5SUM 2 | md5 de11011aff801dc61042828041fb59c7 enchant-1.6.0.tar.gz 3 | -------------------------------------------------------------------------------- /package/espeak/espeak.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 bf9a17673adffcc28ff7ea18764f06136547e97bbd9edf2ec612f09b207f0659 espeak-1.48.04-source.zip 3 | -------------------------------------------------------------------------------- /package/faketime/faketime.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 56bc32006f4c5b021ff648cc1fd458c5316f40aadfd2031879229a234189b031 faketime-v0.9.6.tar.gz 3 | -------------------------------------------------------------------------------- /package/fetchmail/fetchmail.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 79b4c54cdbaf02c1a9a691d9948fcb1a77a1591a813e904283a8b614b757e850 fetchmail-6.3.26.tar.xz 3 | -------------------------------------------------------------------------------- /package/fswebcam/fswebcam.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 444d6a8a82102e09e935540c64a731021de36db03e1e74181f41ca6f39aa6474 fswebcam-20140113.tar.xz 3 | -------------------------------------------------------------------------------- /package/genext2fs/genext2fs.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 404dbbfa7a86a6c3de8225c8da254d026b17fd288e05cec4df2cc7e1f4feecfc genext2fs-1.4.1.tar.gz 3 | -------------------------------------------------------------------------------- /package/gengetopt/gengetopt.hash: -------------------------------------------------------------------------------- 1 | # Locally computed 2 | sha256 30b05a88604d71ef2a42a2ef26cd26df242b41f5b011ad03083143a31d9b01f7 gengetopt-2.22.6.tar.gz 3 | -------------------------------------------------------------------------------- /package/genromfs/genromfs.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 30f37fc734572c1dbaa2504585bc23ba6b8fd7df767ae7155995b2ca0ebed960 genromfs-0.5.2.tar.gz 3 | -------------------------------------------------------------------------------- /package/gmp/Config.in: -------------------------------------------------------------------------------- 1 | config BR2_PACKAGE_GMP 2 | bool "gmp" 3 | help 4 | GNU Multiple Precision Arithmetic Library. 5 | 6 | http://gmplib.org/ 7 | -------------------------------------------------------------------------------- /package/go-bootstrap/go-bootstrap.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 9947fc705b0b841b5938c48b22dc33e9647ec0752bae66e50278df4f23f64959 go1.4.3.src.tar.gz 3 | -------------------------------------------------------------------------------- /package/ibrcommon/ibrcommon.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 9c457c1ebc01e6216524636628c647bef34ab11bd96f0e0788be8749374fdc20 ibrcommon-1.0.1.tar.gz 3 | -------------------------------------------------------------------------------- /package/ipmitool/ipmitool.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 0c1ba3b1555edefb7c32ae8cd6a3e04322056bc087918f07189eeedfc8b81e01 ipmitool-1.8.18.tar.bz2 3 | -------------------------------------------------------------------------------- /package/jasper/jasper.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 b50413b41bfc82ae419298b41eadcde1aa31f362fb9dc2ac089e5cbc19f60c24 jasper-version-2.0.13.tar.gz 3 | -------------------------------------------------------------------------------- /package/jemalloc/jemalloc.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 4814781d395b0ef093b21a08e8e6e0bd3dab8762f9935bbfb71679b0dea7c3e9 jemalloc-5.0.1.tar.bz2 3 | -------------------------------------------------------------------------------- /package/jquery-ui/jquery-ui.hash: -------------------------------------------------------------------------------- 1 | # locally computed 2 | sha256 c76f349930245360f4d1dea672b9a587f8938b536a378e20eeff919f7263f99f jquery-ui-1.10.4.zip 3 | -------------------------------------------------------------------------------- /package/keyutils/keyutils.hash: -------------------------------------------------------------------------------- 1 | # Locally computed 2 | sha256 115c3deae7f181778fd0e0ffaa2dad1bf1fe2f5677cf2e0e348cdb7a1c93afb6 keyutils-1.5.10.tar.bz2 3 | -------------------------------------------------------------------------------- /package/kompexsqlite/kompexsqlite.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 73bec94fe5dd3a24bd8668b3a131a84dbe39a992579eebab1236aa0e73b2c9cc v1.10.12-1.tar.gz 3 | -------------------------------------------------------------------------------- /package/latencytop/latencytop.hash: -------------------------------------------------------------------------------- 1 | # locally computed 2 | sha256 9e7f72fbea7bd918e71212a1eabaad8488d2c602205d2e3c95d62cd57e9203ef latencytop-0.5.tar.gz 3 | -------------------------------------------------------------------------------- /package/libcap-ng/libcap-ng.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 c21af997445cd4107a55d386f955c5ea6f6e96ead693e9151277c0ab5f97d05f libcap-ng-0.7.8.tar.gz 3 | -------------------------------------------------------------------------------- /package/libcgroup/libcgroup.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 e4e38bdc7ef70645ce33740ddcca051248d56b53283c0dc6d404e17706f6fb51 libcgroup-0.41.tar.bz2 3 | -------------------------------------------------------------------------------- /package/libconfig/libconfig.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 e31daa390d8e4461c8830512fe2e13ba1a3d6a02a2305a02429eec61e68703f6 libconfig-1.5.tar.gz 3 | -------------------------------------------------------------------------------- /package/libdaemon/libdaemon.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 fd23eb5f6f986dcc7e708307355ba3289abe03cc381fc47a80bca4a50aa6b834 libdaemon-0.14.tar.gz 3 | -------------------------------------------------------------------------------- /package/libdcadec/libdcadec.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 ed9d207fde3e8d576f3af8b0d1235b3371e315175757173689104efcaebf0d44 libdcadec-v0.2.0.tar.gz 3 | -------------------------------------------------------------------------------- /package/libedit/libedit.hash: -------------------------------------------------------------------------------- 1 | # Locally computed 2 | sha256 c88a5e4af83c5f40dda8455886ac98923a9c33125699742603a88a0253fcc8c5 libedit-20150325-3.1.tar.gz 3 | -------------------------------------------------------------------------------- /package/libesmtp/libesmtp.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 d0a61a5c52d99fa7ce7d00ed0a07e341dbda67101dbed1ab0cdae3f37db4eb0b libesmtp-1.0.6.tar.bz2 3 | -------------------------------------------------------------------------------- /package/libfreeimage/libfreeimage.hash: -------------------------------------------------------------------------------- 1 | # Locally computed 2 | sha256 fbfc65e39b3d4e2cb108c4ffa8c41fd02c07d4d436c594fff8dab1a6d5297f89 FreeImage3170.zip 3 | -------------------------------------------------------------------------------- /package/libgdiplus/libgdiplus.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 ce31da0c6952c8fd160813dfa9bf4a9a871bfe7284e9e3abff9a8ee689acfe58 libgdiplus-5.4.tar.gz 3 | -------------------------------------------------------------------------------- /package/libiscsi/libiscsi.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 464d104e12533dc11f0dd7662cbc2f01c132f94aa4f5bd519e3413ef485830e8 libiscsi-1.18.0.tar.gz 3 | -------------------------------------------------------------------------------- /package/libkcapi/libkcapi.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 411fc32b3e36ac0268837a8d4538eb8aef487b3a3e9b21a2b88b8ed2f926edf3 libkcapi-0.14.0.tar.xz 3 | -------------------------------------------------------------------------------- /package/liblinear/liblinear.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 fa5c12dedc76ffca12f1681de7073b03af68163c4e4be65194217c99e55a7d68 liblinear-2.1.tar.gz 3 | -------------------------------------------------------------------------------- /package/libmcrypt/libmcrypt.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 e4eb6c074bbab168ac47b947c195ff8cef9d51a211cdd18ca9c9ef34d27a373e libmcrypt-2.5.8.tar.gz 3 | -------------------------------------------------------------------------------- /package/libmhash/libmhash.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 56521c52a9033779154432d0ae47ad7198914785265e1f570cee21ab248dfef0 mhash-0.9.9.9.tar.bz2 3 | -------------------------------------------------------------------------------- /package/libmodbus/libmodbus.hash: -------------------------------------------------------------------------------- 1 | # Locally computed 2 | sha256 c8c862b0e9a7ba699a49bc98f62bdffdfafd53a5716c0e162696b4bf108d3637 libmodbus-3.1.4.tar.gz 3 | -------------------------------------------------------------------------------- /package/libmpeg2/libmpeg2.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 dee22e893cb5fc2b2b6ebd60b88478ab8556cb3b93f9a0d7ce8f3b61851871d4 libmpeg2-0.5.1.tar.gz 3 | -------------------------------------------------------------------------------- /package/libnatpmp/libnatpmp.hash: -------------------------------------------------------------------------------- 1 | # Locally computed 2 | sha256 e1aa9c4c4219bc06943d6b2130f664daee213fb262fcb94dd355815b8f4536b0 libnatpmp-20150609.tar.gz 3 | -------------------------------------------------------------------------------- /package/liboauth/liboauth.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 0df60157b052f0e774ade8a8bac59d6e8d4b464058cc55f9208d72e41156811f liboauth-1.0.3.tar.gz 3 | -------------------------------------------------------------------------------- /package/libplayer/libplayer.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 aa5eeb54f773bc9cad2733e4a0b5870208fc7f75024515ea87e55f64653e9d65 libplayer-2.0.1.tar.bz2 3 | -------------------------------------------------------------------------------- /package/libplist/libplist.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 3a7e9694c2d9a85174ba1fa92417cfabaea7f6d19631e544948dc7e17e82f602 libplist-2.0.0.tar.bz2 3 | -------------------------------------------------------------------------------- /package/libpthsem/libpthsem.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 4024cafdd5d4bce2b1778a6be5491222c3f6e7ef1e43971264c451c0012c5c01 pthsem_2.0.8.tar.gz 3 | -------------------------------------------------------------------------------- /package/librsync/librsync.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 b5c4dd114289832039397789e42d4ff0d1108ada89ce74f1999398593fae2169 librsync-v2.0.0.tar.gz 3 | -------------------------------------------------------------------------------- /package/librtlsdr/librtlsdr.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 98fb5c34ac94d6f2235a0bb41a08f8bed7949e1d1b91ea57a7c1110191ea58de librtlsdr-v0.5.3.tar.gz 3 | -------------------------------------------------------------------------------- /package/libscrypt/libscrypt.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 68e377e79745c10d489b759b970e52d819dbb80dd8ca61f8c975185df3f457d3 libscrypt-v1.21.tar.gz 3 | -------------------------------------------------------------------------------- /package/libsigrok/libsigrok.hash: -------------------------------------------------------------------------------- 1 | # Locally computed 2 | sha256 4c8c86779b880a5c419f6c77a08b1147021e5a19fa83b0f3b19da27463c9f3a4 libsigrok-0.5.0.tar.gz 3 | -------------------------------------------------------------------------------- /package/libsysfs/libsysfs.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 e865de2c1f559fff0d3fc936e660c0efaf7afe662064f2fb97ccad1ec28d208a sysfsutils-2.1.0.tar.gz 3 | -------------------------------------------------------------------------------- /package/libtomcrypt/libtomcrypt.hash: -------------------------------------------------------------------------------- 1 | # Locally computed 2 | sha256 57c13a34fbfd45696189d19e47864e48f4e5c11590c29b444accb8edbf047f14 crypt-1.18.1.tar.xz 3 | -------------------------------------------------------------------------------- /package/linenoise/linenoise.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 f5054a4fe120d43d85427cf58af93e56b9bb80389d507a9bec9b75531a340014 linenoise-1.0.tar.gz 3 | -------------------------------------------------------------------------------- /package/ljsyscall/ljsyscall.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 6e29503609bd966fed33dec1a1571b36bbdbc37bf1a828af6722ed0ead192ff1 ljsyscall-v0.12.tar.gz 3 | -------------------------------------------------------------------------------- /package/log4cplus/log4cplus.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 999427580cded403b4edc8a85088621f27493c489f08b9f564fb5fe76c16a883 log4cplus-1.1.2.tar.xz 3 | -------------------------------------------------------------------------------- /package/logrotate/logrotate.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 fb1ff8502e7ae4aedaa3d0da8d3740a6a0f44b72e34666af724e9094b166c942 logrotate-3.13.0.tar.gz 3 | -------------------------------------------------------------------------------- /package/lsqlite3/lsqlite3.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 e6eb64a7ca3727c3093f3c37341d8ecadf9eac913e468eae413828476b19c225 lsqlite3-0.9.4-2.src.rock 3 | -------------------------------------------------------------------------------- /package/lua-bit32/lua-bit32.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 fe7bc70d1e48183d95ccfb6741e70a676283075173122cb161303d77059b27a6 bit32-5.3.0-1.src.rock 3 | -------------------------------------------------------------------------------- /package/lua-coat/lua-coat.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 24d0e894d743f46c09a282e4dd272d2a6004557608b618c1c9d9f464dd65af02 lua-coat-0.9.2-1.src.rock 3 | -------------------------------------------------------------------------------- /package/lua-curl/lua-curl.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 4cc6389bf5d4a868cc1e6017733b9b6306f2fc8b5083aa928d66399195697f34 lua-curl-0.3.7-1.src.rock 3 | -------------------------------------------------------------------------------- /package/lua-flu/lua-flu.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 1389c22daec77161ec93ff90c39ee70e0f8a656ff92f22f9cf5d7121999d5c53 flu-20150331-1.src.rock 3 | -------------------------------------------------------------------------------- /package/lua-iconv/lua-iconv.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 fb66e785e15376c2d2817f1f1b27d10272b877eacc998c727a10f081a7d768fa lua-iconv-7-1.src.rock 3 | -------------------------------------------------------------------------------- /package/lua-sailor/lua-sailor.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 4f7f43a7cf6c62712a521ebaf5f53aaf230039c7fb06480ae168c3aa036120bf sailor-0.5-4.src.rock 3 | -------------------------------------------------------------------------------- /package/lua-valua/lua-valua.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 bff39692fd2ac3590fd814aa1b1ca33e5d5971092955309aa8424b02b88ce1a3 valua-0.3-1.src.rock 3 | -------------------------------------------------------------------------------- /package/luabitop/luabitop.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 fc7a8065a57462ee13bed7f95b0ab13f94ecd1bf846108c61ccf2c75548af26e luabitop-1.0.2-1.src.rock 3 | -------------------------------------------------------------------------------- /package/luaexpat/luaexpat.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 aa7883a0d44f500e32ef306c04632546f97f33159fffa7bcdc3f451170f95896 luaexpat-1.3.0-1.src.rock 3 | -------------------------------------------------------------------------------- /package/luajson/luajson.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 28a5928cf2e4fd79fa9a9aceaef5ebf1dccb1146489b7de4c2726f561700f01c luajson-1.3.4-1.src.rock 3 | -------------------------------------------------------------------------------- /package/luaossl/luaossl.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 f9c94c97579efddf8abad1e373e0fe0ecc93d00cd9d1bd49f48c5716c281a08b luaossl-20171028-0.src.rock 3 | -------------------------------------------------------------------------------- /package/luaposix/luaposix.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 ba0bc343783fc33958cd02a68cdbfd65430152d9f297f7ed92678b1a305bd5d7 luaposix-34.0.1.tar.gz 3 | -------------------------------------------------------------------------------- /package/luarocks/luarocks.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 4d414d32fed5bb121c72d3ff1280b7f2dc9027a9bc012e41dfbffd5b519b362e luarocks-2.4.3.tar.gz 3 | -------------------------------------------------------------------------------- /package/memtester/memtester.hash: -------------------------------------------------------------------------------- 1 | # Locally computed 2 | sha256 f9dfe2fd737c38fad6535bbab327da9a21f7ce4ea6f18c7b3339adef6bf5fd88 memtester-4.3.0.tar.gz 3 | -------------------------------------------------------------------------------- /package/memtool/memtool.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 58309d356cb9b45a241cb602ca3850891a70ddaa93ced51d1cced78e14767680 memtool-2016.10.0.tar.xz 3 | -------------------------------------------------------------------------------- /package/mongrel2/mongrel2.hash: -------------------------------------------------------------------------------- 1 | # Locally computed 2 | sha256 543553c3082f2b992649a975f6cb7324ae2aea93af05288ea4f2c1262a7f63b2 mongrel2-v1.9.2.tar.bz2 3 | -------------------------------------------------------------------------------- /package/odhcploc/odhcploc.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 b0360a3aece8a29d131531da7bfc36d57c30c6eed30ff1ea360f7cccea1d62d7 odhcploc-20111021.tar.gz 3 | -------------------------------------------------------------------------------- /package/openal/openal.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 2d51a6529526ef22484f51567e31a5c346a599767991a3dc9d4dcd9d9cec71dd openal-soft-1.18.1.tar.bz2 3 | -------------------------------------------------------------------------------- /package/openswan/openswan.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 9a3eb041084c3ab125dd645c40e8f5563efe73e18a3881cf2ce3582001daafc5 openswan-2.6.50.tar.gz 3 | -------------------------------------------------------------------------------- /package/opentyrian-data/opentyrian-data.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 7790d09a2a3addcd33c66ef063d5900eb81cc9c342f4807eb8356364dd1d9277 tyrian21.zip 3 | -------------------------------------------------------------------------------- /package/owl-linux/owl-linux.hash: -------------------------------------------------------------------------------- 1 | # locally computed 2 | sha256 a6b1bc6b3900954438a0f1a316bac5f74171125a88c80c35e137f4ca512dedc6 owl-linux-1.0.7.tar.gz 3 | -------------------------------------------------------------------------------- /package/pax-utils/pax-utils.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 7f4a7f8db6b4743adde7582fa48992ad01776796fcde030683732f56221337d9 pax-utils-1.2.2.tar.xz 3 | -------------------------------------------------------------------------------- /package/pcsc-lite/pcsc-lite.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 ec7d0114016c788c1c09859c84860f6cec6c4595436d23245105154b9c046bb2 pcsc-lite-1.8.22.tar.bz2 3 | -------------------------------------------------------------------------------- /package/php-imagick/php-imagick.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 1f3c5b5eeaa02800ad22f506cd100e8889a66b2ec937e192eaaa30d74562567c imagick-3.4.3.tgz 3 | -------------------------------------------------------------------------------- /package/pixman/Config.in: -------------------------------------------------------------------------------- 1 | config BR2_PACKAGE_PIXMAN 2 | bool "pixman" 3 | help 4 | Cairo pixel manager 5 | 6 | http://cairographics.org/releases/ 7 | -------------------------------------------------------------------------------- /package/powertop/powertop.hash: -------------------------------------------------------------------------------- 1 | # Locally-generated hash 2 | sha256 aa7fb7d8e9a00f05e7d8a7a2866d85929741e0d03a5bf40cab22d2021c959250 powertop-v2.9.tar.gz 3 | -------------------------------------------------------------------------------- /package/protobuf/protobuf.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 2bb34b4a8211a30d12ef29fd8660995023d119c99fbab2e5fe46f17528c9cc78 protobuf-cpp-3.4.1.tar.gz 3 | -------------------------------------------------------------------------------- /package/pulseview/pulseview.hash: -------------------------------------------------------------------------------- 1 | # Locally computed 2 | sha256 78f8291045c6f65b4827b12e83c8e68cea2d5e7268b15a51aaca9726c8100eb9 pulseview-0.4.0.tar.gz 3 | -------------------------------------------------------------------------------- /package/python-id3/python-id3.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 ba612342b59a49cbf9a7eb23a646667757ffda96dc23b67245fc6cd8d90c2022 id3-py_1.2.tar.gz 3 | -------------------------------------------------------------------------------- /package/python-pam/python-pam.hash: -------------------------------------------------------------------------------- 1 | # locally computed 2 | sha256 796ac019b9ee805696d0d277d8fb912fa2391b6ac070dc6f9f1a9a0fadbc3a5a PyPAM-0.5.0.tar.gz 3 | -------------------------------------------------------------------------------- /package/python-pyrex/python-pyrex.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 5f87df06831d0b3412eb4bc9d3fc2ee7bfae1b913d7da8c23ab2bf5699fb6b50 Pyrex-0.9.9.tar.gz 3 | -------------------------------------------------------------------------------- /package/qdecoder/qdecoder.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 641d3df4895626d7a530c5d26724e9b5887e9845d4b47f42c1cbce4a17ebf6af qdecoder-r12.0.5.tar.gz 3 | -------------------------------------------------------------------------------- /package/ratpoison/ratpoison.hash: -------------------------------------------------------------------------------- 1 | # Locally computed 2 | sha256 d98fa4be025ecca453c407ff311ab3949f29f20d6d8abedf8f0716b85fc8d1f1 ratpoison-1.4.9.tar.xz 3 | -------------------------------------------------------------------------------- /package/read-edid/read-edid.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 c7c6d8440f5b90f98e276829271ccea5b2ff5a3413df8a0f87ec09f834af186f read-edid-3.0.2.tar.gz 3 | -------------------------------------------------------------------------------- /package/rt-tests/rt-tests.hash: -------------------------------------------------------------------------------- 1 | # locally computed hash 2 | sha256 aea85fd8eda8c1d96e9d32a019bfd4a1d2e0d362971d97838996f49d1af2d470 rt-tests-1.0.tar.xz 3 | -------------------------------------------------------------------------------- /package/rtorrent/rtorrent.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 1e69c24f1f26f8f07d58d673480dc392bfc4317818c1115265b08a7813ff5b0e rtorrent-0.9.6.tar.gz 3 | -------------------------------------------------------------------------------- /package/sdl2_gfx/sdl2_gfx.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 d69bcbceb811b4e5712fbad3ede737166327f44b727f1388c32581dbbe8c599a SDL2_gfx-1.0.1.tar.gz 3 | -------------------------------------------------------------------------------- /package/sdl2_net/sdl2_net.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 15ce8a7e5a23dafe8177c8df6e6c79b6749a03fff1e8196742d3571657609d21 SDL2_net-2.0.1.tar.gz 3 | -------------------------------------------------------------------------------- /package/sdl2_ttf/sdl2_ttf.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 34db5e20bcf64e7071fe9ae25acaa7d72bdc4f11ab3ce59acc768ab62fe39276 SDL2_ttf-2.0.14.tar.gz 3 | -------------------------------------------------------------------------------- /package/sdl_image/sdl_image.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 0b90722984561004de84847744d566809dbb9daf732a9e503b91a1b5a84e5699 SDL_image-1.2.12.tar.gz 3 | -------------------------------------------------------------------------------- /package/sdl_mixer/sdl_mixer.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 1644308279a975799049e4826af2cfc787cad2abb11aa14562e402521f86992a SDL_mixer-1.2.12.tar.gz 3 | -------------------------------------------------------------------------------- /package/sdl_sound/sdl_sound.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 3999fd0bbb485289a52be14b2f68b571cb84e380cc43387eadf778f64c79e6df SDL_sound-1.0.3.tar.gz 3 | -------------------------------------------------------------------------------- /package/sigrok-cli/sigrok-cli.hash: -------------------------------------------------------------------------------- 1 | # Locally computed 2 | sha256 5669d968c2de3dfc6adfda76e83789b6ba76368407c832438cef5e7099a65e1c sigrok-cli-0.7.0.tar.gz 3 | -------------------------------------------------------------------------------- /package/smstools3/smstools3.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 ed00ffaeaa312a5b4f969f4e97a64603a866bbe16e393ea02f5bf05234814d59 smstools3-3.1.15.tar.gz 3 | -------------------------------------------------------------------------------- /package/sofia-sip/sofia-sip.hash: -------------------------------------------------------------------------------- 1 | # Locally computed 2 | sha256 2b01bc2e1826e00d1f7f57d29a2854b15fd5fe24695e47a14a735d195dd37c81 sofia-sip-1.12.11.tar.gz 3 | -------------------------------------------------------------------------------- /package/sqlcipher/sqlcipher.hash: -------------------------------------------------------------------------------- 1 | # locally computed 2 | sha256 25fa4f4cb38dcf9e52e4d1f46be8fee9c7aaef35b6df96912a216b289e22c2af sqlcipher-v3.2.0.tar.gz 3 | -------------------------------------------------------------------------------- /package/statserial/statserial.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 40cf3bd506852942aa98f468c90ed4ea66dbd343b93efacd40d617b55caf3967 statserial-1.1.tar.gz 3 | -------------------------------------------------------------------------------- /package/stress-ng/stress-ng.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 0e1d7733b35f594f7461dedbf836bd4966d0611da4cd4e85cde4804d2a425e6d stress-ng-0.06.15.tar.gz 3 | -------------------------------------------------------------------------------- /package/swupdate/swupdate.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 1e15d9675cf7e23886dca7ea058498282c35679a555845dbc85ffe688f2cc681 swupdate-2017.11.tar.gz 3 | -------------------------------------------------------------------------------- /package/syslog-ng/syslog-ng.hash: -------------------------------------------------------------------------------- 1 | # Locally computed 2 | sha256 a905fe7bad09dcf40bf03650ef1c287b511bf262d004464b8993a28ce58c9136 syslog-ng-3.10.1.tar.gz 3 | -------------------------------------------------------------------------------- /package/tinyhttpd/tinyhttpd.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 56609b82869c80ba71b2a2af166a0bcaffe21e7412f4594e04b9a5abf733435a tinyhttpd-0.1.0.tar.gz 3 | -------------------------------------------------------------------------------- /package/tinyxml2/tinyxml2.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 14b38ef25cc136d71339ceeafb4856bb638d486614103453eccd323849267f20 tinyxml2-4.0.1.tar.gz 3 | -------------------------------------------------------------------------------- /package/turbolua/turbolua.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 a2c30534706fb475545b17a017c63479e93e5e9bf1f5ed88c0db22bb4ea7b4b1 turbolua-v2.1.2.tar.gz 3 | -------------------------------------------------------------------------------- /package/udev/Config.in: -------------------------------------------------------------------------------- 1 | config BR2_PACKAGE_HAS_UDEV 2 | bool 3 | 4 | config BR2_PACKAGE_PROVIDES_UDEV 5 | string 6 | depends on BR2_PACKAGE_HAS_UDEV 7 | -------------------------------------------------------------------------------- /package/udpcast/udpcast.hash: -------------------------------------------------------------------------------- 1 | # locally computed hash 2 | sha256 ce9090ef80b6035a744a9b5ac335e61c99baa92c39ff53277266fbfcb836445a udpcast-20120424.tar.gz 3 | -------------------------------------------------------------------------------- /package/udpxy/udpxy.hash: -------------------------------------------------------------------------------- 1 | # Locally computed 2 | sha256 6ce33b1d14a1aeab4bd2566aca112e41943df4d002a7678d9a715108e6b714bd udpxy.1.0.23-9-prod.tar.gz 3 | -------------------------------------------------------------------------------- /package/usbredir/usbredir.hash: -------------------------------------------------------------------------------- 1 | # locally computed hash 2 | sha256 407e9e27a1369f01264d5501ffbe88935ddd7d5de675f5835db05dc9c9ac56f3 usbredir-0.7.1.tar.bz2 3 | -------------------------------------------------------------------------------- /package/vo-aacenc/vo-aacenc.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 e51a7477a359f18df7c4f82d195dab4e14e7414cbd48cf79cc195fc446850f36 vo-aacenc-0.1.3.tar.gz 3 | -------------------------------------------------------------------------------- /package/wavpack/wavpack.hash: -------------------------------------------------------------------------------- 1 | # locally computed hash 2 | sha256 1939627d5358d1da62bc6158d63f7ed12905552f3a799c799ee90296a7612944 wavpack-5.1.0.tar.bz2 3 | -------------------------------------------------------------------------------- /package/x11r7/mcookie/Config.in: -------------------------------------------------------------------------------- 1 | config BR2_PACKAGE_MCOOKIE 2 | bool "mcookie" 3 | help 4 | cookie generator for X server 5 | 6 | http://www.x.org 7 | -------------------------------------------------------------------------------- /package/x11r7/xapp_xwud/Config.in: -------------------------------------------------------------------------------- 1 | config BR2_PACKAGE_XAPP_XWUD 2 | bool "xwud" 3 | select BR2_PACKAGE_XLIB_LIBX11 4 | help 5 | image displayer for X 6 | -------------------------------------------------------------------------------- /package/x11r7/xproto_damageproto/Config.in: -------------------------------------------------------------------------------- 1 | config BR2_PACKAGE_XPROTO_DAMAGEPROTO 2 | bool "damageproto" 3 | help 4 | X.Org Damage protocol headers 5 | -------------------------------------------------------------------------------- /package/x11r7/xproto_recordproto/Config.in: -------------------------------------------------------------------------------- 1 | config BR2_PACKAGE_XPROTO_RECORDPROTO 2 | bool "recordproto" 3 | help 4 | X.Org Record protocol headers 5 | -------------------------------------------------------------------------------- /package/x11r7/xproto_renderproto/Config.in: -------------------------------------------------------------------------------- 1 | config BR2_PACKAGE_XPROTO_RENDERPROTO 2 | bool "renderproto" 3 | help 4 | X.Org Render protocol headers 5 | -------------------------------------------------------------------------------- /package/x11r7/xproto_xcmiscproto/Config.in: -------------------------------------------------------------------------------- 1 | config BR2_PACKAGE_XPROTO_XCMISCPROTO 2 | bool "xcmiscproto" 3 | help 4 | X.Org XCMisc protocol headers 5 | -------------------------------------------------------------------------------- /package/xavante/xavante.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 67c738f981e7d65d18c717f3acac59a37f95d5139c00fb0de5d3167262025273 xavante-2.4.0-1.src.rock 3 | -------------------------------------------------------------------------------- /package/xinetd/xinetd.hash: -------------------------------------------------------------------------------- 1 | # locally computed 2 | sha256 620b25f4ab4d72fdf32b13797156ea40df2049f1c07e640177e5fec544e9a94c xinetd-xinetd-2-3-15.tar.gz 3 | -------------------------------------------------------------------------------- /board/pc/grub-bios.cfg: -------------------------------------------------------------------------------- 1 | set default="0" 2 | set timeout="5" 3 | 4 | menuentry "Buildroot" { 5 | linux /boot/bzImage root=/dev/sda1 rootwait console=tty1 6 | } 7 | -------------------------------------------------------------------------------- /boot/afboot-stm32/afboot-stm32.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 dbd715c8b99f7d266f74a04707a4dac76b75b31321f24dee5256a6348260530c afboot-stm32-v0.1.tar.gz 3 | -------------------------------------------------------------------------------- /boot/at91bootstrap/at91bootstrap.hash: -------------------------------------------------------------------------------- 1 | # locally computed 2 | sha256 d66192a274247f4baa39fa932eadf903d7add55641d89d30402f967c4f2282a5 AT91Bootstrap1.16.zip 3 | -------------------------------------------------------------------------------- /boot/grub2/grub.cfg: -------------------------------------------------------------------------------- 1 | set default="0" 2 | set timeout="5" 3 | 4 | menuentry "Buildroot" { 5 | linux /boot/bzImage root=/dev/sda1 rootwait console=tty1 6 | } 7 | -------------------------------------------------------------------------------- /docs/website/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpunk/buildroot/pluto/docs/website/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /package/acpica/acpica.hash: -------------------------------------------------------------------------------- 1 | # locally computed hash 2 | sha256 0b979b778bcf711a2b8702b1831affd7dac4a776235d7877fd185651b6a390a3 acpica-unix2-20170531.tar.gz 3 | -------------------------------------------------------------------------------- /package/alljoyn-tcl/alljoyn-tcl.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 da13614a9db79067937b744a87328fed84d99ba62e3de19b0ddc4a83e4b2447e ajtcl-16.04.00a-src.tar.gz 3 | -------------------------------------------------------------------------------- /package/bellagio/bellagio.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 593c0729c8ef8c1467b3bfefcf355ec19a46dd92e31bfc280e17d96b0934d74c libomxil-bellagio-0.9.3.tar.gz 3 | -------------------------------------------------------------------------------- /package/cannelloni/cannelloni.hash: -------------------------------------------------------------------------------- 1 | # Locally computed 2 | sha256 fe5abb1c9e523049c48dd906603bc762cc55ccd20c16dbec7dc64163b9eefccf cannelloni-20160414.tar.gz 3 | -------------------------------------------------------------------------------- /package/connman-gtk/connman-gtk.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 49bdc4769a7c508b0130e4705eef21aec9df1ea4f5c29fee48a0cae8db828fca connman-gtk-1.1.1.tar.bz2 3 | -------------------------------------------------------------------------------- /package/coxpcall/coxpcall.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 c1488ee08e5d25d59a11e19cb0322edae509202b246d0c93cb2de1676dbfdf2b coxpcall-1.16.0-1.src.rock 3 | -------------------------------------------------------------------------------- /package/drbd-utils/drbd-utils.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 11299b555b703440ef0af2c74b69cf6dfb833e050b87cfdc3b93d0b71d8820a6 drbd-utils-9.2.0.tar.gz 3 | -------------------------------------------------------------------------------- /package/efibootmgr/efibootmgr.hash: -------------------------------------------------------------------------------- 1 | # locally computed hash 2 | sha256 3f260491e2c62e93cb6347ea6f21aaa5f93152e9e7f0269d314623769d82e473 efibootmgr-14.tar.gz 3 | -------------------------------------------------------------------------------- /package/exfat-utils/exfat-utils.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 b96b6692cf92a629c9eca0fe8c782646e20479524c7d2a99b7e9b43c3cf8ac43 exfat-utils-1.2.6.tar.gz 3 | -------------------------------------------------------------------------------- /package/f2fs-tools/f2fs-tools.hash: -------------------------------------------------------------------------------- 1 | # Locally computed 2 | sha256 aefd2a67e8ddf9db92145dde41b4a697d1c498ff2e113fbfd26ce1efa6cc3f2d f2fs-tools-v1.8.0.tar.gz 3 | -------------------------------------------------------------------------------- /package/freescale-imx/imx-gpu-viv/imx-gpu-viv.hash: -------------------------------------------------------------------------------- 1 | sha256 4f93a4412c93ca5959aa2437bfed2ecbaf983b5b272be5977f76a967de5db150 imx-gpu-viv-6.2.2.p0-aarch32.bin 2 | -------------------------------------------------------------------------------- /package/freescale-imx/imx-vpu/imx-vpu.hash: -------------------------------------------------------------------------------- 1 | # Locally computed 2 | sha256 ee265e88d17c7369bd9cb917e7cce035b8c7ee2ba4491645fdab9f382f54beb0 imx-vpu-5.4.37.bin 3 | -------------------------------------------------------------------------------- /package/gadgetfs-test/gadgetfs-test.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 bd8ebcf7ce86f4b022a4e7ba6b1cc16ffc4022bb58c1910fe4ac96c88217e7ec gadgetfs-test.tar.bz2 3 | -------------------------------------------------------------------------------- /package/gnuchess/gnuchess.hash: -------------------------------------------------------------------------------- 1 | # sha256 locally computed 2 | sha256 3c425c0264f253fc5cc2ba969abe667d77703c728770bd4b23c456cbe5e082ef gnuchess-6.2.4.tar.gz 3 | -------------------------------------------------------------------------------- /package/gstreamer/gst-dsp/gst-dsp.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 45437a038979916de74e78a2cc7a0b01ba3982d0848e1e483a054c9cf0ce5883 gst-dsp-v0.10.2.tar.gz 3 | -------------------------------------------------------------------------------- /package/gutenprint/gutenprint.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 c1a34cd2e02527de4d2a9bf6c14732cb9aa11b333f771eb6043fdc974de24df9 gutenprint-5.2.11.tar.bz2 3 | -------------------------------------------------------------------------------- /package/irda-utils/irda-utils.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 61980551e46b2eaa9e17ad31cbc1a638074611fc33bff34163d10c7a67a9fdc6 irda-utils-0.9.18.tar.gz 3 | -------------------------------------------------------------------------------- /package/irqbalance/irqbalance.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 f1b8115948bb9f0bc36b9d7143ee8be751a294bc189d311408e753acc37169c3 irqbalance-v1.0.9.tar.gz 3 | -------------------------------------------------------------------------------- /package/jasper/Config.in: -------------------------------------------------------------------------------- 1 | config BR2_PACKAGE_JASPER 2 | bool "jasper" 3 | help 4 | JPEG-2000 decoder 5 | 6 | http://www.ece.uvic.ca/~mdadams/jasper/ 7 | -------------------------------------------------------------------------------- /package/keepalived/keepalived.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 c0114d86ea4c896557beb0d9367819a423ffba772bc5d7c548dc455e6b3bd048 keepalived-1.3.5.tar.gz 3 | -------------------------------------------------------------------------------- /package/leptonica/leptonica.hash: -------------------------------------------------------------------------------- 1 | # locally computed hash 2 | sha256 29c35426a416bf454413c6fec24c24a0b633e26144a17e98351b6dffaa4a833b leptonica-1.74.4.tar.gz 3 | -------------------------------------------------------------------------------- /package/libarchive/libarchive.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 ed2dbd6954792b2c054ccf8ec4b330a54b85904a80cef477a1c74643ddafa0ce libarchive-3.3.2.tar.gz 3 | -------------------------------------------------------------------------------- /package/libargtable2/libargtable2.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 8f77e8a7ced5301af6e22f47302fdbc3b1ff41f2b83c43c77ae5ca041771ddbf argtable2-13.tar.gz 3 | -------------------------------------------------------------------------------- /package/libatasmart/libatasmart.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 61f0ea345f63d28ab2ff0dc352c22271661b66bf09642db3a4049ac9dbdb0f8d libatasmart-0.19.tar.xz 3 | -------------------------------------------------------------------------------- /package/libeXosip2/libeXosip2.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 91da1a084c9ab663afe04b493342e075ad59ac54a1af011c7f2ba4543a923564 libeXosip2-3.6.0.tar.gz 3 | -------------------------------------------------------------------------------- /package/libid3tag/libid3tag.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 63da4f6e7997278f8a3fef4c6a372d342f705051d1eeb6a46a86b03610e26151 libid3tag-0.15.1b.tar.gz 3 | -------------------------------------------------------------------------------- /package/libmatroska/libmatroska.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 d3efaa9f6d3964351a05bea0f848a8d5dc570e4791f179816ce9a93730296bd7 libmatroska-1.4.4.tar.bz2 3 | -------------------------------------------------------------------------------- /package/libmodplug/libmodplug.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 77462d12ee99476c8645cb5511363e3906b88b33a6b54362b4dbc0f39aa2daad libmodplug-0.8.8.5.tar.gz 3 | -------------------------------------------------------------------------------- /package/libseccomp/libseccomp.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 09864282ae579c34bd5ef75ef3487200adfecaa51f5cffc7c7ad1ed2f89f5d6c libseccomp-v2.3.1.tar.gz 3 | -------------------------------------------------------------------------------- /package/libstrophe/libstrophe.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 08f4a85ef419a8bdf08b6afa8f7b2a0e5e180fdc9c16cede81af672ec10e21e7 libstrophe-0.8.8.tar.gz 3 | -------------------------------------------------------------------------------- /package/libtasn1/Config.in: -------------------------------------------------------------------------------- 1 | config BR2_PACKAGE_LIBTASN1 2 | bool "libtasn1" 3 | help 4 | ASN.1 library 5 | 6 | http://www.gnu.org/software/libtasn1 7 | -------------------------------------------------------------------------------- /package/libtorrent/libtorrent.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 2838a08c96edfd936aff8fbf99ecbb930c2bfca3337dd1482eb5fccdb80d5a04 libtorrent-0.13.6.tar.gz 3 | -------------------------------------------------------------------------------- /package/linux-fusion/linux-fusion.hash: -------------------------------------------------------------------------------- 1 | # Locally computed 2 | sha256 c3c71af364ef774c70d3f6fbc32d14bc786d915df633d6fe733e1fde84ad6e99 linux-fusion-9.0.3.tar.xz 3 | -------------------------------------------------------------------------------- /package/liquid-dsp/liquid-dsp.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 b136343d644bc1441f7854f2d292bfa054e8d040c0b745879b205f6836dca0f0 liquid-dsp-v1.3.0.tar.gz 3 | -------------------------------------------------------------------------------- /package/lua-basexx/lua-basexx.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 ff5379b1f5b396103b8bb589ab3dd94d0a727c8e7a48dcfe1c73e2f07af6a8df basexx-0.4.0-1.src.rock 3 | -------------------------------------------------------------------------------- /package/lua-cjson/lua-cjson.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 db7af849c555d1a474f729fe4a56b5530e9be7b24749eb7a7c474a7c7207b972 lua-cjson-2.1.0-1.src.rock 3 | -------------------------------------------------------------------------------- /package/lua-sdl2/lua-sdl2.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 cee7875106062fbc00cf8acb3b2738e336e2327df73ede011968cb060c094bfb lua-sdl2-v2.0.5-6.0.tar.gz 3 | -------------------------------------------------------------------------------- /package/lua-stdlib/lua-stdlib.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 b7302ecc8ea3992d3bad96c0c4d56272e38d786d16cc1ad5964fefa73fd7c10b stdlib-41.2.1-1.src.rock 3 | -------------------------------------------------------------------------------- /package/luacrypto/luacrypto.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 dc935c923b8851208d5d504b343448a9d5bd3e537bb8657875f12d72155600b8 luacrypto-0.3.2-1.src.rock 3 | -------------------------------------------------------------------------------- /package/luasocket/luasocket.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 453fc1d0e9b6a44bbada4290d565f840a5e96ba2d1b47562ba38bd9c7e82195a luasocket-3.0rc1-1.src.rock 3 | -------------------------------------------------------------------------------- /package/memstat/memstat.hash: -------------------------------------------------------------------------------- 1 | # From http://sourceforge.net/projects/memstattool/files/ 2 | sha1 26071dbc30a2796c0503c7d8060a548ca36f8df9 memstat_1.0.tar.gz 3 | -------------------------------------------------------------------------------- /package/micropython/micropython.hash: -------------------------------------------------------------------------------- 1 | #locally computed 2 | sha256 55dd751c4c812809841fd06f4729b8341171c4b6c1dc28a9412455282554f8a5 micropython-v1.8.7.tar.gz 3 | -------------------------------------------------------------------------------- /package/mpc/mpc.hash: -------------------------------------------------------------------------------- 1 | # From http://www.multiprecision.org/index.php?prog=mpc&page=download 2 | sha1 b8be66396c726fdc36ebb0f692ed8a8cca3bcc66 mpc-1.0.3.tar.gz 3 | -------------------------------------------------------------------------------- /package/netstat-nat/netstat-nat.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 e945faa283a49f33af15de915a949c9273a230fc17154925364c547adab676ca netstat-nat-1.4.10.tar.gz 3 | -------------------------------------------------------------------------------- /package/nginx-naxsi/nginx-naxsi.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 0b3c95d250772dc89ad8b49e47c1e024c5ae2c76c0cffa445e9fe05c4dd13495 nginx-naxsi-0.55.3.tar.gz 3 | -------------------------------------------------------------------------------- /package/ntfs-3g/ntfs-3g.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 3e5a021d7b761261836dcb305370af299793eedbded731df3d6943802e1262d5 ntfs-3g_ntfsprogs-2017.3.23.tgz 3 | -------------------------------------------------------------------------------- /package/ocf-linux/ocf-linux.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 5113609d2c2c43fde962bec1238fe5a81211a751ebb0337b54a9804d40cfef53 ocf-linux-20120127.tar.gz 3 | -------------------------------------------------------------------------------- /package/openpgm/openpgm.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 ecd48fd0bcfd8351ce6dcf31b063dd8fe83d3dab41bca62a6ebd6880a88c4a69 openpgm-release-5-2-122.tar.gz 3 | -------------------------------------------------------------------------------- /package/opkg-utils/opkg-utils.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 c14284d999cdd18fee4c6b22720f38beee962b2c8e099166d8d55d76a2111beb opkg-utils-0.3.4.tar.gz 3 | -------------------------------------------------------------------------------- /package/php-memcached/php-memcached.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 5d1c29a1d5e391d6bb7b736a07e063d2f0834800673dd246d64ce1b73e47645d memcached-3.0.3.tgz 3 | -------------------------------------------------------------------------------- /package/protobuf-c/protobuf-c.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 fd8f6f5d6927330cf2b8b4ec8332de8b1ee2b8f2480b52ee3f221aad6de2082c protobuf-c-v1.3.0.tar.gz 3 | -------------------------------------------------------------------------------- /package/python-see/Config.in: -------------------------------------------------------------------------------- 1 | config BR2_PACKAGE_PYTHON_SEE 2 | bool "python-see" 3 | help 4 | dir for humans. 5 | 6 | https://ljcooke.github.io/see/ 7 | -------------------------------------------------------------------------------- /package/python-toml/python-toml.hash: -------------------------------------------------------------------------------- 1 | # Locally computed 2 | sha256 633a90ecb1f5665b58f0c94153fcf519313ef53e1de0eac90929cd6b6a014235 python-toml-0.9.3.tar.gz 3 | -------------------------------------------------------------------------------- /package/rabbitmq-c/rabbitmq-c.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 d8ed9dcb49903d83d79d7b227da35ef68c60e5e0b08d0fc1fb4e4dc577b8802b rabbitmq-c-v0.8.0.tar.gz 3 | -------------------------------------------------------------------------------- /package/sdl2_image/sdl2_image.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 3a3eafbceea5125c04be585373bfd8b3a18f259bd7eae3efc4e6d8e60e0d7f64 SDL2_image-2.0.1.tar.gz 3 | -------------------------------------------------------------------------------- /package/sdl2_mixer/sdl2_mixer.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 5a24f62a610249d744cbd8d28ee399d8905db7222bf3bdbc8a8b4a76e597695f SDL2_mixer-2.0.1.tar.gz 3 | -------------------------------------------------------------------------------- /package/sphinxbase/sphinxbase.hash: -------------------------------------------------------------------------------- 1 | # Locally computed 2 | sha256 06971dbe272d2f73bde0ef7b3538c0c8f8ea885cb171fd6b17a5975bced66e64 sphinxbase-5prealpha.tar.gz 3 | -------------------------------------------------------------------------------- /package/spi-tools/spi-tools.hash: -------------------------------------------------------------------------------- 1 | # locally computed hash 2 | sha256 72a6c4a9d13011addc61bc3906543cd06f76f567270ae4b6ca4d0115fd6a9538 spi-tools-0.8.1.tar.gz 3 | -------------------------------------------------------------------------------- /package/squeezelite/squeezelite.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 0c844e7714d3f15325629c59ee75e6309763116e61a6b73486b502e2e5cce5fd squeezelite-v1.8.tar.gz 3 | -------------------------------------------------------------------------------- /package/supertux/supertux.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 c9dc3b42991ce5c5d0d0cb94e44c4ec2373ad09029940f0e92331e7e9ada0ac5 SuperTux-v0.5.1-Source.tar.gz 3 | -------------------------------------------------------------------------------- /package/synergy/synergy.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 85c388f93881d741981ce3c675e840a52a76883cb2cea1da306c0c453c5d7d9b synergy-v1.8.8-stable.tar.gz 3 | -------------------------------------------------------------------------------- /package/thrift/thrift.hash: -------------------------------------------------------------------------------- 1 | # From https://www.apache.org/dist/thrift/0.9.2/thrift-0.9.2.tar.gz.md5 2 | md5 89f63cc4d0100912f4a1f8a9dee63678 thrift-0.9.2.tar.gz 3 | -------------------------------------------------------------------------------- /package/uboot-tools/uboot-tools.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 938f597394b33e82e5af8c98bd5ea1a238f61892aabef36384adbf7ca5b52dda u-boot-2018.01.tar.bz2 3 | -------------------------------------------------------------------------------- /package/x11r7/xapp_xmag/Config.in: -------------------------------------------------------------------------------- 1 | config BR2_PACKAGE_XAPP_XMAG 2 | bool "xmag" 3 | select BR2_PACKAGE_XLIB_LIBXAW 4 | help 5 | X.Org xmag application 6 | -------------------------------------------------------------------------------- /package/x11r7/xapp_xset/Config.in: -------------------------------------------------------------------------------- 1 | config BR2_PACKAGE_XAPP_XSET 2 | bool "xset" 3 | select BR2_PACKAGE_XLIB_LIBXMU 4 | help 5 | X.Org xset application 6 | -------------------------------------------------------------------------------- /package/x11r7/xcb-util/xcb-util.hash: -------------------------------------------------------------------------------- 1 | # locally computed 2 | sha256 c611259c0ab20fd76f79f48f4684843c18ea9c967eba78a45e8b3636315c18c4 xcb-util-0.3.9.tar.bz2 3 | -------------------------------------------------------------------------------- /package/x11r7/xproto_bigreqsproto/Config.in: -------------------------------------------------------------------------------- 1 | config BR2_PACKAGE_XPROTO_BIGREQSPROTO 2 | bool "bigreqsproto" 3 | help 4 | X.Org BigReqs protocol headers 5 | -------------------------------------------------------------------------------- /package/x11r7/xproto_resourceproto/Config.in: -------------------------------------------------------------------------------- 1 | config BR2_PACKAGE_XPROTO_RESOURCEPROTO 2 | bool "resourceproto" 3 | help 4 | X.Org Resource protocol headers 5 | -------------------------------------------------------------------------------- /package/x11r7/xproto_windowswmproto/Config.in: -------------------------------------------------------------------------------- 1 | config BR2_PACKAGE_XPROTO_WINDOWSWMPROTO 2 | bool "windowswmproto" 3 | help 4 | No description available 5 | -------------------------------------------------------------------------------- /package/x11r7/xproto_xf86dgaproto/Config.in: -------------------------------------------------------------------------------- 1 | config BR2_PACKAGE_XPROTO_XF86DGAPROTO 2 | bool "xf86dgaproto" 3 | help 4 | X.Org XF86DGA protocol headers 5 | -------------------------------------------------------------------------------- /package/x11r7/xproto_xf86driproto/Config.in: -------------------------------------------------------------------------------- 1 | config BR2_PACKAGE_XPROTO_XF86DRIPROTO 2 | bool "xf86driproto" 3 | help 4 | X.Org XF86DRI protocol headers 5 | -------------------------------------------------------------------------------- /package/x11r7/xproto_xineramaproto/Config.in: -------------------------------------------------------------------------------- 1 | config BR2_PACKAGE_XPROTO_XINERAMAPROTO 2 | bool "xineramaproto" 3 | help 4 | X.Org Xinerama protocol headers 5 | -------------------------------------------------------------------------------- /package/xdotool/xdotool.hash: -------------------------------------------------------------------------------- 1 | # locally computed hash 2 | sha256 b097ef0e3897d1a24e3f45f0faed58329742d3d9434b9b46eb97eb1040f999bf xdotool-v3.20150503.1.tar.gz 3 | -------------------------------------------------------------------------------- /package/zip/zip.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated from download (no sig, hash) 2 | sha256 f0e8bb1f9b7eb0b01285495a2699df3a4b766784c1765a8f1aeedf63c0806369 zip30.tgz 3 | -------------------------------------------------------------------------------- /docs/manual/download-infra.txt: -------------------------------------------------------------------------------- 1 | // -*- mode:doc; -*- 2 | // vim: set syntax=asciidoc: 3 | 4 | [[download-infra]] 5 | 6 | == Download infrastructure 7 | 8 | TODO 9 | -------------------------------------------------------------------------------- /fs/iso9660/grub.cfg: -------------------------------------------------------------------------------- 1 | set default="0" 2 | set timeout="10" 3 | 4 | menuentry "Buildroot" { 5 | linux __KERNEL_PATH__ root=/dev/sr0 6 | initrd __INITRD_PATH__ 7 | } 8 | -------------------------------------------------------------------------------- /package/alljoyn-base/alljoyn-base.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 742f724b3a06c8fc4039591dba24871755728221ca5dc4afb78ebd9a7e3beb44 alljoyn-base-16.04.00.tar.gz 3 | -------------------------------------------------------------------------------- /package/bcache-tools/bcache-tools.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 d56923936f37287efc57a46315679102ef2c86cd0be5874590320acd48c1201c bcache-tools-v1.0.8.tar.gz 3 | -------------------------------------------------------------------------------- /package/c-ares/Config.in: -------------------------------------------------------------------------------- 1 | config BR2_PACKAGE_C_ARES 2 | bool "c-ares" 3 | help 4 | C library for asynchronous DNS requests. 5 | 6 | http://c-ares.haxx.se/ 7 | -------------------------------------------------------------------------------- /package/c-periphery/c-periphery.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 c6cfaae7496ff6500b747106571de6b4ca7d80a383297e592ffcfa3413b66321 c-periphery-v1.1.1.tar.gz 3 | -------------------------------------------------------------------------------- /package/comix-cursors/comix-cursors.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 3109e4d19d930a6a2a5c3422ebaaa2002640169118f9b12c042bb64995f3ec31 ComixCursors-0.8.2.tar.bz2 3 | -------------------------------------------------------------------------------- /package/cups-filters/cups-filters.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 95254d7950df4c74d293ed7dfa0b714f51cff329a82da74a4ac976d342bb35ab cups-filters-1.17.9.tar.gz 3 | -------------------------------------------------------------------------------- /package/erlang-jiffy/erlang-jiffy.hash: -------------------------------------------------------------------------------- 1 | # Locally computed 2 | sha256 c555726f592b79894c253ca1dc3c3aec6a5697271d29364d57f8175f387b86f3 erlang-jiffy-0.14.11.tar.gz 3 | -------------------------------------------------------------------------------- /package/erlang-lager/erlang-lager.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 c5f532dd236e07dad27976abcf12b9c90fcf33ffd6fe1b1d34639c06171c36ea erlang-lager-3.4.2.tar.gz 3 | -------------------------------------------------------------------------------- /package/erlang-rebar/erlang-rebar.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 577246bafa2eb2b2c3f1d0c157408650446884555bf87901508ce71d5cc0bd07 erlang-rebar-2.6.4.tar.gz 3 | -------------------------------------------------------------------------------- /package/font-awesome/font-awesome.hash: -------------------------------------------------------------------------------- 1 | # Locally computed 2 | sha256 de512ba0e1dead382bbfce372cde74b3f18971d876fffb635ee9333f0db05d43 font-awesome-v4.7.0.tar.gz 3 | -------------------------------------------------------------------------------- /package/freescale-imx/imx-codec/imx-codec.hash: -------------------------------------------------------------------------------- 1 | # locally computed 2 | sha256 20d3f9b4187fcd9e7007c94558a00bab1191513eee74b6f0d8c7b43f874e06ed imx-codec-4.2.1.bin 3 | -------------------------------------------------------------------------------- /package/freescale-imx/libz160/libz160.hash: -------------------------------------------------------------------------------- 1 | # locally computed 2 | sha256 08767eb269a0a30ca0aa3d3b5aa9a53a2d17ed1c24651b7e8cefc7704b883f19 libz160-bin-11.09.01.bin 3 | -------------------------------------------------------------------------------- /package/gesftpserver/gesftpserver.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 8ac1938d0f62a05799b2aeab489d6ce098c3fe53280a9b66c0957b1fdcbcbab9 sftpserver-0.2.2.tar.gz 3 | -------------------------------------------------------------------------------- /package/gmp/gmp.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated after checking pgp signature 2 | sha256 87b565e89a9a684fe4ebeeddb8399dce2599f9c9049854ca8c0dfbdea0e21912 gmp-6.1.2.tar.xz 3 | -------------------------------------------------------------------------------- /package/gsl/gsl.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated after checking pgp signature 2 | sha256 562500b789cd599b3a4f88547a7a3280538ab2ff4939504c8b4ac4ca25feadfb gsl-2.3.tar.gz 3 | -------------------------------------------------------------------------------- /package/gstreamer/gst-omapfb/gst-omapfb.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 56c719584d7a7ede5fc2053e8d1060f623b226a60672de0faba46fad646658a4 gst-omapfb-v1.0.tar.gz 3 | -------------------------------------------------------------------------------- /package/ibrdtn-tools/ibrdtn-tools.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 eab066cf15f9c322d769c6c9c58adfb474cba7d446fd12e8de5ff6344376795b ibrdtn-tools-1.0.1.tar.gz 3 | -------------------------------------------------------------------------------- /package/jquery-mobile/jquery-mobile.hash: -------------------------------------------------------------------------------- 1 | # locally computed 2 | sha256 7ed156b191dc3e262e3f450aede43adfb738ff0085afed87eb18fe4f43dfc681 jquery.mobile-1.4.3.zip 3 | -------------------------------------------------------------------------------- /package/let-me-create/let-me-create.hash: -------------------------------------------------------------------------------- 1 | # Locally computed 2 | sha256 5f42858a2062f34d2578e9cb1aed3ccb8d2409d908aa4c41a924418666d5f2bd let-me-create-v1.5.2.tar.gz 3 | -------------------------------------------------------------------------------- /package/libcdaudio/libcdaudio.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 5fdaf9af5ac4f75c0215d000b82b128fd054a582f81cc4f039a1e7fe69335ebb libcdaudio-0.99.12p2.tar.gz 3 | -------------------------------------------------------------------------------- /package/libfastjson/libfastjson.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 03ef63dcc88417e71c19ce4436804159e3397e3a20d3529efef6a43c3bef5c8d libfastjson-v0.99.4.tar.gz 3 | -------------------------------------------------------------------------------- /package/libhdhomerun/libhdhomerun.hash: -------------------------------------------------------------------------------- 1 | # Locally computed 2 | sha256 0cb392231961fab6c226c69012503e2ebe46ac0f13512689bd37d6cf9ee838a1 libhdhomerun_20170930.tgz 3 | -------------------------------------------------------------------------------- /package/libogg/libogg.hash: -------------------------------------------------------------------------------- 1 | # From: http://www.xiph.org/downloads/ 2 | sha256 4f3fc6178a533d392064f14776b23c397ed4b9f48f5de297aba73b643f955c08 libogg-1.3.3.tar.xz 3 | -------------------------------------------------------------------------------- /package/libopenh264/libopenh264.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 65d307bf312543ad6e98ec02abb7c27d8fd2c9740fd069d7249844612674a2c7 libopenh264-v1.6.0.tar.gz 3 | -------------------------------------------------------------------------------- /package/liboping/liboping.hash: -------------------------------------------------------------------------------- 1 | # From http://noping.cc/#download 2 | sha256 44bb1d88b56b88fda5533edb3aa005c69b3cd396f20453a157d7e31e536f3530 liboping-1.9.0.tar.bz2 3 | -------------------------------------------------------------------------------- /package/libphidget/libphidget.hash: -------------------------------------------------------------------------------- 1 | # locally computed 2 | sha256 2d496828a085ada8ff139da9306bd2b8cb987798fee93caf0089dc399195e238 libphidget_2.1.8.20140319.tar.gz 3 | -------------------------------------------------------------------------------- /package/libpwquality/libpwquality.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 74d2ea90e103323c1f2d6a6cc9617cdae6877573eddb31aaf31a40f354cc2d2a libpwquality-1.3.0.tar.bz2 3 | -------------------------------------------------------------------------------- /package/libserialport/libserialport.hash: -------------------------------------------------------------------------------- 1 | # Locally computed 2 | sha256 4a2af9d9c3ff488e92fb75b4ba38b35bcf9b8a66df04773eba2a7bbf1fa7529d libserialport-0.1.1.tar.gz 3 | -------------------------------------------------------------------------------- /package/libsocketcan/libsocketcan.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 3c83e386c3fa7673141658472ae0b0e2a9f5849bf52fd9f7b22b04fd98ec7b6e libsocketcan-0.0.10.tar.bz2 3 | -------------------------------------------------------------------------------- /package/libvncserver/libvncserver.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 193d630372722a532136fd25c5326b2ca1a636cbb8bf9bb115ef869c804d2894 LibVNCServer-0.9.11.tar.gz 3 | -------------------------------------------------------------------------------- /package/ljlinenoise/ljlinenoise.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 7a6c4142b0096106f498d7ee4bea5bf5086c076d1f071893441b8e5c0665fb47 ljlinenoise-0.1.3-1.src.rock 3 | -------------------------------------------------------------------------------- /package/lm-sensors/lm-sensors.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 e0579016081a262dd23eafe1d22b41ebde78921e73a1dcef71e05e424340061f lm-sensors_3.4.0.orig.tar.bz2 3 | -------------------------------------------------------------------------------- /package/lpc3250loader/lpc3250loader.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 267de7541c92e5b007b93c660a41188976d531a3757f4ffd9b7142d3994da7d1 lpc3250loader-1.0.tar.gz 3 | -------------------------------------------------------------------------------- /package/lua-compat53/lua-compat53.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 fd0117156f59d1cb3824d5cca63be84c72cb5519b714377545433be3bb31afdf compat53-0.5-1.src.rock 3 | -------------------------------------------------------------------------------- /package/lua-csnappy/lua-csnappy.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 4fc373ba714cb8b428e9971f1725d82de6a43dfea361a0b7894e4762238dc95c lua-csnappy-0.1.5-1.src.rock 3 | -------------------------------------------------------------------------------- /package/lua-datafile/lua-datafile.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 37a33079c3476477f19de14bebd664635a39a57dd05a2709c3a402cbc1e79a6b datafile-0.4-1.src.rock 3 | -------------------------------------------------------------------------------- /package/lua-markdown/lua-markdown.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 bed84231bb48322f8e614b4392181c52c36bc71340f9273e0c3bd72dc922bc07 markdown-0.33-1.src.rock 3 | -------------------------------------------------------------------------------- /package/lualogging/lualogging.hash: -------------------------------------------------------------------------------- 1 | # Locally calculated 2 | sha256 6ca3827c4903814626b96011e17ad99b42ecfa983b605aa75bf58f17e90ed58d lualogging-1.3.0-1.src.rock 3 | -------------------------------------------------------------------------------- /package/modplugtools/modplugtools.hash: -------------------------------------------------------------------------------- 1 | # Locally computed: 2 | sha256 0122d44ea0513b928cf9d463acc886d08a2664579aa96ddeeb270d5c81193a4e modplugtools-0.5.3.tar.gz 3 | -------------------------------------------------------------------------------- /package/netperf/Config.in: -------------------------------------------------------------------------------- 1 | config BR2_PACKAGE_NETPERF 2 | bool "netperf" 3 | help 4 | Network performance benchmark tool 5 | 6 | http://www.netperf.org/ 7 | -------------------------------------------------------------------------------- /package/on2-8170-libs/on2-8170-libs.hash: -------------------------------------------------------------------------------- 1 | # locally computed 2 | sha256 db7390a13e7c0426894a6f966ecde1f89e6566416088c50729750e800306a2de on2-8170-libs-1.0.tar.gz 3 | --------------------------------------------------------------------------------