mirror of https://github.com/hak5/openwrt-owl.git
parent
04453591af
commit
2b5ce63303
|
@ -45,6 +45,7 @@ else
|
||||||
CONFIGURE_FLAGS:=
|
CONFIGURE_FLAGS:=
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
ifneq ($(HOST_OS),Darwin)
|
||||||
define Build/Configure
|
define Build/Configure
|
||||||
(cd $(PKG_BUILD_DIR); \
|
(cd $(PKG_BUILD_DIR); \
|
||||||
LDFLAGS="-static" \
|
LDFLAGS="-static" \
|
||||||
|
@ -83,5 +84,6 @@ define Build/InstallDev
|
||||||
install
|
install
|
||||||
mv $(STAGING_DIR_HOST)/usr/sbin/grub $(STAGING_DIR_HOST)/bin
|
mv $(STAGING_DIR_HOST)/usr/sbin/grub $(STAGING_DIR_HOST)/bin
|
||||||
endef
|
endef
|
||||||
|
endif
|
||||||
|
|
||||||
$(eval $(call BuildPackage,grub))
|
$(eval $(call BuildPackage,grub))
|
||||||
|
|
|
@ -14,6 +14,7 @@ ROOTPART=$(strip $(subst ",, $(CONFIG_X86_GRUB_ROOTPART)))
|
||||||
|
|
||||||
|
|
||||||
ifeq ($(CONFIG_X86_GRUB_IMAGES),y)
|
ifeq ($(CONFIG_X86_GRUB_IMAGES),y)
|
||||||
|
ifneq ($(HOST_OS),Darwin)
|
||||||
define Image/cmdline/squashfs
|
define Image/cmdline/squashfs
|
||||||
block2mtd.block2mtd=$(ROOTPART),65536,rootfs root=/dev/mtdblock0 rootfstype=squashfs init=/etc/preinit
|
block2mtd.block2mtd=$(ROOTPART),65536,rootfs root=/dev/mtdblock0 rootfstype=squashfs init=/etc/preinit
|
||||||
endef
|
endef
|
||||||
|
@ -44,9 +45,7 @@ ifeq ($(CONFIG_X86_GRUB_IMAGES),y)
|
||||||
PADDING="$(CONFIG_X86_GRUB_IMAGES_PAD)" PATH="$(TARGET_PATH)" ./gen_image.sh $(BIN_DIR)/openwrt-$(BOARD)-$(1).image $(CONFIG_X86_GRUB_KERNELPART) $(KDIR)/root.grub $(CONFIG_TARGET_ROOTFS_FSPART) $(KDIR)/root.$(1)
|
PADDING="$(CONFIG_X86_GRUB_IMAGES_PAD)" PATH="$(TARGET_PATH)" ./gen_image.sh $(BIN_DIR)/openwrt-$(BOARD)-$(1).image $(CONFIG_X86_GRUB_KERNELPART) $(KDIR)/root.grub $(CONFIG_TARGET_ROOTFS_FSPART) $(KDIR)/root.$(1)
|
||||||
$(call Image/Build/grub/$(1))
|
$(call Image/Build/grub/$(1))
|
||||||
endef
|
endef
|
||||||
endif
|
|
||||||
|
|
||||||
ifeq ($(CONFIG_X86_GRUB_IMAGES),y)
|
|
||||||
define Image/Prepare/grub
|
define Image/Prepare/grub
|
||||||
# for the image builder
|
# for the image builder
|
||||||
$(CP) \
|
$(CP) \
|
||||||
|
@ -55,6 +54,11 @@ ifeq ($(CONFIG_X86_GRUB_IMAGES),y)
|
||||||
$(STAGING_DIR_HOST)/usr/lib/grub/i386-pc/e2fs_stage1_5 \
|
$(STAGING_DIR_HOST)/usr/lib/grub/i386-pc/e2fs_stage1_5 \
|
||||||
$(KDIR)/
|
$(KDIR)/
|
||||||
endef
|
endef
|
||||||
|
else
|
||||||
|
define Image/Build/grub
|
||||||
|
PADDING="$(CONFIG_X86_GRUB_IMAGES_PAD)" PATH="$(TARGET_PATH)" NOGRUB=1 ./gen_image.sh $(BIN_DIR)/openwrt-$(BOARD)-$(1).image $(CONFIG_X86_GRUB_KERNELPART) "" $(CONFIG_TARGET_ROOTFS_FSPART) $(KDIR)/root.$(1)
|
||||||
|
endef
|
||||||
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq ($(CONFIG_X86_VDI_IMAGES),y)
|
ifeq ($(CONFIG_X86_VDI_IMAGES),y)
|
||||||
|
|
|
@ -28,10 +28,13 @@ ROOTFSSIZE="$(($4 / 512))"
|
||||||
|
|
||||||
BLOCKS="$((($KERNELSIZE / 2) - 1))"
|
BLOCKS="$((($KERNELSIZE / 2) - 1))"
|
||||||
|
|
||||||
genext2fs -d "$KERNELDIR" -b "$BLOCKS" "$OUTPUT.kernel"
|
|
||||||
dd if="$OUTPUT.kernel" of="$OUTPUT" bs=512 seek="$KERNELOFFSET" conv=notrunc
|
|
||||||
[ -n "$PADDING" ] && dd if=/dev/zero of="$OUTPUT" bs=512 seek="$ROOTFSOFFSET" conv=notrunc count="$ROOTFSSIZE"
|
[ -n "$PADDING" ] && dd if=/dev/zero of="$OUTPUT" bs=512 seek="$ROOTFSOFFSET" conv=notrunc count="$ROOTFSSIZE"
|
||||||
dd if="$ROOTFSIMAGE" of="$OUTPUT" bs=512 seek="$ROOTFSOFFSET" conv=notrunc
|
dd if="$ROOTFSIMAGE" of="$OUTPUT" bs=512 seek="$ROOTFSOFFSET" conv=notrunc
|
||||||
|
|
||||||
|
[ -n "$NOGRUB" ] && exit 0
|
||||||
|
|
||||||
|
genext2fs -d "$KERNELDIR" -b "$BLOCKS" "$OUTPUT.kernel"
|
||||||
|
dd if="$OUTPUT.kernel" of="$OUTPUT" bs=512 seek="$KERNELOFFSET" conv=notrunc
|
||||||
#rm -f "$OUTPUT.kernel"
|
#rm -f "$OUTPUT.kernel"
|
||||||
|
|
||||||
which chpax >/dev/null && chpax -zp $(which grub)
|
which chpax >/dev/null && chpax -zp $(which grub)
|
||||||
|
|
Loading…
Reference in New Issue