Skip to content
This repository has been archived by the owner on Apr 25, 2019. It is now read-only.

Commit

Permalink
FIX: Add ramdisk to builds
Browse files Browse the repository at this point in the history
#621

Ramdisk was not getting added to builds unless patch.d existed.  In this case, OnePlus3 users were not getting wlan.ko.

Signed-off-by: binkybear <binkybear@nethunter.com>
  • Loading branch information
binkybear committed Oct 12, 2016
1 parent 07fc98f commit 8601758
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nethunter-installer/build.py
Expand Up @@ -309,7 +309,7 @@ def setupkernel():

# Copy any ramdisk files
ramdisk_path = os.path.join(device_path, 'ramdisk')
if os.path.exists(patchd_path):
if os.path.exists(ramdisk_path):
print('Found additional ramdisk files at: ' + ramdisk_path)
copytree(ramdisk_path, os.path.join(out_path, 'ramdisk-patch'))

Expand Down

1 comment on commit 8601758

@jcadduono
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

oops ><

Please sign in to comment.