Skip to content

Commit

Permalink
flashrom ppc64: remove ast2400 and dummy, leaving NOTHING+MTD only, d…
Browse files Browse the repository at this point in the history
…asharo/flashrom commit 82f021ec1e5677aec4c98352cf52695d82a0fb41

NOTE: newer flashrom version seems to need to have environment variables defined prior of make call on console, not passing options at make call
Attempt to get successful builds for Dasharo/flashrom#11

CONFIG_INTERNAL is not enough to have internal programmer anymore. CONFIG_INTERNAL_X86 also needs to be requested.
Bug upstream which is not tested against NOTHING

Collaboration happened under Dasharo/flashrom#11
  • Loading branch information
tlaurion committed Feb 19, 2023
1 parent 893c298 commit 9121f45
Showing 1 changed file with 7 additions and 9 deletions.
16 changes: 7 additions & 9 deletions modules/flashrom
Original file line number Diff line number Diff line change
Expand Up @@ -2,25 +2,26 @@ modules-$(CONFIG_FLASHROM) += flashrom

flashrom_depends := pciutils libusb $(musl_dep)

flashrom_version := 5111246d8dab57249148e08509b58e9f82056521
flashrom_version := 82f021ec1e5677aec4c98352cf52695d82a0fb41
flashrom_dir := flashrom-$(flashrom_version)
flashrom_tar := $(flashrom_dir).tar.gz
flashrom_url := https://github.com/Dasharo/flashrom/archive/$(flashrom_version).tar.gz
flashrom_hash := ed36cd80c468f99680092cc009520ab301922b97e63d96936ac0b44831f6573a
flashrom_hash := 027d77ffbcaed019197b90c5c0d8ba31c7d04fd5503eba1f3e88b907f67f0ab9

# Default options for flashrom
flashrom_cfg := \
WARNERROR=no \
CONFIG_NOTHING=yes \
CONFIG_INTERNAL=yes \
CONFIG_INTERNAL_X86=yes \
CONFIG_DUMMY=yes \
CONFIG_AST1100=yes \

ifeq "$(CONFIG_TARGET_ARCH)" "ppc64"
flashrom_cfg := \
WARNERROR=no \
CONFIG_NOTHING=yes \
CONFIG_LINUX_MTD=yes \
CONFIG_DUMMY=yes \
CONFIG_AST2400=yes
CONFIG_LINUX_MTD=yes
endif

flashrom_target := \
Expand All @@ -31,11 +32,8 @@ flashrom_target := \
LIBS_BASE="$(INSTALL)" \
CFLAGS="-I$(INSTALL)/include/libusb-1.0 -I$(INSTALL)/include/pci" \
LDFLAGS="-L$(INSTALL)/lib" \
WARNERROR=no \
$(flashrom_cfg) \
$(CROSS_TOOLS) \
#PREFIX="/" \
#DESTDIR="$(INSTALL)" \
$(flashrom_cfg)

flashrom_output := \
flashrom
Expand Down

0 comments on commit 9121f45

Please sign in to comment.