Merge branch 'next'
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
commit
cc257ee493
@ -165,8 +165,10 @@ config BR2_PRIMARY_SITE
|
||||
Primary site to download from. If this option is set then buildroot
|
||||
will try to download package source first from this site and try the
|
||||
default if the file is not found.
|
||||
Valid URIs are URIs recognized by $(WGET) and scp URIs of the form
|
||||
scp://[user@]host:path.
|
||||
Valid URIs are:
|
||||
- URIs recognized by $(WGET)
|
||||
- local URIs of the form file://absolutepath
|
||||
- scp URIs of the form scp://[user@]host:path.
|
||||
|
||||
config BR2_PRIMARY_SITE_ONLY
|
||||
bool "Only allow downloads from primary download site"
|
||||
|
@ -104,6 +104,18 @@ comment "build, or run, in unpredictable ways. "
|
||||
comment "----------------------------------------------------"
|
||||
endif
|
||||
|
||||
###############################################################################
|
||||
comment "Legacy options removed in 2016.02"
|
||||
|
||||
config BR2_PACKAGE_INFOZIP
|
||||
bool "infozip option has been renamed to zip"
|
||||
select BR2_LEGACY
|
||||
select BR2_PACKAGE_ZIP
|
||||
help
|
||||
Info-Zip's Zip package has been renamed from infozip to zip,
|
||||
to avoid ambiguities with Info-Zip's UnZip which has been added
|
||||
in the unzip package.
|
||||
|
||||
###############################################################################
|
||||
comment "Legacy options removed in 2015.11"
|
||||
|
||||
|
7
Makefile
7
Makefile
@ -818,10 +818,13 @@ ifeq ($(NEED_WRAPPER),y)
|
||||
$(Q)$(TOPDIR)/support/scripts/mkmakefile $(TOPDIR) $(O)
|
||||
endif
|
||||
|
||||
# printvars prints all the variables currently defined in our Makefiles
|
||||
# printvars prints all the variables currently defined in our
|
||||
# Makefiles. Alternatively, if a non-empty VARS variable is passed,
|
||||
# only the variables matching the make pattern passed in VARS are
|
||||
# displayed.
|
||||
printvars:
|
||||
@$(foreach V, \
|
||||
$(sort $(.VARIABLES)), \
|
||||
$(sort $(if $(VARS),$(filter $(VARS),$(.VARIABLES)),$(.VARIABLES))), \
|
||||
$(if $(filter-out environment% default automatic, \
|
||||
$(origin $V)), \
|
||||
$(info $V=$($V) ($(value $V)))))
|
||||
|
31
board/intel/galileo/genimage.cfg
Normal file
31
board/intel/galileo/genimage.cfg
Normal file
@ -0,0 +1,31 @@
|
||||
# Create an image of the efi partition
|
||||
image efi-part.vfat {
|
||||
vfat {
|
||||
file startup.nsh {
|
||||
image = "efi-part/startup.nsh"
|
||||
}
|
||||
file EFI {
|
||||
image = "efi-part/EFI"
|
||||
}
|
||||
}
|
||||
size=512K
|
||||
}
|
||||
|
||||
# Create the sdcard image, pulling in
|
||||
# * the image created by buildroot
|
||||
# * the efi-partition created above
|
||||
image sdcard.img {
|
||||
hdimage {
|
||||
}
|
||||
|
||||
partition boot {
|
||||
partition-type = 0xC
|
||||
image = "efi-part.vfat"
|
||||
}
|
||||
|
||||
partition rootfs {
|
||||
partition-type = 0x83
|
||||
image = "rootfs.ext2"
|
||||
size = 512M
|
||||
}
|
||||
}
|
11
board/intel/galileo/grub.cfg
Normal file
11
board/intel/galileo/grub.cfg
Normal file
@ -0,0 +1,11 @@
|
||||
set default="0"
|
||||
set timeout="0"
|
||||
|
||||
menuentry "Buildroot" {
|
||||
# Grub2 supports ext4, load the kernel from the Linux rootfs partition
|
||||
# Set root tells grub to search the 2nd partition for the bzImage
|
||||
set root=(hd0,msdos2)
|
||||
|
||||
# Set Linux to boot from the 2nd partition, SD/MMC support is baked into the kernel
|
||||
linux /boot/bzImage root=/dev/mmcblk0p2 rootwait console=ttyS1,115200n8 earlycon=uart8250,mmio32,0x9000b000,115200n8 reboot=efi,warm apic=debug rw
|
||||
}
|
307
board/intel/galileo/linux-3.8.config
Normal file
307
board/intel/galileo/linux-3.8.config
Normal file
@ -0,0 +1,307 @@
|
||||
CONFIG_EXPERIMENTAL=y
|
||||
# CONFIG_LOCALVERSION_AUTO is not set
|
||||
CONFIG_KERNEL_LZMA=y
|
||||
# CONFIG_SWAP is not set
|
||||
CONFIG_SYSVIPC=y
|
||||
CONFIG_POSIX_MQUEUE=y
|
||||
CONFIG_NO_HZ=y
|
||||
CONFIG_HIGH_RES_TIMERS=y
|
||||
CONFIG_BSD_PROCESS_ACCT=y
|
||||
CONFIG_IKCONFIG=y
|
||||
CONFIG_IKCONFIG_PROC=y
|
||||
CONFIG_LOG_BUF_SHIFT=18
|
||||
CONFIG_CGROUPS=y
|
||||
CONFIG_CGROUP_FREEZER=y
|
||||
CONFIG_CPUSETS=y
|
||||
CONFIG_CGROUP_CPUACCT=y
|
||||
CONFIG_RESOURCE_COUNTERS=y
|
||||
CONFIG_CGROUP_SCHED=y
|
||||
CONFIG_NAMESPACES=y
|
||||
CONFIG_RELAY=y
|
||||
CONFIG_BLK_DEV_INITRD=y
|
||||
CONFIG_RD_BZIP2=y
|
||||
CONFIG_RD_LZMA=y
|
||||
CONFIG_SYSCTL_SYSCALL=y
|
||||
CONFIG_KALLSYMS_ALL=y
|
||||
# CONFIG_PCSPKR_PLATFORM is not set
|
||||
CONFIG_EMBEDDED=y
|
||||
# CONFIG_COMPAT_BRK is not set
|
||||
CONFIG_JUMP_LABEL=y
|
||||
CONFIG_MODULES=y
|
||||
CONFIG_MODULE_UNLOAD=y
|
||||
# CONFIG_LBDAF is not set
|
||||
CONFIG_PARTITION_ADVANCED=y
|
||||
CONFIG_BSD_DISKLABEL=y
|
||||
# CONFIG_EFI_PARTITION is not set
|
||||
# CONFIG_ZONE_DMA is not set
|
||||
CONFIG_INTEL_QUARK_X1000_SOC=y
|
||||
CONFIG_M586TSC=y
|
||||
CONFIG_X86_GENERIC=y
|
||||
CONFIG_HPET_TIMER=y
|
||||
CONFIG_PREEMPT_VOLUNTARY=y
|
||||
CONFIG_X86_UP_APIC=y
|
||||
CONFIG_X86_UP_IOAPIC=y
|
||||
# CONFIG_X86_MCE_AMD is not set
|
||||
CONFIG_X86_REBOOTFIXUPS=y
|
||||
CONFIG_MICROCODE=y
|
||||
CONFIG_X86_MSR=y
|
||||
CONFIG_X86_CPUID=y
|
||||
CONFIG_HIGHMEM64G=y
|
||||
# CONFIG_COMPACTION is not set
|
||||
# CONFIG_MTRR is not set
|
||||
# CONFIG_ARCH_RANDOM is not set
|
||||
CONFIG_EFI=y
|
||||
CONFIG_EFI_STUB=y
|
||||
CONFIG_EFI_CAPSULE=m
|
||||
CONFIG_HZ_100=y
|
||||
CONFIG_KEXEC=y
|
||||
CONFIG_PHYSICAL_START=0x400000
|
||||
# CONFIG_RELOCATABLE is not set
|
||||
# CONFIG_COMPAT_VDSO is not set
|
||||
CONFIG_PM_RUNTIME=y
|
||||
CONFIG_PM_DEBUG=y
|
||||
CONFIG_PM_TRACE_RTC=y
|
||||
CONFIG_ACPI_PROCFS=y
|
||||
CONFIG_ACPI_PROCFS_POWER=y
|
||||
CONFIG_ACPI_EC_DEBUGFS=y
|
||||
# CONFIG_ACPI_PROC_EVENT is not set
|
||||
# CONFIG_ACPI_BATTERY is not set
|
||||
# CONFIG_ACPI_FAN is not set
|
||||
CONFIG_ACPI_DEBUG=y
|
||||
CONFIG_ACPI_PCI_SLOT=y
|
||||
CONFIG_PCIEPORTBUS=y
|
||||
CONFIG_PCI_MSI=y
|
||||
CONFIG_PCI_DEBUG=y
|
||||
CONFIG_PCI_IOAPIC=y
|
||||
CONFIG_NET=y
|
||||
CONFIG_PACKET=y
|
||||
CONFIG_UNIX=y
|
||||
CONFIG_INET=y
|
||||
CONFIG_SYN_COOKIES=y
|
||||
# CONFIG_IPV6_SIT is not set
|
||||
CONFIG_VLAN_8021Q=m
|
||||
CONFIG_VLAN_8021Q_GVRP=y
|
||||
CONFIG_CAN=m
|
||||
CONFIG_CAN_RAW=m
|
||||
CONFIG_CAN_BCM=m
|
||||
CONFIG_CAN_J1939=m
|
||||
CONFIG_CAN_VCAN=m
|
||||
CONFIG_CAN_SLCAN=m
|
||||
# CONFIG_CAN_DEV is not set
|
||||
CONFIG_BT=m
|
||||
CONFIG_BT_RFCOMM=m
|
||||
CONFIG_BT_RFCOMM_TTY=y
|
||||
CONFIG_BT_BNEP=m
|
||||
CONFIG_BT_BNEP_MC_FILTER=y
|
||||
CONFIG_BT_BNEP_PROTO_FILTER=y
|
||||
CONFIG_BT_HIDP=m
|
||||
CONFIG_BT_HCIBTUSB=m
|
||||
CONFIG_BT_HCIVHCI=m
|
||||
CONFIG_CFG80211=m
|
||||
CONFIG_CFG80211_WEXT=y
|
||||
CONFIG_MAC80211=m
|
||||
CONFIG_RFKILL=m
|
||||
CONFIG_RFKILL_INPUT=y
|
||||
CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug"
|
||||
CONFIG_DEVTMPFS=y
|
||||
CONFIG_DEVTMPFS_MOUNT=y
|
||||
CONFIG_DEBUG_DEVRES=y
|
||||
CONFIG_MTD=y
|
||||
CONFIG_MTD_CHAR=y
|
||||
CONFIG_MTD_BLOCK=y
|
||||
CONFIG_MTD_M25P80=y
|
||||
# CONFIG_PNP_DEBUG_MESSAGES is not set
|
||||
CONFIG_BLK_DEV_LOOP=y
|
||||
CONFIG_BLK_DEV_LOOP_MIN_COUNT=2
|
||||
CONFIG_BLK_DEV_RAM=y
|
||||
CONFIG_BLK_DEV_RAM_COUNT=1
|
||||
CONFIG_BLK_DEV_RAM_SIZE=81920
|
||||
CONFIG_EEPROM_AT24=m
|
||||
CONFIG_SCSI=y
|
||||
CONFIG_BLK_DEV_SD=y
|
||||
CONFIG_CHR_DEV_SG=y
|
||||
CONFIG_SCSI_CONSTANTS=y
|
||||
CONFIG_SCSI_SPI_ATTRS=y
|
||||
# CONFIG_SCSI_LOWLEVEL is not set
|
||||
CONFIG_NETDEVICES=y
|
||||
# CONFIG_NET_VENDOR_3COM is not set
|
||||
# CONFIG_NET_VENDOR_ADAPTEC is not set
|
||||
# CONFIG_NET_VENDOR_ALTEON is not set
|
||||
# CONFIG_NET_VENDOR_AMD is not set
|
||||
# CONFIG_NET_VENDOR_ATHEROS is not set
|
||||
# CONFIG_NET_VENDOR_BROADCOM is not set
|
||||
# CONFIG_NET_VENDOR_BROCADE is not set
|
||||
# CONFIG_NET_VENDOR_CHELSIO is not set
|
||||
# CONFIG_NET_VENDOR_CISCO is not set
|
||||
# CONFIG_NET_VENDOR_DEC is not set
|
||||
# CONFIG_NET_VENDOR_DLINK is not set
|
||||
# CONFIG_NET_VENDOR_EMULEX is not set
|
||||
# CONFIG_NET_VENDOR_EXAR is not set
|
||||
# CONFIG_NET_VENDOR_HP is not set
|
||||
CONFIG_E1000=m
|
||||
# CONFIG_NET_VENDOR_I825XX is not set
|
||||
# CONFIG_NET_VENDOR_MARVELL is not set
|
||||
# CONFIG_NET_VENDOR_MELLANOX is not set
|
||||
# CONFIG_NET_VENDOR_MICREL is not set
|
||||
# CONFIG_NET_VENDOR_MICROCHIP is not set
|
||||
# CONFIG_NET_VENDOR_MYRI is not set
|
||||
# CONFIG_NET_VENDOR_NATSEMI is not set
|
||||
# CONFIG_NET_VENDOR_NVIDIA is not set
|
||||
# CONFIG_NET_VENDOR_OKI is not set
|
||||
# CONFIG_NET_PACKET_ENGINE is not set
|
||||
# CONFIG_NET_VENDOR_QLOGIC is not set
|
||||
# CONFIG_NET_VENDOR_REALTEK is not set
|
||||
# CONFIG_NET_VENDOR_RDC is not set
|
||||
# CONFIG_NET_VENDOR_SEEQ is not set
|
||||
# CONFIG_NET_VENDOR_SILAN is not set
|
||||
# CONFIG_NET_VENDOR_SIS is not set
|
||||
# CONFIG_NET_VENDOR_SMSC is not set
|
||||
CONFIG_STMMAC_ETH=y
|
||||
# CONFIG_STMMAC_PLATFORM is not set
|
||||
CONFIG_STMMAC_PCI=y
|
||||
CONFIG_STMMAC_DA=y
|
||||
# CONFIG_NET_VENDOR_SUN is not set
|
||||
# CONFIG_NET_VENDOR_TEHUTI is not set
|
||||
# CONFIG_NET_VENDOR_TI is not set
|
||||
# CONFIG_NET_VENDOR_VIA is not set
|
||||
# CONFIG_NET_VENDOR_WIZNET is not set
|
||||
CONFIG_PPP=m
|
||||
CONFIG_PPP_DEFLATE=m
|
||||
CONFIG_PPP_ASYNC=m
|
||||
CONFIG_IWLWIFI=m
|
||||
# CONFIG_INPUT_MOUSEDEV is not set
|
||||
CONFIG_INPUT_EVDEV=m
|
||||
# CONFIG_INPUT_KEYBOARD is not set
|
||||
# CONFIG_INPUT_MOUSE is not set
|
||||
# CONFIG_SERIO is not set
|
||||
CONFIG_VT_HW_CONSOLE_BINDING=y
|
||||
CONFIG_LEGACY_PTY_COUNT=32
|
||||
CONFIG_SERIAL_NONSTANDARD=y
|
||||
CONFIG_SERIAL_8250=y
|
||||
# CONFIG_SERIAL_8250_PNP is not set
|
||||
CONFIG_SERIAL_8250_CONSOLE=y
|
||||
# CONFIG_SERIAL_8250_PCI is not set
|
||||
CONFIG_SERIAL_8250_NR_UARTS=8
|
||||
CONFIG_SERIAL_8250_RUNTIME_UARTS=2
|
||||
CONFIG_SERIAL_8250_EXTENDED=y
|
||||
CONFIG_SERIAL_8250_MANY_PORTS=y
|
||||
CONFIG_SERIAL_8250_SHARE_IRQ=y
|
||||
CONFIG_SERIAL_8250_DETECT_IRQ=y
|
||||
CONFIG_SERIAL_8250_RSA=y
|
||||
CONFIG_SERIAL_8250_DW=y
|
||||
# CONFIG_HW_RANDOM is not set
|
||||
CONFIG_HPET=y
|
||||
# CONFIG_HPET_MMAP is not set
|
||||
CONFIG_I2C_CHARDEV=y
|
||||
CONFIG_SPI_DEBUG=y
|
||||
CONFIG_SPI_GPIO=y
|
||||
CONFIG_SPI_PXA2XX=y
|
||||
CONFIG_SPI_PXA2XX_PCI=y
|
||||
CONFIG_SPI_SPIDEV=y
|
||||
CONFIG_PTP_1588_CLOCK_PCH=m
|
||||
CONFIG_GPIO_SCH=m
|
||||
CONFIG_GPIO_PCA953X=m
|
||||
CONFIG_GPIO_PCA953X_IRQ=y
|
||||
# CONFIG_HWMON is not set
|
||||
CONFIG_MFD_INTEL_QUARK_HSUART_DMA=y
|
||||
CONFIG_CY8C9540A=m
|
||||
CONFIG_MFD_PCA9685=m
|
||||
CONFIG_INTEL_QRK_GIP=m
|
||||
CONFIG_INTEL_QRK_GIP_TEST=m
|
||||
CONFIG_LPC_SCH=y
|
||||
CONFIG_MEDIA_SUPPORT=m
|
||||
CONFIG_MEDIA_CAMERA_SUPPORT=y
|
||||
CONFIG_MEDIA_USB_SUPPORT=y
|
||||
CONFIG_USB_VIDEO_CLASS=m
|
||||
# CONFIG_USB_GSPCA is not set
|
||||
# CONFIG_MEDIA_SUBDRV_AUTOSELECT is not set
|
||||
# CONFIG_DVB_AU8522_V4L is not set
|
||||
# CONFIG_DVB_TUNER_DIB0070 is not set
|
||||
# CONFIG_DVB_TUNER_DIB0090 is not set
|
||||
# CONFIG_VGA_ARB is not set
|
||||
# CONFIG_VGA_CONSOLE is not set
|
||||
CONFIG_SOUND=m
|
||||
CONFIG_SND=m
|
||||
CONFIG_SND_USB_AUDIO=m
|
||||
CONFIG_USB=m
|
||||
CONFIG_USB_EHCI_HCD=m
|
||||
CONFIG_USB_OHCI_HCD=m
|
||||
CONFIG_USB_UHCI_HCD=m
|
||||
CONFIG_USB_ACM=m
|
||||
CONFIG_USB_STORAGE=m
|
||||
CONFIG_USB_SERIAL=m
|
||||
CONFIG_USB_SERIAL_GENERIC=y
|
||||
CONFIG_USB_SERIAL_PL2303=m
|
||||
CONFIG_USB_GADGET=m
|
||||
CONFIG_USB_EG20T=m
|
||||
CONFIG_USB_ZERO=m
|
||||
CONFIG_USB_ETH=m
|
||||
CONFIG_USB_MASS_STORAGE=m
|
||||
CONFIG_USB_G_SERIAL=m
|
||||
CONFIG_USB_G_ACM_MS=m
|
||||
CONFIG_MMC=y
|
||||
CONFIG_MMC_UNSAFE_RESUME=y
|
||||
CONFIG_MMC_SDHCI=y
|
||||
CONFIG_MMC_SDHCI_PCI=y
|
||||
CONFIG_MMC_SDHCI_ACPI=y
|
||||
CONFIG_MMC_SDHCI_PLTFM=y
|
||||
CONFIG_RTC_CLASS=y
|
||||
CONFIG_DMADEVICES=y
|
||||
CONFIG_DW_DMAC=y
|
||||
CONFIG_UIO=y
|
||||
CONFIG_STAGING=y
|
||||
CONFIG_MAX78M6610_LMU=m
|
||||
CONFIG_IIO_SYSFS_TRIGGER=m
|
||||
CONFIG_IIO_HRTIMER_TRIGGER=m
|
||||
# CONFIG_NET_VENDOR_SILICOM is not set
|
||||
CONFIG_INTEL_QRK_ESRAM=y
|
||||
CONFIG_INTEL_QRK_THERMAL=y
|
||||
CONFIG_INTEL_QRK_AUDIO_CTRL=m
|
||||
CONFIG_INTEL_QRK_J1708=m
|
||||
# CONFIG_IOMMU_SUPPORT is not set
|
||||
CONFIG_IIO=y
|
||||
CONFIG_IIO_BUFFER_CB=y
|
||||
CONFIG_IIO_LIS331DLH_INTEL_QRK=y
|
||||
CONFIG_AD7298=m
|
||||
CONFIG_ADC1x8S102=m
|
||||
CONFIG_PWM=y
|
||||
CONFIG_EFI_VARS=m
|
||||
CONFIG_DMI_SYSFS=y
|
||||
CONFIG_EXT4_FS=y
|
||||
# CONFIG_EXT4_USE_FOR_EXT23 is not set
|
||||
CONFIG_EXT4_FS_POSIX_ACL=y
|
||||
CONFIG_EXT4_FS_SECURITY=y
|
||||
CONFIG_VFAT_FS=y
|
||||
CONFIG_PROC_KCORE=y
|
||||
CONFIG_TMPFS=y
|
||||
CONFIG_TMPFS_POSIX_ACL=y
|
||||
CONFIG_HUGETLBFS=y
|
||||
# CONFIG_MISC_FILESYSTEMS is not set
|
||||
CONFIG_NLS_DEFAULT="utf8"
|
||||
CONFIG_NLS_CODEPAGE_437=y
|
||||
CONFIG_NLS_CODEPAGE_850=y
|
||||
CONFIG_NLS_ASCII=y
|
||||
CONFIG_NLS_ISO8859_1=y
|
||||
CONFIG_PRINTK_TIME=y
|
||||
# CONFIG_ENABLE_WARN_DEPRECATED is not set
|
||||
CONFIG_FRAME_WARN=2048
|
||||
CONFIG_MAGIC_SYSRQ=y
|
||||
# CONFIG_UNUSED_SYMBOLS is not set
|
||||
CONFIG_HEADERS_CHECK=y
|
||||
# CONFIG_SCHED_DEBUG is not set
|
||||
CONFIG_TIMER_STATS=y
|
||||
CONFIG_DEBUG_MEMORY_INIT=y
|
||||
# CONFIG_FTRACE is not set
|
||||
CONFIG_DEBUG_STACKOVERFLOW=y
|
||||
CONFIG_X86_PTDUMP=y
|
||||
# CONFIG_DEBUG_RODATA_TEST is not set
|
||||
CONFIG_DEBUG_SET_MODULE_RONX=y
|
||||
# CONFIG_DOUBLEFAULT is not set
|
||||
CONFIG_DEBUG_BOOT_PARAMS=y
|
||||
CONFIG_OPTIMIZE_INLINING=y
|
||||
CONFIG_KEYS=y
|
||||
CONFIG_KEYS_DEBUG_PROC_KEYS=y
|
||||
CONFIG_SECURITY=y
|
||||
CONFIG_SECURITY_NETWORK=y
|
||||
# CONFIG_CRYPTO_HW is not set
|
||||
# CONFIG_VIRTUALIZATION is not set
|
2
board/intel/galileo/post-build.sh
Executable file
2
board/intel/galileo/post-build.sh
Executable file
@ -0,0 +1,2 @@
|
||||
#!/bin/sh -e
|
||||
cp board/intel/galileo/grub.cfg ${BINARIES_DIR}/efi-part/EFI/BOOT/grub.cfg
|
13
board/intel/galileo/post-image.sh
Executable file
13
board/intel/galileo/post-image.sh
Executable file
@ -0,0 +1,13 @@
|
||||
#!/bin/sh -e
|
||||
|
||||
GENIMAGE_CFG="board/intel/galileo/genimage.cfg"
|
||||
GENIMAGE_TMP="${BUILD_DIR}/genimage.tmp"
|
||||
|
||||
rm -rf "${GENIMAGE_TMP}"
|
||||
|
||||
genimage \
|
||||
--rootpath "${TARGET_DIR}" \
|
||||
--tmppath "${GENIMAGE_TMP}" \
|
||||
--inputpath "${BINARIES_DIR}" \
|
||||
--outputpath "${BINARIES_DIR}" \
|
||||
--config "${GENIMAGE_CFG}"
|
52
board/intel/galileo/readme.txt
Normal file
52
board/intel/galileo/readme.txt
Normal file
@ -0,0 +1,52 @@
|
||||
|
||||
Intel Galileo Gen 1/2
|
||||
|
||||
Intro
|
||||
============
|
||||
|
||||
These instructions apply to both the Intel Galileo Gen 1/2 development boards
|
||||
based on the Intel Quark X1000.
|
||||
|
||||
How to build
|
||||
============
|
||||
|
||||
Apply the defconfig for the Intel Galileo Gen 1/2
|
||||
|
||||
$ make galileo_defconfig
|
||||
|
||||
Add any additional packages required and build.
|
||||
|
||||
$ make
|
||||
|
||||
The build process will create a SD card image and place it in output/images.
|
||||
|
||||
$ ls -lh output/images/sdcard.img
|
||||
-rw-r--r--. 1 foo foo 11M Nov 17 16:19 output/images/sdcard.img
|
||||
|
||||
Write the image to an mSD card, insert into the Galileo and power on.
|
||||
|
||||
$ dd if=output/images/sdcard.img of=/dev/mmcblk0; sync
|
||||
|
||||
Accessing the console
|
||||
=====================
|
||||
|
||||
During power-on the console will become available on the Galileo's ttyS1. This
|
||||
may be accessed as follows.
|
||||
|
||||
* Galileo Gen 1
|
||||
|
||||
http://clayskits.com/products/galileo-gen-1-serial-cable
|
||||
|
||||
A USB to RS-232 to 3.5mm Jack cable is required. Connect to the 3.5mm
|
||||
Jack next to the Ethernet Header.
|
||||
|
||||
* Galileo Gen 2
|
||||
|
||||
http://www.ftdichip.com/Products/Cables/USBTTLSerial.htm
|
||||
|
||||
A FTDI TTL-232R-3V3 cable may be used to connect to the FTDI header
|
||||
next to the Ethernet connector on the Galileo Gen 2.
|
||||
|
||||
The console should now be visible at 115200 baud.
|
||||
|
||||
$ picocom -b 115200 /dev/ttyUSB0
|
33
board/intel/galileo/rootfs_overlay/etc/init.d/S09modload
Executable file
33
board/intel/galileo/rootfs_overlay/etc/init.d/S09modload
Executable file
@ -0,0 +1,33 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
|
||||
load_drivers()
|
||||
{
|
||||
while IFS= read -r line; do
|
||||
modprobe $line
|
||||
done < "/etc/modules-load.galileo/$1.conf"
|
||||
}
|
||||
|
||||
do_board()
|
||||
{
|
||||
board=$(cat /sys/devices/virtual/dmi/id/board_name)
|
||||
case "$board" in
|
||||
*"GalileoGen2" )
|
||||
load_drivers "galileo_gen2" ;;
|
||||
*"Galileo" )
|
||||
load_drivers "galileo" ;;
|
||||
esac
|
||||
}
|
||||
|
||||
case "$1" in
|
||||
start)
|
||||
do_board
|
||||
;;
|
||||
stop)
|
||||
;;
|
||||
restart|reload)
|
||||
;;
|
||||
*)
|
||||
echo "Usage: $0 {start|stop|restart}"
|
||||
exit 1
|
||||
esac
|
@ -0,0 +1,3 @@
|
||||
intel_qrk_gip
|
||||
cy8c9540a
|
||||
ad7298
|
@ -0,0 +1,4 @@
|
||||
intel_qrk_gip
|
||||
gpio-pca953x
|
||||
pca9685
|
||||
adc1x8s102
|
@ -12,7 +12,7 @@ choice
|
||||
Select the specific Barebox version you want to use
|
||||
|
||||
config BR2_TARGET_BAREBOX_LATEST_VERSION
|
||||
bool "2015.10.0"
|
||||
bool "2015.11.0"
|
||||
|
||||
config BR2_TARGET_BAREBOX_CUSTOM_VERSION
|
||||
bool "Custom version"
|
||||
@ -40,7 +40,7 @@ endif
|
||||
|
||||
config BR2_TARGET_BAREBOX_VERSION
|
||||
string
|
||||
default "2015.10.0" if BR2_TARGET_BAREBOX_LATEST_VERSION
|
||||
default "2015.11.0" if BR2_TARGET_BAREBOX_LATEST_VERSION
|
||||
default BR2_TARGET_BAREBOX_CUSTOM_VERSION_VALUE if BR2_TARGET_BAREBOX_CUSTOM_VERSION
|
||||
default "custom" if BR2_TARGET_BAREBOX_CUSTOM_TARBALL
|
||||
default BR2_TARGET_BAREBOX_CUSTOM_GIT_VERSION if BR2_TARGET_BAREBOX_CUSTOM_GIT
|
||||
|
@ -1,5 +1,5 @@
|
||||
# http://www.barebox.org/download/barebox-2015.10.0.tar.bz2.md5
|
||||
md5 50b787db3f91bebd5ed646e80a05caab barebox-2015.10.0.tar.bz2
|
||||
# http://www.barebox.org/download/barebox-2015.11.0.tar.bz2.md5
|
||||
md5 05951fa64000f5baedfc1064dbcfcad0 barebox-2015.11.0.tar.bz2
|
||||
|
||||
# Locally calculated
|
||||
sha256 8353042fe27a30a01a00fe1e1f4a34f292a291027b9637d3ea8f305387407880 barebox-2015.10.0.tar.bz2
|
||||
sha256 ea40cef0a5ef76c4d68e76ac0e5c71c758c563ffa48c08e0b284688ec6f9d422 barebox-2015.11.0.tar.bz2
|
||||
|
25
configs/galileo_defconfig
Normal file
25
configs/galileo_defconfig
Normal file
@ -0,0 +1,25 @@
|
||||
BR2_x86_x1000=y
|
||||
BR2_KERNEL_HEADERS_VERSION=y
|
||||
BR2_DEFAULT_KERNEL_VERSION="3.8"
|
||||
BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_3_8=y
|
||||
# Binutils 2.25 is required as this enables stripping the LOCK prefix
|
||||
BR2_BINUTILS_VERSION_2_25_X=y
|
||||
BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_MDEV=y
|
||||
BR2_TARGET_GENERIC_GETTY_PORT="ttyS1"
|
||||
BR2_TARGET_GENERIC_GETTY_BAUDRATE_115200=y
|
||||
BR2_ROOTFS_OVERLAY="board/intel/galileo/rootfs_overlay"
|
||||
BR2_ROOTFS_POST_BUILD_SCRIPT="board/intel/galileo/post-build.sh"
|
||||
BR2_ROOTFS_POST_IMAGE_SCRIPT="board/intel/galileo/post-image.sh"
|
||||
BR2_LINUX_KERNEL=y
|
||||
BR2_LINUX_KERNEL_CUSTOM_GIT=y
|
||||
BR2_LINUX_KERNEL_CUSTOM_REPO_URL="https://github.com/mdr78/Linux-x1000.git"
|
||||
BR2_LINUX_KERNEL_CUSTOM_REPO_VERSION="d1a51d55dc67022be6c2d15163ce6dd28540042f"
|
||||
BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
|
||||
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="board/intel/galileo/linux-3.8.config"
|
||||
BR2_LINUX_KERNEL_INSTALL_TARGET=y
|
||||
BR2_TARGET_ROOTFS_EXT2=y
|
||||
BR2_TARGET_ROOTFS_EXT2_4=y
|
||||
BR2_TARGET_GRUB2=y
|
||||
BR2_TARGET_GRUB2_I386_EFI=y
|
||||
BR2_PACKAGE_HOST_GENIMAGE=y
|
||||
BR2_PACKAGE_HOST_MTOOLS=y
|
@ -36,7 +36,7 @@ BR2_TARGET_ROOTFS_EXT2_4=y
|
||||
BR2_TARGET_UBOOT=y
|
||||
BR2_TARGET_UBOOT_BOARDNAME="A20-OLinuXino-Lime"
|
||||
BR2_TARGET_UBOOT_CUSTOM_VERSION=y
|
||||
BR2_TARGET_UBOOT_CUSTOM_VERSION_VALUE="2015.07"
|
||||
BR2_TARGET_UBOOT_CUSTOM_VERSION_VALUE="2015.10"
|
||||
BR2_TARGET_UBOOT_NEEDS_DTC=y
|
||||
BR2_TARGET_UBOOT_FORMAT_BIN=y
|
||||
BR2_TARGET_UBOOT_SPL=y
|
||||
|
@ -21,13 +21,13 @@ BR2_TARGET_UBOOT_FORMAT_IMX=y
|
||||
|
||||
# kernel headers
|
||||
BR2_KERNEL_HEADERS_VERSION=y
|
||||
BR2_DEFAULT_KERNEL_VERSION="4.2.3"
|
||||
BR2_DEFAULT_KERNEL_VERSION="4.2.6"
|
||||
BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_2=y
|
||||
|
||||
# kernel
|
||||
BR2_LINUX_KERNEL=y
|
||||
BR2_LINUX_KERNEL_CUSTOM_VERSION=y
|
||||
BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="4.2.3"
|
||||
BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="4.2.6"
|
||||
BR2_LINUX_KERNEL_DEFCONFIG="imx_v6_v7"
|
||||
BR2_LINUX_KERNEL_UIMAGE_LOADADDR="0x10008000"
|
||||
BR2_LINUX_KERNEL_DTS_SUPPORT=y
|
||||
|
@ -21,6 +21,7 @@ menu "Audio and video applications"
|
||||
source "package/kodi/Config.in"
|
||||
source "package/lame/Config.in"
|
||||
source "package/madplay/Config.in"
|
||||
source "package/miraclecast/Config.in"
|
||||
source "package/mjpegtools/Config.in"
|
||||
source "package/modplugtools/Config.in"
|
||||
source "package/mpd/Config.in"
|
||||
@ -51,11 +52,11 @@ menu "Compressors and decompressors"
|
||||
if BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
|
||||
source "package/gzip/Config.in"
|
||||
endif
|
||||
source "package/infozip/Config.in"
|
||||
source "package/lz4/Config.in"
|
||||
source "package/lzip/Config.in"
|
||||
source "package/lzop/Config.in"
|
||||
source "package/xz/Config.in"
|
||||
source "package/zip/Config.in"
|
||||
endmenu
|
||||
|
||||
menu "Debugging, profiling and benchmark"
|
||||
@ -88,6 +89,7 @@ endif
|
||||
source "package/mcelog/Config.in"
|
||||
source "package/memstat/Config.in"
|
||||
source "package/netperf/Config.in"
|
||||
source "package/netsniff-ng/Config.in"
|
||||
source "package/oprofile/Config.in"
|
||||
source "package/pax-utils/Config.in"
|
||||
source "package/pv/Config.in"
|
||||
@ -416,6 +418,7 @@ endif
|
||||
source "package/smartmontools/Config.in"
|
||||
source "package/smstools3/Config.in"
|
||||
source "package/snowball-hdmiservice/Config.in"
|
||||
source "package/spi-tools/Config.in"
|
||||
source "package/sredird/Config.in"
|
||||
source "package/statserial/Config.in"
|
||||
source "package/stm32flash/Config.in"
|
||||
@ -740,6 +743,7 @@ menu "Compression and decompression"
|
||||
source "package/libsquish/Config.in"
|
||||
source "package/libzip/Config.in"
|
||||
source "package/lzo/Config.in"
|
||||
source "package/minizip/Config.in"
|
||||
source "package/snappy/Config.in"
|
||||
source "package/szip/Config.in"
|
||||
source "package/zlib/Config.in"
|
||||
@ -750,6 +754,7 @@ menu "Crypto"
|
||||
source "package/botan/Config.in"
|
||||
source "package/ca-certificates/Config.in"
|
||||
source "package/cryptodev/Config.in"
|
||||
source "package/gcr/Config.in"
|
||||
source "package/gnutls/Config.in"
|
||||
source "package/libassuan/Config.in"
|
||||
source "package/libgcrypt/Config.in"
|
||||
@ -864,6 +869,7 @@ menu "Hardware handling"
|
||||
source "package/ccid/Config.in"
|
||||
source "package/dtc/Config.in"
|
||||
source "package/gnu-efi/Config.in"
|
||||
source "package/hidapi/Config.in"
|
||||
source "package/lcdapi/Config.in"
|
||||
source "package/libaio/Config.in"
|
||||
source "package/libatasmart/Config.in"
|
||||
@ -1019,6 +1025,7 @@ menu "Networking"
|
||||
source "package/libmnl/Config.in"
|
||||
source "package/libmodbus/Config.in"
|
||||
source "package/libndp/Config.in"
|
||||
source "package/libnet/Config.in"
|
||||
source "package/libnetfilter_acct/Config.in"
|
||||
source "package/libnetfilter_conntrack/Config.in"
|
||||
source "package/libnetfilter_cthelper/Config.in"
|
||||
@ -1050,6 +1057,7 @@ menu "Networking"
|
||||
source "package/libwebsockets/Config.in"
|
||||
source "package/neon/Config.in"
|
||||
source "package/nss-mdns/Config.in"
|
||||
source "package/nss-pam-ldapd/Config.in"
|
||||
source "package/omniorb/Config.in"
|
||||
source "package/openldap/Config.in"
|
||||
source "package/openpgm/Config.in"
|
||||
|
@ -219,10 +219,6 @@ HOST_CFLAGS += $(HOST_CPPFLAGS)
|
||||
HOST_CXXFLAGS += $(HOST_CFLAGS)
|
||||
HOST_LDFLAGS += -L$(HOST_DIR)/lib -L$(HOST_DIR)/usr/lib -Wl,-rpath,$(HOST_DIR)/usr/lib
|
||||
|
||||
# hostcc version as an integer - E.G. 4.3.2 => 432
|
||||
HOSTCC_VERSION := $(shell $(HOSTCC_NOCCACHE) --version | \
|
||||
sed -n 's/^.* \([0-9]*\)\.\([0-9]*\)\.\([0-9]*\)[ ]*.*$$/\1\2\3/p')
|
||||
|
||||
# host-intltool should be executed with the system perl, so we save
|
||||
# the path to the system perl, before a host-perl built by Buildroot
|
||||
# might get installed into $(HOST_DIR)/usr/bin and therefore appears
|
||||
|
29
package/alsa-lib/0001-add-missing-include.patch
Normal file
29
package/alsa-lib/0001-add-missing-include.patch
Normal file
@ -0,0 +1,29 @@
|
||||
Subject: [PATCH] topology: Add missing include sys/stat.h
|
||||
|
||||
Necessary for proper definitions of S_IRUSR & co. Otherwise it
|
||||
results in compile errors with old glibc:
|
||||
parser.c: In function 'snd_tplg_build_file':
|
||||
parser.c:262: error: 'S_IRUSR' undeclared (first use in this function)
|
||||
parser.c:262: error: (Each undeclared identifier is reported only once
|
||||
parser.c:262: error: for each function it appears in.)
|
||||
|
||||
Signed-off-by: Takashi Iwai <tiwai@suse.de>
|
||||
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
|
||||
---
|
||||
Status: upstream
|
||||
|
||||
diff --git a/src/topology/parser.c b/src/topology/parser.c
|
||||
index 80a0ae0..18bb9c7 100644
|
||||
--- a/src/topology/parser.c
|
||||
+++ b/src/topology/parser.c
|
||||
@@ -16,6 +16,7 @@
|
||||
Liam Girdwood <liam.r.girdwood@linux.intel.com>
|
||||
*/
|
||||
|
||||
+#include <sys/stat.h>
|
||||
#include "list.h"
|
||||
#include "tplg_local.h"
|
||||
|
||||
--
|
||||
1.7.11.7
|
||||
|
@ -1,2 +1,2 @@
|
||||
# Locally calculated
|
||||
sha256 73043c35eb9636be0f4af6a240235c213f12a25feb1f04aeeac8cb7e30fcbdd0 alsa-lib-1.0.29.tar.bz2
|
||||
sha256 dfde65d11e82b68f82e562ab6228c1fb7c78854345d3c57e2c68a9dd3dae1f15 alsa-lib-1.1.0.tar.bz2
|
||||
|
@ -4,7 +4,7 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
ALSA_LIB_VERSION = 1.0.29
|
||||
ALSA_LIB_VERSION = 1.1.0
|
||||
ALSA_LIB_SOURCE = alsa-lib-$(ALSA_LIB_VERSION).tar.bz2
|
||||
ALSA_LIB_SITE = ftp://ftp.alsa-project.org/pub/lib
|
||||
ALSA_LIB_LICENSE = LGPLv2.1+
|
||||
|
@ -50,6 +50,10 @@ config BR2_PACKAGE_ALSA_UTILS_APLAY
|
||||
select BR2_PACKAGE_ALSA_LIB_PCM
|
||||
bool "aplay/arecord"
|
||||
|
||||
config BR2_PACKAGE_ALSA_UTILS_BAT
|
||||
select BR2_PACKAGE_FFTW
|
||||
bool "bat"
|
||||
|
||||
config BR2_PACKAGE_ALSA_UTILS_IECSET
|
||||
select BR2_PACKAGE_ALSA_LIB_PCM
|
||||
bool "iecset"
|
||||
|
@ -1,2 +1,2 @@
|
||||
# Locally calculated
|
||||
sha256 5160058f3e14483ced5de919dd473f93932059454530a9b7ef97dcabd6833e9b alsa-utils-1.0.29.tar.bz2
|
||||
sha256 3b1c3135b76e14532d3dd23fb15759ddd7daf9ffbc183f7a9a0a3a86374748f1 alsa-utils-1.1.0.tar.bz2
|
||||
|
@ -4,7 +4,7 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
ALSA_UTILS_VERSION = 1.0.29
|
||||
ALSA_UTILS_VERSION = 1.1.0
|
||||
ALSA_UTILS_SOURCE = alsa-utils-$(ALSA_UTILS_VERSION).tar.bz2
|
||||
ALSA_UTILS_SITE = ftp://ftp.alsa-project.org/pub/utils
|
||||
ALSA_UTILS_LICENSE = GPLv2
|
||||
@ -33,12 +33,20 @@ ifneq ($(BR2_PACKAGE_ALSA_UTILS_ALSAMIXER),y)
|
||||
ALSA_UTILS_CONF_OPTS += --disable-alsamixer --disable-alsatest
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_ALSA_UTILS_BAT),y)
|
||||
ALSA_UTILS_CONF_OPTS += --enable-bat
|
||||
ALSA_UTILS_DEPENDENCIES += fftw
|
||||
else
|
||||
ALSA_UTILS_CONF_OPTS += --disable-bat
|
||||
endif
|
||||
|
||||
ALSA_UTILS_TARGETS_$(BR2_PACKAGE_ALSA_UTILS_ALSACONF) += usr/sbin/alsaconf
|
||||
ALSA_UTILS_TARGETS_$(BR2_PACKAGE_ALSA_UTILS_ALSACTL) += usr/sbin/alsactl
|
||||
ALSA_UTILS_TARGETS_$(BR2_PACKAGE_ALSA_UTILS_ALSAMIXER) += usr/bin/alsamixer
|
||||
ALSA_UTILS_TARGETS_$(BR2_PACKAGE_ALSA_UTILS_AMIDI) += usr/bin/amidi
|
||||
ALSA_UTILS_TARGETS_$(BR2_PACKAGE_ALSA_UTILS_AMIXER) += usr/bin/amixer
|
||||
ALSA_UTILS_TARGETS_$(BR2_PACKAGE_ALSA_UTILS_APLAY) += usr/bin/aplay usr/bin/arecord
|
||||
ALSA_UTILS_TARGETS_$(BR2_PACKAGE_ALSA_UTILS_BAT) += usr/bin/bat
|
||||
ALSA_UTILS_TARGETS_$(BR2_PACKAGE_ALSA_UTILS_IECSET) += usr/bin/iecset
|
||||
ALSA_UTILS_TARGETS_$(BR2_PACKAGE_ALSA_UTILS_ACONNECT) += usr/bin/aconnect
|
||||
ALSA_UTILS_TARGETS_$(BR2_PACKAGE_ALSA_UTILS_ALSAUCM) += usr/bin/alsaucm
|
||||
|
@ -1,33 +0,0 @@
|
||||
From a182f18fa3b9fb3dd817b601b51c758f9a77f407 Mon Sep 17 00:00:00 2001
|
||||
From: Marc Kleine-Budde <mkl@pengutronix.de>
|
||||
Date: Tue, 1 Dec 2009 17:08:14 +0100
|
||||
Subject: [PATCH 1/5] configure.ac: remove manual compiler check with AC_TRY_RUN
|
||||
|
||||
AC_TRY_RUN breaks cross compilation, so remove it. autotools will take
|
||||
care about a working (cross-) compiler.
|
||||
|
||||
Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
|
||||
---
|
||||
configure.ac | 6 ------
|
||||
1 files changed, 0 insertions(+), 6 deletions(-)
|
||||
|
||||
diff --git a/configure.ac b/configure.ac
|
||||
index a8c2a14..997a37f 100644
|
||||
--- a/configure.ac
|
||||
+++ b/configure.ac
|
||||
@@ -38,12 +38,6 @@ case "$host" in
|
||||
AC_MSG_RESULT(no)
|
||||
;;
|
||||
esac
|
||||
-AC_MSG_CHECKING(Trying to compile a trivial ANSI C program)
|
||||
-AC_TRY_RUN([ main(int ac, char **av) { return 0; } ],
|
||||
- AC_MSG_RESULT(yes),
|
||||
- AC_MSG_RESULT(no)
|
||||
- AC_MSG_ERROR(Could not compile and run even a trivial ANSI C program - check CC.),
|
||||
- AC_MSG_ERROR(Could not compile and run even a trivial ANSI C program - check CC.))
|
||||
|
||||
AC_MSG_CHECKING(__attribute__((noreturn)))
|
||||
AC_TRY_COMPILE([], [void __attribute__((noreturn)) panic(void);],
|
||||
--
|
||||
1.6.5.3
|
||||
|
@ -6,27 +6,30 @@ Subject: [PATCH 5/5] Makefile.in: replace IROOT by DESTDIR
|
||||
This patch replaces IROOT by DESTDIR, which is the autotools standard
|
||||
variable. For backwards compatibilty IROOT overwrites the DESTDIR.
|
||||
|
||||
Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
|
||||
---
|
||||
Makefile.in | 64 +++++++++++++++++++++++++++++++-----------------------------
|
||||
1 file changed, 34 insertions(+), 30 deletions(-)
|
||||
[Vincent: tweak the patch for the new version]
|
||||
|
||||
Index: at-3.1.13/Makefile.in
|
||||
===================================================================
|
||||
--- at-3.1.13.orig/Makefile.in
|
||||
+++ at-3.1.13/Makefile.in
|
||||
@@ -16,6 +16,10 @@ docdir = $(prefix)/doc
|
||||
atdocdir = $(docdir)/at
|
||||
Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
|
||||
Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
|
||||
---
|
||||
Makefile.in | 68 ++++++++++++++++++++++++++++++++-----------------------------
|
||||
1 file changed, 36 insertions(+), 32 deletions(-)
|
||||
|
||||
diff --git a/Makefile.in b/Makefile.in
|
||||
index 06544f9..1f699d9 100644
|
||||
--- a/Makefile.in
|
||||
+++ b/Makefile.in
|
||||
@@ -17,6 +17,10 @@ atdocdir = $(docdir)/at
|
||||
etcdir = @ETCDIR@
|
||||
systemdsystemunitdir = @systemdsystemunitdir@
|
||||
|
||||
+ifdef IROOT
|
||||
+DESTDIR = $(IROOT)
|
||||
+DESTDIR = $(DESTDIR)
|
||||
+endif
|
||||
+
|
||||
DAEMON_USERNAME = @DAEMON_USERNAME@
|
||||
DAEMON_GROUPNAME= @DAEMON_GROUPNAME@
|
||||
LOADAVG_MX = @LOADAVG_MX@
|
||||
@@ -86,38 +90,38 @@ atrun: atrun.in
|
||||
@@ -91,41 +95,41 @@ atrun: atrun.in
|
||||
$(CC) -c $(CFLAGS) $(DEFS) $*.c
|
||||
|
||||
install: all
|
||||
@ -63,15 +66,15 @@ Index: at-3.1.13/Makefile.in
|
||||
+ touch $(DESTDIR)$(LFILE)
|
||||
+ chmod 600 $(DESTDIR)$(LFILE)
|
||||
+ chown $(DAEMON_USERNAME):$(DAEMON_GROUPNAME) $(DESTDIR)$(LFILE)
|
||||
+ test -f $(DESTDIR)$(etcdir)/at.allow || test -f $(DESTDIR)$(etcdir)/at.deny || $(INSTALL) -o root -g $(DAEMON_GROUPNAME) -m 640 at.deny $(DESTDIR$
|
||||
+ $(INSTALL) -g $(DAEMON_GROUPNAME) -o $(DAEMON_USERNAME) -m 6755 -s at $(DESTDIR)$(bindir)
|
||||
+ test -f $(DESTDIR)$(etcdir)/at.allow || test -f $(DESTDIR)$(etcdir)/at.deny || $(INSTALL) -o root -g $(DAEMON_GROUPNAME) -m 640 at.deny $(DESTDIR)$(etcdir)/
|
||||
+ $(INSTALL) -g $(DAEMON_GROUPNAME) -o $(DAEMON_USERNAME) -m 6755 at $(DESTDIR)$(bindir)
|
||||
+ $(LN_S) -f at $(DESTDIR)$(bindir)/atq
|
||||
+ $(LN_S) -f at $(DESTDIR)$(bindir)/atrm
|
||||
+ $(INSTALL) -g root -o root -m 755 batch $(DESTDIR)$(bindir)
|
||||
+ $(INSTALL) -d -o root -g root -m 755 $(DESTDIR)$(man1dir)
|
||||
+ $(INSTALL) -d -o root -g root -m 755 $(DESTDIR)$(man5dir)
|
||||
+ $(INSTALL) -d -o root -g root -m 755 $(DESTDIR)$(man8dir)
|
||||
+ $(INSTALL) -g root -o root -m 755 -s atd $(DESTDIR)$(sbindir)
|
||||
+ $(INSTALL) -g root -o root -m 755 atd $(DESTDIR)$(sbindir)
|
||||
+ $(INSTALL) -g root -o root -m 755 atrun $(DESTDIR)$(sbindir)
|
||||
+ $(INSTALL) -g root -o root -m 644 at.1 $(DESTDIR)$(man1dir)/
|
||||
+ cd $(DESTDIR)$(man1dir) && $(LN_S) -f at.1 atq.1 && $(LN_S) -f at.1 batch.1 && $(LN_S) -f at.1 atrm.1
|
||||
@ -92,6 +95,14 @@ Index: at-3.1.13/Makefile.in
|
||||
+ rm -f $(DESTDIR)$(mandir)/cat1/at.1* $(DESTDIR)$(mandir)/cat1/batch.1* \
|
||||
+ $(DESTDIR)$(mandir)/cat1/atq.1*
|
||||
+ rm -f $(DESTDIR)$(mandir)/cat1/atd.8*
|
||||
if test x"$(systemdsystemunitdir)" != xno; then \
|
||||
- $(INSTALL) -o root -g root -m 755 -d $(IROOT)$(systemdsystemunitdir); \
|
||||
- $(INSTALL) -o root -g root -m 644 atd.service $(IROOT)$(systemdsystemunitdir); \
|
||||
+ $(INSTALL) -o root -g root -m 755 -d $(DESTDIR)$(systemdsystemunitdir); \
|
||||
+ $(INSTALL) -o root -g root -m 644 atd.service $(DESTDIR)$(systemdsystemunitdir); \
|
||||
fi
|
||||
|
||||
dist: checkin $(DIST) $(LIST) Filelist.asc
|
||||
(cd ..; tar cf - `for a in $(DIST) $(LIST); do echo at-$(VERSION)/$$a; done` |\
|
||||
--
|
||||
2.4.10
|
||||
|
@ -1,38 +0,0 @@
|
||||
From 8720a71757f3626bf3bbc3a7aa2185e6387e5689 Mon Sep 17 00:00:00 2001
|
||||
From: Marc Kleine-Budde <mkl@pengutronix.de>
|
||||
Date: Tue, 1 Dec 2009 20:37:31 +0100
|
||||
Subject: [PATCH 3/5] Makefile.in: add LDFLAGS to linking stage
|
||||
|
||||
The linking stage ignores the LDFLAGS, this breaks if the flex library
|
||||
lives in a non standard location.
|
||||
|
||||
This patch add LDFLAGS to both "at" and "atd" linking stage.
|
||||
|
||||
Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
|
||||
---
|
||||
Makefile.in | 4 ++--
|
||||
1 files changed, 2 insertions(+), 2 deletions(-)
|
||||
|
||||
diff --git a/Makefile.in b/Makefile.in
|
||||
index dae6b7d..b766bbb 100644
|
||||
--- a/Makefile.in
|
||||
+++ b/Makefile.in
|
||||
@@ -65,13 +65,13 @@ LIST = Filelist Filelist.asc
|
||||
all: at atd atrun
|
||||
|
||||
at: $(ATOBJECTS)
|
||||
- $(CC) $(CFLAGS) -o at $(ATOBJECTS) $(LIBS) $(LEXLIB)
|
||||
+ $(CC) $(CFLAGS) $(LDFLAGS) -o at $(ATOBJECTS) $(LIBS) $(LEXLIB)
|
||||
rm -f $(CLONES)
|
||||
$(LN_S) -f at atq
|
||||
$(LN_S) -f at atrm
|
||||
|
||||
atd: $(RUNOBJECTS)
|
||||
- $(CC) $(CFLAGS) -o atd $(RUNOBJECTS) $(LIBS) $(PAMLIB)
|
||||
+ $(CC) $(CFLAGS) $(LDFLAGS) -o atd $(RUNOBJECTS) $(LIBS) $(PAMLIB)
|
||||
|
||||
y.tab.c y.tab.h: parsetime.y
|
||||
$(YACC) -d parsetime.y
|
||||
--
|
||||
1.6.5.3
|
||||
|
@ -3,16 +3,19 @@
|
||||
Buildroot will ensure all files are owned by root and stripped anyway
|
||||
(if needed) before the rootfs is created.
|
||||
|
||||
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
|
||||
---
|
||||
Makefile.in | 39 +++++++++++++++++++--------------------
|
||||
1 file changed, 19 insertions(+), 20 deletions(-)
|
||||
[Vincent: tweak the patch for the new version]
|
||||
|
||||
Index: at-3.1.13/Makefile.in
|
||||
===================================================================
|
||||
--- at-3.1.13.orig/Makefile.in
|
||||
+++ at-3.1.13/Makefile.in
|
||||
@@ -90,35 +90,34 @@ atrun: atrun.in
|
||||
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
|
||||
Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
|
||||
---
|
||||
Makefile.in | 43 +++++++++++++++++++++----------------------
|
||||
1 file changed, 21 insertions(+), 22 deletions(-)
|
||||
|
||||
diff --git a/Makefile.in b/Makefile.in
|
||||
index 1f699d9..f313f9b 100644
|
||||
--- a/Makefile.in
|
||||
+++ b/Makefile.in
|
||||
@@ -95,41 +95,40 @@ atrun: atrun.in
|
||||
$(CC) -c $(CFLAGS) $(DEFS) $*.c
|
||||
|
||||
install: all
|
||||
@ -32,8 +35,8 @@ Index: at-3.1.13/Makefile.in
|
||||
touch $(DESTDIR)$(LFILE)
|
||||
chmod 600 $(DESTDIR)$(LFILE)
|
||||
- chown $(DAEMON_USERNAME):$(DAEMON_GROUPNAME) $(DESTDIR)$(LFILE)
|
||||
- test -f $(DESTDIR)$(etcdir)/at.allow || test -f $(DESTDIR)$(etcdir)/at.deny || $(INSTALL) -o root -g $(DAEMON_GROUPNAME) -m 640 at.deny $(DESTDIR$
|
||||
- $(INSTALL) -g $(DAEMON_GROUPNAME) -o $(DAEMON_USERNAME) -m 6755 -s at $(DESTDIR)$(bindir)
|
||||
- test -f $(DESTDIR)$(etcdir)/at.allow || test -f $(DESTDIR)$(etcdir)/at.deny || $(INSTALL) -o root -g $(DAEMON_GROUPNAME) -m 640 at.deny $(DESTDIR)$(etcdir)/
|
||||
- $(INSTALL) -g $(DAEMON_GROUPNAME) -o $(DAEMON_USERNAME) -m 6755 at $(DESTDIR)$(bindir)
|
||||
+ test -f $(DESTDIR)$(etcdir)/at.allow || test -f $(DESTDIR)$(etcdir)/at.deny || $(INSTALL) -m 640 at.deny $(DESTDIR)$(etcdir)/
|
||||
+ $(INSTALL) -m 6755 at $(DESTDIR)$(bindir)
|
||||
$(LN_S) -f at $(DESTDIR)$(bindir)/atq
|
||||
@ -42,7 +45,7 @@ Index: at-3.1.13/Makefile.in
|
||||
- $(INSTALL) -d -o root -g root -m 755 $(DESTDIR)$(man1dir)
|
||||
- $(INSTALL) -d -o root -g root -m 755 $(DESTDIR)$(man5dir)
|
||||
- $(INSTALL) -d -o root -g root -m 755 $(DESTDIR)$(man8dir)
|
||||
- $(INSTALL) -g root -o root -m 755 -s atd $(DESTDIR)$(sbindir)
|
||||
- $(INSTALL) -g root -o root -m 755 atd $(DESTDIR)$(sbindir)
|
||||
- $(INSTALL) -g root -o root -m 755 atrun $(DESTDIR)$(sbindir)
|
||||
- $(INSTALL) -g root -o root -m 644 at.1 $(DESTDIR)$(man1dir)/
|
||||
+ $(INSTALL) -m 755 batch $(DESTDIR)$(bindir)
|
||||
@ -67,3 +70,14 @@ Index: at-3.1.13/Makefile.in
|
||||
rm -f $(DESTDIR)$(mandir)/cat1/at.1* $(DESTDIR)$(mandir)/cat1/batch.1* \
|
||||
$(DESTDIR)$(mandir)/cat1/atq.1*
|
||||
rm -f $(DESTDIR)$(mandir)/cat1/atd.8*
|
||||
if test x"$(systemdsystemunitdir)" != xno; then \
|
||||
- $(INSTALL) -o root -g root -m 755 -d $(DESTDIR)$(systemdsystemunitdir); \
|
||||
- $(INSTALL) -o root -g root -m 644 atd.service $(DESTDIR)$(systemdsystemunitdir); \
|
||||
+ $(INSTALL) -m 755 -d $(DESTDIR)$(systemdsystemunitdir); \
|
||||
+ $(INSTALL) -m 644 atd.service $(DESTDIR)$(systemdsystemunitdir); \
|
||||
fi
|
||||
|
||||
dist: checkin $(DIST) $(LIST) Filelist.asc
|
||||
--
|
||||
2.4.10
|
||||
|
@ -1,4 +1,2 @@
|
||||
# From http://snapshot.debian.org/archive/debian/20141023T043132Z/pool/main/a/at/at_3.1.13-2%2Bdeb7u1.dsc
|
||||
sha1 9873e0c38403ef58364912d0b505fd20798fd400 at_3.1.13.orig.tar.gz
|
||||
sha256 3a8b90868d615d21a92f4986ea9a823886329af8fae8dd7ab4eed9b273bca072 at_3.1.13.orig.tar.gz
|
||||
md5 1da61af6c29e323abaaf13ee1a8dad79 at_3.1.13.orig.tar.gz
|
||||
# From: http://snapshot.debian.org/archive/debian/20141023T043132Z/pool/main/a/at/at_3.1.16-1.dsc
|
||||
sha256 cb9af59c6a54edce9536ba629841055409d1f89d8ae26494727a97141fb4d5c1 at_3.1.16.orig.tar.gz
|
||||
|
@ -4,7 +4,7 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
AT_VERSION = 3.1.13
|
||||
AT_VERSION = 3.1.16
|
||||
AT_SOURCE = at_$(AT_VERSION).orig.tar.gz
|
||||
AT_SITE = http://snapshot.debian.org/archive/debian/20141023T043132Z/pool/main/a/at
|
||||
# missing deps for parsetime.l
|
||||
|
@ -1,42 +0,0 @@
|
||||
From ec60c37295146bb80aa44a92cf416027b75b5ff7 Mon Sep 17 00:00:00 2001
|
||||
From: Vladimir Prus <vladimir@codesourcery.com>
|
||||
Date: Mon, 27 Apr 2015 19:12:54 +0300
|
||||
Subject: [PATCH] Remove bogus 'c3' cpu varant for SPARC.
|
||||
|
||||
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
|
||||
---
|
||||
src/tools/gcc.jam | 3 +--
|
||||
src/tools/gcc.py | 3 +--
|
||||
2 files changed, 2 insertions(+), 4 deletions(-)
|
||||
|
||||
diff --git a/src/tools/gcc.jam b/src/tools/gcc.jam
|
||||
index eff95ae..128ab84 100644
|
||||
--- a/tools/build/src/tools/gcc.jam
|
||||
+++ b/tools/build/src/tools/gcc.jam
|
||||
@@ -1138,8 +1138,7 @@ cpu-flags gcc OPTIONS : x86 : c3-2 : -march=c3-2 ;
|
||||
##
|
||||
cpu-flags gcc OPTIONS : x86 : atom : -march=atom ;
|
||||
# Sparc
|
||||
-cpu-flags gcc OPTIONS : sparc : c3 : -mcpu=c3 : default ;
|
||||
-cpu-flags gcc OPTIONS : sparc : v7 : -mcpu=v7 ;
|
||||
+cpu-flags gcc OPTIONS : sparc : v7 : -mcpu=v7 : default ;
|
||||
cpu-flags gcc OPTIONS : sparc : cypress : -mcpu=cypress ;
|
||||
cpu-flags gcc OPTIONS : sparc : v8 : -mcpu=v8 ;
|
||||
cpu-flags gcc OPTIONS : sparc : supersparc : -mcpu=supersparc ;
|
||||
diff --git a/src/tools/gcc.py b/src/tools/gcc.py
|
||||
index a13ce7a..d2d3294 100644
|
||||
--- a/tools/build/src/tools/gcc.py
|
||||
+++ b/tools/build/src/tools/gcc.py
|
||||
@@ -789,8 +789,7 @@ cpu_flags('gcc', 'OPTIONS', 'x86', 'atom', ['-march=atom'])
|
||||
# Sparc
|
||||
flags('gcc', 'OPTIONS', ['<architecture>sparc/<address-model>32'], ['-m32'])
|
||||
flags('gcc', 'OPTIONS', ['<architecture>sparc/<address-model>64'], ['-m64'])
|
||||
-cpu_flags('gcc', 'OPTIONS', 'sparc', 'c3', ['-mcpu=c3'], default=True)
|
||||
-cpu_flags('gcc', 'OPTIONS', 'sparc', 'v7', ['-mcpu=v7'])
|
||||
+cpu_flags('gcc', 'OPTIONS', 'sparc', 'v7', ['-mcpu=v7'], default=True)
|
||||
cpu_flags('gcc', 'OPTIONS', 'sparc', 'cypress', ['-mcpu=cypress'])
|
||||
cpu_flags('gcc', 'OPTIONS', 'sparc', 'v8', ['-mcpu=v8'])
|
||||
cpu_flags('gcc', 'OPTIONS', 'sparc', 'supersparc', ['-mcpu=supersparc'])
|
||||
--
|
||||
2.3.6
|
||||
|
@ -93,6 +93,10 @@ ifeq ($(BR2_sparc64),y)
|
||||
BOOST_OPTS += architecture=sparc instruction-set=ultrasparc
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_sparc),y)
|
||||
BOOST_OPTS += architecture=sparc instruction-set=v8
|
||||
endif
|
||||
|
||||
# By default, Boost build and installs both the shared and static
|
||||
# variants. Override that if we want static only or shared only.
|
||||
ifeq ($(BR2_STATIC_LIBS),y)
|
||||
|
@ -1,3 +1,3 @@
|
||||
# From http://listengine.tuxfamily.org/chrony.tuxfamily.org/chrony-announce/2014/09/msg00000.html
|
||||
md5 04ab702fc81150db06809562a9aaed92 chrony-1.31.tar.gz
|
||||
sha1 71bb46cad2f15760192795e60efdf23069973908 chrony-1.31.tar.gz
|
||||
# From http://listengine.tuxfamily.org/chrony.tuxfamily.org/chrony-announce/2015/10/msg00002.html
|
||||
md5 17bc77d3d2ce942675f9600b60452717 chrony-2.2.tar.gz
|
||||
sha1 eed81b53ef504430128a3a6fa5b56f7ee2fdf2b1 chrony-2.2.tar.gz
|
||||
|
@ -4,12 +4,17 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
CHRONY_VERSION = 1.31
|
||||
CHRONY_VERSION = 2.2
|
||||
CHRONY_SITE = http://download.tuxfamily.org/chrony
|
||||
CHRONY_LICENSE = GPLv2
|
||||
CHRONY_LICENSE_FILES = COPYING
|
||||
|
||||
CHRONY_CONF_OPTS = --host-system=Linux --host-machine=$(BR2_ARCH) --prefix=/usr
|
||||
CHRONY_CONF_OPTS = \
|
||||
--host-system=Linux \
|
||||
--host-machine=$(BR2_ARCH) \
|
||||
--prefix=/usr \
|
||||
--without-seccomp \
|
||||
--without-tomcrypt
|
||||
|
||||
ifeq ($(BR2_PACKAGE_LIBNSS),y)
|
||||
CHRONY_DEPENDENCIES += host-pkgconf libnss
|
||||
@ -23,12 +28,6 @@ else
|
||||
CHRONY_CONF_OPTS += --disable-readline
|
||||
endif
|
||||
|
||||
# Ditch the doc build, needs makeinfo and we don't need them
|
||||
define CHRONY_DISABLE_DOCS
|
||||
$(SED) 's/chronyc chrony.txt/chronyc/' $(@D)/Makefile.in
|
||||
endef
|
||||
CHRONY_POST_PATCH_HOOKS += CHRONY_DISABLE_DOCS
|
||||
|
||||
define CHRONY_CONFIGURE_CMDS
|
||||
cd $(@D) && $(TARGET_CONFIGURE_OPTS) ./configure $(CHRONY_CONF_OPTS)
|
||||
endef
|
||||
|
@ -1,2 +1,2 @@
|
||||
# From http://www.cmake.org/files/v3.3/cmake-3.3.2-SHA-256.txt
|
||||
sha256 e75a178d6ebf182b048ebfe6e0657c49f0dc109779170bad7ffcb17463f2fc22 cmake-3.3.2.tar.gz
|
||||
# From http://www.cmake.org/files/v3.4/cmake-3.4.0-SHA-256.txt
|
||||
sha256 a5b82bf6ace6c481cdb911fd5d372a302740cbefd387e05297cb37f7468d1cea cmake-3.4.0.tar.gz
|
||||
|
@ -4,8 +4,8 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
CMAKE_VERSION_MAJOR = 3.3
|
||||
CMAKE_VERSION = $(CMAKE_VERSION_MAJOR).2
|
||||
CMAKE_VERSION_MAJOR = 3.4
|
||||
CMAKE_VERSION = $(CMAKE_VERSION_MAJOR).0
|
||||
CMAKE_SITE = http://www.cmake.org/files/v$(CMAKE_VERSION_MAJOR)
|
||||
CMAKE_LICENSE = BSD-3c
|
||||
CMAKE_LICENSE_FILES = Copyright.txt
|
||||
|
@ -1,37 +0,0 @@
|
||||
From 5054d20d45571cc85339351fde52f872eeb82206 Mon Sep 17 00:00:00 2001
|
||||
From: Phil Sutter <phil@nwl.cc>
|
||||
Date: Tue, 10 Feb 2015 04:57:05 +0100
|
||||
Subject: [PATCH] fix compilation against linux-3.19
|
||||
|
||||
Commit f938612dd97d481b8b5bf960c992ae577f081c17 in linux.git removes
|
||||
get_unused_fd() macro. This patch changes the calling code to use it's
|
||||
content 'get_unused_fd_flags(0)' instead. Checking for when
|
||||
get_unused_fd_flags was introduced shows it's been there since 2.6.23 at
|
||||
least, so probably no need to make this change conditional on the target
|
||||
kernel version.
|
||||
|
||||
Original patch by Ricardo Ribalda Delgado for Open Embedded, reported by
|
||||
Oleg Rakhmanov.
|
||||
|
||||
Signed-off-by: Phil Sutter <phil@nwl.cc>
|
||||
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
|
||||
---
|
||||
ioctl.c | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/ioctl.c b/ioctl.c
|
||||
index 5a55a76..b23f5fd 100644
|
||||
--- a/ioctl.c
|
||||
+++ b/ioctl.c
|
||||
@@ -546,7 +546,7 @@ static int
|
||||
clonefd(struct file *filp)
|
||||
{
|
||||
int ret;
|
||||
- ret = get_unused_fd();
|
||||
+ ret = get_unused_fd_flags(0);
|
||||
if (ret >= 0) {
|
||||
get_file(filp);
|
||||
fd_install(ret, filp);
|
||||
--
|
||||
2.0.5
|
||||
|
@ -1,50 +0,0 @@
|
||||
From e8acc16d455876855ac3e13efa5f24f1e93a42e0 Mon Sep 17 00:00:00 2001
|
||||
From: Gustavo Zacarias <gustavo@zacarias.com.ar>
|
||||
Date: Thu, 19 Nov 2015 10:41:30 -0300
|
||||
Subject: [PATCH] Fix compilation against linux 4.3
|
||||
MIME-Version: 1.0
|
||||
Content-Type: text/plain; charset=UTF-8
|
||||
Content-Transfer-Encoding: 8bit
|
||||
|
||||
Linux Crypto API changed to using aead_request_set_ad()
|
||||
instead of aead_request_set_assoc().
|
||||
|
||||
Based on Horia Geantă's patch from
|
||||
https://mail.gna.org/public/cryptodev-linux-devel/2015-11/msg00002.html
|
||||
|
||||
However we need to version-guard the change for older versions of the
|
||||
kernel to avoid the build from breaking for them.
|
||||
|
||||
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
|
||||
---
|
||||
cryptlib.h | 6 ++++++
|
||||
1 file changed, 6 insertions(+)
|
||||
|
||||
diff --git a/cryptlib.h b/cryptlib.h
|
||||
index a0a8a63..f0c2736 100644
|
||||
--- a/cryptlib.h
|
||||
+++ b/cryptlib.h
|
||||
@@ -1,6 +1,8 @@
|
||||
#ifndef CRYPTLIB_H
|
||||
# define CRYPTLIB_H
|
||||
|
||||
+#include <linux/version.h>
|
||||
+
|
||||
struct cipher_data {
|
||||
int init; /* 0 uninitialized */
|
||||
int blocksize;
|
||||
@@ -40,7 +42,11 @@ static inline void cryptodev_cipher_auth(struct cipher_data *cdata,
|
||||
struct scatterlist *sg1, size_t len)
|
||||
{
|
||||
/* for some reason we _have_ to call that even for zero length sgs */
|
||||
+#if (LINUX_VERSION_CODE < KERNEL_VERSION(4, 3, 0))
|
||||
aead_request_set_assoc(cdata->async.arequest, len ? sg1 : NULL, len);
|
||||
+#else
|
||||
+ aead_request_set_ad(cdata->async.arequest, len);
|
||||
+#endif
|
||||
}
|
||||
|
||||
static inline void cryptodev_cipher_set_tag_size(struct cipher_data *cdata, int size)
|
||||
--
|
||||
2.4.10
|
||||
|
@ -1,2 +1,2 @@
|
||||
# Locally calculated after checking php signature
|
||||
sha256 41880533b53de4d7b3f054e230f576988dafb8eed7bef5ebcf6422bb2e3a3b25 cryptodev-linux-1.7.tar.gz
|
||||
sha256 67fabde9fb67b286a96c4f45b594b0eccd0f761b495705c18f2ae9461b831376 cryptodev-linux-1.8.tar.gz
|
||||
|
@ -4,7 +4,7 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
CRYPTODEV_LINUX_VERSION = 1.7
|
||||
CRYPTODEV_LINUX_VERSION = 1.8
|
||||
CRYPTODEV_LINUX_SITE = http://download.gna.org/cryptodev-linux
|
||||
CRYPTODEV_LINUX_INSTALL_STAGING = YES
|
||||
CRYPTODEV_LINUX_LICENSE = GPLv2+
|
||||
|
@ -1,2 +1,2 @@
|
||||
# From https://www.kernel.org/pub/linux/utils/cryptsetup/v1.6/sha256sums.asc
|
||||
sha256 45a6ccd3c65b7d904e58e1cb3656a7e997190b6a05b5ff7c6887e4a41c5f19bc cryptsetup-1.6.8.tar.xz
|
||||
# From https://www.kernel.org/pub/linux/utils/cryptsetup/v1.7/sha256sums.asc
|
||||
sha256 075524a7cc0db36d12119fa79116750accb1c6c8825d5faa2534b74b8ce3d148 cryptsetup-1.7.0.tar.xz
|
||||
|
@ -4,8 +4,8 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
CRYPTSETUP_VERSION_MAJOR = 1.6
|
||||
CRYPTSETUP_VERSION = $(CRYPTSETUP_VERSION_MAJOR).8
|
||||
CRYPTSETUP_VERSION_MAJOR = 1.7
|
||||
CRYPTSETUP_VERSION = $(CRYPTSETUP_VERSION_MAJOR).0
|
||||
CRYPTSETUP_SOURCE = cryptsetup-$(CRYPTSETUP_VERSION).tar.xz
|
||||
CRYPTSETUP_SITE = $(BR2_KERNEL_MIRROR)/linux/utils/cryptsetup/v$(CRYPTSETUP_VERSION_MAJOR)
|
||||
CRYPTSETUP_DEPENDENCIES = lvm2 popt util-linux host-pkgconf \
|
||||
|
@ -1,2 +1,2 @@
|
||||
# Locally calculated after checking pgp signature
|
||||
sha256 aef3f49595df09b0824433ee993cda748ede93693a719a831562ae1616b6bb9e dbus-1.10.2.tar.gz
|
||||
sha256 ad7dcad73ad9b0ff55819985d354eacfffe07e2eb8c763e155efc21d6001084b dbus-1.10.4.tar.gz
|
||||
|
@ -4,7 +4,7 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
DBUS_VERSION = 1.10.2
|
||||
DBUS_VERSION = 1.10.4
|
||||
DBUS_SITE = http://dbus.freedesktop.org/releases/dbus
|
||||
DBUS_LICENSE = AFLv2.1 GPLv2+
|
||||
DBUS_LICENSE_FILES = COPYING
|
||||
|
@ -1,2 +1,2 @@
|
||||
# Locally calculated from download (no sig, hash)
|
||||
sha256 6089471ed695fa62ac8351466b96b4b6365fd14ec455a120a6524663808eae53 dhcpcd-6.9.3.tar.xz
|
||||
sha256 c3f3ff7473ef158a1e71db9aea7424df2c3477ad064e2b542f27948a5abc9ba0 dhcpcd-6.9.4.tar.xz
|
||||
|
@ -4,7 +4,7 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
DHCPCD_VERSION = 6.9.3
|
||||
DHCPCD_VERSION = 6.9.4
|
||||
DHCPCD_SOURCE = dhcpcd-$(DHCPCD_VERSION).tar.xz
|
||||
DHCPCD_SITE = http://roy.marples.name/downloads/dhcpcd
|
||||
DHCPCD_DEPENDENCIES = host-pkgconf
|
||||
|
@ -1,93 +0,0 @@
|
||||
From 1205e0b50067c5ebfa082f149f0996304aa04335 Mon Sep 17 00:00:00 2001
|
||||
From: Romain Naour <romain.naour@openwide.fr>
|
||||
Date: Thu, 30 Jul 2015 16:55:45 +0200
|
||||
Subject: [PATCH] build-sys: check for mallinfo
|
||||
MIME-Version: 1.0
|
||||
Content-Type: text/plain; charset=UTF-8
|
||||
Content-Transfer-Encoding: 8bit
|
||||
|
||||
mallinfo is not specified by POSIX or the C standards, therefore
|
||||
it's not available for all libc libraries (musl).
|
||||
|
||||
Add the ability to disable mallinfo statistics.
|
||||
|
||||
Fixes:
|
||||
selinux-util.c: In function ‘mac_selinux_init’:
|
||||
selinux-util.c:70:25: error: storage size of ‘before_mallinfo’ isn’t known
|
||||
struct mallinfo before_mallinfo, after_mallinfo;
|
||||
|
||||
Signed-off-by: Romain Naour <romain.naour@openwide.fr>
|
||||
---
|
||||
configure.ac | 3 +++
|
||||
src/shared/selinux-util.c | 15 +++++++++++++++
|
||||
2 files changed, 18 insertions(+)
|
||||
|
||||
diff --git a/configure.ac b/configure.ac
|
||||
index ec23ab5..4a293b2 100644
|
||||
--- a/configure.ac
|
||||
+++ b/configure.ac
|
||||
@@ -226,6 +226,9 @@ else
|
||||
fi
|
||||
AC_SUBST(sushell)
|
||||
|
||||
+# selinux-util.c uses struct mallinfo which is not available for all C libraries (musl).
|
||||
+AC_CHECK_FUNCS([mallinfo])
|
||||
+
|
||||
# ------------------------------------------------------------------------------
|
||||
|
||||
AC_CHECK_DECL([unshare],
|
||||
diff --git a/src/shared/selinux-util.c b/src/shared/selinux-util.c
|
||||
index 756215e..4e0866b 100644
|
||||
--- a/src/shared/selinux-util.c
|
||||
+++ b/src/shared/selinux-util.c
|
||||
@@ -67,7 +67,10 @@ int mac_selinux_init(const char *prefix) {
|
||||
|
||||
#ifdef HAVE_SELINUX
|
||||
usec_t before_timestamp, after_timestamp;
|
||||
+
|
||||
+#ifdef HAVE_MALLINFO
|
||||
struct mallinfo before_mallinfo, after_mallinfo;
|
||||
+#endif
|
||||
|
||||
if (!mac_selinux_use())
|
||||
return 0;
|
||||
@@ -75,7 +78,10 @@ int mac_selinux_init(const char *prefix) {
|
||||
if (label_hnd)
|
||||
return 0;
|
||||
|
||||
+#ifdef HAVE_MALLINFO
|
||||
before_mallinfo = mallinfo();
|
||||
+#endif
|
||||
+
|
||||
before_timestamp = now(CLOCK_MONOTONIC);
|
||||
|
||||
if (prefix) {
|
||||
@@ -92,9 +98,14 @@ int mac_selinux_init(const char *prefix) {
|
||||
r = security_getenforce() == 1 ? -errno : 0;
|
||||
} else {
|
||||
char timespan[FORMAT_TIMESPAN_MAX];
|
||||
+
|
||||
+#ifdef HAVE_MALLINFO
|
||||
int l;
|
||||
+#endif
|
||||
|
||||
after_timestamp = now(CLOCK_MONOTONIC);
|
||||
+
|
||||
+#ifdef HAVE_MALLINFO
|
||||
after_mallinfo = mallinfo();
|
||||
|
||||
l = after_mallinfo.uordblks > before_mallinfo.uordblks ? after_mallinfo.uordblks - before_mallinfo.uordblks : 0;
|
||||
@@ -102,6 +113,10 @@ int mac_selinux_init(const char *prefix) {
|
||||
log_debug("Successfully loaded SELinux database in %s, size on heap is %iK.",
|
||||
format_timespan(timespan, sizeof(timespan), after_timestamp - before_timestamp, 0),
|
||||
(l+1023)/1024);
|
||||
+#else
|
||||
+ log_debug("Successfully loaded SELinux database in %s",
|
||||
+ format_timespan(timespan, sizeof(timespan), after_timestamp - before_timestamp, 0));
|
||||
+#endif
|
||||
}
|
||||
#endif
|
||||
|
||||
--
|
||||
2.4.3
|
||||
|
@ -1,69 +0,0 @@
|
||||
From 0b04a8347981ceb1030768c3002ac3c2bc0a0bf1 Mon Sep 17 00:00:00 2001
|
||||
From: Romain Naour <romain.naour@openwide.fr>
|
||||
Date: Thu, 30 Jul 2015 17:31:31 +0200
|
||||
Subject: [PATCH] build-sys: check for strndupa
|
||||
|
||||
strndupa is a GNU extension, therefore it's not available
|
||||
for all libc libraries (musl).
|
||||
|
||||
This patch is based on the one proposed by Emil Renner Berthing for
|
||||
systemd [1].
|
||||
|
||||
[1] http://lists.freedesktop.org/archives/systemd-devel/2014-September/023190.html
|
||||
|
||||
Signed-off-by: Romain Naour <romain.naour@openwide.fr>
|
||||
---
|
||||
configure.ac | 3 ++-
|
||||
src/shared/missing.h | 11 +++++++++++
|
||||
src/shared/selinux-util.c | 1 +
|
||||
3 files changed, 14 insertions(+), 1 deletion(-)
|
||||
|
||||
diff --git a/configure.ac b/configure.ac
|
||||
index 4a293b2..9c383c2 100644
|
||||
--- a/configure.ac
|
||||
+++ b/configure.ac
|
||||
@@ -66,8 +66,9 @@ AC_C_INLINE
|
||||
AC_TYPE_MODE_T
|
||||
AC_TYPE_PID_T
|
||||
AC_CHECK_MEMBERS([struct stat.st_rdev])
|
||||
-AC_CHECK_DECLS([getrandom, gettid, name_to_handle_at, accept4, mkostemp], [], [], [[#include <sys/types.h>
|
||||
+AC_CHECK_DECLS([getrandom, gettid, name_to_handle_at, accept4, mkostemp, strndupa], [], [], [[#include <sys/types.h>
|
||||
#include <unistd.h>
|
||||
+#include <string.h>
|
||||
#include <sys/mount.h>
|
||||
#include <fcntl.h>
|
||||
#include <sys/socket.h>
|
||||
diff --git a/src/shared/missing.h b/src/shared/missing.h
|
||||
index 2dc9d84..9031119 100644
|
||||
--- a/src/shared/missing.h
|
||||
+++ b/src/shared/missing.h
|
||||
@@ -158,3 +158,14 @@ static inline int name_to_handle_at(int fd, const char *name, struct file_handle
|
||||
#ifndef AT_EMPTY_PATH
|
||||
#define AT_EMPTY_PATH 0x1000
|
||||
#endif
|
||||
+
|
||||
+#if !HAVE_DECL_STRNDUPA
|
||||
+#define strndupa(s, n) \
|
||||
+ ({ \
|
||||
+ const char *__old = (s); \
|
||||
+ size_t __len = strnlen(__old, (n)); \
|
||||
+ char *__new = (char *)alloca(__len + 1); \
|
||||
+ __new[__len] = '\0'; \
|
||||
+ (char *)memcpy(__new, __old, __len); \
|
||||
+ })
|
||||
+#endif
|
||||
diff --git a/src/shared/selinux-util.c b/src/shared/selinux-util.c
|
||||
index 4e0866b..a18a5a7 100644
|
||||
--- a/src/shared/selinux-util.c
|
||||
+++ b/src/shared/selinux-util.c
|
||||
@@ -31,6 +31,7 @@
|
||||
#include "strv.h"
|
||||
#include "path-util.h"
|
||||
#include "selinux-util.h"
|
||||
+#include "missing.h"
|
||||
|
||||
#ifdef HAVE_SELINUX
|
||||
DEFINE_TRIVIAL_CLEANUP_FUNC(security_context_t, freecon);
|
||||
--
|
||||
2.4.3
|
||||
|
@ -1,4 +1,4 @@
|
||||
# From http://dev.gentoo.org/~blueness/eudev/
|
||||
md5 07ab33fe310d250f06fc28f010e3fde2 eudev-3.1.2.tar.gz
|
||||
md5 c4dace42deecede102b6c01904042acc eudev-3.1.5.tar.gz
|
||||
# Locally calculated
|
||||
sha256 4393b69e93dd8117defde6519b199d479f9d051f52061157a1a7a41b8fe10273 eudev-3.1.2.tar.gz
|
||||
sha256 f75885a430cd50fe4b31732f808ba7f9b2adf0f26b53b8ba2957b0c1d84b6f2a eudev-3.1.5.tar.gz
|
||||
|
@ -4,18 +4,13 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
EUDEV_VERSION = 3.1.2
|
||||
EUDEV_VERSION = 3.1.5
|
||||
EUDEV_SOURCE = eudev-$(EUDEV_VERSION).tar.gz
|
||||
EUDEV_SITE = http://dev.gentoo.org/~blueness/eudev
|
||||
EUDEV_LICENSE = GPLv2+ (programs), LGPLv2.1+ (libraries)
|
||||
EUDEV_LICENSE_FILES = COPYING
|
||||
EUDEV_INSTALL_STAGING = YES
|
||||
|
||||
# configure.ac is patched by:
|
||||
# 0002-build-sys-check-for-mallinfo.patch
|
||||
# 0003-build-sys-check-for-strndupa.patch
|
||||
EUDEV_AUTORECONF = YES
|
||||
|
||||
# mq_getattr is in librt
|
||||
EUDEV_CONF_ENV += LIBS=-lrt
|
||||
|
||||
|
@ -1,19 +0,0 @@
|
||||
version.cpp: remove useless header inclusion
|
||||
|
||||
The inclusion of link.h header is not required and can create build
|
||||
error with some toolchains.
|
||||
The patch is pushed on the upstream for the next release.
|
||||
http://dev.exiv2.org/issues/1007
|
||||
|
||||
Signed-off-by: Nicolas Serafini <nicolas.serafini@sensefly.com>
|
||||
|
||||
--- exiv2-0.24.orig/src/version.cpp 2013-12-01 13:13:42.000000000 +0100
|
||||
+++ exiv2-0.24/src/version.cpp 2014-12-04 09:30:39.667234130 +0100
|
||||
@@ -116,7 +116,6 @@ typedef string_v::iterator string_i;
|
||||
#elif defined(__linux__)
|
||||
# include <unistd.h>
|
||||
// http://syprog.blogspot.com/2011/12/listing-loaded-shared-objects-in-linux.html
|
||||
-# include "link.h"
|
||||
# include <dlfcn.h>
|
||||
struct something
|
||||
{
|
@ -1,10 +1,12 @@
|
||||
comment "exiv2 needs a toolchain w/ C++, dynamic library"
|
||||
depends on BR2_STATIC_LIBS || !BR2_INSTALL_LIBSTDCPP
|
||||
comment "exiv2 needs a toolchain w/ C++, wchar, dynamic library"
|
||||
depends on BR2_STATIC_LIBS || !BR2_INSTALL_LIBSTDCPP \
|
||||
|| !BR2_USE_WCHAR
|
||||
|
||||
config BR2_PACKAGE_EXIV2
|
||||
bool "exiv2"
|
||||
depends on !BR2_STATIC_LIBS
|
||||
depends on BR2_INSTALL_LIBSTDCPP
|
||||
depends on BR2_USE_WCHAR
|
||||
help
|
||||
Exiv2 is a C++ library and a command line utility to manage
|
||||
image metadata. It provides fast and easy read and write
|
||||
|
@ -1,4 +1,4 @@
|
||||
# From http://www.exiv2.org/download.html
|
||||
md5 b8a23dc56a98ede85c00718a97a8d6fc exiv2-0.24.tar.gz
|
||||
md5 258d4831b30f75a01e0234065c6c2806 exiv2-0.25.tar.gz
|
||||
# Locally calculated
|
||||
sha256 f4a443e6c7fb9d9f5e787732f76969a64c72c4c04af69b10ed57f949c2dfef8e exiv2-0.24.tar.gz
|
||||
sha256 c80bfc778a15fdb06f71265db2c3d49d8493c382e516cb99b8c9f9cbde36efa4 exiv2-0.25.tar.gz
|
||||
|
@ -4,7 +4,7 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
EXIV2_VERSION = 0.24
|
||||
EXIV2_VERSION = 0.25
|
||||
EXIV2_SITE = http://www.exiv2.org
|
||||
EXIV2_INSTALL_STAGING = YES
|
||||
|
||||
|
@ -1,2 +1,2 @@
|
||||
# Locally calculated
|
||||
sha256 61e0772ad6ea744ee597ae478398ddd0ba6fceee2cf343859bebde2c15bafb91 fbgrab-1.2.tar.gz
|
||||
sha256 5fab478cbf8731fbacefaa76236a8f8b38ccff920c53b3a8253bc35509fba8ed fbgrab-1.3.tar.gz
|
||||
|
@ -4,7 +4,7 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
FBGRAB_VERSION = 1.2
|
||||
FBGRAB_VERSION = 1.3
|
||||
FBGRAB_SITE = http://fbgrab.monells.se
|
||||
FBGRAB_DEPENDENCIES = libpng
|
||||
FBGRAB_LICENSE = GPLv2
|
||||
|
@ -1,2 +1,2 @@
|
||||
# Locally calculated
|
||||
sha256 5790162028a868234f4f60b030f5f51bd70785de8a27878e271df029cdf4cb9a ffmpeg-2.8.1.tar.xz
|
||||
sha256 18e22e3866d3b5fefcb1911c0d87ae8ababc30b7ea15901c1cf02885ccf6704a ffmpeg-2.8.3.tar.xz
|
||||
|
@ -4,7 +4,7 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
FFMPEG_VERSION = 2.8.1
|
||||
FFMPEG_VERSION = 2.8.3
|
||||
FFMPEG_SOURCE = ffmpeg-$(FFMPEG_VERSION).tar.xz
|
||||
FFMPEG_SITE = http://ffmpeg.org/releases
|
||||
FFMPEG_INSTALL_STAGING = YES
|
||||
|
@ -1,3 +1,3 @@
|
||||
# From http://sourceforge.net/projects/freetype/files/freetype2/2.6.1/
|
||||
md5 35cb8f4d9e5906847901bb39324c2f80 freetype-2.6.1.tar.bz2
|
||||
sha1 393447fbf64c107b20a1ccc9e9a9a52f39786ae0 freetype-2.6.1.tar.bz2
|
||||
# From http://sourceforge.net/projects/freetype/files/freetype2/2.6.2/
|
||||
md5 86109d0c998787d81ac582bad9adf82e freetype-2.6.2.tar.bz2
|
||||
sha1 29c22b85b77cb22cf95c13e7062e21f39fe6b17a freetype-2.6.2.tar.bz2
|
||||
|
@ -4,7 +4,7 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
FREETYPE_VERSION = 2.6.1
|
||||
FREETYPE_VERSION = 2.6.2
|
||||
FREETYPE_SOURCE = freetype-$(FREETYPE_VERSION).tar.bz2
|
||||
FREETYPE_SITE = http://downloads.sourceforge.net/project/freetype/freetype2/$(FREETYPE_VERSION)
|
||||
FREETYPE_INSTALL_STAGING = YES
|
||||
|
@ -27,6 +27,15 @@ HOST_GCC_FINAL_SUBDIR = build
|
||||
|
||||
HOST_GCC_FINAL_PRE_CONFIGURE_HOOKS += HOST_GCC_CONFIGURE_SYMLINK
|
||||
|
||||
# We want to always build the static variants of all the gcc libraries,
|
||||
# of which libstdc++, libgomp, libmudflap...
|
||||
# To do so, we can not just pass --enable-static to override the generic
|
||||
# --disable-static flag, otherwise gcc fails to build some of those
|
||||
# libraries, see;
|
||||
# http://lists.busybox.net/pipermail/buildroot/2013-October/080412.html
|
||||
#
|
||||
# So we must completely override the generic commands and provide our own.
|
||||
#
|
||||
define HOST_GCC_FINAL_CONFIGURE_CMDS
|
||||
(cd $(HOST_GCC_FINAL_SRCDIR) && rm -rf config.cache; \
|
||||
$(HOST_CONFIGURE_OPTS) \
|
||||
|
19
package/gcr/Config.in
Normal file
19
package/gcr/Config.in
Normal file
@ -0,0 +1,19 @@
|
||||
config BR2_PACKAGE_GCR
|
||||
bool "gcr"
|
||||
depends on BR2_USE_WCHAR # libglib2
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS # libglib2
|
||||
depends on BR2_USE_MMU # libglib2
|
||||
depends on !BR2_STATIC_LIBS # p11-kit
|
||||
select BR2_PACKAGE_GNUPG2 # runtime
|
||||
select BR2_PACKAGE_LIBGCRYPT
|
||||
select BR2_PACKAGE_LIBGLIB2
|
||||
select BR2_PACKAGE_P11_KIT
|
||||
help
|
||||
Library for cryptographic UIs and accessing PKCS#11 modules.
|
||||
|
||||
https://developer.gnome.org/gcr/
|
||||
|
||||
comment "gcr needs a toolchain w/ wchar, threads, dynamic library"
|
||||
depends on BR2_USE_MMU
|
||||
depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS || \
|
||||
BR2_STATIC_LIBS
|
2
package/gcr/gcr.hash
Normal file
2
package/gcr/gcr.hash
Normal file
@ -0,0 +1,2 @@
|
||||
# From http://ftp.acc.umu.se/pub/gnome/sources/gcr/3.18/gcr-3.18.0.sha256sum
|
||||
sha256 d4d16da5af55148a694055835ccd07ad34daf0ad03bdad929bf7cad15637ce00 gcr-3.18.0.tar.xz
|
29
package/gcr/gcr.mk
Normal file
29
package/gcr/gcr.mk
Normal file
@ -0,0 +1,29 @@
|
||||
################################################################################
|
||||
#
|
||||
# gcr
|
||||
#
|
||||
################################################################################
|
||||
|
||||
GCR_VERSION_MAJOR = 3.18
|
||||
GCR_VERSION = $(GCR_VERSION_MAJOR).0
|
||||
GCR_SITE = http://ftp.acc.umu.se/pub/gnome/sources/gcr/$(GCR_VERSION_MAJOR)
|
||||
GCR_SOURCE = gcr-$(GCR_VERSION).tar.xz
|
||||
GCR_DEPENDENCIES = host-pkgconf libgcrypt libglib2 p11-kit
|
||||
GCR_INSTALL_STAGING = YES
|
||||
GCR_CONF_ENV = ac_cv_path_GNUPG=/usr/bin/gpg2
|
||||
GCR_CONF_OPTS = \
|
||||
--disable-gtk-doc \
|
||||
--with-libgcrypt-prefix=$(STAGING_DIR)/usr
|
||||
# Even though COPYING is v2 the code states v2.1+
|
||||
GCR_LICENSE = LGPLv2.1+
|
||||
GCR_LICENSE_FILES = COPYING
|
||||
|
||||
# Only the X11 backend is supported for the simple GUI
|
||||
ifeq ($(BR2_PACKAGE_LIBGTK3_X11),y)
|
||||
GCR_DEPENDENCIES += libgtk3
|
||||
GCR_CONF_OPTS += --with-gtk
|
||||
else
|
||||
GCR_CONF_OPTS += --without-gtk
|
||||
endif
|
||||
|
||||
$(eval $(autotools-package))
|
@ -1,2 +1,2 @@
|
||||
# From http://ftp.gnome.org/pub/gnome/sources/gdk-pixbuf/2.32/gdk-pixbuf-2.32.1.sha256sum
|
||||
sha256 4432b74f25538c7d6bcb3ca51adabdd666168955f25812a2568dc9637697f3bc gdk-pixbuf-2.32.1.tar.xz
|
||||
# From http://ftp.gnome.org/pub/gnome/sources/gdk-pixbuf/2.32/gdk-pixbuf-2.32.2.sha256sum
|
||||
sha256 d3ab06fc123b13effed4c27c77cebdfad2173ff20628d82c397b7660ae926145 gdk-pixbuf-2.32.2.tar.xz
|
||||
|
@ -5,7 +5,7 @@
|
||||
################################################################################
|
||||
|
||||
GDK_PIXBUF_VERSION_MAJOR = 2.32
|
||||
GDK_PIXBUF_VERSION = $(GDK_PIXBUF_VERSION_MAJOR).1
|
||||
GDK_PIXBUF_VERSION = $(GDK_PIXBUF_VERSION_MAJOR).2
|
||||
GDK_PIXBUF_SOURCE = gdk-pixbuf-$(GDK_PIXBUF_VERSION).tar.xz
|
||||
GDK_PIXBUF_SITE = http://ftp.gnome.org/pub/gnome/sources/gdk-pixbuf/$(GDK_PIXBUF_VERSION_MAJOR)
|
||||
GDK_PIXBUF_LICENSE = LGPLv2+
|
||||
|
@ -2,6 +2,7 @@ config BR2_PACKAGE_GLIBMM
|
||||
bool "glibmm"
|
||||
select BR2_PACKAGE_LIBGLIB2
|
||||
select BR2_PACKAGE_LIBSIGC
|
||||
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 # C++11
|
||||
depends on BR2_INSTALL_LIBSTDCPP
|
||||
depends on BR2_USE_WCHAR # libglib2
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS # libglib2
|
||||
@ -11,7 +12,7 @@ config BR2_PACKAGE_GLIBMM
|
||||
|
||||
http://www.gtkmm.org/
|
||||
|
||||
comment "glibmm needs a toolchain w/ C++, wchar, threads"
|
||||
comment "glibmm needs a toolchain w/ C++, wchar, threads, gcc >= 4.8"
|
||||
depends on BR2_USE_MMU
|
||||
depends on !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR || \
|
||||
!BR2_TOOLCHAIN_HAS_THREADS
|
||||
depends on !BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 || !BR2_USE_WCHAR \
|
||||
|| !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS
|
||||
|
@ -1,2 +1,2 @@
|
||||
# From http://ftp.gnome.org/pub/gnome/sources/glibmm/2.36/glibmm-2.36.1.sha256sum
|
||||
sha256 d1f7dec2fd75ea95034ec143fcf2ff77a02e92aacf3e0cc110f9c67e7fe23766 glibmm-2.36.1.tar.xz
|
||||
# From http://ftp.gnome.org/pub/gnome/sources/glibmm/2.46/glibmm-2.46.2.sha256sum
|
||||
sha256 7221a01a768c1cce2bb994cb6ebfe634246dba4788f910484d04e3b0d903a3c8 glibmm-2.46.2.tar.xz
|
||||
|
@ -4,8 +4,8 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
GLIBMM_VERSION_MAJOR = 2.36
|
||||
GLIBMM_VERSION = $(GLIBMM_VERSION_MAJOR).1
|
||||
GLIBMM_VERSION_MAJOR = 2.46
|
||||
GLIBMM_VERSION = $(GLIBMM_VERSION_MAJOR).2
|
||||
GLIBMM_LICENSE = LGPLv2.1+ (library), GPLv2+ (tools)
|
||||
GLIBMM_LICENSE_FILES = COPYING COPYING.tools
|
||||
GLIBMM_SOURCE = glibmm-$(GLIBMM_VERSION).tar.xz
|
||||
|
@ -1,21 +0,0 @@
|
||||
|
||||
# HG changeset patch
|
||||
# User Torbjorn Granlund <tege@gmplib.org>
|
||||
# Date 1396035313 -3600
|
||||
# Node ID c56ea318eb6435bdd28dbfef657b2fe372134f1f
|
||||
# Parent c6fe20ab62acc266ff5ad3629bef447bc43dcd1b
|
||||
Conditionalise ARM asm on !__thumb__.
|
||||
|
||||
diff -r c6fe20ab62ac -r c56ea318eb64 mpn/generic/mod_1_1.c
|
||||
--- a/mpn/generic/mod_1_1.c Wed Mar 26 12:58:33 2014 +0100
|
||||
+++ b/mpn/generic/mod_1_1.c Fri Mar 28 20:35:13 2014 +0100
|
||||
@@ -129,7 +129,7 @@
|
||||
"%2" ((UDItype)(a0)), "r" ((UDItype)(b0)) __CLOBBER_CC)
|
||||
#endif
|
||||
|
||||
-#if defined (__arm__) && W_TYPE_SIZE == 32
|
||||
+#if defined (__arm__) && !defined (__thumb__) && W_TYPE_SIZE == 32
|
||||
#define add_mssaaaa(m, sh, sl, ah, al, bh, bl) \
|
||||
__asm__ ( "adds %2, %5, %6\n\t" \
|
||||
"adcs %1, %3, %4\n\t" \
|
||||
|
@ -1,21 +0,0 @@
|
||||
|
||||
# HG changeset patch
|
||||
# User Torbjorn Granlund <tege@gmplib.org>
|
||||
# Date 1396602422 -7200
|
||||
# Node ID 676e2d0f0e4dd301a7066079d2c9326c25c34a40
|
||||
# Parent 0194a75b56b21a9196626430af86c5bd9110c42d
|
||||
Conditionalise ARM asm on !__thumb__.
|
||||
|
||||
diff -r 0194a75b56b2 -r 676e2d0f0e4d mpn/generic/div_qr_1n_pi1.c
|
||||
--- a/mpn/generic/div_qr_1n_pi1.c Thu Apr 03 23:58:51 2014 +0200
|
||||
+++ b/mpn/generic/div_qr_1n_pi1.c Fri Apr 04 11:07:02 2014 +0200
|
||||
@@ -130,7 +130,7 @@
|
||||
"%2" ((UDItype)(a0)), "r" ((UDItype)(b0)) __CLOBBER_CC)
|
||||
#endif
|
||||
|
||||
-#if defined (__arm__) && W_TYPE_SIZE == 32
|
||||
+#if defined (__arm__) && !defined (__thumb__) && W_TYPE_SIZE == 32
|
||||
#define add_mssaaaa(m, sh, sl, ah, al, bh, bl) \
|
||||
__asm__ ( "adds %2, %5, %6\n\t" \
|
||||
"adcs %1, %3, %4\n\t" \
|
||||
|
@ -1,22 +0,0 @@
|
||||
|
||||
# HG changeset patch
|
||||
# User Torbjorn Granlund <tege@gmplib.org>
|
||||
# Date 1395835068 -3600
|
||||
# Node ID 4a6d258b467f661da0894cc60ecd060f2e3c67c7
|
||||
# Parent 301ce2788826a2d4d2725bd5cf01e998638db37a
|
||||
Provide default for BMOD_1_TO_MOD_1_THRESHOLD.
|
||||
|
||||
diff -r 301ce2788826 -r 4a6d258b467f mpn/powerpc64/mode64/gcd_1.asm
|
||||
--- a/mpn/powerpc64/mode64/gcd_1.asm Tue Mar 25 15:34:52 2014 +0100
|
||||
+++ b/mpn/powerpc64/mode64/gcd_1.asm Wed Mar 26 12:57:48 2014 +0100
|
||||
@@ -43,6 +43,9 @@
|
||||
define(`n', `r4')
|
||||
define(`v0', `r5')
|
||||
|
||||
+ifdef(`BMOD_1_TO_MOD_1_THRESHOLD',,
|
||||
+ `define(`BMOD_1_TO_MOD_1_THRESHOLD',30)')
|
||||
+
|
||||
EXTERN_FUNC(mpn_mod_1)
|
||||
EXTERN_FUNC(mpn_modexact_1c_odd)
|
||||
|
||||
|
@ -1,2 +1,2 @@
|
||||
# Locally calculated after checking pgp signature
|
||||
sha256 9156d32edac6955bc53b0218f5f3763facb890b73a835d5e1b901dcf8eb8b764 gmp-6.0.0a.tar.xz
|
||||
sha256 68dadacce515b0f8a54f510edf07c1b636492bcdb8e8d54c56eb216225d16989 gmp-6.1.0.tar.xz
|
||||
|
@ -4,7 +4,7 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
GMP_VERSION = 6.0.0a
|
||||
GMP_VERSION = 6.1.0
|
||||
GMP_SITE = $(BR2_GNU_MIRROR)/gmp
|
||||
GMP_SOURCE = gmp-$(GMP_VERSION).tar.xz
|
||||
GMP_INSTALL_STAGING = YES
|
||||
|
@ -1,5 +1,6 @@
|
||||
config BR2_PACKAGE_GNUTLS
|
||||
bool "gnutls"
|
||||
select BR2_PACKAGE_LIBTASN1
|
||||
select BR2_PACKAGE_NETTLE
|
||||
select BR2_PACKAGE_PCRE
|
||||
depends on BR2_USE_WCHAR
|
||||
|
@ -1,2 +1,2 @@
|
||||
# Locally calculated after checking pgp signature
|
||||
sha256 7a87e7f486d1ada10007356917a412cde6c6114dac018e3569e3aa09e9f29395 gnutls-3.3.18.tar.xz
|
||||
sha256 c1be9e4b30295d7b5f96fa332c6a908e6fa2254377b67811301fca92eb882e5a gnutls-3.4.7.tar.xz
|
||||
|
@ -4,24 +4,22 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
GNUTLS_VERSION_MAJOR = 3.3
|
||||
GNUTLS_VERSION = $(GNUTLS_VERSION_MAJOR).18
|
||||
GNUTLS_VERSION_MAJOR = 3.4
|
||||
GNUTLS_VERSION = $(GNUTLS_VERSION_MAJOR).7
|
||||
GNUTLS_SOURCE = gnutls-$(GNUTLS_VERSION).tar.xz
|
||||
GNUTLS_SITE = ftp://ftp.gnutls.org/gcrypt/gnutls/v$(GNUTLS_VERSION_MAJOR)
|
||||
GNUTLS_LICENSE = GPLv3+ LGPLv2.1+
|
||||
GNUTLS_LICENSE_FILES = COPYING COPYING.LESSER
|
||||
GNUTLS_DEPENDENCIES = host-pkgconf nettle pcre \
|
||||
$(if $(BR2_PACKAGE_P11_KIT),p11-kit) \
|
||||
$(if $(BR2_PACKAGE_LIBIDN),libidn) \
|
||||
$(if $(BR2_PACKAGE_LIBTASN1),libtasn1) \
|
||||
$(if $(BR2_PACKAGE_ZLIB),zlib)
|
||||
GNUTLS_DEPENDENCIES = host-pkgconf libtasn1 nettle pcre
|
||||
GNUTLS_CONF_OPTS = \
|
||||
--with-libnettle-prefix=$(STAGING_DIR)/usr \
|
||||
--with-librt-prefix=$(STAGING_DIR) \
|
||||
--disable-rpath \
|
||||
--disable-doc \
|
||||
--disable-guile \
|
||||
--enable-local-libopts
|
||||
--disable-libdane \
|
||||
--disable-rpath \
|
||||
--enable-local-libopts \
|
||||
--with-libnettle-prefix=$(STAGING_DIR)/usr \
|
||||
--with-librt-prefix=$(STAGING_DIR) \
|
||||
--without-tpm
|
||||
GNUTLS_CONF_ENV = gl_cv_socket_ipv6=yes \
|
||||
ac_cv_header_wchar_h=$(if $(BR2_USE_WCHAR),yes,no) \
|
||||
gt_cv_c_wchar_t=$(if $(BR2_USE_WCHAR),yes,no) \
|
||||
@ -54,6 +52,27 @@ GNUTLS_CONF_OPTS += --enable-cryptodev
|
||||
GNUTLS_DEPENDENCIES += cryptodev-linux
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_LIBIDN),y)
|
||||
GNUTLS_CONF_OPTS += --with-idn
|
||||
GNUTLS_DEPENDENCIES += libidn
|
||||
else
|
||||
GNUTLS_CONF_OPTS += --without-idn
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_P11_KIT),y)
|
||||
GNUTLS_CONF_OPTS += --with-p11-kit
|
||||
GNUTLS_DEPENDENCIES += p11-kit
|
||||
else
|
||||
GNUTLS_CONF_OPTS += --without-p11-kit
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_ZLIB),y)
|
||||
GNUTLS_CONF_OPTS += --with-zlib
|
||||
GNUTLS_DEPENDENCIES += zlib
|
||||
else
|
||||
GNUTLS_CONF_OPTS += --without-zlib
|
||||
endif
|
||||
|
||||
# Some examples in doc/examples use wchar
|
||||
define GNUTLS_DISABLE_DOCS
|
||||
$(SED) 's/ doc / /' $(@D)/Makefile.in
|
||||
|
@ -67,6 +67,12 @@ else
|
||||
GPSD_SCONS_OPTS += bluez=no
|
||||
endif
|
||||
|
||||
# If pps-tools is available, build it before so the package can use it
|
||||
# (HAVE_SYS_TIMEPPS_H).
|
||||
ifeq ($(BR2_PACKAGE_PPS_TOOLS),y)
|
||||
GPSD_DEPENDENCIES += pps-tools
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_DBUS_GLIB),y)
|
||||
GPSD_SCONS_OPTS += dbus_export=yes
|
||||
GPSD_DEPENDENCIES += dbus-glib
|
||||
|
@ -1,2 +1,2 @@
|
||||
# From http://ftp.gnome.org/pub/GNOME/sources/gvfs/1.26/gvfs-1.26.1.1.sha256sum
|
||||
sha256 2dadf986e464db1d7f007b178a5432b30ba93ef0cb31a2795156540d496dc06d gvfs-1.26.1.1.tar.xz
|
||||
# From http://ftp.gnome.org/pub/GNOME/sources/gvfs/1.26/gvfs-1.26.2.sha256sum
|
||||
sha256 695b6e0f3de5ac2cb4d188917edef3f13299328150a2413f1a7131d9b2d48d18 gvfs-1.26.2.tar.xz
|
||||
|
@ -5,7 +5,7 @@
|
||||
################################################################################
|
||||
|
||||
GVFS_VERSION_MAJOR = 1.26
|
||||
GVFS_VERSION = $(GVFS_VERSION_MAJOR).1.1
|
||||
GVFS_VERSION = $(GVFS_VERSION_MAJOR).2
|
||||
GVFS_SOURCE = gvfs-$(GVFS_VERSION).tar.xz
|
||||
GVFS_SITE = http://ftp.gnome.org/pub/GNOME/sources/gvfs/$(GVFS_VERSION_MAJOR)
|
||||
GVFS_INSTALL_STAGING = YES
|
||||
|
@ -1,2 +1,2 @@
|
||||
# From http://www.freedesktop.org/software/harfbuzz/release/harfbuzz-1.0.6.tar.bz2.sha256
|
||||
sha256 f616a7fbdc78a627043f9029000bf08c0c71df59cde4143fc92a014f6a993b26 harfbuzz-1.0.6.tar.bz2
|
||||
# From http://www.freedesktop.org/software/harfbuzz/release/harfbuzz-1.1.2.tar.bz2.sha256
|
||||
sha256 4a2c5790bd3db7c3ca8c02e4858f2fd592df7932c1d2fa9f6b99acbce0f8461f harfbuzz-1.1.2.tar.bz2
|
||||
|
@ -4,7 +4,7 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
HARFBUZZ_VERSION = 1.0.6
|
||||
HARFBUZZ_VERSION = 1.1.2
|
||||
HARFBUZZ_SITE = http://www.freedesktop.org/software/harfbuzz/release
|
||||
HARFBUZZ_SOURCE = harfbuzz-$(HARFBUZZ_VERSION).tar.bz2
|
||||
HARFBUZZ_LICENSE = MIT, ISC (ucdn library)
|
||||
|
20
package/hidapi/Config.in
Normal file
20
package/hidapi/Config.in
Normal file
@ -0,0 +1,20 @@
|
||||
config BR2_PACKAGE_HIDAPI
|
||||
bool "hidapi"
|
||||
depends on BR2_PACKAGE_HAS_UDEV
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS # libusb
|
||||
select BR2_PACKAGE_LIBUSB
|
||||
# When eudev is used as the udev provider, libgudev is
|
||||
# automatically provided as it is part of eudev. However, when
|
||||
# systemd is used as the udev provider, libgudev is not
|
||||
# provided, and needs to be built separately. This is why we
|
||||
# select the libgudev package only if systemd is used.
|
||||
select BR2_PACKAGE_LIBGUDEV if BR2_INIT_SYSTEMD
|
||||
help
|
||||
HIDAPI is a multi-platform library which allows an application
|
||||
to interface with USB and Bluetooth HID-Class devices on
|
||||
Windows, Linux, and Mac OS X.
|
||||
|
||||
http://www.signal11.us/oss/hidapi/
|
||||
|
||||
comment "hidapi needs udev /dev management and a toolchain w/ threads"
|
||||
depends on !BR2_TOOLCHAIN_HAS_THREADS || !BR2_PACKAGE_HAS_UDEV
|
2
package/hidapi/hidapi.hash
Normal file
2
package/hidapi/hidapi.hash
Normal file
@ -0,0 +1,2 @@
|
||||
# Locally calculated
|
||||
sha256 33e206f5e145fc1bc6aeb55084d71b55d686533d23ad5bb762746ceba81e728b hidapi-d17db57b9d4354752e0af42f5f33007a42ef2906.tar.gz
|
23
package/hidapi/hidapi.mk
Normal file
23
package/hidapi/hidapi.mk
Normal file
@ -0,0 +1,23 @@
|
||||
################################################################################
|
||||
#
|
||||
# hidapi
|
||||
#
|
||||
################################################################################
|
||||
|
||||
# Use master version as the current stable is very old and some bugs
|
||||
# have been fixed since then.
|
||||
HIDAPI_VERSION = d17db57b9d4354752e0af42f5f33007a42ef2906
|
||||
HIDAPI_SITE = $(call github,signal11,hidapi,$(HIDAPI_VERSION))
|
||||
HIDAPI_INSTALL_STAGING = YES
|
||||
# No configure provided, so we need to autoreconf.
|
||||
HIDAPI_AUTORECONF = YES
|
||||
HIDAPI_LICENSE = GPLv3 or BSD-3c or HIDAPI license
|
||||
HIDAPI_LICENSE_FILES = LICENSE.txt LICENSE-gpl3.txt LICENSE-bsd.txt LICENSE-orig.txt
|
||||
|
||||
HIDAPI_DEPENDENCIES = libusb
|
||||
|
||||
ifeq ($(BR2_PACKAGE_LIBGUDEV),y)
|
||||
HIDAPI_DEPENDENCIES += libgudev
|
||||
endif
|
||||
|
||||
$(eval $(autotools-package))
|
@ -1,2 +1,2 @@
|
||||
# From http://www.imagemagick.org/download/releases/digest.rdf
|
||||
sha256 19fb341725a13c01458cfce23d0a260fd032432a5daeebdd4f06c92d716ded40 ImageMagick-6.9.2-5.tar.xz
|
||||
sha256 eef80bf259823523dafbcdae15e236b443ecf6d4ae415106d7a861d1fa8d9d13 ImageMagick-6.9.2-7.tar.xz
|
||||
|
@ -4,7 +4,7 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
IMAGEMAGICK_VERSION = 6.9.2-5
|
||||
IMAGEMAGICK_VERSION = 6.9.2-7
|
||||
IMAGEMAGICK_SOURCE = ImageMagick-$(IMAGEMAGICK_VERSION).tar.xz
|
||||
IMAGEMAGICK_SITE = http://www.imagemagick.org/download/releases
|
||||
IMAGEMAGICK_LICENSE = Apache-2.0
|
||||
|
@ -1,4 +1,4 @@
|
||||
# From ftp://ftp.netfilter.org/pub/ipset/ipset-6.25.1.tar.bz2.md5sum.txt
|
||||
md5 e58262af2d53bda271f43883eebc8d54 ipset-6.25.1.tar.bz2
|
||||
# From ftp://ftp.netfilter.org/pub/ipset/ipset-6.27.tar.bz2.md5sum.txt
|
||||
md5 c39f8958908b1396e2c69f082b75d924 ipset-6.27.tar.bz2
|
||||
# Calculated based on the hash above
|
||||
sha256 658e15d0d0d6a7160137ef1c2bc2c8669cfee996eb9e049df8d7313e34795e7b ipset-6.25.1.tar.bz2
|
||||
sha256 724897a80395534466142c3542184e5a480a5046140ca2a7d9097690b931b235 ipset-6.27.tar.bz2
|
||||
|
@ -4,7 +4,7 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
IPSET_VERSION = 6.25.1
|
||||
IPSET_VERSION = 6.27
|
||||
IPSET_SOURCE = ipset-$(IPSET_VERSION).tar.bz2
|
||||
IPSET_SITE = http://ipset.netfilter.org
|
||||
IPSET_DEPENDENCIES = libmnl host-pkgconf
|
||||
|
@ -1,2 +1,2 @@
|
||||
# From https://www.kernel.org/pub/linux/utils/kernel/kmod/sha256sums.asc
|
||||
sha256 89c1a1a2193c31f9ebe582640bfa2bd401341dc24119f5a7f702588116fadaa0 kmod-20.tar.xz
|
||||
sha256 ba3b1ddea33228b473189fcb05b809024a3b86e9a7cf37d420cae06beb749f82 kmod-22.tar.xz
|
||||
|
@ -4,7 +4,7 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
KMOD_VERSION = 20
|
||||
KMOD_VERSION = 22
|
||||
KMOD_SOURCE = kmod-$(KMOD_VERSION).tar.xz
|
||||
KMOD_SITE = $(BR2_KERNEL_MIRROR)/linux/utils/kernel/kmod
|
||||
KMOD_INSTALL_STAGING = YES
|
||||
|
@ -1,2 +1,2 @@
|
||||
# Locally computed
|
||||
sha256 a67c54ebaf5ec19ae72e86259ee6ab6adfe2e64ed9f9149db03dc863360ea38c libass-0.12.3.tar.xz
|
||||
sha256 e0071a3b2e95411c8d474014678368e3f0b852f7d663e0564b344e7335eb0671 libass-0.13.0.tar.xz
|
||||
|
@ -4,7 +4,7 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
LIBASS_VERSION = 0.12.3
|
||||
LIBASS_VERSION = 0.13.0
|
||||
LIBASS_SOURCE = libass-$(LIBASS_VERSION).tar.xz
|
||||
# Do not use the github helper here, the generated tarball is *NOT*
|
||||
# the same as the one uploaded by upstream for the release.
|
||||
@ -38,11 +38,4 @@ else
|
||||
LIBASS_CONF_OPTS += --disable-harfbuzz
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_LIBENCA),y)
|
||||
LIBASS_DEPENDENCIES += libenca
|
||||
LIBASS_CONF_OPTS += --enable-enca
|
||||
else
|
||||
LIBASS_CONF_OPTS += --disable-enca
|
||||
endif
|
||||
|
||||
$(eval $(autotools-package))
|
||||
|
@ -1,2 +1,2 @@
|
||||
# Hash from http://lists.freedesktop.org/archives/input-tools/2015-August/001210.html
|
||||
sha256 ed9979369b6a6e28f5897d099538549ecffb2b7c00c1b717eb77c31d85bc45a9 libevdev-1.4.4.tar.xz
|
||||
# Hash from http://lists.freedesktop.org/archives/input-tools/2015-November/001227.html
|
||||
sha256 e91c58ca86e0631186798449e0a78c65474ff562081d968ba0521f76c8c2ca1d libevdev-1.4.5.tar.xz
|
||||
|
@ -4,7 +4,7 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
LIBEVDEV_VERSION = 1.4.4
|
||||
LIBEVDEV_VERSION = 1.4.5
|
||||
LIBEVDEV_SITE = http://www.freedesktop.org/software/libevdev
|
||||
LIBEVDEV_SOURCE = libevdev-$(LIBEVDEV_VERSION).tar.xz
|
||||
LIBEVDEV_LICENSE = X11
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user